@univerjs-pro/collaboration-client 0.5.0-alpha.0 → 0.5.0-beta.1
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/cjs/index.js
CHANGED
@@ -1 +1 @@
|
|
1
|
-
'use strict';const _0x4a9685=_0x5f2c;(function(_0x5f360c,_0x2dd306){const _0x2d77c2=_0x5f2c,_0xfe0c38=_0x5f360c();while(!![]){try{const _0x5d4038=parseInt(_0x2d77c2(0x1f7))/0x1+-parseInt(_0x2d77c2(0x1fb))/0x2*(-parseInt(_0x2d77c2(0x4e6))/0x3)+-parseInt(_0x2d77c2(0x44f))/0x4+parseInt(_0x2d77c2(0x4e5))/0x5+parseInt(_0x2d77c2(0x3b6))/0x6+-parseInt(_0x2d77c2(0x3ea))/0x7+parseInt(_0x2d77c2(0x4b1))/0x8*(-parseInt(_0x2d77c2(0x1d5))/0x9);if(_0x5d4038===_0x2dd306)break;else _0xfe0c38['push'](_0xfe0c38['shift']());}catch(_0xc7f311){_0xfe0c38['push'](_0xfe0c38['shift']());}}}(_0x2b0a,0xe46fc));var Ln=Object[_0x4a9685(0x377)],xn=(_0x45e995,_0x1471b2,_0x46dff5)=>_0x1471b2 in _0x45e995?Ln(_0x45e995,_0x1471b2,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x46dff5}):_0x45e995[_0x1471b2]=_0x46dff5,I=(_0x3aaf61,_0x3c30c4,_0x567403)=>xn(_0x3aaf61,typeof _0x3c30c4!=_0x4a9685(0x184)?_0x3c30c4+'':_0x3c30c4,_0x567403);Object[_0x4a9685(0x377)](exports,Symbol[_0x4a9685(0x59a)],{'value':_0x4a9685(0x3b8)});const a=require(_0x4a9685(0x1a5)),A=require(_0x4a9685(0x384)),V=require(_0x4a9685(0x54f)),ge=require(_0x4a9685(0x369)),ee=require('@univerjs/ui'),Z=require(_0x4a9685(0x5bb)),S=require(_0x4a9685(0x48d)),jn=require(_0x4a9685(0x1da)),J=require(_0x4a9685(0x3c0)),k=require(_0x4a9685(0x539)),K=require(_0x4a9685(0x46d)),ye=require(_0x4a9685(0x351)),ne=require(_0x4a9685(0x16c)),Pt=require('@univerjs/engine-formula'),Re=require('@univerjs/sheets-ui'),ae=require(_0x4a9685(0x258)),$n=require(_0x4a9685(0x29d)),Zt='SNAPSHOT_SERVER_URL_KEY',Hn=_0x4a9685(0x152),Qt=_0x4a9685(0x442),Bn=_0x4a9685(0x49b),kn=0x7d0,en=_0x4a9685(0x1e8),Wn='ws://127.0.0.1:8000/universer-api/comb/connect',tn=_0x4a9685(0x488),Fn=0x7530,Ct=_0x4a9685(0x56c),nn=0x4e20,Vn=0x4e20,sn=_0x4a9685(0x191),Gn=0x3,rn='LOCAL_CACHE_INTERVAL',Yn=0x3e8,on=_0x4a9685(0x1a8),Kn=_0x4a9685(0x265),an=_0x4a9685(0x49e),qn=_0x4a9685(0x53d);var cn=(_0x14f6b8=>(_0x14f6b8[_0x14f6b8[_0x4a9685(0x268)]=0x0]=_0x4a9685(0x268),_0x14f6b8[_0x14f6b8['OK']=0x1]='OK',_0x14f6b8[_0x14f6b8['INTERNAL_ERROR']=0x2]=_0x4a9685(0x243),_0x14f6b8[_0x14f6b8['PERMISSION_DENIED']=0x3]=_0x4a9685(0x178),_0x14f6b8[_0x14f6b8[_0x4a9685(0x584)]=0x4]=_0x4a9685(0x584),_0x14f6b8[_0x14f6b8[_0x4a9685(0x43c)]=0x5]=_0x4a9685(0x43c),_0x14f6b8[_0x14f6b8[_0x4a9685(0x2b0)]=0x6]=_0x4a9685(0x2b0),_0x14f6b8[_0x14f6b8[_0x4a9685(0x42c)]=0x7]=_0x4a9685(0x42c),_0x14f6b8[_0x14f6b8[_0x4a9685(0x44e)]=0x8]=_0x4a9685(0x44e),_0x14f6b8[_0x14f6b8[_0x4a9685(0x4ac)]=0x9]=_0x4a9685(0x4ac),_0x14f6b8[_0x14f6b8[_0x4a9685(0x21a)]=0x1389]=_0x4a9685(0x21a),_0x14f6b8[_0x14f6b8[_0x4a9685(0x52b)]=0x1771]=_0x4a9685(0x52b),_0x14f6b8[_0x14f6b8[_0x4a9685(0x3a9)]=0x1772]=_0x4a9685(0x3a9),_0x14f6b8[_0x14f6b8[_0x4a9685(0x517)]=0x1773]=_0x4a9685(0x517),_0x14f6b8[_0x14f6b8['APPLY_REJECT']=0x1b59]=_0x4a9685(0x373),_0x14f6b8[_0x14f6b8['APPLY_NON_SEQUENTIAL_REVISION']=0x1b5a]=_0x4a9685(0x38d),_0x14f6b8[_0x14f6b8['APPLY_REVISION_CONFILICT']=0x1b5b]=_0x4a9685(0x30e),_0x14f6b8[_0x14f6b8['APPLY_PERMISSION_DENIED']=0x1b5c]=_0x4a9685(0x16b),_0x14f6b8[_0x14f6b8[_0x4a9685(0x2c8)]=0x1b5d]=_0x4a9685(0x2c8),_0x14f6b8[_0x14f6b8[_0x4a9685(0x511)]=0x1f41]='CONNECTOR_DATA_TOO_LARGE',_0x14f6b8[_0x14f6b8[_0x4a9685(0x1f2)]=0x2329]=_0x4a9685(0x1f2),_0x14f6b8[_0x14f6b8[_0x4a9685(0x1bb)]=0x232a]=_0x4a9685(0x1bb),_0x14f6b8[_0x14f6b8[_0x4a9685(0x535)]=0x232b]=_0x4a9685(0x535),_0x14f6b8[_0x14f6b8['LICENSE_EXPORT_SIZE_EXCEEDED']=0x232c]=_0x4a9685(0x547),_0x14f6b8[_0x14f6b8[_0x4a9685(0x5ad)]=0x232d]=_0x4a9685(0x5ad),_0x14f6b8[_0x14f6b8[_0x4a9685(0x447)]=0x2711]=_0x4a9685(0x447),_0x14f6b8[_0x14f6b8[_0x4a9685(0x2fd)]=0x2712]=_0x4a9685(0x2fd),_0x14f6b8[_0x14f6b8[_0x4a9685(0x227)]=0x2713]=_0x4a9685(0x227),_0x14f6b8[_0x14f6b8[_0x4a9685(0x567)]=0x2714]=_0x4a9685(0x567),_0x14f6b8[_0x14f6b8['UNRECOGNIZED']=-0x1]=_0x4a9685(0x4be),_0x14f6b8))(cn||{}),ie=(_0x401808=>(_0x401808[_0x401808['UNIVER_UNKNOWN']=0x0]='UNIVER_UNKNOWN',_0x401808[_0x401808[_0x4a9685(0x22a)]=0x1]=_0x4a9685(0x22a),_0x401808[_0x401808[_0x4a9685(0x1af)]=0x2]=_0x4a9685(0x1af),_0x401808[_0x401808['UNIVER_SLIDE']=0x3]=_0x4a9685(0x518),_0x401808[_0x401808[_0x4a9685(0x433)]=0x4]=_0x4a9685(0x433),_0x401808[_0x401808[_0x4a9685(0x4be)]=-0x1]='UNRECOGNIZED',_0x401808))(ie||{}),G=(_0x5a2263=>(_0x5a2263[_0x5a2263[_0x4a9685(0x41d)]=0x0]=_0x4a9685(0x41d),_0x5a2263[_0x5a2263[_0x4a9685(0x3f5)]=0x1]=_0x4a9685(0x3f5),_0x5a2263[_0x5a2263[_0x4a9685(0x1d3)]=0x2]=_0x4a9685(0x1d3),_0x5a2263[_0x5a2263[_0x4a9685(0x5c2)]=0x3]=_0x4a9685(0x5c2),_0x5a2263[_0x5a2263['INGEST']=0x4]=_0x4a9685(0x3a1),_0x5a2263[_0x5a2263['HEARTBEAT']=0x5]='HEARTBEAT',_0x5a2263[_0x5a2263['RECV']=0x6]=_0x4a9685(0x52e),_0x5a2263[_0x5a2263[_0x4a9685(0x4be)]=-0x1]=_0x4a9685(0x4be),_0x5a2263))(G||{}),Et=(_0x201fc0=>(_0x201fc0[_0x201fc0[_0x4a9685(0x57d)]=0x0]=_0x4a9685(0x57d),_0x201fc0[_0x201fc0['OK']=0x1]='OK',_0x201fc0[_0x201fc0[_0x4a9685(0x5d6)]=0x2]='FAIL',_0x201fc0[_0x201fc0[_0x4a9685(0x4be)]=-0x1]=_0x4a9685(0x4be),_0x201fc0))(Et||{}),ln=(_0x2b63df=>(_0x2b63df[_0x2b63df[_0x4a9685(0x417)]=0x0]='Undefined',_0x2b63df[_0x2b63df[_0x4a9685(0x34c)]=0x1]=_0x4a9685(0x34c),_0x2b63df[_0x2b63df[_0x4a9685(0x4d2)]=0x2]=_0x4a9685(0x4d2),_0x2b63df[_0x2b63df['UnitEmbedded']=0x3]=_0x4a9685(0x3d4),_0x2b63df[_0x2b63df[_0x4a9685(0x1f3)]=0x4]=_0x4a9685(0x1f3),_0x2b63df[_0x2b63df[_0x4a9685(0x4be)]=-0x1]='UNRECOGNIZED',_0x2b63df))(ln||{});const te=_0x4a9685(0x322),zn={};function hn(_0x5d4e9a){const _0x44fe0d=_0x4a9685;var _0x1bb251,_0x77d156,_0x5640ef,_0x18756f,_0x33f382;const _0x2043eb=_0x5d4e9a[_0x44fe0d(0x18f)],_0x548b6f=JSON[_0x44fe0d(0x2af)](_0x2043eb);switch(_0x548b6f['cmd']){case G['HEARTBEAT']:case G[_0x44fe0d(0x3f5)]:{const _0x54fa60=_0x548b6f[_0x44fe0d(0x183)];return{..._0x548b6f,'data':_0x54fa60,'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};}case G[_0x44fe0d(0x1d3)]:{const _0x27bfb5=_0x548b6f['joinRsp'];return{..._0x548b6f,'data':_0x27bfb5,'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};}case G[_0x44fe0d(0x52e)]:{const _0x3cb4be=_0x548b6f[_0x44fe0d(0x5a5)];switch(_0x3cb4be['eventID']){case S[_0x44fe0d(0x35a)][_0x44fe0d(0x5d2)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':(_0x1bb251=_0x3cb4be['permissionRejEvent'])==null?void 0x0:_0x1bb251['cs']},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x272)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':(_0x77d156=_0x3cb4be['csAckEvent'])==null?void 0x0:_0x77d156['cs']},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x27c)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':(_0x5640ef=_0x3cb4be[_0x44fe0d(0x580)])==null?void 0x0:_0x5640ef['cs']},'cmd':_0x548b6f['cmd']};case S['CollaborationEvent']['CHANGESET_REJ']:return{..._0x548b6f,'data':{..._0x3cb4be,'data':(_0x18756f=_0x3cb4be['csRejEvent'])==null?void 0x0:_0x18756f['cs']},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)]['CHANGESET_SHOULD_RETRY']:return{..._0x548b6f,'data':{..._0x3cb4be,'data':(_0x33f382=_0x3cb4be[_0x44fe0d(0x5e0)])==null?void 0x0:_0x33f382['cs']},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x49a)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x5d9)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x1ec)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be['joinEvent']},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)]['USERS_LEAVE']:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x53f)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x1c9)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x4b3)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)]['LIVESHARE_FETCH_OPERATIONS']:case S[_0x44fe0d(0x35a)][_0x44fe0d(0x25d)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x474)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x283)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x4b3)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x42e)]:return{..._0x548b6f,'data':_0x3cb4be,'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)]['COMMENT_UPDATE']:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x425)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S['CollaborationEvent'][_0x44fe0d(0x347)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x285)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};case S[_0x44fe0d(0x35a)][_0x44fe0d(0x42b)]:return{..._0x548b6f,'data':{..._0x3cb4be,'data':_0x3cb4be[_0x44fe0d(0x4d0)]},'cmd':_0x548b6f[_0x44fe0d(0x5a3)]};default:return _0x548b6f;}}default:return _0x548b6f;}}function _n(_0x29ba33){const _0x307618=_0x4a9685;switch(_0x29ba33[_0x307618(0x5a3)]){case G[_0x307618(0x427)]:case G['HELLO']:return JSON[_0x307618(0x2d1)]({'cmd':_0x29ba33[_0x307618(0x5a3)],'routeKey':_0x29ba33[_0x307618(0x4f2)]});case G['INGEST']:{let _0x594013;switch(_0x29ba33['data'][_0x307618(0x3af)]){case S[_0x307618(0x35a)]['UPDATE_CURSOR']:{_0x594013={'eventID':S[_0x307618(0x35a)][_0x307618(0x49a)],'updateCursorEvent':_0x29ba33[_0x307618(0x18f)][_0x307618(0x18f)]};break;}case S[_0x307618(0x35a)][_0x307618(0x5c3)]:{_0x594013={'eventID':S['CollaborationEvent'][_0x307618(0x5c3)],'leaveEvent':_0x29ba33[_0x307618(0x18f)][_0x307618(0x18f)]};break;}case S[_0x307618(0x35a)][_0x307618(0x1ec)]:{_0x594013={'eventID':S[_0x307618(0x35a)]['USERS_ENTER'],'joinEvent':_0x29ba33[_0x307618(0x18f)][_0x307618(0x18f)]};break;}case S['CollaborationEvent'][_0x307618(0x1c9)]:{_0x594013={'eventID':S[_0x307618(0x35a)][_0x307618(0x1c9)],'liveShareNewHost':_0x29ba33['data'][_0x307618(0x18f)]};break;}case S[_0x307618(0x35a)][_0x307618(0x25d)]:{_0x594013={'eventID':S[_0x307618(0x35a)][_0x307618(0x25d)],'liveShareOperation':_0x29ba33[_0x307618(0x18f)]['data']};break;}case S[_0x307618(0x35a)]['LIVESHARE_TERMINATE']:{_0x594013={'eventID':S[_0x307618(0x35a)][_0x307618(0x283)],'liveShareTerminate':_0x29ba33[_0x307618(0x18f)][_0x307618(0x18f)]};break;}case S['CollaborationEvent'][_0x307618(0x32a)]:{_0x594013={'eventID':S[_0x307618(0x35a)][_0x307618(0x32a)],'liveShareRequestHost':_0x29ba33[_0x307618(0x18f)]['data']};break;}case S[_0x307618(0x35a)][_0x307618(0x40d)]:{_0x594013={'eventID':S[_0x307618(0x35a)]['LIVESHARE_FETCH_OPERATIONS']};break;}default:_0x594013={'eventID':_0x29ba33['data']['eventID']};}return JSON['stringify']({'cmd':_0x29ba33[_0x307618(0x5a3)],'routeKey':_0x29ba33[_0x307618(0x4f2)],'collaMsg':_0x594013});}case G[_0x307618(0x1d3)]:return JSON[_0x307618(0x2d1)]({'cmd':_0x29ba33[_0x307618(0x5a3)],'routeKey':_0x29ba33['routeKey'],'joinReq':_0x29ba33[_0x307618(0x18f)]});case G[_0x307618(0x5c2)]:return JSON['stringify']({'cmd':_0x29ba33[_0x307618(0x5a3)],'routeKey':_0x29ba33[_0x307618(0x4f2)],'leaveReq':_0x29ba33[_0x307618(0x18f)]});default:throw new Error(_0x307618(0x357));}}var Xn=Object[_0x4a9685(0x377)],Jn=Object[_0x4a9685(0x484)],Zn=(_0x1be594,_0x259c43,_0x1c13e3,_0x16ce22)=>{const _0x208297=_0x4a9685;for(var _0x9d7745=_0x16ce22>0x1?void 0x0:_0x16ce22?Jn(_0x259c43,_0x1c13e3):_0x259c43,_0x45033b=_0x1be594[_0x208297(0x530)]-0x1,_0x584ef3;_0x45033b>=0x0;_0x45033b--)(_0x584ef3=_0x1be594[_0x45033b])&&(_0x9d7745=(_0x16ce22?_0x584ef3(_0x259c43,_0x1c13e3,_0x9d7745):_0x584ef3(_0x9d7745))||_0x9d7745);return _0x16ce22&&_0x9d7745&&Xn(_0x259c43,_0x1c13e3,_0x9d7745),_0x9d7745;},we=(_0x3ebd51,_0x4115ee)=>(_0x136d2f,_0x538dc4)=>_0x4115ee(_0x136d2f,_0x538dc4,_0x3ebd51);const bt=a[_0x4a9685(0x1e3)](_0x4a9685(0x55f));function Qn(_0x20aba7,_0x4a42f7,_0x45f844){const _0x4531c1=_0x4a9685;return _0x20aba7+'/'+_0x4a42f7+_0x4531c1(0x33b)+_0x45f844+_0x4531c1(0x199);}exports[_0x4a9685(0x53c)]=class extends a[_0x4a9685(0x261)]{constructor(_0xecb7b,_0x1963c0,_0xfc0bb6,_0x2d7033,_0x1ee8cd){const _0xc8a667=_0x4a9685;super(),this[_0xc8a667(0x23d)]=_0xecb7b,this[_0xc8a667(0x3c1)]=_0x1963c0,this[_0xc8a667(0x294)]=_0xfc0bb6,this[_0xc8a667(0x480)]=_0x2d7033,this['_snapshotServerService']=_0x1ee8cd;}[_0x4a9685(0x332)](_0x19e762){const _0x70e249=_0x4a9685,_0x428da3=this['_ws'][_0x70e249(0x332)](_0x19e762);if(!_0x428da3)throw new Error(_0x70e249(0x1f6));const _0x5549f4=new a[(_0x70e249(0x4b2))](),_0x4fa8b8=new A[(_0x70e249(0x4c3))]();_0x5549f4[_0x70e249(0x42a)](_0x428da3['close$'][_0x70e249(0x419)](_0x617ecc=>_0x4fa8b8['next'](_0x617ecc))),_0x5549f4[_0x70e249(0x42a)](a['toDisposable'](()=>_0x4fa8b8[_0x70e249(0x2f7)]()));const _0x231723=new A[(_0x70e249(0x4c3))]();_0x5549f4[_0x70e249(0x42a)](_0x428da3[_0x70e249(0x37c)]['subscribe'](_0xb183ce=>_0x231723['next'](_0xb183ce))),_0x5549f4[_0x70e249(0x42a)](a[_0x70e249(0x4fd)](()=>_0x231723['complete']()));const _0x25253c=new A[(_0x70e249(0x4c3))]();_0x5549f4[_0x70e249(0x42a)](_0x428da3[_0x70e249(0x1cf)][_0x70e249(0x419)](_0x1cb8f7=>{const _0x3e40d3=hn(_0x1cb8f7);_0x25253c['next'](_0x3e40d3);})),_0x5549f4[_0x70e249(0x42a)](a['toDisposable'](()=>_0x25253c[_0x70e249(0x2f7)]()));let _0x230ad1;const _0x32e2a7=()=>{const _0x94e3ca=_0x70e249;_0x231723[_0x94e3ca(0x503)](new Event(_0x94e3ca(0x182))),_0x4fa8b8[_0x94e3ca(0x503)](new CloseEvent(_0x94e3ca(0x182))),_0x230ad1[_0x94e3ca(0x176)]();};return _0x230ad1={'memberID':'','close$':_0x4fa8b8['asObservable'](),'error$':_0x231723[_0x70e249(0x135)](),'open$':_0x428da3[_0x70e249(0x5d5)],'message$':_0x25253c[_0x70e249(0x135)](),'send':_0x6e4dc=>{const _0x267ebf=_0x70e249;if(_0x6e4dc[_0x267ebf(0x5a3)]===G[_0x267ebf(0x3a1)]){if(_0x6e4dc['data'][_0x267ebf(0x3af)]===S[_0x267ebf(0x35a)][_0x267ebf(0x5eb)]){this[_0x267ebf(0x26f)](_0x230ad1,_0x6e4dc['data'])['catch'](_0x3a00ff=>{const _0x4e2661=_0x267ebf;this[_0x4e2661(0x480)][_0x4e2661(0x3d8)](_0x3a00ff),_0x32e2a7();});return;}if(_0x6e4dc[_0x267ebf(0x18f)][_0x267ebf(0x3af)]===S[_0x267ebf(0x35a)][_0x267ebf(0x2b4)]){const _0x12c3a9=_0x6e4dc[_0x267ebf(0x18f)];this[_0x267ebf(0x4a4)](_0x12c3a9)['then'](_0x430cc1=>{const _0x5007b4=_0x267ebf;_0x25253c['next']({'cmd':G[_0x5007b4(0x52e)],'code':Et['OK'],'routeKey':_0x12c3a9['data'][_0x5007b4(0x197)],'routeType':'','data':{'eventID':S[_0x5007b4(0x35a)][_0x5007b4(0x47b)],'data':{'changesets':_0x430cc1}}});})[_0x267ebf(0x4f9)](_0x5c35fa=>{const _0x2adf3d=_0x267ebf;this[_0x2adf3d(0x480)][_0x2adf3d(0x3d8)](_0x5c35fa),_0x32e2a7();});return;}}_0x428da3[_0x267ebf(0x170)](_n(_0x6e4dc));},'close':()=>{const _0x5569d7=_0x70e249;_0x428da3[_0x5569d7(0x176)](),_0x5549f4[_0x5569d7(0x1d7)]();}},_0x230ad1;}async[_0x4a9685(0x26f)](_0x5d1567,_0x7df8b0){const _0x10b6df=_0x4a9685;var _0x4018b1,_0x151791;const {unitType:_0x6ed9ea,unitID:_0x263e72,changeset:_0x9f83c2}=_0x7df8b0[_0x10b6df(0x18f)],_0x154d36={'unitID':_0x263e72,'memberID':_0x5d1567[_0x10b6df(0x1e5)],'type':_0x6ed9ea,'changeset':S[_0x10b6df(0x424)](_0x9f83c2)},_0xc4d8ab=this['_configService'][_0x10b6df(0x4a1)](on),_0x4a4220=this[_0x10b6df(0x294)][_0x10b6df(0x4a1)](te),_0x3200dd=Qn((_0x151791=(_0x4018b1=_0x4a4220==null?void 0x0:_0x4a4220['collabSubmitChangesetUrl'])!=null?_0x4018b1:_0xc4d8ab)!=null?_0x151791:Kn,_0x6ed9ea,_0x263e72);try{await this[_0x10b6df(0x23d)][_0x10b6df(0x171)](_0x3200dd,{'body':_0x154d36});}catch(_0x1b7e84){throw this[_0x10b6df(0x480)][_0x10b6df(0x3d8)](_0x10b6df(0x404),_0x10b6df(0x165)),_0x1b7e84;}}async['_fetchMissChangesets'](_0x2dc864){const _0x2ae173=_0x4a9685,{unitID:_0x5b0ee0,from:_0x571f2a,to:_0x37849b,unitType:_0xb295d9}=_0x2dc864[_0x2ae173(0x18f)];return(await this['_snapshotServerService']['fetchMissingChangesets']({'metadata':void 0x0},{'unitID':_0x5b0ee0,'type':_0xb295d9,'from':_0x571f2a,'to':_0x37849b}))[_0x2ae173(0x2c1)];}},exports[_0x4a9685(0x53c)]=Zn([we(0x0,a[_0x4a9685(0x27a)](Z['HTTPService'])),we(0x1,a[_0x4a9685(0x27a)](Z['WebSocketService'])),we(0x2,a[_0x4a9685(0x3fb)]),we(0x3,a[_0x4a9685(0x2e8)]),we(0x4,S[_0x4a9685(0x188)])],exports['CollaborationSocketService']);const ei='collaboration_new_changeset';function ti(_0x1f671c){const _0x34b9ac=_0x4a9685;return JSON[_0x34b9ac(0x2d1)](_0x1f671c)[_0x34b9ac(0x530)];}class Tt{constructor(){const _0x232f63=_0x4a9685;I(this,_0x232f63(0x262),new A['Subject']()),I(this,'commentUpdate$',this['_commentUpdate$'][_0x232f63(0x135)]());}[_0x4a9685(0x26e)](_0x444124){const _0x5c24c9=_0x4a9685;this['_commentUpdate$'][_0x5c24c9(0x503)](_0x444124);}}var ni=Object[_0x4a9685(0x377)],ii=Object[_0x4a9685(0x484)],si=(_0x50d48a,_0x36e93f,_0x7de9a9,_0x5dacec)=>{const _0x5969e0=_0x4a9685;for(var _0x13c0c7=_0x5dacec>0x1?void 0x0:_0x5dacec?ii(_0x36e93f,_0x7de9a9):_0x36e93f,_0x1eaf5b=_0x50d48a[_0x5969e0(0x530)]-0x1,_0x1d19a9;_0x1eaf5b>=0x0;_0x1eaf5b--)(_0x1d19a9=_0x50d48a[_0x1eaf5b])&&(_0x13c0c7=(_0x5dacec?_0x1d19a9(_0x36e93f,_0x7de9a9,_0x13c0c7):_0x1d19a9(_0x13c0c7))||_0x13c0c7);return _0x5dacec&&_0x13c0c7&&ni(_0x36e93f,_0x7de9a9,_0x13c0c7),_0x13c0c7;},Ut=(_0x6f5f68,_0x223f89)=>(_0x104f65,_0x5ac08e)=>_0x223f89(_0x104f65,_0x5ac08e,_0x6f5f68);exports[_0x4a9685(0x3e1)]=class extends a['Disposable']{constructor(_0x129b6b,_0x4ed26b){const _0x403638=_0x4a9685;super(),I(this,_0x403638(0x59c),new Map()),(this[_0x403638(0x54a)]=_0x129b6b,this[_0x403638(0x31f)]=_0x4ed26b,this['disposeWithMe'](a[_0x403638(0x4fd)](A[_0x403638(0x345)](this['_univerInstanceService'][_0x403638(0x388)](a['UniverInstanceType']['UNIVER_SHEET'])['pipe'](V[_0x403638(0x28a)](_0x3f753e=>_0x3f753e[_0x403638(0x56f)]())),this['_univerInstanceService']['getTypeOfUnitDisposed$'](a[_0x403638(0x33e)][_0x403638(0x22a)])[_0x403638(0x172)](V['map'](_0x42744c=>_0x42744c[_0x403638(0x56f)]())),this[_0x403638(0x54a)][_0x403638(0x388)](a[_0x403638(0x33e)]['UNIVER_SLIDE'])['pipe'](V[_0x403638(0x28a)](_0x24056b=>_0x24056b[_0x403638(0x56f)]())))[_0x403638(0x419)](_0x358881=>this[_0x403638(0x1cc)](_0x358881)))));}[_0x4a9685(0x14d)](_0x5e402f){const _0x4d834e=_0x4a9685;this[_0x4d834e(0x31f)][_0x4d834e(0x14d)](_0x5e402f);}[_0x4a9685(0x459)](){const _0x213715=_0x4a9685;return this[_0x213715(0x31f)][_0x213715(0x459)]();}['updateMember'](_0x348313,_0x3b3bf1){const _0x248f54=_0x4a9685;let _0x3710bf=this[_0x248f54(0x59c)]['get'](_0x348313);_0x3710bf||(_0x3710bf=new ri(),this[_0x248f54(0x59c)]['set'](_0x348313,_0x3710bf)),_0x3710bf['updateMember'](_0x3b3bf1);}['removeMember'](_0x255bd7,_0x182056){const _0x1ddfe9=_0x4a9685,_0x4a7aa9=this['_roomMembers'][_0x1ddfe9(0x542)](_0x255bd7);_0x4a7aa9&&_0x4a7aa9[_0x1ddfe9(0x1de)](_0x182056);}[_0x4a9685(0x1c2)](_0x35e715){const _0x4af77=_0x4a9685;return this['_roomMembers'][_0x4af77(0x542)](_0x35e715);}['getMember'](_0x15d990,_0x10d825){const _0x234c5c=_0x4a9685,_0x216696=this['_roomMembers'][_0x234c5c(0x542)](_0x15d990);if(_0x216696)return _0x216696[_0x234c5c(0x5a6)](_0x10d825);}['_removeRoom'](_0x19fe95){const _0x1603bd=_0x4a9685,_0x392016=this[_0x1603bd(0x59c)][_0x1603bd(0x542)](_0x19fe95);_0x392016&&(_0x392016['dispose'](),this[_0x1603bd(0x59c)][_0x1603bd(0x224)](_0x19fe95));}['dispose'](){const _0x200158=_0x4a9685;this[_0x200158(0x59c)][_0x200158(0x38f)](_0x317ed0=>_0x317ed0[_0x200158(0x1d7)]()),this[_0x200158(0x59c)]['clear']();}},exports['MemberService']=si([Ut(0x0,a[_0x4a9685(0x3c5)]),Ut(0x1,a[_0x4a9685(0x27a)](a['UserManagerService']))],exports[_0x4a9685(0x3e1)]);class ri extends a[_0x4a9685(0x261)]{constructor(){const _0x46fd7f=_0x4a9685;super(...arguments),I(this,_0x46fd7f(0x143),new Map());}[_0x4a9685(0x1d7)](){const _0x38eceb=_0x4a9685;this[_0x38eceb(0x143)][_0x38eceb(0x271)]();}[_0x4a9685(0x31e)](_0x43e870){const _0x14723a=_0x4a9685;this[_0x14723a(0x143)][_0x14723a(0x568)](_0x43e870['memberID'],_0x43e870);}[_0x4a9685(0x1de)](_0x332ce9){const _0x3e55f7=_0x4a9685;this[_0x3e55f7(0x143)][_0x3e55f7(0x224)](_0x332ce9);}[_0x4a9685(0x5a6)](_0x118388){const _0xabdc51=_0x4a9685;return this['_members'][_0xabdc51(0x542)](_0x118388);}[_0x4a9685(0x2c0)](){const _0x5225dc=_0x4a9685;return Array[_0x5225dc(0x239)](this[_0x5225dc(0x143)]['values']());}}var oi=Object[_0x4a9685(0x377)],ai=Object[_0x4a9685(0x484)],ci=(_0x39ac44,_0x563e19,_0x50ab2e,_0x34cdbe)=>{const _0x48bd85=_0x4a9685;for(var _0x1bf32f=_0x34cdbe>0x1?void 0x0:_0x34cdbe?ai(_0x563e19,_0x50ab2e):_0x563e19,_0x1f515e=_0x39ac44[_0x48bd85(0x530)]-0x1,_0x50b5f2;_0x1f515e>=0x0;_0x1f515e--)(_0x50b5f2=_0x39ac44[_0x1f515e])&&(_0x1bf32f=(_0x34cdbe?_0x50b5f2(_0x563e19,_0x50ab2e,_0x1bf32f):_0x50b5f2(_0x1bf32f))||_0x1bf32f);return _0x34cdbe&&_0x1bf32f&&oi(_0x563e19,_0x50ab2e,_0x1bf32f),_0x1bf32f;},de=(_0x240b38,_0x377456)=>(_0x4a948c,_0x5266f0)=>_0x377456(_0x4a948c,_0x5266f0,_0x240b38),se=(_0x23278c=>(_0x23278c[_0x23278c[_0x4a9685(0x3a0)]=0x0]=_0x4a9685(0x3a0),_0x23278c[_0x23278c['JOINING']=0x1]=_0x4a9685(0x543),_0x23278c[_0x23278c['OFFLINE']=0x2]=_0x4a9685(0x338),_0x23278c[_0x23278c[_0x4a9685(0x244)]=0x3]=_0x4a9685(0x244),_0x23278c))(se||{});exports[_0x4a9685(0x2d2)]=class extends a[_0x4a9685(0x2c7)]{constructor(_0x257ed3,_0xa5032a,_0x1cc9bd,_0x574612,_0x3759e2,_0xe42d43,_0x4dbefa,_0x1ccbc7,_0x27f264,_0x4f7639){const _0x4ac145=_0x4a9685;super(),I(this,_0x4ac145(0x138),new A[(_0x4ac145(0x563))](0x0)),I(this,_0x4ac145(0x44d),this[_0x4ac145(0x138)][_0x4ac145(0x135)]()),I(this,_0x4ac145(0x50b),new A[(_0x4ac145(0x4c3))]()),I(this,_0x4ac145(0x297),this[_0x4ac145(0x50b)][_0x4ac145(0x135)]()),I(this,_0x4ac145(0x2ef)),I(this,_0x4ac145(0x3df)),I(this,_0x4ac145(0x405)),I(this,_0x4ac145(0x5b5),!0x1),I(this,_0x4ac145(0x33f),null),(this[_0x4ac145(0x18a)]=_0x257ed3,this[_0x4ac145(0x480)]=_0x1cc9bd,this[_0x4ac145(0x5b8)]=_0x574612,this[_0x4ac145(0x3a7)]=_0x3759e2,this['_configService']=_0xe42d43,this['_localeService']=_0x4dbefa,this[_0x4ac145(0x1f9)]=_0x1ccbc7,this[_0x4ac145(0x346)]=_0x27f264,this[_0x4ac145(0x1d9)]=_0x4f7639,this[_0x4ac145(0x5b5)]=!!this[_0x4ac145(0x1d9)],_0xa5032a[_0x4ac145(0x172)](A[_0x4ac145(0x5e8)](this['dispose$']))['subscribe'](_0x1c0cb5=>{const _0x198fa6=_0x4ac145;var _0x33f8db;typeof _0x1c0cb5>'u'||(this[_0x198fa6(0x2ef)]=_0x1c0cb5,_0x1c0cb5?(this[_0x198fa6(0x260)](_0x1c0cb5),this['_socketMessageSubscription']=_0x1c0cb5[_0x198fa6(0x1cf)][_0x198fa6(0x419)](_0x208027=>{const _0x3b023b=_0x198fa6;_0x208027[_0x3b023b(0x4f2)]===this[_0x3b023b(0x18a)]&&this[_0x3b023b(0x59f)](_0x208027);})):(this[_0x198fa6(0x1b7)](),this['_sessionStatus$']['next'](0x2),(_0x33f8db=this['_socketMessageSubscription'])==null||_0x33f8db['unsubscribe'](),this[_0x198fa6(0x3df)]=null));}),this[_0x4ac145(0x3c7)](this[_0x4ac145(0x5b8)][_0x4ac145(0x281)](()=>{const _0x1c60df=_0x4ac145;var _0x2ee6a1;(_0x2ee6a1=this['_socket'])==null||_0x2ee6a1[_0x1c60df(0x170)]({'cmd':G[_0x1c60df(0x5c2)],'data':{'roomID':this[_0x1c60df(0x18a)]}});})));}get['sessionStatus'](){const _0x257c7c=_0x4a9685;return this[_0x257c7c(0x138)][_0x257c7c(0x1ae)]();}[_0x4a9685(0x204)](){const _0x3bd8bf=_0x4a9685;var _0x169532,_0x3691ab;return(_0x3691ab=(_0x169532=this['_socket'])==null?void 0x0:_0x169532[_0x3bd8bf(0x1e5)])!=null?_0x3691ab:null;}['dispose'](){const _0x534565=_0x4a9685;super[_0x534565(0x1d7)](),this[_0x534565(0x5c9)][_0x534565(0x503)](),this['dispose$']['complete']();}['close'](){const _0x25a19f=_0x4a9685;var _0x45a88a,_0xcddd46;this[_0x25a19f(0x1b7)](),(_0x45a88a=this[_0x25a19f(0x2ef)])==null||_0x45a88a[_0x25a19f(0x170)]({'cmd':G['LEAVE'],'data':{'roomID':this[_0x25a19f(0x18a)]}}),(_0xcddd46=this[_0x25a19f(0x2ef)])==null||_0xcddd46[_0x25a19f(0x176)](),this[_0x25a19f(0x50b)][_0x25a19f(0x2f7)](),this[_0x25a19f(0x138)][_0x25a19f(0x2f7)](),this[_0x25a19f(0x1d7)]();}[_0x4a9685(0x59f)](_0x461e28){const _0xca78b3=_0x4a9685;_0x461e28['cmd']===G[_0xca78b3(0x1d3)]?this[_0xca78b3(0x58c)](_0x461e28):_0x461e28[_0xca78b3(0x5a3)]===G[_0xca78b3(0x52e)]&&this[_0xca78b3(0x479)](_0x461e28);}[_0x4a9685(0x260)](_0x207b69){const _0x3363b4=_0x4a9685;this[_0x3363b4(0x138)][_0x3363b4(0x503)](0x1),_0x207b69[_0x3363b4(0x170)]({'cmd':G[_0x3363b4(0x1d3)],'routeKey':this[_0x3363b4(0x18a)],'routeType':'','data':{'rooms':[{'roomID':this[_0x3363b4(0x18a)]}]}});}['_onJoinRoomEvent'](_0x2010d8){const _0x509920=_0x4a9685;var _0x4739e1;if(_0x2010d8['code']===Et[_0x509920(0x5d6)]){this['_messageService'][_0x509920(0x36b)]({'type':ge['MessageType'][_0x509920(0x174)],'content':this[_0x509920(0x39c)]['t']('session.room-full')}),this[_0x509920(0x138)][_0x509920(0x503)](0x2);return;}this['_sessionStatus$']['next'](0x3);const _0x6eb6f9=(_0x4739e1=_0x2010d8[_0x509920(0x18f)]['roomInfos'][this[_0x509920(0x18a)]])==null?void 0x0:_0x4739e1[_0x509920(0x1e4)];_0x6eb6f9&&_0x6eb6f9[_0x509920(0x38f)](_0x192297=>this['_memberService'][_0x509920(0x31e)](this['_unitID'],_0x192297));}[_0x4a9685(0x479)](_0x293577){const _0x2cf106=_0x4a9685;try{const _0x557abd=_0x293577[_0x2cf106(0x18f)];switch(_0x557abd[_0x2cf106(0x3af)]){case S[_0x2cf106(0x35a)][_0x2cf106(0x1ec)]:this[_0x2cf106(0x34a)](_0x557abd),this[_0x2cf106(0x50b)][_0x2cf106(0x503)](_0x557abd);break;case S[_0x2cf106(0x35a)][_0x2cf106(0x5c3)]:this['_onUserLeave'](_0x557abd),this[_0x2cf106(0x50b)]['next'](_0x557abd);break;case S['CollaborationEvent']['CHANGESET_ACK']:case S[_0x2cf106(0x35a)][_0x2cf106(0x398)]:this[_0x2cf106(0x5ac)](),this['_clearCollaborationTimeoutTimer'](),this['_event$'][_0x2cf106(0x503)](_0x557abd);break;case S[_0x2cf106(0x35a)][_0x2cf106(0x42e)]:this[_0x2cf106(0x480)][_0x2cf106(0x3d8)]('save\x20fail\x20reason\x20is\x20'+JSON[_0x2cf106(0x2d1)](_0x557abd)),this[_0x2cf106(0x50b)][_0x2cf106(0x503)](_0x557abd);break;case S[_0x2cf106(0x35a)][_0x2cf106(0x38a)]:this['_commentService'][_0x2cf106(0x26e)](_0x557abd[_0x2cf106(0x18f)]),this[_0x2cf106(0x50b)][_0x2cf106(0x503)](_0x557abd);break;default:this['_event$'][_0x2cf106(0x503)](_0x557abd);}}catch(_0x4d1e7f){this[_0x2cf106(0x480)]['error'](_0x4d1e7f,_0x293577);}}['_onUserJoin'](_0x16a835){const _0x2b2812=_0x4a9685;this['_memberService'][_0x2b2812(0x31e)](this[_0x2b2812(0x18a)],_0x16a835[_0x2b2812(0x18f)]);}[_0x4a9685(0x31b)](_0x2aefb0){const _0x16a645=_0x4a9685;this[_0x16a645(0x1f9)][_0x16a645(0x1de)](this['_unitID'],_0x2aefb0[_0x16a645(0x18f)][_0x16a645(0x1e5)]);}async[_0x4a9685(0x170)](_0x26628d,_0x385c69){const _0x225509=_0x4a9685;if(this[_0x225509(0x450)]!==0x3||!this['_socket'])throw new Error(_0x225509(0x515));try{_0x26628d[_0x225509(0x3af)]===S[_0x225509(0x35a)]['SUBMIT_CHANGESET']&&(this[_0x225509(0x28f)](),this[_0x225509(0x548)](_0x26628d)),this['_socket']['send']({'cmd':G[_0x225509(0x3a1)],'routeKey':_0x385c69,'routeType':'','data':_0x26628d});}catch(_0x246136){this['_logService'][_0x225509(0x3d8)](_0x246136);}}[_0x4a9685(0x28f)](){const _0x43438e=_0x4a9685;var _0x1cf6ce;this['_collaborationTimeoutTimer']=window[_0x43438e(0x595)](()=>{const _0x187d0b=_0x43438e;this[_0x187d0b(0x405)]=null,this['_messageService']['show']({'type':ge[_0x187d0b(0x2e3)][_0x187d0b(0x2d0)],'content':this[_0x187d0b(0x39c)]['t']('session.collaboration-timeout')});},(_0x1cf6ce=this['_configService'][_0x43438e(0x4a1)](Ct))!=null?_0x1cf6ce:nn);}[_0x4a9685(0x278)](){const _0x5aece3=_0x4a9685;this['_collaborationTimeoutTimer']&&(clearTimeout(this[_0x5aece3(0x405)]),this[_0x5aece3(0x405)]=null);}['_startTelemetryCollaborationNewChangeset'](_0x54a588){const _0x4275e3=_0x4a9685;if(!this[_0x4275e3(0x5b5)])return;const {data:_0x204a6d}=_0x54a588,{unitID:_0x1d8ec2,changeset:_0x3548c1}=_0x204a6d,{mutations:_0x4e2931,type:_0xb7aea7}=_0x3548c1;this[_0x4275e3(0x33f)]={'unitId':_0x1d8ec2,'type':_0xb7aea7,'startTime':performance['now'](),'stopTime':0x0,'duration':0x0,'size':ti(_0x4e2931)};}[_0x4a9685(0x5ac)](){const _0x3f6353=_0x4a9685;if(this[_0x3f6353(0x5b5)]){if(!this[_0x3f6353(0x33f)]){this[_0x3f6353(0x480)][_0x3f6353(0x3d8)](_0x3f6353(0x404),_0x3f6353(0x157));return;}this['_telemetryInfo'][_0x3f6353(0x26c)]=performance[_0x3f6353(0x358)](),this[_0x3f6353(0x33f)][_0x3f6353(0x301)]=this[_0x3f6353(0x33f)][_0x3f6353(0x26c)]-this['_telemetryInfo'][_0x3f6353(0x5ab)],this[_0x3f6353(0x1d9)][_0x3f6353(0x15a)](ei,this['_telemetryInfo']),this[_0x3f6353(0x33f)]=null;}}[_0x4a9685(0x1b7)](){this['_telemetryInfo']=null;}},exports['CollaborationSession']=ci([de(0x2,a[_0x4a9685(0x2e8)]),de(0x3,ee['IBeforeCloseService']),de(0x4,ee[_0x4a9685(0x27d)]),de(0x5,a[_0x4a9685(0x3fb)]),de(0x6,a['Inject'](a[_0x4a9685(0x4a8)])),de(0x7,a[_0x4a9685(0x27a)](exports['MemberService'])),de(0x8,a[_0x4a9685(0x27a)](Tt)),de(0x9,a[_0x4a9685(0x59b)](jn[_0x4a9685(0x483)]))],exports[_0x4a9685(0x2d2)]);var li=Object[_0x4a9685(0x377)],hi=Object['getOwnPropertyDescriptor'],_i=(_0xeeea51,_0x128b59,_0x2e14a8,_0x12327a)=>{const _0x2468b9=_0x4a9685;for(var _0x5ac518=_0x12327a>0x1?void 0x0:_0x12327a?hi(_0x128b59,_0x2e14a8):_0x128b59,_0x1b1799=_0xeeea51[_0x2468b9(0x530)]-0x1,_0x57ac1e;_0x1b1799>=0x0;_0x1b1799--)(_0x57ac1e=_0xeeea51[_0x1b1799])&&(_0x5ac518=(_0x12327a?_0x57ac1e(_0x128b59,_0x2e14a8,_0x5ac518):_0x57ac1e(_0x5ac518))||_0x5ac518);return _0x12327a&&_0x5ac518&&li(_0x128b59,_0x2e14a8,_0x5ac518),_0x5ac518;},Ee=(_0x1db3c5,_0x4a61df)=>(_0x4d36c0,_0x498cfa)=>_0x4a61df(_0x4d36c0,_0x498cfa,_0x1db3c5);exports['CollaborationSessionService']=class extends a[_0x4a9685(0x261)]{constructor(_0x11fd66,_0x15e69a,_0x1f15f7,_0x5e66a6,_0x264414,_0x2a514f){const _0x4edd9c=_0x4a9685;super(),I(this,_0x4edd9c(0x491),new A[(_0x4edd9c(0x563))](void 0x0)),I(this,_0x4edd9c(0x495),this['_socket$'][_0x4edd9c(0x135)]()),I(this,_0x4edd9c(0x2d4),null),I(this,'_sessions',new Map()),I(this,'_status$',new A[(_0x4edd9c(0x563))](se[_0x4edd9c(0x3a0)])),I(this,_0x4edd9c(0x4ba),this[_0x4edd9c(0x366)]['asObservable']()),I(this,_0x4edd9c(0x392),!0x1),I(this,_0x4edd9c(0x3c9)),I(this,_0x4edd9c(0x4f1),0x0),I(this,_0x4edd9c(0x349)),I(this,'_timeoutTimer'),(this[_0x4edd9c(0x372)]=_0x11fd66,this[_0x4edd9c(0x39c)]=_0x15e69a,this[_0x4edd9c(0x3a7)]=_0x1f15f7,this[_0x4edd9c(0x480)]=_0x5e66a6,this[_0x4edd9c(0x294)]=_0x264414,this[_0x4edd9c(0x48b)]=_0x2a514f,this[_0x4edd9c(0x39f)]());}get[_0x4a9685(0x2ef)](){const _0x1b9ee5=_0x4a9685;return this['_socket$'][_0x1b9ee5(0x1ae)]();}[_0x4a9685(0x39f)](){const _0x3d7d2c=_0x4a9685;this[_0x3d7d2c(0x57b)](),this['_listenToOnlineEvent']();}[_0x4a9685(0x1d7)](){const _0x53f35d=_0x4a9685;super['dispose'](),this[_0x53f35d(0x577)][_0x53f35d(0x38f)](_0x2f9b6d=>_0x2f9b6d[_0x53f35d(0x1d7)]()),this[_0x53f35d(0x577)]['clear'](),this[_0x53f35d(0x366)][_0x53f35d(0x2f7)]();}async[_0x4a9685(0x461)](_0x4eeb6c){const _0x1f63f3=_0x4a9685;if(this[_0x1f63f3(0x577)]['has'](_0x4eeb6c))return this[_0x1f63f3(0x577)][_0x1f63f3(0x542)](_0x4eeb6c);this[_0x1f63f3(0x160)]();const _0x206205=this[_0x1f63f3(0x372)]['createInstance'](exports['CollaborationSession'],_0x4eeb6c,this[_0x1f63f3(0x491)][_0x1f63f3(0x135)]());return this[_0x1f63f3(0x577)]['set'](_0x4eeb6c,_0x206205),_0x206205;}['closeSession'](_0xe6278e){const _0x14a245=_0x4a9685;var _0x31cd7f;const _0x3bccf9=this[_0x14a245(0x577)][_0x14a245(0x542)](_0xe6278e);_0x3bccf9&&(this[_0x14a245(0x577)]['delete'](_0xe6278e),_0x3bccf9['close']()),this[_0x14a245(0x577)][_0x14a245(0x2d6)]||(_0x31cd7f=this['_socket'])==null||_0x31cd7f[_0x14a245(0x176)]();}[_0x4a9685(0x24a)](){const _0x55eca2=_0x4a9685;this[_0x55eca2(0x4f1)]=0x0,this['_retryConnectingTimer']!=null&&(clearTimeout(this[_0x55eca2(0x3c9)]),this['_retryConnectingTimer']=null),this[_0x55eca2(0x24c)]();}[_0x4a9685(0x1b3)](){const _0x2c5e23=_0x4a9685;var _0xddd346,_0x40b1a0;const _0x44e80a=this[_0x2c5e23(0x294)]['getConfig'](en),_0xd7ef34=this[_0x2c5e23(0x294)][_0x2c5e23(0x4a1)](te),_0x2f621c=(_0x40b1a0=(_0xddd346=_0xd7ef34==null?void 0x0:_0xd7ef34[_0x2c5e23(0x253)])!=null?_0xddd346:_0x44e80a)!=null?_0x40b1a0:Wn,_0x1702d8=this[_0x2c5e23(0x48b)][_0x2c5e23(0x332)](_0x2f621c);return this[_0x2c5e23(0x2d4)]=_0x1702d8,_0x1702d8;}['_tryEnsureSocket'](){const _0x4c5249=_0x4a9685;var _0x48c4d5,_0x14b36d;try{const _0x26a5f4=(_0x14b36d=(_0x48c4d5=this['_socket'])!=null?_0x48c4d5:this[_0x4c5249(0x2d4)])!=null?_0x14b36d:this[_0x4c5249(0x1b3)]();if(_0x26a5f4){const _0x805f17=_0x26a5f4[_0x4c5249(0x170)];_0x26a5f4[_0x4c5249(0x170)]=_0x3fdb26=>(this['_rescheduleHeartbeat'](),_0x805f17['apply'](_0x26a5f4,[_0x3fdb26])),_0x26a5f4[_0x4c5249(0x1cf)][_0x4c5249(0x419)](_0x41417b=>this['_onMessage'](_0x26a5f4,_0x41417b)),_0x26a5f4[_0x4c5249(0x37c)]['pipe'](V[_0x4c5249(0x3a5)](0x1))['subscribe'](_0x36da5e=>this[_0x4c5249(0x480)]['error'](_0x4c5249(0x37e),_0x36da5e)),_0x26a5f4[_0x4c5249(0x5d5)][_0x4c5249(0x172)](V[_0x4c5249(0x3a5)](0x1))['subscribe'](()=>{this['_onConnectionOpen'](_0x26a5f4);}),_0x26a5f4['close$']['pipe'](V[_0x4c5249(0x3a5)](0x1))[_0x4c5249(0x419)](_0x2d05c8=>{const _0x1ba83b=_0x4c5249;this[_0x1ba83b(0x480)][_0x1ba83b(0x37a)](_0x1ba83b(0x25a),'socket\x20close',_0x2d05c8),this['_onConnectionFailed']();});}}catch(_0x4598fd){this[_0x4c5249(0x480)][_0x4c5249(0x3d8)](_0x4598fd),this[_0x4c5249(0x254)]();}}[_0x4a9685(0x408)](_0x7636c3){const _0x5dd8df=_0x4a9685;this[_0x5dd8df(0x480)][_0x5dd8df(0x37a)](_0x5dd8df(0x25a),_0x5dd8df(0x56d)),_0x7636c3[_0x5dd8df(0x170)]({'cmd':G[_0x5dd8df(0x3f5)]}),this[_0x5dd8df(0x4fb)]();}[_0x4a9685(0x57b)](){const _0x41b34d=_0x4a9685;window[_0x41b34d(0x368)](_0x41b34d(0x277),()=>this[_0x41b34d(0x263)]());}[_0x4a9685(0x263)](){const _0x411675=_0x4a9685;this[_0x411675(0x392)]=!0x1,this[_0x411675(0x2d4)]=null,this[_0x411675(0x366)][_0x411675(0x503)](se[_0x411675(0x338)]),this[_0x411675(0x491)][_0x411675(0x503)](null),this[_0x411675(0x299)](),this[_0x411675(0x33c)]();}[_0x4a9685(0x254)](){const _0x247087=_0x4a9685;var _0x1b5153;this[_0x247087(0x263)](),this[_0x247087(0x4f1)]<((_0x1b5153=this[_0x247087(0x294)]['getConfig'](sn))!=null?_0x1b5153:Gn)?(this['_messageService'][_0x247087(0x36b)]({'key':'collaboration-session-retry','type':ge[_0x247087(0x2e3)][_0x247087(0x174)],'content':this[_0x247087(0x39c)]['t'](_0x247087(0x573))}),this[_0x247087(0x24c)]()):this[_0x247087(0x3a7)][_0x247087(0x36b)]({'key':_0x247087(0x508),'type':ge[_0x247087(0x2e3)][_0x247087(0x2d0)],'content':this[_0x247087(0x39c)]['t'](_0x247087(0x386))});}[_0x4a9685(0x2bb)](){const _0x496128=_0x4a9685,_0x2d4207=()=>{const _0xa80011=_0x5f2c;this['_socket']||this[_0xa80011(0x24a)]();},_0xa65b88=()=>{const _0x539a9d=_0x5f2c;this[_0x539a9d(0x2ef)]||document[_0x539a9d(0x361)]===_0x539a9d(0x15b)||this['reconnect']();};window['addEventListener']('online',_0x2d4207),document[_0x496128(0x368)](_0x496128(0x2dc),_0xa65b88);}['_tryReconnect'](){const _0x5a8269=_0x4a9685;var _0x4d05a3;const _0x350b32=this['_retryCount'],_0x5e2a5a=this[_0x5a8269(0x294)][_0x5a8269(0x4a1)](te),_0x1d87bc=_0x350b32===0x0?0x0:((_0x4d05a3=_0x5e2a5a==null?void 0x0:_0x5e2a5a[_0x5a8269(0x295)])!=null?_0x4d05a3:Vn)*0x2**_0x350b32;this[_0x5a8269(0x3c9)]=window[_0x5a8269(0x595)](()=>{const _0x709bc8=_0x5a8269;clearTimeout(this[_0x709bc8(0x3c9)]),this['_retryConnectingTimer']=null,this[_0x709bc8(0x160)]();},_0x1d87bc),this[_0x5a8269(0x4f1)]+=0x1;}[_0x4a9685(0x571)](_0x5c98a4,_0xd59711){const _0x34aaba=_0x4a9685,{cmd:_0xd7460c}=_0xd59711;_0xd7460c===G[_0x34aaba(0x3f5)]&&!this['_socketReady']&&(_0x5c98a4['memberID']=_0xd59711[_0x34aaba(0x18f)]['memberID'],this[_0x34aaba(0x491)][_0x34aaba(0x503)](_0x5c98a4),this[_0x34aaba(0x366)][_0x34aaba(0x503)](se['ONLINE']),this[_0x34aaba(0x392)]=!0x0,this[_0x34aaba(0x2d4)]=null),_0xd7460c===G[_0x34aaba(0x427)]&&this[_0x34aaba(0x299)](),this[_0x34aaba(0x4fb)]();}[_0x4a9685(0x4fb)](){const _0x54eafb=_0x4a9685;var _0x1d326d;this['_clearHeartbeatTimer'](),this[_0x54eafb(0x349)]=window['setTimeout'](()=>this[_0x54eafb(0x1f0)](),(_0x1d326d=this[_0x54eafb(0x294)][_0x54eafb(0x4a1)](tn))!=null?_0x1d326d:Fn);}['_sendHeartbeat'](){const _0x1858b5=_0x4a9685;this[_0x1858b5(0x2ef)][_0x1858b5(0x170)]({'cmd':G['HEARTBEAT']}),this[_0x1858b5(0x264)]();}[_0x4a9685(0x264)](){const _0x52dd42=_0x4a9685;var _0x16cd7c;this[_0x52dd42(0x363)]=window['setTimeout'](()=>this[_0x52dd42(0x254)](),(_0x16cd7c=this[_0x52dd42(0x294)][_0x52dd42(0x4a1)](Ct))!=null?_0x16cd7c:nn);}[_0x4a9685(0x33c)](){const _0x1a74db=_0x4a9685;this[_0x1a74db(0x349)]!=null&&(clearTimeout(this['_sendHeartbeatTimer']),this[_0x1a74db(0x349)]=null);}[_0x4a9685(0x299)](){const _0x592c2b=_0x4a9685;this[_0x592c2b(0x363)]!=null&&(clearTimeout(this[_0x592c2b(0x363)]),this['_timeoutTimer']=null);}},exports['CollaborationSessionService']=_i([Ee(0x0,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),Ee(0x1,a['Inject'](a[_0x4a9685(0x4a8)])),Ee(0x2,ee[_0x4a9685(0x27d)]),Ee(0x3,a[_0x4a9685(0x2e8)]),Ee(0x4,a[_0x4a9685(0x3fb)]),Ee(0x5,bt)],exports[_0x4a9685(0x2a7)]);const Y=[];for(let s=0x0;s<0x100;++s)Y['push']((s+0x100)[_0x4a9685(0x350)](0x10)[_0x4a9685(0x2f2)](0x1));function ui(_0x556254,_0x3e7a31=0x0){const _0x83e8a3=_0x4a9685;return(Y[_0x556254[_0x3e7a31+0x0]]+Y[_0x556254[_0x3e7a31+0x1]]+Y[_0x556254[_0x3e7a31+0x2]]+Y[_0x556254[_0x3e7a31+0x3]]+'-'+Y[_0x556254[_0x3e7a31+0x4]]+Y[_0x556254[_0x3e7a31+0x5]]+'-'+Y[_0x556254[_0x3e7a31+0x6]]+Y[_0x556254[_0x3e7a31+0x7]]+'-'+Y[_0x556254[_0x3e7a31+0x8]]+Y[_0x556254[_0x3e7a31+0x9]]+'-'+Y[_0x556254[_0x3e7a31+0xa]]+Y[_0x556254[_0x3e7a31+0xb]]+Y[_0x556254[_0x3e7a31+0xc]]+Y[_0x556254[_0x3e7a31+0xd]]+Y[_0x556254[_0x3e7a31+0xe]]+Y[_0x556254[_0x3e7a31+0xf]])[_0x83e8a3(0x5c4)]();}let Je;const di=new Uint8Array(0x10);function fi(){const _0x18936d=_0x4a9685;if(!Je){if(typeof crypto>'u'||!crypto['getRandomValues'])throw new Error(_0x18936d(0x4ee));Je=crypto[_0x18936d(0x1c8)][_0x18936d(0x151)](crypto);}return Je(di);}const vi=typeof crypto<'u'&&crypto['randomUUID']&&crypto[_0x4a9685(0x3a4)][_0x4a9685(0x151)](crypto),Mt={'randomUUID':vi};function mi(_0x51692a,_0x38185a,_0x4f5f25){const _0x1b3080=_0x4a9685;if(Mt[_0x1b3080(0x3a4)]&&!_0x38185a&&!_0x51692a)return Mt[_0x1b3080(0x3a4)]();_0x51692a=_0x51692a||{};const _0x179502=_0x51692a[_0x1b3080(0x588)]||(_0x51692a[_0x1b3080(0x550)]||fi)();return _0x179502[0x6]=_0x179502[0x6]&0xf|0x40,_0x179502[0x8]=_0x179502[0x8]&0x3f|0x80,ui(_0x179502);}var Si=Object[_0x4a9685(0x377)],pi=Object[_0x4a9685(0x484)],gi=(_0x2b387b,_0x3ff0aa,_0x38c8eb,_0x19f33c)=>{for(var _0x43dc87=_0x19f33c>0x1?void 0x0:_0x19f33c?pi(_0x3ff0aa,_0x38c8eb):_0x3ff0aa,_0x4d8f47=_0x2b387b['length']-0x1,_0xb1b877;_0x4d8f47>=0x0;_0x4d8f47--)(_0xb1b877=_0x2b387b[_0x4d8f47])&&(_0x43dc87=(_0x19f33c?_0xb1b877(_0x3ff0aa,_0x38c8eb,_0x43dc87):_0xb1b877(_0x43dc87))||_0x43dc87);return _0x19f33c&&_0x43dc87&&Si(_0x3ff0aa,_0x38c8eb,_0x43dc87),_0x43dc87;},Ze=(_0x59722d,_0x4b1a1c)=>(_0x1ca1bd,_0x2b755e)=>_0x4b1a1c(_0x1ca1bd,_0x2b755e,_0x59722d);let Be=class{constructor(_0x33a6a4,_0x56076b,_0x5ec7fa){const _0x358508=_0x4a9685;this[_0x358508(0x372)]=_0x33a6a4,this['_transformService']=_0x56076b,this[_0x358508(0x582)]=_0x5ec7fa;}[_0x4a9685(0x4fc)](_0x4c3c49){const _0x438717=_0x4a9685;this['_transformUndoRedoStack'](_0x4c3c49),this[_0x438717(0x20b)](_0x4c3c49);}[_0x4a9685(0x203)](_0x498c36){const _0x23e570=_0x4a9685,{unitID:_0x5a00b2}=_0x498c36,_0x17a810=this[_0x23e570(0x582)][_0x23e570(0x31a)](_0x5a00b2)[_0x23e570(0x326)](J[_0x23e570(0x35b)]),{redoCache:_0x2857b7}=_0x17a810[_0x23e570(0x1eb)]();if(_0x2857b7[_0x23e570(0x530)]===0x0)return _0x498c36;let _0x233c20=a[_0x23e570(0x426)]['deepClone'](_0x498c36[_0x23e570(0x1b8)][0x0]);for(let _0x3260d0=0x0;_0x3260d0<_0x2857b7[_0x23e570(0x530)];_0x3260d0++){const _0x5b0747={'id':_0x23e570(0x3cf),'params':{..._0x2857b7[_0x3260d0]}},_0x4c3c5f=this[_0x23e570(0x4f6)][_0x23e570(0x23e)](_0x233c20,_0x5b0747,!0x1);if(S['isTransformMutationFailure'](_0x4c3c5f))throw _0x4c3c5f['error'];_0x233c20=_0x4c3c5f[_0x23e570(0x208)];}return{...a[_0x23e570(0x426)]['deepClone'](_0x498c36),'mutations':[_0x233c20]};}[_0x4a9685(0x3e3)](_0x43c060){const _0x4a5c3b=_0x4a9685,{unitID:_0x22afbe}=_0x43c060,_0x42a87b=this[_0x4a5c3b(0x582)][_0x4a5c3b(0x31a)](_0x22afbe)[_0x4a5c3b(0x326)](J[_0x4a5c3b(0x35b)]),{undoCache:_0x468a6b,redoCache:_0x5ed74d}=_0x42a87b[_0x4a5c3b(0x1eb)]();if(_0x468a6b[_0x4a5c3b(0x530)]===0x0||_0x5ed74d[_0x4a5c3b(0x530)]===0x0)return;const _0x5a10e3=[],_0x1564cd=[];let _0x1e376a=a['Tools']['deepClone'](_0x43c060[_0x4a5c3b(0x1b8)][0x0]),_0x595551=a['Tools'][_0x4a5c3b(0x513)](_0x43c060[_0x4a5c3b(0x1b8)][0x0]);for(let _0x2c0226=_0x468a6b[_0x4a5c3b(0x530)]-0x1;_0x2c0226>=0x0;_0x2c0226--){const _0x305d1a={'id':'doc.mutation.rich-text-editing','params':{..._0x468a6b[_0x2c0226]}},_0x5a1879={'id':_0x4a5c3b(0x3cf),'params':{..._0x5ed74d[_0x2c0226]}},_0x48999b=this['_transformService'][_0x4a5c3b(0x23e)](_0x1e376a,_0x305d1a,!0x1),_0x40ce50=this['_transformService']['transformMutation'](_0x595551,_0x5a1879,!0x1);if(S[_0x4a5c3b(0x498)](_0x48999b))throw _0x48999b[_0x4a5c3b(0x3d8)];if(S['isTransformMutationFailure'](_0x40ce50))throw _0x40ce50[_0x4a5c3b(0x3d8)];_0x5a10e3[_0x4a5c3b(0x1d6)](_0x48999b[_0x4a5c3b(0x403)][_0x4a5c3b(0x4da)]),_0x1564cd['unshift'](_0x40ce50['m2Prime'][_0x4a5c3b(0x4da)]),_0x1e376a=_0x48999b['m1Prime'],_0x595551=_0x40ce50[_0x4a5c3b(0x208)];}_0x42a87b[_0x4a5c3b(0x19d)]({'undoCache':_0x5a10e3,'redoCache':_0x1564cd});}['_transformPreviousActiveRange'](_0x347593){const _0x47a046=_0x4a9685,{unitID:_0x54bcbb}=_0x347593,_0x3fb0b2=this[_0x47a046(0x582)]['getRenderById'](_0x54bcbb)['with'](J['DocIMEInputManagerService']),_0x143772=_0x3fb0b2['getActiveRange']();if(_0x143772==null)return;const _0x4b0d74=[{'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x347593['unitID'],'actions':null,'textRanges':[_0x143772]}}],_0x1d43ad=this[_0x47a046(0x4f6)][_0x47a046(0x4ed)](_0x347593,_0x4b0d74);if(!S['isTransformMutationsWithChangesetSuccess'](_0x1d43ad))throw _0x1d43ad[_0x47a046(0x3d8)];const _0x505c18=_0x1d43ad['m2Prime'][0x0][_0x47a046(0x4da)]['textRanges'];Array[_0x47a046(0x36d)](_0x505c18)&&_0x505c18[_0x47a046(0x530)]&&_0x3fb0b2[_0x47a046(0x4eb)](_0x505c18[0x0]);}};Be=gi([Ze(0x0,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),Ze(0x1,S[_0x4a9685(0x315)]),Ze(0x2,K[_0x4a9685(0x147)])],Be);var Ii=Object[_0x4a9685(0x377)],Ci=Object[_0x4a9685(0x484)],Ei=(_0x1dee14,_0x5c3f9e,_0x47b8fb,_0x16b544)=>{for(var _0x233afb=_0x16b544>0x1?void 0x0:_0x16b544?Ci(_0x5c3f9e,_0x47b8fb):_0x5c3f9e,_0x58f1bb=_0x1dee14['length']-0x1,_0x499d1e;_0x58f1bb>=0x0;_0x58f1bb--)(_0x499d1e=_0x1dee14[_0x58f1bb])&&(_0x233afb=(_0x16b544?_0x499d1e(_0x5c3f9e,_0x47b8fb,_0x233afb):_0x499d1e(_0x233afb))||_0x233afb);return _0x16b544&&_0x233afb&&Ii(_0x5c3f9e,_0x47b8fb,_0x233afb),_0x233afb;},Pe=(_0x2fae49,_0x41a866)=>(_0x2926d8,_0xe3de3a)=>_0x41a866(_0x2926d8,_0xe3de3a,_0x2fae49);exports['LocalCacheService']=class extends a['Disposable']{constructor(_0x18b4ba,_0x123008,_0x4340c5,_0x144b40,_0x80ed36){const _0x8b7983=_0x4a9685;super(),I(this,_0x8b7983(0x5f8),new Map()),I(this,_0x8b7983(0x523),new Map()),I(this,'_disabled',!0x1),(this[_0x8b7983(0x294)]=_0x18b4ba,this['_localStorageService']=_0x123008,this[_0x8b7983(0x5b8)]=_0x4340c5,this['_localeService']=_0x144b40,this[_0x8b7983(0x26d)]=_0x80ed36,this[_0x8b7983(0x5b2)]());}[_0x4a9685(0x360)](){const _0x3d7bb0=_0x4a9685;this[_0x3d7bb0(0x2d8)]=!0x0;}[_0x4a9685(0x306)](){const _0x35f485=_0x4a9685;this[_0x35f485(0x2d8)]=!0x1;}[_0x4a9685(0x1d7)](){const _0x52a793=_0x4a9685;this['exhaustSavingTask']()[_0x52a793(0x5ce)](()=>super['dispose']());}async[_0x4a9685(0x206)](_0x644f7e){const _0x1965c0=_0x4a9685;return this[_0x1965c0(0x2d8)]?null:this['_localStorageService'][_0x1965c0(0x286)](At(_0x644f7e));}async[_0x4a9685(0x546)](_0x2e7ed8,_0x52d89e){const _0x511d4d=_0x4a9685;return!!this[_0x511d4d(0x48f)][_0x511d4d(0x2a4)](_0x2e7ed8,_0x52d89e);}[_0x4a9685(0x14f)](_0x418772,_0x2dde02,_0x1c5281,_0x13e8ec){const _0x37cc85=_0x4a9685,_0x1b4a2e=this[_0x37cc85(0x26d)][_0x37cc85(0x3e5)](_0x418772);this[_0x37cc85(0x5f8)][_0x37cc85(0x568)](_0x418772,{'unitID':_0x418772,'type':_0x2dde02,'awaitingChangeset':_0x1c5281,'mutations':_0x13e8ec,'rev':_0x1b4a2e}),this[_0x37cc85(0x523)][_0x37cc85(0x1d2)](_0x418772)||this['_scheduleSaving'](_0x418772);}['_scheduleSaving'](_0x2906ec){const _0x4b2ce2=_0x4a9685,_0x2d6cc5=this[_0x4b2ce2(0x4b6)]();_0x2d6cc5===0x0?this['_saveCache'](_0x2906ec):this[_0x4b2ce2(0x523)]['set'](_0x2906ec,setTimeout(()=>this[_0x4b2ce2(0x1aa)](_0x2906ec),_0x2d6cc5));}[_0x4a9685(0x4b6)](){const _0x1202e8=_0x4a9685;var _0x1517f4;return(_0x1517f4=this[_0x1202e8(0x294)]['getConfig'](rn))!=null?_0x1517f4:Yn;}['_saveCache'](_0x341736){const _0x2099cf=_0x4a9685,_0x2e840e=this[_0x2099cf(0x523)][_0x2099cf(0x542)](_0x341736);return _0x2e840e!==void 0x0&&window[_0x2099cf(0x3b3)](_0x2e840e),this[_0x2099cf(0x48f)][_0x2099cf(0x2a4)](At(_0x341736),this[_0x2099cf(0x5f8)][_0x2099cf(0x542)](_0x341736))['then'](()=>this[_0x2099cf(0x523)][_0x2099cf(0x224)](_0x341736));}async[_0x4a9685(0x45e)](){const _0x572c69=_0x4a9685,_0x8c8a47=[];this[_0x572c69(0x523)][_0x572c69(0x38f)]((_0x21815c,_0x5252d2)=>{const _0x5d884b=_0x572c69;window['clearTimeout'](_0x21815c),_0x8c8a47[_0x5d884b(0x3d6)](this['_saveCache'](_0x5252d2)[_0x5d884b(0x5ce)](()=>{const _0x3ece81=_0x5d884b;this[_0x3ece81(0x523)]['delete'](_0x5252d2);}));}),await Promise[_0x572c69(0x38c)](_0x8c8a47);}[_0x4a9685(0x5b2)](){const _0x2638bf=_0x4a9685;this[_0x2638bf(0x3c7)](this['_beforeCloseService']['registerBeforeClose'](()=>{const _0x69a0ca=_0x2638bf;if(this['_saveTaskMap'][_0x69a0ca(0x2d6)])return this[_0x69a0ca(0x39c)]['t']('collaboration-client.offline-data-not-saved');}));}},exports[_0x4a9685(0x1a0)]=Ei([Pe(0x0,a['IConfigService']),Pe(0x1,a[_0x4a9685(0x477)]),Pe(0x2,ee[_0x4a9685(0x13d)]),Pe(0x3,a[_0x4a9685(0x27a)](a[_0x4a9685(0x4a8)])),Pe(0x4,a[_0x4a9685(0x27a)](S[_0x4a9685(0x1a9)]))],exports[_0x4a9685(0x1a0)]);function At(_0x4468a4){const _0x504c49=_0x4a9685;return _0x504c49(0x34e)+_0x4468a4;}var bi=Object['defineProperty'],Ti=Object[_0x4a9685(0x484)],Ri=(_0xd02ad4,_0x4350a9,_0x3c8c80,_0x2a1ad1)=>{const _0x19c742=_0x4a9685;for(var _0xac2eb3=_0x2a1ad1>0x1?void 0x0:_0x2a1ad1?Ti(_0x4350a9,_0x3c8c80):_0x4350a9,_0x24172d=_0xd02ad4[_0x19c742(0x530)]-0x1,_0x40b5f8;_0x24172d>=0x0;_0x24172d--)(_0x40b5f8=_0xd02ad4[_0x24172d])&&(_0xac2eb3=(_0x2a1ad1?_0x40b5f8(_0x4350a9,_0x3c8c80,_0xac2eb3):_0x40b5f8(_0xac2eb3))||_0xac2eb3);return _0x2a1ad1&&_0xac2eb3&&bi(_0x4350a9,_0x3c8c80,_0xac2eb3),_0xac2eb3;},Qe=(_0x2945a9,_0x4f0ec2)=>(_0x20aaa6,_0x18d63c)=>_0x4f0ec2(_0x20aaa6,_0x18d63c,_0x2945a9);function yi(_0x1875cb){const _0x16c6e9=_0x4a9685,{unitID:_0x4ed5bc,mutations:_0x1b19ad}=_0x1875cb;return{'unitId':_0x4ed5bc,'subUnitId':_0x1b19ad[0x0][_0x16c6e9(0x4da)][_0x16c6e9(0x2ae)]};}let ke=class{constructor(_0xffb2b2,_0x4bc537,_0x1050e3){const _0x370206=_0x4a9685;this[_0x370206(0x372)]=_0xffb2b2,this[_0x370206(0x4f6)]=_0x4bc537,this[_0x370206(0x2e0)]=_0x1050e3;}[_0x4a9685(0x58f)](_0x5b82d8){const _0x46f0ca=_0x4a9685;var _0x195103,_0x36968c,_0x423ba1,_0x52541d;const _0x428524=this[_0x46f0ca(0x372)][_0x46f0ca(0x542)](k[_0x46f0ca(0x31c)]),{unitId:_0x4b2630,subUnitId:_0x3fa50c}=yi(_0x5b82d8),_0x205d00=_0x428524[_0x46f0ca(0x356)](_0x4b2630)['getCurrentSelections'](),_0x5a0991=(_0x36968c=(_0x195103=this[_0x46f0ca(0x2e0)][_0x46f0ca(0x30a)](_0x4b2630))==null?void 0x0:_0x195103[_0x46f0ca(0x4d4)]())==null?void 0x0:_0x36968c[_0x46f0ca(0x180)]();if(_0x205d00[_0x46f0ca(0x530)]===0x0||!_0x4b2630||!_0x3fa50c)return;const _0x547b06=[{'id':k['SetSelectionsOperation']['id'],'params':{'unitId':_0x4b2630,'subUnitId':_0x5a0991,'selections':a[_0x46f0ca(0x426)][_0x46f0ca(0x513)](_0x205d00)}}],_0x514003=this['_transformService']['transformMutationsWithChangeset'](_0x5b82d8,_0x547b06);if(!S[_0x46f0ca(0x453)](_0x514003))throw _0x514003['error'];const _0x434299=(_0x52541d=(_0x423ba1=_0x514003['m2Prime'][0x0])==null?void 0x0:_0x423ba1['params'])==null?void 0x0:_0x52541d[_0x46f0ca(0x5c6)];if(Array[_0x46f0ca(0x36d)](_0x434299)&&_0x434299[_0x46f0ca(0x530)]){if(_0x434299[_0x46f0ca(0x530)]===_0x547b06[0x0][_0x46f0ca(0x4da)][_0x46f0ca(0x5c6)][_0x46f0ca(0x530)]&&_0x434299[_0x46f0ca(0x4b0)]((_0x1f775a,_0x125a66)=>a['Rectangle'][_0x46f0ca(0x47c)](_0x1f775a['range'],_0x547b06[0x0][_0x46f0ca(0x4da)][_0x46f0ca(0x5c6)][_0x125a66]['range'])))return;this[_0x46f0ca(0x372)][_0x46f0ca(0x542)](a[_0x46f0ca(0x449)])[_0x46f0ca(0x5f4)](k[_0x46f0ca(0x25b)]['id'],{'unitId':_0x4b2630,'subUnitId':_0x5a0991,'selections':_0x434299});}}};ke=Ri([Qe(0x0,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),Qe(0x1,S[_0x4a9685(0x315)]),Qe(0x2,a['IUniverInstanceService'])],ke);const qe=a[_0x4a9685(0x1e3)](_0x4a9685(0x46f));var un=(_0x5da832=>(_0x5da832[_0x5da832[_0x4a9685(0x5e9)]=0x0]=_0x4a9685(0x5e9),_0x5da832[_0x5da832[_0x4a9685(0x521)]=0x1]=_0x4a9685(0x521),_0x5da832))(un||{});const Nt=0x7530,Lt='ACTIVE_UNIT_EVENT_CHANNEL';class Oi extends a[_0x4a9685(0x261)]{constructor(){const _0x5bb621=_0x4a9685;super(),I(this,'_id',a['Tools']['generateRandomId']()),I(this,_0x5bb621(0x29b),new Set()),I(this,_0x5bb621(0x1b0),new Map()),I(this,_0x5bb621(0x340),null),I(this,_0x5bb621(0x512),new Map()),I(this,_0x5bb621(0x181),new Map()),this[_0x5bb621(0x3f4)]();}[_0x4a9685(0x1d7)](){const _0x84ce54=_0x4a9685;super[_0x84ce54(0x1d7)](),this[_0x84ce54(0x512)][_0x84ce54(0x38f)]((_0x3550d7,_0x51762a)=>this['_removeClearOtherTimer'](_0x51762a)),this[_0x84ce54(0x340)]&&window[_0x84ce54(0x44a)](this[_0x84ce54(0x340)]);}[_0x4a9685(0x5f6)](_0x10c898){const _0x5b19a3=_0x4a9685;return this['_ensureSubject'](_0x10c898)[_0x5b19a3(0x172)](A[_0x5b19a3(0x4f4)]());}[_0x4a9685(0x223)](_0x51bf57){const _0x50c0f9=_0x4a9685;this['_selfUnitIDs'][_0x50c0f9(0x2d6)]===0x0&&this['_scheduleHeartbeat'](),this[_0x50c0f9(0x29b)][_0x50c0f9(0x42a)](_0x51bf57),this[_0x50c0f9(0x24f)]({'type':0x0,'memberID':this[_0x50c0f9(0x4d3)],'unitIDs':[_0x51bf57],'isForwarded':!0x1});}[_0x4a9685(0x32d)](_0x360fe3){const _0x16a719=_0x4a9685;this['_selfUnitIDs']['delete'](_0x360fe3),this[_0x16a719(0x29b)][_0x16a719(0x2d6)]===0x0&&this[_0x16a719(0x340)]&&window[_0x16a719(0x44a)](this[_0x16a719(0x340)]);}[_0x4a9685(0x3f4)](){const _0x380ef5=_0x4a9685;this['disposeWithMe'](a[_0x380ef5(0x4fd)](A[_0x380ef5(0x59e)](window,_0x380ef5(0x3de))[_0x380ef5(0x419)](_0x2036e6=>{const _0x80da7c=_0x380ef5;if(_0x2036e6[_0x80da7c(0x303)]!==Lt||!_0x2036e6[_0x80da7c(0x3c6)])return;const _0xd7d83b=JSON[_0x80da7c(0x2af)](_0x2036e6[_0x80da7c(0x3c6)]);this[_0x80da7c(0x34f)](_0xd7d83b);}))),window[_0x380ef5(0x368)](_0x380ef5(0x5f3),()=>this['_send']({'type':0x1,'memberID':this[_0x380ef5(0x4d3)],'unitIDs':Array['from'](this['_selfUnitIDs'])}));}[_0x4a9685(0x34f)](_0x3b30ca){const _0xdf50d7=_0x4a9685;switch(_0x3b30ca[_0xdf50d7(0x3e4)]){case 0x0:this[_0xdf50d7(0x47d)](_0x3b30ca);break;case 0x1:this[_0xdf50d7(0x18e)](_0x3b30ca);break;case 0x2:this[_0xdf50d7(0x32b)](_0x3b30ca);break;}}['_handleJoinEvent'](_0x4c39a1){const _0x4fd06c=_0x4a9685,{unitIDs:_0x4d68fd,memberID:_0x102f7a,isForwarded:_0x35cd4e}=_0x4c39a1;_0x4d68fd[_0x4fd06c(0x38f)](_0x33e3cc=>{const _0x3a157a=_0x4fd06c;if(!_0x35cd4e&&this[_0x3a157a(0x1b0)][_0x3a157a(0x1d2)](_0x33e3cc)&&this[_0x3a157a(0x2bd)](_0x33e3cc)[_0x3a157a(0x503)](0x1),!this[_0x3a157a(0x1b0)]['has'](_0x33e3cc)||!this['_unitOnClients'][_0x3a157a(0x542)](_0x33e3cc)[_0x3a157a(0x1d2)](_0x102f7a)){const _0x29bb21=this[_0x3a157a(0x1b0)][_0x3a157a(0x542)](_0x33e3cc)||new Set();_0x29bb21[_0x3a157a(0x42a)](_0x102f7a),this[_0x3a157a(0x1b0)][_0x3a157a(0x568)](_0x33e3cc,_0x29bb21),this[_0x3a157a(0x56b)](_0x102f7a);}}),_0x35cd4e||this['_send']({'type':0x0,'memberID':this[_0x4fd06c(0x4d3)],'unitIDs':[...this[_0x4fd06c(0x29b)]],'isForwarded':!0x0});}[_0x4a9685(0x56b)](_0x5a4d27){const _0x269d31=_0x4a9685;this[_0x269d31(0x15e)](_0x5a4d27);const _0x3ab673=window['setTimeout'](()=>{const _0x459e81=_0x269d31;this['_unitOnClients'][_0x459e81(0x38f)](_0x32a957=>{_0x32a957['delete'](_0x5a4d27);});},Nt*0x2);this[_0x269d31(0x512)]['set'](_0x5a4d27,_0x3ab673);}[_0x4a9685(0x15e)](_0x24ae2c){const _0x32d806=_0x4a9685;if(this['_clearOtherTimers'][_0x32d806(0x1d2)](_0x24ae2c)){const _0x47a220=this[_0x32d806(0x512)]['get'](_0x24ae2c);_0x47a220&&window[_0x32d806(0x3b3)](_0x47a220),this['_clearOtherTimers'][_0x32d806(0x568)](_0x24ae2c,null);}}[_0x4a9685(0x18e)](_0x337fed){const _0xd81760=_0x4a9685,{memberID:_0x4cbea3,unitIDs:_0x368bc8}=_0x337fed;_0x368bc8[_0xd81760(0x38f)](_0x2ab4f3=>{const _0x38d146=_0xd81760;var _0x3567a3;const _0x25649a=this[_0x38d146(0x1b0)]['get'](_0x2ab4f3);_0x25649a&&(_0x25649a[_0x38d146(0x224)](_0x4cbea3),(_0x3567a3=this[_0x38d146(0x2bd)](_0x2ab4f3))==null||_0x3567a3[_0x38d146(0x503)](_0x25649a[_0x38d146(0x2d6)]===0x0?0x0:0x1));}),this['_removeClearOtherTimer'](_0x4cbea3);}['_handleHeartbeatEvent'](_0x33dbf8){const _0x46f47b=_0x4a9685;this[_0x46f47b(0x56b)](_0x33dbf8[_0x46f47b(0x1e5)]);}[_0x4a9685(0x24f)](_0x2ad9ce){const _0x5d99c1=_0x4a9685;localStorage[_0x5d99c1(0x2a4)](Lt,JSON[_0x5d99c1(0x2d1)](_0x2ad9ce));}[_0x4a9685(0x1ca)](){const _0x326676=_0x4a9685;this['_heartbeatTimer']=window[_0x326676(0x4c2)](()=>{const _0x28aa65=_0x326676;this[_0x28aa65(0x24f)]({'type':0x2,'memberID':this[_0x28aa65(0x4d3)]});},Nt);}[_0x4a9685(0x2bd)](_0x399c0d){const _0x4b2a7b=_0x4a9685;return this[_0x4b2a7b(0x181)][_0x4b2a7b(0x1d2)](_0x399c0d)||this[_0x4b2a7b(0x181)]['set'](_0x399c0d,new A[(_0x4b2a7b(0x563))](0x0)),this[_0x4b2a7b(0x181)][_0x4b2a7b(0x542)](_0x399c0d);}}var Di=Object[_0x4a9685(0x377)],wi=Object[_0x4a9685(0x484)],Pi=(_0x2ce326,_0x128f59,_0x481486,_0x564bc1)=>{const _0x50b53a=_0x4a9685;for(var _0x47307a=_0x564bc1>0x1?void 0x0:_0x564bc1?wi(_0x128f59,_0x481486):_0x128f59,_0x4cab10=_0x2ce326[_0x50b53a(0x530)]-0x1,_0x1ce078;_0x4cab10>=0x0;_0x4cab10--)(_0x1ce078=_0x2ce326[_0x4cab10])&&(_0x47307a=(_0x564bc1?_0x1ce078(_0x128f59,_0x481486,_0x47307a):_0x1ce078(_0x47307a))||_0x47307a);return _0x564bc1&&_0x47307a&&Di(_0x128f59,_0x481486,_0x47307a),_0x47307a;},et=(_0x189759,_0x543ff2)=>(_0x547fdb,_0x56dcef)=>_0x543ff2(_0x547fdb,_0x56dcef,_0x189759);let We=class{constructor(_0x284419,_0x8ab758,_0x4b9f1c){const _0x47bd8f=_0x4a9685;this['_injector']=_0x284419,this['_transformService']=_0x8ab758,this[_0x47bd8f(0x4c7)]=_0x4b9f1c;}['transformStateCache'](_0x23131a){const _0x1db5d3=_0x4a9685;this[_0x1db5d3(0x4ec)](_0x23131a);}[_0x4a9685(0x203)](_0x281e59){const _0x1c9305=_0x4a9685,{unitID:_0x55094}=_0x281e59,{collaboration:_0xdd29c2}=this[_0x1c9305(0x4c7)]['getStateCache'](_0x55094);if(_0xdd29c2[_0x1c9305(0x530)]===0x0)return _0x281e59;let _0x50272c=a[_0x1c9305(0x426)][_0x1c9305(0x513)](_0x281e59[_0x1c9305(0x1b8)][0x0]);for(let _0x373f15=0x0;_0x373f15<_0xdd29c2[_0x1c9305(0x530)];_0x373f15++){const _0x6b058={'id':_0x1c9305(0x3cf),'params':{'unitId':_0xdd29c2[_0x373f15]['unitId'],..._0xdd29c2[_0x373f15]['redoState']}},_0x3c8ebf=this[_0x1c9305(0x4f6)][_0x1c9305(0x23e)](_0x50272c,_0x6b058,!0x1);if(S['isTransformMutationFailure'](_0x3c8ebf))throw _0x3c8ebf[_0x1c9305(0x3d8)];_0x50272c=_0x3c8ebf[_0x1c9305(0x208)];}return{...a[_0x1c9305(0x426)][_0x1c9305(0x513)](_0x281e59),'mutations':[_0x50272c]};}['_transformHistoryAndStateStack'](_0x2ada99){const _0x2cad81=_0x4a9685,{unitID:_0xab18c7}=_0x2ada99,{history:_0x20bfcf,collaboration:_0x3124a6}=this['_docStateChangeManagerService'][_0x2cad81(0x201)](_0xab18c7);if(_0x20bfcf['length']===0x0&&_0x3124a6[_0x2cad81(0x530)]===0x0)return;const _0x5411ba=[],_0x2c2681=[];let _0x238843=a[_0x2cad81(0x426)][_0x2cad81(0x513)](_0x2ada99['mutations'][0x0]),_0x502d4c=a[_0x2cad81(0x426)][_0x2cad81(0x513)](_0x2ada99[_0x2cad81(0x1b8)][0x0]);for(let _0x5d3aca=_0x20bfcf[_0x2cad81(0x530)]-0x1;_0x5d3aca>=0x0;_0x5d3aca--){const _0xd2cbe={'id':_0x2cad81(0x3cf),'params':{'unitId':_0x20bfcf[_0x5d3aca]['unitId'],..._0x20bfcf[_0x5d3aca][_0x2cad81(0x42f)]}},_0x3f04a6={'id':_0x2cad81(0x3cf),'params':{'unitId':_0x20bfcf[_0x5d3aca][_0x2cad81(0x2de)],..._0x20bfcf[_0x5d3aca][_0x2cad81(0x3ae)]}},_0x266002=this[_0x2cad81(0x4f6)][_0x2cad81(0x23e)](_0x238843,_0xd2cbe,!0x1),_0x4305dc=this[_0x2cad81(0x4f6)][_0x2cad81(0x23e)](_0x502d4c,_0x3f04a6,!0x1);if(S['isTransformMutationFailure'](_0x266002))throw _0x266002['error'];if(S[_0x2cad81(0x498)](_0x4305dc))throw _0x4305dc[_0x2cad81(0x3d8)];_0x5411ba[_0x2cad81(0x1d6)]({..._0x20bfcf[_0x5d3aca],'undoState':_0x266002[_0x2cad81(0x403)][_0x2cad81(0x4da)],'redoState':_0x4305dc[_0x2cad81(0x403)]['params']}),_0x238843=_0x266002[_0x2cad81(0x208)],_0x502d4c=_0x4305dc[_0x2cad81(0x208)];}_0x238843=a['Tools'][_0x2cad81(0x513)](_0x2ada99[_0x2cad81(0x1b8)][0x0]),_0x502d4c=a['Tools'][_0x2cad81(0x513)](_0x2ada99['mutations'][0x0]);for(let _0x42be31=_0x3124a6[_0x2cad81(0x530)]-0x1;_0x42be31>=0x0;_0x42be31--){const _0x17ebbb={'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x3124a6[_0x42be31][_0x2cad81(0x2de)],..._0x3124a6[_0x42be31]['undoState']}},_0x31a0aa={'id':_0x2cad81(0x3cf),'params':{'unitId':_0x3124a6[_0x42be31][_0x2cad81(0x2de)],..._0x3124a6[_0x42be31][_0x2cad81(0x3ae)]}},_0x52614f=this[_0x2cad81(0x4f6)]['transformMutation'](_0x238843,_0x17ebbb,!0x1),_0xba3b3b=this[_0x2cad81(0x4f6)]['transformMutation'](_0x502d4c,_0x31a0aa,!0x1);if(S[_0x2cad81(0x498)](_0x52614f))throw _0x52614f[_0x2cad81(0x3d8)];if(S[_0x2cad81(0x498)](_0xba3b3b))throw _0xba3b3b[_0x2cad81(0x3d8)];_0x2c2681[_0x2cad81(0x1d6)]({..._0x3124a6[_0x42be31],'undoState':_0x52614f['m2Prime'][_0x2cad81(0x4da)],'redoState':_0xba3b3b[_0x2cad81(0x403)][_0x2cad81(0x4da)]}),_0x238843=_0x52614f[_0x2cad81(0x208)],_0x502d4c=_0xba3b3b[_0x2cad81(0x208)];}this['_docStateChangeManagerService'][_0x2cad81(0x215)](_0xab18c7,{'history':_0x5411ba,'collaboration':_0x2c2681});}};We=Pi([et(0x0,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),et(0x1,S['ITransformService']),et(0x2,a[_0x4a9685(0x27a)](J[_0x4a9685(0x492)]))],We);function dn(_0x3f164a){let _0x4835e5='';for(const _0x1ed311 of _0x3f164a){const {startOffset:_0x2ffa8d,endOffset:_0x5a3a46,isActive:_0x3c268e,rangeType:_0x3f5837,segmentId:_0x58e97f,segmentPage:_0x1962e4}=_0x1ed311;_0x4835e5['length']&&(_0x4835e5+=','),_0x4835e5+=_0x2ffa8d+':'+_0x5a3a46+':'+(_0x3c268e?'1':'0')+':'+_0x3f5837+':'+_0x58e97f+':'+_0x1962e4;}return _0x4835e5;}function Ui(_0x2e295a){const _0x57841c=_0x4a9685,_0x3cc27b=_0x2e295a[_0x57841c(0x4d8)](','),_0x49552a=[];for(const _0x12fe1d of _0x3cc27b){const [_0x5804c6,_0xd7ee7,_0x3a97c0,_0x2ecf3a,_0x1491b9,_0x796114]=_0x12fe1d[_0x57841c(0x4d8)](':');_0x49552a['push']({'startOffset':Number(_0x5804c6),'endOffset':Number(_0xd7ee7),'collapsed':_0x5804c6===_0xd7ee7,'isActive':_0x3a97c0==='1','rangeType':_0x2ecf3a===a[_0x57841c(0x528)][_0x57841c(0x43b)]?a[_0x57841c(0x528)][_0x57841c(0x43b)]:a[_0x57841c(0x528)]['RECT'],'segmentId':typeof _0x1491b9==_0x57841c(0x3b2)?String(_0x1491b9):'','segmentPage':Number(_0x796114!=null?_0x796114:-0x1)});}return _0x49552a[_0x57841c(0x2fe)](_0x40cf85=>_0x40cf85[_0x57841c(0x4bf)])||(_0x49552a[0x0]['isActive']=!0x0),_0x49552a;}class Rt extends a[_0x4a9685(0x2c7)]{constructor(){const _0x3f1cf8=_0x4a9685;super(...arguments),I(this,_0x3f1cf8(0x3bd),new A['BehaviorSubject'](null)),I(this,_0x3f1cf8(0x20a),this[_0x3f1cf8(0x3bd)][_0x3f1cf8(0x135)]());}[_0x4a9685(0x5bc)](_0x38e726){const _0x3c3f10=_0x4a9685,{unitID:_0x2f7e1d,memberID:_0x301798,textRanges:_0x25947e}=_0x38e726,_0x3d015d=dn(_0x25947e);if(_0x3d015d==='')return;const _0x572bfa={'unitID':_0x2f7e1d,'memberID':_0x301798,'selection':_0x3d015d};this[_0x3c3f10(0x3bd)]['next'](_0x572bfa);}}var Mi=Object['defineProperty'],Ai=Object[_0x4a9685(0x484)],Ni=(_0x3842a0,_0x19c5b0,_0x2e259c,_0x4de77d)=>{for(var _0x1cc09f=_0x4de77d>0x1?void 0x0:_0x4de77d?Ai(_0x19c5b0,_0x2e259c):_0x19c5b0,_0x17c360=_0x3842a0['length']-0x1,_0x36d689;_0x17c360>=0x0;_0x17c360--)(_0x36d689=_0x3842a0[_0x17c360])&&(_0x1cc09f=(_0x4de77d?_0x36d689(_0x19c5b0,_0x2e259c,_0x1cc09f):_0x36d689(_0x1cc09f))||_0x1cc09f);return _0x4de77d&&_0x1cc09f&&Mi(_0x19c5b0,_0x2e259c,_0x1cc09f),_0x1cc09f;},xt=(_0x2da396,_0x3e4205)=>(_0x1844cd,_0x23b80c)=>_0x3e4205(_0x1844cd,_0x23b80c,_0x2da396);let Fe=class{constructor(_0xffc2db,_0x390673){const _0x481fd1=_0x4a9685;this[_0x481fd1(0x372)]=_0xffc2db,this[_0x481fd1(0x4f6)]=_0x390673;}['transformSelections'](_0x54a1a4){const _0x4fa9b1=_0x4a9685;var _0x5c852f;const _0x26ddc6=this['_injector']['get'](ye[_0x4fa9b1(0x1f8)]),_0x50ca38=(_0x5c852f=_0x26ddc6[_0x4fa9b1(0x231)]())!=null?_0x5c852f:[];if(_0x50ca38[_0x4fa9b1(0x530)]===0x0)return;const _0xc81740=_0x54a1a4[_0x4fa9b1(0x197)],_0x51fef6=[{'id':_0x4fa9b1(0x3cf),'params':{'unitId':_0xc81740,'actions':null,'textRanges':_0x50ca38}}],_0x131f1c=this['_transformService'][_0x4fa9b1(0x4ed)](_0x54a1a4,_0x51fef6);if(!S['isTransformMutationsWithChangesetSuccess'](_0x131f1c))throw _0x131f1c[_0x4fa9b1(0x3d8)];const _0x222c6f=_0x131f1c[_0x4fa9b1(0x403)][0x0][_0x4fa9b1(0x4da)][_0x4fa9b1(0x236)];Array[_0x4fa9b1(0x36d)](_0x222c6f)&&_0x222c6f['length']&&_0x26ddc6[_0x4fa9b1(0x30c)](_0x222c6f,{'unitId':_0xc81740,'subUnitId':_0xc81740},!0x1);}};Fe=Ni([xt(0x0,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),xt(0x1,S[_0x4a9685(0x315)])],Fe);const Li=new Set([k[_0x4a9685(0x251)]['id']]);function jt(_0x274244,_0xb9397e,_0x230d10,_0x32f43f,_0x2cf73e){const _0x2ad3cc=_0x4a9685;var _0x1b82f5,_0x5db2e4,_0x35292c,_0x4b543f;const _0x49cc14=[];for(const _0x43a25c of _0x274244)if(Li[_0x2ad3cc(0x1d2)](_0x43a25c['id'])){if(_0x49cc14[_0x2ad3cc(0x530)]>0x0)break;_0x49cc14[_0x2ad3cc(0x3d6)](_0x43a25c);break;}else _0x49cc14['push'](_0x43a25c);const _0x30b8ae=(_0x5db2e4=(_0x1b82f5=_0x2cf73e[_0x2ad3cc(0x459)]())==null?void 0x0:_0x1b82f5[_0x2ad3cc(0x545)])!=null?_0x5db2e4:_0x2ad3cc(0x1c5),_0x25d65f=(_0x4b543f=(_0x35292c=_0x2cf73e[_0x2ad3cc(0x459)]())==null?void 0x0:_0x35292c[_0x2ad3cc(0x1e5)])!=null?_0x4b543f:_0x2ad3cc(0x1c5);return{'changeset':{'unitID':_0xb9397e,'type':S['mapDocumentTypeToUniverType'](_0x230d10[_0x2ad3cc(0x19b)](_0xb9397e)),'baseRev':_0x32f43f[_0x2ad3cc(0x3e5)](_0xb9397e),'revision':0x0,'userID':_0x30b8ae,'memberID':_0x25d65f,'mutations':_0x49cc14},'pendingMutations':_0x274244['slice'](_0x49cc14[_0x2ad3cc(0x530)])};}function xi(_0x3a1eba,_0x23db0a,_0x19ff95,_0x4a4902,_0x2a35ac){const _0x56f407=_0x4a9685;var _0x2ff8c7,_0x4b3fa8,_0x2255fe,_0x54f91a;const _0x2204f4=[_0x3a1eba[_0x56f407(0x2a2)]((_0x59a728,_0x149d80)=>{const _0x1f482e=_0x56f407;var _0x14cda9;const {id:_0x51879a}=_0x59a728,{id:_0x447943,type:_0x562e17}=_0x149d80,_0x17e3a2=(_0x14cda9=_0x59a728['params'])!=null?_0x14cda9:{'actions':null},_0x496ffb=_0x149d80[_0x1f482e(0x4da)];if(_0x51879a&&_0x51879a!==_0x447943)throw new Error(_0x1f482e(0x44b)+_0x51879a+_0x1f482e(0x579)+_0x447943+'.');return{..._0x59a728,'id':_0x447943,'type':_0x562e17,'params':{'unitId':_0x496ffb['unitId'],'textRanges':_0x496ffb[_0x1f482e(0x236)],'actions':a[_0x1f482e(0x14e)][_0x1f482e(0x330)](_0x17e3a2['actions'],_0x496ffb['actions'])}};},{})],_0x5bcae6=(_0x4b3fa8=(_0x2ff8c7=_0x2a35ac[_0x56f407(0x459)]())==null?void 0x0:_0x2ff8c7[_0x56f407(0x545)])!=null?_0x4b3fa8:_0x56f407(0x1c5),_0x211bc0=(_0x54f91a=(_0x2255fe=_0x2a35ac[_0x56f407(0x459)]())==null?void 0x0:_0x2255fe[_0x56f407(0x1e5)])!=null?_0x54f91a:_0x56f407(0x1c5);return{'changeset':{'unitID':_0x23db0a,'type':S['mapDocumentTypeToUniverType'](_0x19ff95[_0x56f407(0x19b)](_0x23db0a)),'baseRev':_0x4a4902[_0x56f407(0x3e5)](_0x23db0a),'revision':0x0,'userID':_0x5bcae6,'memberID':_0x211bc0,'mutations':_0x2204f4},'pendingMutations':[]};}function fn(_0x561c14,_0x158f04){const _0x58ac31=_0x4a9685,_0x411628=new A['ReplaySubject'](0x1);return setTimeout(()=>_0x411628[_0x58ac31(0x503)](_0x158f04),_0x561c14),_0x411628['asObservable']()['pipe'](A[_0x58ac31(0x3a5)](0x1));}const ji={'id':k[_0x4a9685(0x538)]['id'],'type':a[_0x4a9685(0x4b4)][_0x4a9685(0x58a)],'params':{}};var $i=Object[_0x4a9685(0x377)],Hi=Object['getOwnPropertyDescriptor'],Ie=(_0x1659c9,_0xb7a90c,_0x116346,_0x4596c0)=>{for(var _0x4aa2db=_0x4596c0>0x1?void 0x0:_0x4596c0?Hi(_0xb7a90c,_0x116346):_0xb7a90c,_0xde0ea3=_0x1659c9['length']-0x1,_0x17c608;_0xde0ea3>=0x0;_0xde0ea3--)(_0x17c608=_0x1659c9[_0xde0ea3])&&(_0x4aa2db=(_0x4596c0?_0x17c608(_0xb7a90c,_0x116346,_0x4aa2db):_0x17c608(_0x4aa2db))||_0x4aa2db);return _0x4596c0&&_0x4aa2db&&$i(_0xb7a90c,_0x116346,_0x4aa2db),_0x4aa2db;},N=(_0x479e8b,_0xfb4892)=>(_0x19f68d,_0xcf47d4)=>_0xfb4892(_0x19f68d,_0xcf47d4,_0x479e8b),q=(_0x1e0a4a=>(_0x1e0a4a[_0x4a9685(0x5bd)]=_0x4a9685(0x1a1),_0x1e0a4a['SYNCED']='synced',_0x1e0a4a['PENDING']=_0x4a9685(0x3f0),_0x1e0a4a[_0x4a9685(0x411)]=_0x4a9685(0x529),_0x1e0a4a[_0x4a9685(0x28b)]=_0x4a9685(0x581),_0x1e0a4a['FETCH_MISS']='fetch_missing',_0x1e0a4a[_0x4a9685(0x328)]=_0x4a9685(0x2b1),_0x1e0a4a[_0x4a9685(0x338)]=_0x4a9685(0x277),_0x1e0a4a))(q||{});const vn=0xea60;class Ce{constructor(_0x200c16,_0x1ace0d,_0x2a6efb,_0xa5aef,_0x3767ae,_0x391079,_0x28bdce,_0x5bb7b4,_0x22c8ee){const _0x5ab528=_0x4a9685;I(this,_0x5ab528(0x249),null),I(this,_0x5ab528(0x256),[]),(this[_0x5ab528(0x197)]=_0x200c16,this[_0x5ab528(0x3e4)]=_0x1ace0d,this[_0x5ab528(0x168)]=_0x3767ae,this[_0x5ab528(0x55e)]=_0x391079,this['_undoRedoService']=_0x28bdce,this[_0x5ab528(0x26d)]=_0x5bb7b4,this[_0x5ab528(0x142)]=_0x22c8ee,this['_awaitingChangeset']=_0x2a6efb,this[_0x5ab528(0x256)]=_0xa5aef);}['_checkMissing'](_0x1ba601){const _0x38dacf=_0x4a9685,_0x2cc558=this[_0x38dacf(0x26d)][_0x38dacf(0x3e5)](this['unitID']);return _0x1ba601[_0x38dacf(0x33a)]>_0x2cc558+0x1?(this[_0x38dacf(0x168)][_0x38dacf(0x354)]({'from':_0x2cc558,'to':_0x1ba601['revision']-0x1}),!0x0):!0x1;}[_0x4a9685(0x53b)](_0x275f28){const _0x30ddd5=_0x4a9685;this[_0x30ddd5(0x3d2)][_0x30ddd5(0x246)](this[_0x30ddd5(0x197)],_0x275f28);}['_transformSelections'](_0x162114){const _0x26066c=_0x4a9685;var _0x244709,_0x515c17;(_0x515c17=(_0x244709=this[_0x26066c(0x168)])['onTransformSelections'])==null||_0x515c17[_0x26066c(0x20c)](_0x244709,_0x162114);}[_0x4a9685(0x43a)](_0xd4df5c){const _0x47c90c=_0x4a9685;var _0x4e34b8,_0x2bbacb;return(_0x2bbacb=(_0x4e34b8=this[_0x47c90c(0x168)])[_0x47c90c(0x45b)])==null?void 0x0:_0x2bbacb[_0x47c90c(0x20c)](_0x4e34b8,_0xd4df5c);}[_0x4a9685(0x5e5)](_0x3505aa){const _0x711246=_0x4a9685;var _0x198abe,_0x40e46c;return(_0x40e46c=(_0x198abe=this[_0x711246(0x168)])['onTransformState'])==null?void 0x0:_0x40e46c[_0x711246(0x20c)](_0x198abe,_0x3505aa);}['_transformRemoteChangesetByIMECache'](_0x53b7f2){const _0x23f861=_0x4a9685;var _0x286f72,_0x161305,_0x3ce5b1;return(_0x3ce5b1=(_0x161305=(_0x286f72=this[_0x23f861(0x168)])[_0x23f861(0x4aa)])==null?void 0x0:_0x161305[_0x23f861(0x20c)](_0x286f72,_0x53b7f2))!=null?_0x3ce5b1:_0x53b7f2;}['_transformRemoteChangesetByStateCache'](_0x4b9bd8){const _0x16c072=_0x4a9685;var _0x400d6b,_0x3688e6,_0x2cd924;return(_0x2cd924=(_0x3688e6=(_0x400d6b=this[_0x16c072(0x168)])[_0x16c072(0x5a0)])==null?void 0x0:_0x3688e6[_0x16c072(0x20c)](_0x400d6b,_0x4b9bd8))!=null?_0x2cd924:_0x4b9bd8;}[_0x4a9685(0x233)](_0x2b2f28){const _0x16bd41=_0x4a9685;var _0x1ec4ce,_0x55b033;if(this[_0x16bd41(0x3e4)]===ie[_0x16bd41(0x22a)]){const {unitID:_0x352632,mutations:_0x3bcf5e,memberID:_0x1b37e6}=_0x2b2f28,_0x2b2789=_0x3bcf5e[0x0][_0x16bd41(0x4da)][_0x16bd41(0x236)];Array[_0x16bd41(0x36d)](_0x2b2789)&&_0x2b2789[_0x16bd41(0x530)]>0x0&&((_0x55b033=(_0x1ec4ce=this[_0x16bd41(0x168)])[_0x16bd41(0x379)])==null||_0x55b033[_0x16bd41(0x20c)](_0x1ec4ce,{'unitID':_0x352632,'memberID':_0x1b37e6,'textRanges':_0x2b2789}));}}[_0x4a9685(0x29e)](){const _0x74b427=_0x4a9685;this[_0x74b427(0x142)][_0x74b427(0x14f)](this[_0x74b427(0x197)],this[_0x74b427(0x3e4)],this['_awaitingChangeset'],this[_0x74b427(0x256)]);}[_0x4a9685(0x342)](){const _0x2c896d=_0x4a9685;return this[_0x2c896d(0x26d)][_0x2c896d(0x3e5)](this[_0x2c896d(0x197)]);}[_0x4a9685(0x25f)](){const _0x450b70=_0x4a9685;this['_revisionService'][_0x450b70(0x1d8)](this[_0x450b70(0x197)]);}[_0x4a9685(0x5b3)](_0x3010bc){const _0x352925=_0x4a9685;var _0x416b6f;let _0x86cfa=this['_transformRemoteChangesetByIMECache'](_0x3010bc);_0x86cfa=this[_0x352925(0x452)](_0x86cfa);const _0x6d9326=a['sequenceExecute'](_0x86cfa['mutations'],this[_0x352925(0x55e)],{'fromCollab':!0x0});if(!_0x6d9326[_0x352925(0x30f)])throw _0x6d9326[_0x352925(0x3d8)]instanceof Error?_0x6d9326['error']:new Error((_0x416b6f=_0x6d9326[_0x352925(0x3d8)])!=null?_0x416b6f:_0x352925(0x136));this[_0x352925(0x43a)](_0x86cfa),this[_0x352925(0x5e5)](_0x86cfa),this[_0x352925(0x53b)](_0x3010bc),this[_0x352925(0x335)](_0x86cfa),this['_syncEditingCollabCursor'](_0x86cfa),this[_0x352925(0x25f)]();}}let Oe=class extends Ce{constructor(_0x2739a2,_0x133aa4,_0x4b35eb,_0x5303a2,_0x28ed98,_0x376622,_0x2cc051,_0xe33258,_0x7b872d,_0x4f72db){const _0xea5f69=_0x4a9685;super(_0x2739a2,_0x133aa4,null,[],_0x4b35eb,_0xe33258,_0x2cc051,_0x5303a2,_0x28ed98),I(this,_0xea5f69(0x226),_0xea5f69(0x3dd)),(this[_0xea5f69(0x372)]=_0x376622,this[_0xea5f69(0x480)]=_0x7b872d,this[_0xea5f69(0x4f6)]=_0x4f72db);}['appendMutation'](_0x563c1f){const _0x536cee=_0x4a9685,_0x349d28=this[_0x536cee(0x372)]['createInstance'](ce,this[_0x536cee(0x197)],this[_0x536cee(0x3e4)],[_0x563c1f],this['_handler']);return _0x349d28[_0x536cee(0x3a8)](),_0x349d28[_0x536cee(0x29e)](),_0x349d28;}[_0x4a9685(0x2bf)](_0x380901){const _0x21d2b0=_0x4a9685;if(this[_0x21d2b0(0x34d)](_0x380901))return this['_injector'][_0x21d2b0(0x572)](re,this[_0x21d2b0(0x197)],this[_0x21d2b0(0x3e4)],null,[],null,[_0x380901],this[_0x21d2b0(0x168)]);try{const _0x16e3a4=this['_transformService'][_0x21d2b0(0x4ed)](_0x380901,[ji]);if(S['isTransformMutationsWithChangesetSuccess'](_0x16e3a4)){const {c1Prime:_0x5c6748}=_0x16e3a4;return this['_executeRemoteChangeset'](_0x5c6748),this;}throw _0x16e3a4[_0x21d2b0(0x3d8)];}catch(_0x31781b){return this[_0x21d2b0(0x480)][_0x21d2b0(0x3d8)](_0x31781b),this[_0x21d2b0(0x341)](!0x1);}}[_0x4a9685(0x341)](_0x53d5d0){const _0x459c52=_0x4a9685;return this[_0x459c52(0x372)]['createInstance'](ve,this['unitID'],this[_0x459c52(0x3e4)],null,[],this['_handler'],_0x53d5d0);}[_0x4a9685(0x3e9)](){const _0x1fab31=_0x4a9685;throw new Error(_0x1fab31(0x1a6));}[_0x4a9685(0x37b)](){throw new Error('[SyncedState]:\x20received\x20rejection.');}[_0x4a9685(0x2df)](){return this;}[_0x4a9685(0x3b7)](){const _0x4c9994=_0x4a9685;return this[_0x4c9994(0x372)]['createInstance'](me,this[_0x4c9994(0x197)],this['type'],null,[],this[_0x4c9994(0x168)]);}[_0x4a9685(0x2aa)](){return this;}['resend'](){const _0x43e29a=_0x4a9685;throw new Error(_0x43e29a(0x3f6));}[_0x4a9685(0x288)](){const _0x1e83ee=_0x4a9685,_0x45f615=this[_0x1e83ee(0x26d)][_0x1e83ee(0x3e5)](this[_0x1e83ee(0x197)]);return this[_0x1e83ee(0x168)][_0x1e83ee(0x354)]({'from':_0x45f615,'to':0x0}),this['_injector'][_0x1e83ee(0x572)](re,this[_0x1e83ee(0x197)],this[_0x1e83ee(0x3e4)],null,[],null,[],this['_handler']);}};Oe=Ie([N(0x3,a[_0x4a9685(0x27a)](S['RevisionService'])),N(0x4,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1a0)])),N(0x5,a[_0x4a9685(0x27a)](a['Injector'])),N(0x6,a['IUndoRedoService']),N(0x7,a['ICommandService']),N(0x8,a[_0x4a9685(0x2e8)]),N(0x9,S[_0x4a9685(0x315)])],Oe);let ce=class extends Ce{constructor(_0x987cb9,_0x377578,_0x38a074,_0x4c69ee,_0x1167f5,_0xdb5536,_0x81ac67,_0x5d4499,_0x33408d,_0x14cda2,_0x1ec550,_0x34e453,_0x2a6a99,_0x44dfcb){const _0x1b0e50=_0x4a9685;super(_0x987cb9,_0x377578,null,_0x38a074,_0x4c69ee,_0x14cda2,_0x44dfcb,_0xdb5536,_0x81ac67),I(this,_0x1b0e50(0x226),_0x1b0e50(0x3f0)),I(this,_0x1b0e50(0x267),null),I(this,_0x1b0e50(0x583),null),(this[_0x1b0e50(0x372)]=_0x1167f5,this[_0x1b0e50(0x1f9)]=_0x5d4499,this[_0x1b0e50(0x480)]=_0x33408d,this[_0x1b0e50(0x294)]=_0x1ec550,this['_transformService']=_0x34e453,this[_0x1b0e50(0x54a)]=_0x2a6a99);}[_0x4a9685(0x40c)](_0x3f9ee2){const _0x6de967=_0x4a9685;return this[_0x6de967(0x256)]['push'](_0x3f9ee2),this[_0x6de967(0x29e)](),this;}[_0x4a9685(0x2bf)](_0x400500){const _0x49047f=_0x4a9685;if(this[_0x49047f(0x34d)](_0x400500))return this[_0x49047f(0x1ba)](),this[_0x49047f(0x372)]['createInstance'](re,this['unitID'],this[_0x49047f(0x3e4)],null,this[_0x49047f(0x256)],null,[_0x400500],this[_0x49047f(0x168)]);try{const _0x50b184=this[_0x49047f(0x4f6)][_0x49047f(0x4ed)](_0x400500,this['_pendingMutations']);if(S['isTransformMutationsWithChangesetSuccess'](_0x50b184)){const {c1Prime:_0x5ad64d,m2Prime:_0x330aeb}=_0x50b184;this['_executeRemoteChangeset'](_0x5ad64d);const _0x250f79=this[_0x49047f(0x372)][_0x49047f(0x572)](ce,this[_0x49047f(0x197)],this['type'],_0x330aeb,this[_0x49047f(0x168)]);return this['_clearScheduledTask'](),_0x250f79[_0x49047f(0x3a8)](this['_scheduleTimestamp']?Math['max'](0x0,new Date()[_0x49047f(0x1d1)]()-this['_scheduleTimestamp']):this[_0x49047f(0x3cb)]()),_0x250f79;}throw _0x50b184[_0x49047f(0x3d8)];}catch(_0x36a407){return this[_0x49047f(0x480)]['error'](_0x36a407),this['_onConflict'](!0x1);}}[_0x4a9685(0x3e9)](){const _0x1da277=_0x4a9685;throw new Error(_0x1da277(0x4e0));}['onRemoteRej'](){const _0xb24ad4=_0x4a9685;throw new Error(_0xb24ad4(0x391));}[_0x4a9685(0x2df)](){return this;}[_0x4a9685(0x3b7)](){const _0x42bc73=_0x4a9685;return this[_0x42bc73(0x1ba)](),this[_0x42bc73(0x372)][_0x42bc73(0x572)](me,this['unitID'],this['type'],null,this[_0x42bc73(0x256)],this['_handler']);}[_0x4a9685(0x2aa)](){return this;}[_0x4a9685(0x3a8)](_0x4a75bb){const _0x35ba8=_0x4a9685,_0x1111b5=_0x4a75bb!=null?_0x4a75bb:this['_getSendChangesetTimeout']();this[_0x35ba8(0x267)]=new Date()[_0x35ba8(0x1d1)](),this[_0x35ba8(0x583)]=window[_0x35ba8(0x595)](()=>{const _0x4dc62b=_0x35ba8;this['_clearScheduledTask']();let _0x41a809=null;switch(this[_0x4dc62b(0x3e4)]){case ie['UNIVER_SHEET']:{_0x41a809=jt(this[_0x4dc62b(0x256)],this[_0x4dc62b(0x197)],this[_0x4dc62b(0x54a)],this[_0x4dc62b(0x26d)],this[_0x4dc62b(0x1f9)]);break;}case ie[_0x4dc62b(0x22a)]:{this['_pendingMutations'][_0x4dc62b(0x4b0)](_0x24c355=>_0x24c355['id']===ye[_0x4dc62b(0x4de)]['id'])?_0x41a809=xi(this[_0x4dc62b(0x256)],this[_0x4dc62b(0x197)],this['_univerInstanceService'],this[_0x4dc62b(0x26d)],this[_0x4dc62b(0x1f9)]):_0x41a809=jt(this[_0x4dc62b(0x256)],this['unitID'],this['_univerInstanceService'],this[_0x4dc62b(0x26d)],this['_memberService']);break;}default:throw new Error(_0x4dc62b(0x45f)+this[_0x4dc62b(0x3e4)]+_0x4dc62b(0x534));}const {changeset:_0x2f95fe,pendingMutations:_0x4929cf}=_0x41a809;this[_0x4dc62b(0x168)][_0x4dc62b(0x2b8)](_0x2f95fe);const _0xe065d9=_0x4929cf[_0x4dc62b(0x530)]?this[_0x4dc62b(0x372)]['createInstance'](le,this[_0x4dc62b(0x197)],this[_0x4dc62b(0x3e4)],_0x2f95fe,_0x4929cf,this['_handler'],void 0x0):this[_0x4dc62b(0x372)][_0x4dc62b(0x572)](fe,this['unitID'],this[_0x4dc62b(0x3e4)],_0x2f95fe,this[_0x4dc62b(0x168)]);_0xe065d9[_0x4dc62b(0x29e)](),this[_0x4dc62b(0x168)][_0x4dc62b(0x24b)](this,_0xe065d9);},_0x1111b5);}[_0x4a9685(0x3cb)](){const _0x2738da=_0x4a9685;var _0x5c40af;const _0x3cbd5c=this[_0x2738da(0x294)][_0x2738da(0x4a1)](te);return(_0x5c40af=_0x3cbd5c==null?void 0x0:_0x3cbd5c[_0x2738da(0x202)])!=null?_0x5c40af:kn;}[_0x4a9685(0x1dd)](){const _0x1940af=_0x4a9685;throw new Error(_0x1940af(0x48a));}[_0x4a9685(0x1ba)](){const _0x78272=_0x4a9685;this[_0x78272(0x583)]!=null&&(clearTimeout(this[_0x78272(0x583)]),this['_sendingTimer']=null);}[_0x4a9685(0x341)](_0x52d8fa){const _0xc4c151=_0x4a9685;return this[_0xc4c151(0x1ba)](),this[_0xc4c151(0x372)][_0xc4c151(0x572)](ve,this[_0xc4c151(0x197)],this[_0xc4c151(0x3e4)],null,this[_0xc4c151(0x256)],this[_0xc4c151(0x168)],_0x52d8fa);}};ce=Ie([N(0x4,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),N(0x5,a[_0x4a9685(0x27a)](S['RevisionService'])),N(0x6,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1a0)])),N(0x7,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x3e1)])),N(0x8,a[_0x4a9685(0x2e8)]),N(0x9,a[_0x4a9685(0x449)]),N(0xa,a[_0x4a9685(0x3fb)]),N(0xb,S[_0x4a9685(0x315)]),N(0xc,a[_0x4a9685(0x3c5)]),N(0xd,a[_0x4a9685(0x23b)])],ce);let fe=class extends Ce{constructor(_0x48bf8e,_0x532070,_0x2f6ee5,_0x36421,_0x586c09,_0x3ef998,_0x1e7b0f,_0x14c955,_0xbc1b4f,_0x434ca3,_0x456db9){const _0x4462fb=_0x4a9685;super(_0x48bf8e,_0x532070,_0x2f6ee5,[],_0x36421,_0x14c955,_0x456db9,_0x3ef998,_0x1e7b0f),I(this,_0x4462fb(0x226),_0x4462fb(0x529)),I(this,_0x4462fb(0x4df),0x0),I(this,_0x4462fb(0x177)),I(this,_0x4462fb(0x2a8)),(this['_injector']=_0x586c09,this[_0x4462fb(0x480)]=_0xbc1b4f,this[_0x4462fb(0x4f6)]=_0x434ca3);}[_0x4a9685(0x40c)](_0x3997a8){const _0xa1a965=_0x4a9685;this['_clearScheduledTask']();const _0x13f673=this['_injector'][_0xa1a965(0x572)](le,this[_0xa1a965(0x197)],this[_0xa1a965(0x3e4)],this[_0xa1a965(0x249)],[_0x3997a8],this[_0xa1a965(0x168)],this['_resendTimer']);return _0x13f673['_updateLocalCache'](),_0x13f673;}[_0x4a9685(0x2bf)](_0x33c424){const _0x171ba3=_0x4a9685;if(this[_0x171ba3(0x34d)](_0x33c424))return this[_0x171ba3(0x1ba)](),this[_0x171ba3(0x372)][_0x171ba3(0x572)](re,this['unitID'],this[_0x171ba3(0x3e4)],this[_0x171ba3(0x249)],[],null,[_0x33c424],this[_0x171ba3(0x168)]);try{const _0x21a9de=this['_transformService']['transformChangesets']([_0x33c424],[this['_awaitingChangeset']],!0x1);if(S[_0x171ba3(0x13e)](_0x21a9de)){const {c1Prime:_0x3ac792,c2Prime:_0x5a9bf3}=_0x21a9de;this[_0x171ba3(0x5b3)](_0x3ac792[0x0]),_0x5a9bf3[0x0][_0x171ba3(0x5f0)]=this[_0x171ba3(0x342)](),this['_clearScheduledTask']();const _0x5de4d1=this[_0x171ba3(0x372)][_0x171ba3(0x572)](fe,this[_0x171ba3(0x197)],this[_0x171ba3(0x3e4)],_0x5a9bf3[0x0],this[_0x171ba3(0x168)]);return _0x5de4d1[_0x171ba3(0x29e)](),_0x5de4d1;}return this[_0x171ba3(0x341)](!0x1);}catch(_0x2f6522){return this[_0x171ba3(0x480)][_0x171ba3(0x3d8)](_0x2f6522),this[_0x171ba3(0x341)](!0x1);}}[_0x4a9685(0x3e9)](_0x211bbb){const _0x432e95=_0x4a9685;this[_0x432e95(0x1ba)]();const _0x557efd=this[_0x432e95(0x26d)]['getCurrentRevOfUnit'](this['unitID']);if(_0x211bbb[_0x432e95(0x33a)]<_0x557efd-0x1)return this;if(this['_checkMissing'](_0x211bbb))return this[_0x432e95(0x372)][_0x432e95(0x572)](re,this[_0x432e95(0x197)],this[_0x432e95(0x3e4)],null,[],this[_0x432e95(0x249)],[],this[_0x432e95(0x168)]);this[_0x432e95(0x25f)]();const _0x1febf0=this[_0x432e95(0x372)][_0x432e95(0x572)](Oe,this[_0x432e95(0x197)],this[_0x432e95(0x3e4)],this[_0x432e95(0x168)]);return _0x1febf0[_0x432e95(0x29e)](),_0x1febf0;}['onRemoteRej'](_0x31e1be){const _0x4a1c95=_0x4a9685;return this[_0x4a1c95(0x341)](!!(_0x31e1be!=null&&_0x31e1be['isPermissionRej']));}[_0x4a9685(0x2df)](_0x50751a){const _0x5d665d=_0x4a9685;return this[_0x5d665d(0x4df)]>vn?this[_0x5d665d(0x3b7)]():(this['_resendTimer']=fn(this[_0x5d665d(0x4df)],{'timeout':this[_0x5d665d(0x4df)],'reqId':_0x50751a[_0x5d665d(0x586)]}),this[_0x5d665d(0x2a8)]=this[_0x5d665d(0x177)]['subscribe'](({reqId:_0x2a8f01,timeout:_0x56610d})=>{const _0x3958b0=_0x5d665d;this[_0x3958b0(0x1e6)](_0x2a8f01,_0x56610d);}),this);}[_0x4a9685(0x3b7)](){const _0x1c1a9a=_0x4a9685;return this[_0x1c1a9a(0x1ba)](),this[_0x1c1a9a(0x372)][_0x1c1a9a(0x572)](me,this['unitID'],this[_0x1c1a9a(0x3e4)],this['_awaitingChangeset'],[],this[_0x1c1a9a(0x168)]);}[_0x4a9685(0x2aa)](){return this;}[_0x4a9685(0x1dd)](){const _0x4d39a7=_0x4a9685;this[_0x4d39a7(0x168)][_0x4d39a7(0x2b8)](this[_0x4d39a7(0x249)]);}[_0x4a9685(0x341)](_0x4f4eaf){const _0x43a3d5=_0x4a9685;return this['_clearScheduledTask'](),this[_0x43a3d5(0x372)][_0x43a3d5(0x572)](ve,this['unitID'],this[_0x43a3d5(0x3e4)],this[_0x43a3d5(0x249)],[],this['_handler'],_0x4f4eaf);}[_0x4a9685(0x1e6)](_0x208b73,_0x1fc626){const _0x2bbe4f=_0x4a9685;var _0x403338;_0x208b73===((_0x403338=this[_0x2bbe4f(0x249)])==null?void 0x0:_0x403338[_0x2bbe4f(0x586)])&&(this[_0x2bbe4f(0x1dd)](),this[_0x2bbe4f(0x4df)]=_0x1fc626===0x0?0x3e8:_0x1fc626*0x2);}[_0x4a9685(0x1ba)](){const _0x4dec7e=_0x4a9685;var _0x26934f;(_0x26934f=this[_0x4dec7e(0x2a8)])==null||_0x26934f[_0x4dec7e(0x402)](),this['_resendTimeout']=0x0;}};fe=Ie([N(0x4,a[_0x4a9685(0x27a)](a['Injector'])),N(0x5,a[_0x4a9685(0x27a)](S[_0x4a9685(0x1a9)])),N(0x6,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1a0)])),N(0x7,a[_0x4a9685(0x449)]),N(0x8,a[_0x4a9685(0x2e8)]),N(0x9,S[_0x4a9685(0x315)]),N(0xa,a[_0x4a9685(0x23b)])],fe);let le=class extends Ce{constructor(_0x53a8a7,_0x2b9449,_0x1be90b,_0x1297d9,_0x88dfd3,_0x303b43,_0x186116,_0x124e2b,_0x3568f2,_0xed038c,_0x109d4a,_0xc1f37b,_0x376ec4){const _0x1836a4=_0x4a9685;super(_0x53a8a7,_0x2b9449,_0x1be90b,_0x1297d9,_0x88dfd3,_0xed038c,_0x376ec4,_0x124e2b,_0x3568f2),I(this,_0x1836a4(0x226),'awaiting_with_pending'),I(this,_0x1836a4(0x4df),0x0),I(this,'_resendTimer'),I(this,_0x1836a4(0x2a8)),(this[_0x1836a4(0x372)]=_0x186116,this[_0x1836a4(0x480)]=_0x109d4a,this[_0x1836a4(0x4f6)]=_0xc1f37b,_0x303b43&&(this[_0x1836a4(0x177)]=_0x303b43,this[_0x1836a4(0x2a8)]=this[_0x1836a4(0x177)][_0x1836a4(0x419)](({reqId:_0x2186fb,timeout:_0x1be389})=>{const _0x122033=_0x1836a4;this[_0x122033(0x1e6)](_0x2186fb,_0x1be389);})));}[_0x4a9685(0x40c)](_0x5d3193){const _0x4d73b8=_0x4a9685;return this[_0x4d73b8(0x256)][_0x4d73b8(0x3d6)](_0x5d3193),this;}['onRemoteChangeset'](_0x445c07){const _0x589140=_0x4a9685;if(this[_0x589140(0x34d)](_0x445c07))return this[_0x589140(0x1ba)](),this[_0x589140(0x372)]['createInstance'](re,this[_0x589140(0x197)],this[_0x589140(0x3e4)],this[_0x589140(0x249)],this['_pendingMutations'],null,[_0x445c07],this[_0x589140(0x168)]);try{const _0x4a46e8=this[_0x589140(0x4f6)][_0x589140(0x3d5)]([_0x445c07],[this[_0x589140(0x249)]],!0x1);if(S['isTransformChangesetsSuccess'](_0x4a46e8)){const {c1Prime:_0x3f2ae1,c2Prime:_0x173712}=_0x4a46e8,_0x114efa=this[_0x589140(0x4f6)][_0x589140(0x4ed)](_0x3f2ae1[0x0],this[_0x589140(0x256)]);if(S[_0x589140(0x453)](_0x114efa)){const {c1Prime:_0x2f83de,m2Prime:_0x4845c3}=_0x114efa;return this['_executeRemoteChangeset'](_0x2f83de),_0x173712[0x0][_0x589140(0x5f0)]=this[_0x589140(0x342)](),this[_0x589140(0x1ba)](),this[_0x589140(0x372)][_0x589140(0x572)](le,this[_0x589140(0x197)],this['type'],_0x173712[0x0],_0x4845c3,this['_handler'],void 0x0);}throw _0x114efa[_0x589140(0x3d8)];}throw _0x4a46e8[_0x589140(0x3d8)];}catch(_0x26d7f9){return this['_logService'][_0x589140(0x3d8)](_0x26d7f9),this[_0x589140(0x341)](!0x1);}}[_0x4a9685(0x3e9)](_0x158297){const _0x237fed=_0x4a9685;if(this[_0x237fed(0x1ba)](),this[_0x237fed(0x34d)](_0x158297))return this[_0x237fed(0x372)][_0x237fed(0x572)](re,this[_0x237fed(0x197)],this['type'],null,this[_0x237fed(0x256)],this['_awaitingChangeset'],[],this[_0x237fed(0x168)]);this[_0x237fed(0x25f)]();const _0x175135=this['_injector'][_0x237fed(0x572)](ce,this[_0x237fed(0x197)],this[_0x237fed(0x3e4)],this[_0x237fed(0x256)],this[_0x237fed(0x168)]);return _0x175135[_0x237fed(0x3a8)](),_0x175135[_0x237fed(0x29e)](),_0x175135;}['onRemoteRej'](_0x4fff06){return this['_onConflict'](!!(_0x4fff06!=null&&_0x4fff06['isPermissionRej']));}['onRemoteRetry'](_0x533e5a){const _0x14c5e9=_0x4a9685;return this[_0x14c5e9(0x4df)]>vn?this[_0x14c5e9(0x3b7)]():(this[_0x14c5e9(0x177)]=fn(this[_0x14c5e9(0x4df)],{'timeout':this[_0x14c5e9(0x4df)],'reqId':_0x533e5a[_0x14c5e9(0x586)]}),this[_0x14c5e9(0x2a8)]=this['_resendTimer'][_0x14c5e9(0x419)](({reqId:_0x48027b,timeout:_0xa05bb2})=>{const _0xb93115=_0x14c5e9;this[_0xb93115(0x1e6)](_0x48027b,_0xa05bb2);}),this);}[_0x4a9685(0x3b7)](){const _0x3e0f44=_0x4a9685;return this[_0x3e0f44(0x1ba)](),this[_0x3e0f44(0x372)][_0x3e0f44(0x572)](me,this['unitID'],this[_0x3e0f44(0x3e4)],this[_0x3e0f44(0x249)],this[_0x3e0f44(0x256)],this['_handler']);}[_0x4a9685(0x2aa)](){return this;}[_0x4a9685(0x1dd)](){const _0xee4713=_0x4a9685;this[_0xee4713(0x168)][_0xee4713(0x2b8)](this[_0xee4713(0x249)]);}[_0x4a9685(0x341)](_0x14b011){const _0x2f245e=_0x4a9685;return this[_0x2f245e(0x1ba)](),this[_0x2f245e(0x372)][_0x2f245e(0x572)](ve,this[_0x2f245e(0x197)],this['type'],null,this[_0x2f245e(0x256)],this[_0x2f245e(0x168)],_0x14b011);}[_0x4a9685(0x1e6)](_0x498ac8,_0x21bb72){const _0x10498b=_0x4a9685;var _0x508d8a;_0x498ac8===((_0x508d8a=this[_0x10498b(0x249)])==null?void 0x0:_0x508d8a[_0x10498b(0x586)])&&(this[_0x10498b(0x1dd)](),this[_0x10498b(0x4df)]=_0x21bb72===0x0?0x3e8:_0x21bb72*0x2);}[_0x4a9685(0x1ba)](){const _0x2d2a7d=_0x4a9685;var _0xd269a5;(_0xd269a5=this['_sender'])==null||_0xd269a5[_0x2d2a7d(0x402)](),this[_0x2d2a7d(0x4df)]=0x0;}};le=Ie([N(0x6,a['Inject'](a[_0x4a9685(0x17d)])),N(0x7,a[_0x4a9685(0x27a)](S[_0x4a9685(0x1a9)])),N(0x8,a[_0x4a9685(0x27a)](exports['LocalCacheService'])),N(0x9,a[_0x4a9685(0x449)]),N(0xa,a['ILogService']),N(0xb,S['ITransformService']),N(0xc,a[_0x4a9685(0x23b)])],le);let ve=class extends Ce{constructor(_0x7bb8c4,_0x332ed7,_0x1cf206,_0x17e878,_0x591023,_0x1d3aef=!0x1,_0x20c1a3,_0x123a2e,_0x236b98,_0xdd7aea,_0x4e1e6b,_0x22b8bc,_0x4bd779){const _0x52d4c5=_0x4a9685;super(_0x7bb8c4,_0x332ed7,_0x1cf206,_0x17e878,_0x591023,_0x123a2e,_0x236b98,_0x4e1e6b,_0xdd7aea),I(this,'status','conflict'),(this[_0x52d4c5(0x3ba)]=_0x1d3aef,this[_0x52d4c5(0x3e0)]=_0x20c1a3,this[_0x52d4c5(0x39c)]=_0x22b8bc,this[_0x52d4c5(0x31d)]=_0x4bd779,this['_showConflictNotification'](),this['_clearLocalCache'](),this[_0x52d4c5(0x1b5)]());}[_0x4a9685(0x40c)](){return this;}[_0x4a9685(0x2bf)](){return this;}['onRemoteAck'](){return this;}['onRemoteRej'](){return this;}[_0x4a9685(0x2df)](){return this;}[_0x4a9685(0x3b7)](){return this;}[_0x4a9685(0x2aa)](){return this;}['resend'](){const _0x24c2e0=_0x4a9685;throw new Error(_0x24c2e0(0x280));}[_0x4a9685(0x364)](){const _0x3d9836=_0x4a9685;this[_0x3d9836(0x142)]['updateOfflineData'](this['unitID'],this[_0x3d9836(0x3e4)],null,[]);}[_0x4a9685(0x15f)](){const _0x52307c=_0x4a9685;this[_0x52307c(0x3ba)]?this[_0x52307c(0x31d)][_0x52307c(0x36b)]({'title':this[_0x52307c(0x39c)]['t'](_0x52307c(0x18b)),'content':this['_localeService']['t'](_0x52307c(0x51c)),'type':_0x52307c(0x3d8),'duration':0x0}):this[_0x52307c(0x31d)][_0x52307c(0x36b)]({'title':this['_localeService']['t'](_0x52307c(0x4d6)),'content':this[_0x52307c(0x39c)]['t'](_0x52307c(0x51b)),'type':'error','duration':0x0});}[_0x4a9685(0x1b5)](){const _0x14444b=_0x4a9685;this['_permissionService'][_0x14444b(0x38e)](new k[(_0x14444b(0x1ef))](this[_0x14444b(0x197)])['id'],!0x1);}};ve=Ie([N(0x6,a[_0x4a9685(0x27a)](a[_0x4a9685(0x310)])),N(0x7,a[_0x4a9685(0x449)]),N(0x8,a['IUndoRedoService']),N(0x9,a[_0x4a9685(0x27a)](exports['LocalCacheService'])),N(0xa,a[_0x4a9685(0x27a)](S[_0x4a9685(0x1a9)])),N(0xb,a[_0x4a9685(0x27a)](a[_0x4a9685(0x4a8)])),N(0xc,ee['INotificationService'])],ve);let me=class extends Ce{constructor(_0x34b251,_0x3cf9ee,_0x310e7c,_0x42c445,_0x463f83,_0x1a8a75,_0x277c7a,_0x5651d2,_0x5dd647,_0x3b8b75){const _0x3dc074=_0x4a9685;super(_0x34b251,_0x3cf9ee,_0x310e7c,_0x42c445,_0x463f83,_0x5dd647,_0x3b8b75,_0x277c7a,_0x5651d2),I(this,_0x3dc074(0x226),_0x3dc074(0x277)),this['_injector']=_0x1a8a75;}['appendMutation'](_0x449f74){const _0x14873e=_0x4a9685;return this[_0x14873e(0x256)][_0x14873e(0x3d6)](_0x449f74),this[_0x14873e(0x29e)](),this;}[_0x4a9685(0x2bf)](_0x598d37){const _0x2c0f1c=_0x4a9685;throw new Error(_0x2c0f1c(0x444));}['onRemoteAck'](){const _0x3c1e6b=_0x4a9685;throw new Error(_0x3c1e6b(0x3d3));}['onRemoteRej'](){const _0x532fbe=_0x4a9685;throw new Error(_0x532fbe(0x58b));}[_0x4a9685(0x2df)](){return this;}[_0x4a9685(0x3b7)](){return this;}[_0x4a9685(0x2aa)](){const _0x589aff=_0x4a9685,{_injector:_0xbdac23,_pendingMutations:_0x354862,_awaitingChangeset:_0x2efb45,unitID:_0x3a53dc,_handler:_0x2dd70f,type:_0x1f9e9d}=this,_0x3cd3be=mn(_0xbdac23,_0x3a53dc,_0x1f9e9d,_0x2efb45,_0x354862,_0x2dd70f);return _0x3cd3be instanceof ce?_0x3cd3be[_0x589aff(0x3a8)]():(_0x3cd3be instanceof le||_0x3cd3be instanceof fe)&&_0x3cd3be['resend'](),_0x3cd3be;}[_0x4a9685(0x1dd)](){const _0x2f3950=_0x4a9685;throw new Error(_0x2f3950(0x274));}};me=Ie([N(0x5,a[_0x4a9685(0x27a)](a['Injector'])),N(0x6,a['Inject'](S[_0x4a9685(0x1a9)])),N(0x7,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1a0)])),N(0x8,a[_0x4a9685(0x449)]),N(0x9,a[_0x4a9685(0x23b)])],me);let re=class extends Ce{constructor(_0x1d3799,_0xb42ce2,_0x43c2c4,_0x4b8e05,_0x184075,_0x103884,_0x3eeb15,_0x53909f,_0x286684,_0x16f268,_0x6f3697,_0x2a2ecd,_0x1c267a,_0x290b86){const _0x27ffd3=_0x4a9685;super(_0x1d3799,_0xb42ce2,_0x43c2c4,_0x4b8e05,_0x3eeb15,_0x2a2ecd,_0x1c267a,_0x286684,_0x16f268),I(this,_0x27ffd3(0x226),_0x27ffd3(0x255)),(this[_0x27ffd3(0x414)]=_0x184075,this[_0x27ffd3(0x1bc)]=_0x103884,this[_0x27ffd3(0x372)]=_0x53909f,this[_0x27ffd3(0x480)]=_0x6f3697,this[_0x27ffd3(0x4f6)]=_0x290b86);}[_0x4a9685(0x144)](_0x1ddb28){const _0x4273aa=_0x4a9685;try{const _0x9d38a6=[..._0x1ddb28,...this['_queuedRemoteChangesets']],_0x9da79d=[this['_awaitingChangeset']||this[_0x4273aa(0x414)]][_0x4273aa(0x464)](_0x582d4b=>!!_0x582d4b);let _0xb06faf,_0x24d492;if(_0x9da79d[_0x4273aa(0x530)]){const _0x266a61=this[_0x4273aa(0x4f6)][_0x4273aa(0x3d5)](_0x9d38a6,_0x9da79d,!0x1);if(!S['isTransformChangesetsSuccess'](_0x266a61))throw _0x266a61[_0x4273aa(0x3d8)];_0xb06faf=_0x266a61['c1Prime'],_0x24d492=_0x266a61[_0x4273aa(0x2ad)];}else _0xb06faf=_0x9d38a6,_0x24d492=[];let _0x2ac278=this['_pendingMutations'];_0xb06faf[_0x4273aa(0x38f)](_0x442eb2=>{const _0x83da00=_0x4273aa;let _0x3c4bd8;if(_0x2ac278[_0x83da00(0x530)]){const _0x593f06=this['_transformService'][_0x83da00(0x4ed)](_0x442eb2,_0x2ac278);if(!S[_0x83da00(0x453)](_0x593f06))throw _0x593f06[_0x83da00(0x3d8)];_0x3c4bd8=_0x593f06[_0x83da00(0x51e)],_0x2ac278=_0x593f06[_0x83da00(0x403)];}else _0x3c4bd8=_0x442eb2;this['_executeRemoteChangeset'](_0x3c4bd8);}),this['_acknowledgedAwaitingChangeset']&&this['_incrementRevisionNumber'](),this[_0x4273aa(0x249)]&&_0x24d492[_0x4273aa(0x530)]&&(_0x24d492[0x0][_0x4273aa(0x5f0)]=this[_0x4273aa(0x342)]());let _0x78556d;if(this[_0x4273aa(0x249)]&&_0x2ac278[_0x4273aa(0x530)]!==0x0)_0x78556d=this[_0x4273aa(0x372)]['createInstance'](le,this[_0x4273aa(0x197)],this[_0x4273aa(0x3e4)],_0x24d492[0x0],_0x2ac278,this[_0x4273aa(0x168)],void 0x0);else{if(this[_0x4273aa(0x249)]&&_0x2ac278[_0x4273aa(0x530)]===0x0)_0x24d492[0x0]['baseRev']=this[_0x4273aa(0x342)](),_0x78556d=this['_injector'][_0x4273aa(0x572)](fe,this['unitID'],this[_0x4273aa(0x3e4)],_0x24d492[0x0],this[_0x4273aa(0x168)]);else{if(_0x2ac278[_0x4273aa(0x530)]!==0x0){const _0x43b4ac=this['_injector'][_0x4273aa(0x572)](ce,this[_0x4273aa(0x197)],this[_0x4273aa(0x3e4)],_0x2ac278,this[_0x4273aa(0x168)]);_0x43b4ac[_0x4273aa(0x3a8)](),_0x78556d=_0x43b4ac;}else _0x78556d=this[_0x4273aa(0x372)]['createInstance'](Oe,this[_0x4273aa(0x197)],this[_0x4273aa(0x3e4)],this['_handler']);}}return _0x78556d[_0x4273aa(0x29e)](),_0x78556d;}catch(_0x5df43d){return this[_0x4273aa(0x480)][_0x4273aa(0x3d8)](_0x4273aa(0x1ce),_0x4273aa(0x140),_0x5df43d),this[_0x4273aa(0x372)][_0x4273aa(0x572)](ve,this[_0x4273aa(0x197)],this['type'],this[_0x4273aa(0x249)],this['_pendingMutations'],this[_0x4273aa(0x168)],!0x1);}}[_0x4a9685(0x1dd)](){throw new Error('[FetchingMissState]:\x20invalid\x20calling\x20to\x20`resend`.');}[_0x4a9685(0x40c)](_0x2cfeb1){const _0x2b869c=_0x4a9685;return this[_0x2b869c(0x256)][_0x2b869c(0x3d6)](_0x2cfeb1),this;}[_0x4a9685(0x2bf)](_0x5e7493){const _0x491372=_0x4a9685;return this[_0x491372(0x1bc)]['push'](_0x5e7493),this;}[_0x4a9685(0x3e9)](_0x3f2661){const _0x57ce5d=_0x4a9685;if(this['_awaitingChangeset'])return this[_0x57ce5d(0x414)]=this[_0x57ce5d(0x249)],this[_0x57ce5d(0x249)]=null,this;throw new Error(_0x57ce5d(0x2ed));}[_0x4a9685(0x37b)](_0x289181){const _0x517672=_0x4a9685;return this[_0x517672(0x341)](!!(_0x289181!=null&&_0x289181['isPermissionRej']));}[_0x4a9685(0x2df)](){return this;}['toggleOffline'](){const _0x2306bd=_0x4a9685;return this['_injector'][_0x2306bd(0x572)](me,this[_0x2306bd(0x197)],this['type'],this[_0x2306bd(0x249)],this[_0x2306bd(0x256)],this['_handler']);}['toggleOnline'](){return this;}[_0x4a9685(0x341)](_0xef6b08){const _0xb857c8=_0x4a9685;return this['_injector'][_0xb857c8(0x572)](ve,this[_0xb857c8(0x197)],this[_0xb857c8(0x3e4)],this[_0xb857c8(0x249)],this[_0xb857c8(0x256)],this[_0xb857c8(0x168)],_0xef6b08);}};re=Ie([N(0x7,a['Inject'](a[_0x4a9685(0x17d)])),N(0x8,a[_0x4a9685(0x27a)](S[_0x4a9685(0x1a9)])),N(0x9,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1a0)])),N(0xa,a[_0x4a9685(0x2e8)]),N(0xb,a[_0x4a9685(0x449)]),N(0xc,a[_0x4a9685(0x23b)]),N(0xd,S[_0x4a9685(0x315)])],re);function mn(_0x199429,_0x47afcf,_0x170bff,_0x4a8e22,_0x473ffb,_0x51ad88){const _0x384bdb=_0x4a9685;return _0x4a8e22&&_0x473ffb['length']?_0x199429[_0x384bdb(0x572)](le,_0x47afcf,_0x170bff,_0x4a8e22,_0x473ffb,_0x51ad88,void 0x0):_0x4a8e22?_0x199429['createInstance'](fe,_0x47afcf,_0x170bff,_0x4a8e22,_0x51ad88):_0x473ffb[_0x384bdb(0x530)]?_0x199429[_0x384bdb(0x572)](ce,_0x47afcf,_0x170bff,_0x473ffb,_0x51ad88):_0x199429[_0x384bdb(0x572)](Oe,_0x47afcf,_0x170bff,_0x51ad88);}var Bi=Object[_0x4a9685(0x377)],ki=Object[_0x4a9685(0x484)],yt=(_0x2b7223,_0x3f91b9,_0x1aa6c9,_0x4eafab)=>{for(var _0x550af9=_0x4eafab>0x1?void 0x0:_0x4eafab?ki(_0x3f91b9,_0x1aa6c9):_0x3f91b9,_0x3244ee=_0x2b7223['length']-0x1,_0x3be3d2;_0x3244ee>=0x0;_0x3244ee--)(_0x3be3d2=_0x2b7223[_0x3244ee])&&(_0x550af9=(_0x4eafab?_0x3be3d2(_0x3f91b9,_0x1aa6c9,_0x550af9):_0x3be3d2(_0x550af9))||_0x550af9);return _0x4eafab&&_0x550af9&&Bi(_0x3f91b9,_0x1aa6c9,_0x550af9),_0x550af9;},H=(_0x1dad1d,_0x374b24)=>(_0xff7d39,_0x5c2984)=>_0x374b24(_0xff7d39,_0x5c2984,_0x1dad1d);exports[_0x4a9685(0x469)]=class extends a[_0x4a9685(0x2c7)]{constructor(_0x37317a,_0x24eae1,_0x9ab4a,_0x16aed9,_0x59f9c9,_0x112065,_0xc5aa76,_0x1b9af9,_0x9580d5,_0x475998,_0x2992a0,_0x1845df,_0x160f50){const _0x51b813=_0x4a9685;super(),I(this,_0x51b813(0x497),new A[(_0x51b813(0x563))](null)),I(this,_0x51b813(0x189),this[_0x51b813(0x497)][_0x51b813(0x135)]()),I(this,'_state'),I(this,_0x51b813(0x40e),!0x1),I(this,'_changesetSessionId',''),I(this,'_changesetReqId',0x0),I(this,_0x51b813(0x4ba),this[_0x51b813(0x189)][_0x51b813(0x172)](A[_0x51b813(0x28a)](_0x3a7875=>_0x3a7875?_0x3a7875['status']:q[_0x51b813(0x338)]),A[_0x51b813(0x52c)](0x1))),I(this,_0x51b813(0x2ec),!0x1),I(this,_0x51b813(0x437),[]),(this['unitID']=_0x37317a,this[_0x51b813(0x305)]=_0x24eae1,this['_type']=_0x9ab4a,this[_0x51b813(0x372)]=_0x16aed9,this[_0x51b813(0x142)]=_0x59f9c9,this['_compressMutationService']=_0x112065,this[_0x51b813(0x39c)]=_0xc5aa76,this[_0x51b813(0x26d)]=_0x1b9af9,this[_0x51b813(0x480)]=_0x9580d5,this[_0x51b813(0x55e)]=_0x475998,this[_0x51b813(0x3a7)]=_0x2992a0,this[_0x51b813(0x3e0)]=_0x1845df,this[_0x51b813(0x214)]=_0x160f50);}get['state'](){const _0x5c4d42=_0x4a9685;return this[_0x5c4d42(0x16f)];}async[_0x4a9685(0x432)](){const _0x49b7e8=_0x4a9685;if(this['state'])throw new Error(_0x49b7e8(0x536));await this['_init']();}[_0x4a9685(0x228)](){const _0x45c668=_0x4a9685;return this[_0x45c668(0x40e)]=!0x0,a['toDisposable'](()=>{const _0xbb4faa=_0x45c668;this[_0xbb4faa(0x40e)]=!0x1,this[_0xbb4faa(0x5ca)]();});}[_0x4a9685(0x41b)](_0x23b4fd){const _0x43a581=_0x4a9685;this[_0x43a581(0x16f)]=_0x23b4fd,this[_0x43a581(0x497)]['next'](_0x23b4fd);}async[_0x4a9685(0x3f4)](){const _0x499bf2=_0x4a9685;var _0x5db60a;this[_0x499bf2(0x41b)](await this[_0x499bf2(0x2eb)]()),this[_0x499bf2(0x214)]&&((_0x5db60a=this[_0x499bf2(0x214)])==null||_0x5db60a['editingUnit'](this[_0x499bf2(0x197)]),this[_0x499bf2(0x3c7)](this[_0x499bf2(0x214)]['getUnitStatus$'](this['unitID'])[_0x499bf2(0x419)](_0x1fef4d=>{const _0x1bf48e=_0x499bf2;this['_logService'][_0x1bf48e(0x37a)](_0x1bf48e(0x2c9),'editing\x20status\x20changed\x20to',_0x1fef4d),_0x1fef4d===un[_0x1bf48e(0x521)]?(this[_0x1bf48e(0x3a7)][_0x1bf48e(0x36b)]({'content':this[_0x1bf48e(0x39c)]['t'](_0x1bf48e(0x3a3)),'type':ge[_0x1bf48e(0x2e3)][_0x1bf48e(0x174)]}),this[_0x1bf48e(0x3e0)]['updatePermissionPoint'](new k[(_0x1bf48e(0x1ef))](this[_0x1bf48e(0x197)])['id'],!0x1),this['_permissionService']['setShowComponents'](!0x1)):(this[_0x1bf48e(0x3e0)][_0x1bf48e(0x38e)](new k[(_0x1bf48e(0x1ef))](this[_0x1bf48e(0x197)])['id'],!0x0),this[_0x1bf48e(0x3e0)]['setShowComponents'](!0x0));})));let _0x43f4db=!0x1;return this[_0x499bf2(0x3c7)](this[_0x499bf2(0x305)]['sessionStatus$']['subscribe'](_0x2d34c0=>{const _0x2e40b4=_0x499bf2;_0x2d34c0===se[_0x2e40b4(0x244)]?this[_0x2e40b4(0x4dd)](_0x43f4db):_0x2d34c0===se[_0x2e40b4(0x338)]&&(_0x43f4db=!0x0,this[_0x2e40b4(0x1c0)]());})),this[_0x499bf2(0x3c7)](this[_0x499bf2(0x305)]['event$'][_0x499bf2(0x419)](_0x1d0e41=>{const _0x14ee26=_0x499bf2;try{switch(_0x1d0e41['eventID']){case S[_0x14ee26(0x35a)][_0x14ee26(0x27c)]:{this['_onRemoteChangeset'](S[_0x14ee26(0x3ac)](_0x1d0e41[_0x14ee26(0x18f)]));break;}case S['CollaborationEvent'][_0x14ee26(0x272)]:{this['_onRemoteACK'](_0x1d0e41[_0x14ee26(0x18f)]);break;}case S[_0x14ee26(0x35a)][_0x14ee26(0x473)]:{this[_0x14ee26(0x2ea)]();break;}case S['CollaborationEvent'][_0x14ee26(0x398)]:{this[_0x14ee26(0x383)](_0x1d0e41[_0x14ee26(0x18f)]);break;}case S[_0x14ee26(0x35a)][_0x14ee26(0x47b)]:{this[_0x14ee26(0x4a7)](_0x1d0e41[_0x14ee26(0x18f)][_0x14ee26(0x2c1)]['map'](_0x1258c5=>S[_0x14ee26(0x3ac)](_0x1258c5)));break;}case S[_0x14ee26(0x35a)][_0x14ee26(0x5d2)]:this[_0x14ee26(0x2ea)]({'isPermissionRej':!0x0});}}catch(_0x4198a5){throw console[_0x14ee26(0x3d8)](_0x14ee26(0x5d1),_0x4198a5),_0x4198a5;}})),this['_state'];}[_0x4a9685(0x2fb)](){this['_transitionLocked']=!0x1;}['_lockTransition'](){const _0x54dd76=_0x4a9685;if(this[_0x54dd76(0x2ec)])throw new Error(_0x54dd76(0x3f8));this[_0x54dd76(0x2ec)]=!0x0;}[_0x4a9685(0x2b2)](_0x42369a){const _0x29f80c=_0x4a9685;this[_0x29f80c(0x321)](),this[_0x29f80c(0x41b)](this[_0x29f80c(0x16f)][_0x29f80c(0x40c)](_0x42369a)),this[_0x29f80c(0x2fb)]();}[_0x4a9685(0x4b8)](_0x54f541){const _0x15edae=_0x4a9685;if(!(_0x54f541[_0x15edae(0x33a)]<=this[_0x15edae(0x26d)][_0x15edae(0x3e5)](this[_0x15edae(0x197)]))){if(this[_0x15edae(0x40e)]){this[_0x15edae(0x437)][_0x15edae(0x3d6)](_0x54f541);return;}this[_0x15edae(0x1b2)](_0x54f541);}}['_exhaustRemoteChangesetQueue'](){const _0xa03c83=_0x4a9685;this['_remoteChangesetQueue'][_0xa03c83(0x38f)](_0x51c85a=>this[_0xa03c83(0x1b2)](_0x51c85a)),this[_0xa03c83(0x437)]=[];}[_0x4a9685(0x1b2)](_0x50fe95){const _0x127974=_0x4a9685,_0x3de23a=this[_0x127974(0x2b3)][_0x127974(0x200)]['fetchThroughInterceptors'](this['_compressMutationService'][_0x127974(0x200)]['getInterceptPoints']()[_0x127974(0x3e7)])(_0x50fe95[_0x127974(0x1b8)],null)||_0x50fe95[_0x127974(0x1b8)],_0x551b61={..._0x50fe95,'mutations':_0x3de23a};this['_lockTransition'](),this[_0x127974(0x41b)](this[_0x127974(0x16f)]['onRemoteChangeset'](_0x551b61)),this[_0x127974(0x2fb)]();}[_0x4a9685(0x446)](_0x44e03f){const _0x52dce8=_0x4a9685;this[_0x52dce8(0x321)](),this[_0x52dce8(0x41b)](this[_0x52dce8(0x16f)][_0x52dce8(0x3e9)](_0x44e03f)),this[_0x52dce8(0x2fb)]();}[_0x4a9685(0x2ea)](_0x4afe13){const _0x4be43e=_0x4a9685;this[_0x4be43e(0x321)](),this[_0x4be43e(0x41b)](this['_state'][_0x4be43e(0x37b)](_0x4afe13)),this[_0x4be43e(0x2fb)]();}[_0x4a9685(0x383)](_0x160c57){const _0x2bc02e=_0x4a9685;this['_lockTransition'](),this[_0x2bc02e(0x41b)](this['_state']['onRemoteRetry'](_0x160c57)),this[_0x2bc02e(0x2fb)]();}[_0x4a9685(0x4a7)](_0x170f17){const _0x597b37=_0x4a9685;if(!(this[_0x597b37(0x16f)]instanceof re))throw new TypeError('[CollaborationEntity]:\x20cannot\x20apply\x20missing\x20results\x20on\x20other\x20states!');const _0x20ea09=_0x170f17[_0x597b37(0x28a)](_0x8a63fa=>{const _0x38bf8e=_0x597b37,_0x49bc6b=this[_0x38bf8e(0x2b3)][_0x38bf8e(0x200)][_0x38bf8e(0x3cc)](this[_0x38bf8e(0x2b3)][_0x38bf8e(0x200)][_0x38bf8e(0x5ae)]()['COMPRESS_MUTATION_APPLY'])(_0x8a63fa[_0x38bf8e(0x1b8)],null)||_0x8a63fa['mutations'];return{..._0x8a63fa,'mutations':_0x49bc6b};});this[_0x597b37(0x321)](),this[_0x597b37(0x41b)](this['_state']['onMissedChangesetFetched'](_0x20ea09)),this[_0x597b37(0x2fb)]();}[_0x4a9685(0x1c0)](){const _0x3aa3d3=_0x4a9685;this[_0x3aa3d3(0x321)](),this[_0x3aa3d3(0x41b)](this['_state'][_0x3aa3d3(0x3b7)]()),this['_unlockTransition']();}[_0x4a9685(0x4dd)](_0x12e9b2=!0x1){const _0x315ced=_0x4a9685;this['_lockTransition'](),this[_0x315ced(0x41b)](this['_state'][_0x315ced(0x2aa)]()),this[_0x315ced(0x2fb)]();const _0x4c5eea=this[_0x315ced(0x16f)];_0x12e9b2&&_0x4c5eea instanceof Oe&&(this[_0x315ced(0x321)](),this[_0x315ced(0x41b)](_0x4c5eea[_0x315ced(0x288)]()),this[_0x315ced(0x2fb)]());}async[_0x4a9685(0x2eb)](){return new Promise(_0xc74c9a=>{const _0x125503=_0x5f2c;this[_0x125503(0x305)][_0x125503(0x44d)][_0x125503(0x172)](A[_0x125503(0x3a5)](0x1))[_0x125503(0x419)](async _0x469230=>{const _0x213bf9=_0x125503;_0xc74c9a(await this[_0x213bf9(0x17b)](_0x469230===se[_0x213bf9(0x244)]));});});}[_0x4a9685(0x4a0)](){const _0x23d13d=this['unitID'];return{'onStateChange':(_0x2b3a3f,_0x365d54)=>{const _0x4ba9f7=_0x5f2c;if(_0x2b3a3f!==this[_0x4ba9f7(0x16f)])throw new Error(_0x4ba9f7(0x39b)+_0x2b3a3f[_0x4ba9f7(0x226)]+_0x4ba9f7(0x40a)+_0x365d54[_0x4ba9f7(0x226)]+_0x4ba9f7(0x300)+this[_0x4ba9f7(0x16f)][_0x4ba9f7(0x226)]);this['_updateState'](_0x365d54);},'onSendChangeset':_0x1199da=>{const _0x1c9050=_0x5f2c;_0x1199da[_0x1c9050(0x229)]||(_0x1199da[_0x1c9050(0x229)]=this[_0x1c9050(0x279)],_0x1199da[_0x1c9050(0x586)]=++this[_0x1c9050(0x36c)]);const _0x574259={'eventID':S[_0x1c9050(0x35a)][_0x1c9050(0x5eb)],'data':{'unitID':_0x1199da[_0x1c9050(0x197)],'unitType':this[_0x1c9050(0x41a)],'changeset':_0x1199da,'memberID':this[_0x1c9050(0x305)][_0x1c9050(0x204)]()}};this[_0x1c9050(0x305)][_0x1c9050(0x170)](_0x574259,this[_0x1c9050(0x197)]);},'onMissingChangesets':({from:_0xfa4879,to:_0x17d1c3})=>{const _0x21bd72=_0x5f2c;this[_0x21bd72(0x480)]['debug'](_0x21bd72(0x2c9),'fetching\x20missing\x20changesets\x20from\x20'+_0xfa4879+_0x21bd72(0x14a)+_0x17d1c3);const _0x17b6c2={'eventID':S[_0x21bd72(0x35a)][_0x21bd72(0x2b4)],'data':{'unitID':_0x23d13d,'unitType':this[_0x21bd72(0x41a)],'from':_0xfa4879,'to':_0x17d1c3}};this[_0x21bd72(0x305)]['send'](_0x17b6c2,this['unitID']);}};}async[_0x4a9685(0x17b)](_0x137489){const _0x52dc57=_0x4a9685;var _0x1365fa,_0x2327a9;const _0x3d72f3=await this[_0x52dc57(0x142)]['loadOfflineData'](this[_0x52dc57(0x197)]),_0x3ee3f2=(_0x1365fa=_0x3d72f3==null?void 0x0:_0x3d72f3[_0x52dc57(0x1b8)])!=null?_0x1365fa:[],_0x507268=(_0x2327a9=_0x3d72f3==null?void 0x0:_0x3d72f3['awaitingChangeset'])!=null?_0x2327a9:null,_0x426ed6=!!(_0x507268!=null&&_0x507268[_0x52dc57(0x229)])&&!!(_0x507268!=null&&_0x507268[_0x52dc57(0x586)]);this[_0x52dc57(0x279)]=_0x426ed6?_0x507268[_0x52dc57(0x229)]:mi(),this[_0x52dc57(0x36c)]=_0x426ed6?_0x507268['reqId']:0x0;const _0x5ee9ed=this[_0x52dc57(0x197)];try{this[_0x52dc57(0x2a5)](_0x507268,_0x3ee3f2);}catch(_0x3156f8){this[_0x52dc57(0x480)][_0x52dc57(0x3d8)](_0x3156f8);}const _0x424ac0=this[_0x52dc57(0x4a0)]();if(_0x137489){const _0x3bde60=mn(this['_injector'],_0x5ee9ed,this[_0x52dc57(0x41a)],_0x507268,_0x3ee3f2,_0x424ac0);return _0x3bde60 instanceof ce?_0x3bde60['_schedule']():(_0x3bde60 instanceof le||_0x3bde60 instanceof fe)&&_0x3bde60[_0x52dc57(0x1dd)](),_0x3bde60;}return this[_0x52dc57(0x372)][_0x52dc57(0x572)](me,_0x5ee9ed,this[_0x52dc57(0x41a)],_0x507268,_0x3ee3f2,_0x424ac0);}[_0x4a9685(0x2a5)](_0x1f4e1e,_0x11b0d4){const _0xe12273=_0x4a9685;var _0xe7871c,_0x819fe3;const _0xda46ac=this[_0xe12273(0x2b3)][_0xe12273(0x200)][_0xe12273(0x3cc)](this[_0xe12273(0x2b3)][_0xe12273(0x200)]['getInterceptPoints']()[_0xe12273(0x3e7)]);(_0xe7871c=_0xda46ac((_0x1f4e1e==null?void 0x0:_0x1f4e1e[_0xe12273(0x1b8)])||[],null))==null||_0xe7871c['forEach'](_0x1f3678=>this[_0xe12273(0x55e)][_0xe12273(0x5f4)](_0x1f3678['id'],_0x1f3678[_0xe12273(0x4da)])),(_0x819fe3=_0xda46ac(_0x11b0d4||[],null))==null||_0x819fe3[_0xe12273(0x38f)](_0x213698=>this[_0xe12273(0x55e)][_0xe12273(0x5f4)](_0x213698['id'],_0x213698[_0xe12273(0x4da)]));}},exports[_0x4a9685(0x469)]=yt([H(0x3,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),H(0x4,a[_0x4a9685(0x27a)](exports['LocalCacheService'])),H(0x5,a[_0x4a9685(0x27a)](S[_0x4a9685(0x5e2)])),H(0x6,a[_0x4a9685(0x27a)](a[_0x4a9685(0x4a8)])),H(0x7,a[_0x4a9685(0x27a)](S['RevisionService'])),H(0x8,a[_0x4a9685(0x2e8)]),H(0x9,a['ICommandService']),H(0xa,ee['IMessageService']),H(0xb,a[_0x4a9685(0x310)]),H(0xc,a[_0x4a9685(0x59b)](qe))],exports[_0x4a9685(0x469)]),exports[_0x4a9685(0x5b0)]=class extends exports[_0x4a9685(0x469)]{constructor(_0x399965,_0x5d029e,_0x11c7e2,_0x1a6a4a,_0x146416,_0x48e7bd,_0x3af7b3,_0x13d9a3,_0x2cd7c0,_0x3c85c8,_0x255e8e,_0x277ad0,_0x325c19,_0x51232a,_0x5883b6,_0x368630,_0x474536,_0x5861f3){const _0x50e200=_0x4a9685;super(_0x399965,_0x11c7e2,_0x5d029e,_0x1a6a4a,_0x146416,_0x48e7bd,_0x3af7b3,_0x13d9a3,_0x51232a,_0x5883b6,_0x368630,_0x474536,_0x5861f3),this[_0x50e200(0x197)]=_0x399965,this[_0x50e200(0x3e4)]=_0x5d029e,this[_0x50e200(0x4c7)]=_0x2cd7c0,this[_0x50e200(0x504)]=_0x3c85c8,this[_0x50e200(0x24e)]=_0x255e8e,this[_0x50e200(0x59d)]=_0x277ad0,this[_0x50e200(0x53a)]=_0x325c19;}[_0x4a9685(0x4a0)](){const _0x499cc5=_0x4a9685,_0x47095a=super[_0x499cc5(0x4a0)]();return _0x47095a[_0x499cc5(0x45b)]=_0x5e14b6=>this[_0x499cc5(0x504)][_0x499cc5(0x4fc)](_0x5e14b6),_0x47095a['onTransformState']=_0x3c4937=>this[_0x499cc5(0x24e)][_0x499cc5(0x5ba)](_0x3c4937),_0x47095a[_0x499cc5(0x526)]=_0x25da19=>this[_0x499cc5(0x59d)][_0x499cc5(0x58f)](_0x25da19),_0x47095a[_0x499cc5(0x379)]=_0x5bf854=>this[_0x499cc5(0x53a)][_0x499cc5(0x5bc)](_0x5bf854),_0x47095a[_0x499cc5(0x4aa)]=_0x1e61a2=>this['_docTransformIMECacheService'][_0x499cc5(0x203)](_0x1e61a2),_0x47095a[_0x499cc5(0x5a0)]=_0x1cffb5=>this['_docTransformStateCacheService'][_0x499cc5(0x203)](_0x1cffb5),_0x47095a;}async[_0x4a9685(0x3f4)](){const _0x5498fe=_0x4a9685,_0x2388d5=await super[_0x5498fe(0x3f4)]();return this[_0x5498fe(0x4c7)][_0x5498fe(0x430)][_0x5498fe(0x172)](A[_0x5498fe(0x5e8)](this[_0x5498fe(0x5c9)]))[_0x5498fe(0x419)](_0x390f23=>{const _0x34c2a2=_0x5498fe;if(_0x390f23==null)return;const {unitId:_0x381257,redoState:_0x539ca1,commandId:_0x295a26}=_0x390f23;if(_0x381257!==this[_0x34c2a2(0x197)])return;const _0x2b2843={'id':_0x295a26,'type':a[_0x34c2a2(0x4b4)][_0x34c2a2(0x58a)],'params':{'unitId':_0x381257,'actions':_0x539ca1[_0x34c2a2(0x5b6)],'textRanges':null}};this[_0x34c2a2(0x2b2)](_0x2b2843);}),_0x2388d5;}},exports[_0x4a9685(0x5b0)]=yt([H(0x3,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),H(0x4,a['Inject'](exports[_0x4a9685(0x1a0)])),H(0x5,a['Inject'](S[_0x4a9685(0x5e2)])),H(0x6,a['Inject'](a[_0x4a9685(0x4a8)])),H(0x7,a[_0x4a9685(0x27a)](S[_0x4a9685(0x1a9)])),H(0x8,a[_0x4a9685(0x27a)](J[_0x4a9685(0x492)])),H(0x9,a[_0x4a9685(0x27a)](Be)),H(0xa,a[_0x4a9685(0x27a)](We)),H(0xb,a[_0x4a9685(0x27a)](Fe)),H(0xc,a['Inject'](Rt)),H(0xd,a[_0x4a9685(0x2e8)]),H(0xe,a['ICommandService']),H(0xf,ee[_0x4a9685(0x27d)]),H(0x10,a[_0x4a9685(0x310)]),H(0x11,a[_0x4a9685(0x59b)](qe))],exports[_0x4a9685(0x5b0)]),exports[_0x4a9685(0x456)]=class extends exports['CollaborationEntity']{constructor(_0x5e0f91,_0x497c6d,_0x5ac3b7,_0x28a089,_0x14b035,_0x4ae7b9,_0x3f5806,_0x404f48,_0x587e44,_0x2251ec,_0x574217,_0x4c1ddd,_0x4d68bc,_0xba6c57){const _0x2be83b=_0x4a9685;super(_0x5e0f91,_0x5ac3b7,_0x497c6d,_0x28a089,_0x14b035,_0x4ae7b9,_0x3f5806,_0x404f48,_0x2251ec,_0x574217,_0x4c1ddd,_0x4d68bc,_0xba6c57),this['unitID']=_0x5e0f91,this[_0x2be83b(0x3e4)]=_0x497c6d,this[_0x2be83b(0x257)]=_0x587e44;}[_0x4a9685(0x4a0)](){const _0x55ffe8=_0x4a9685,_0x5a7652=super[_0x55ffe8(0x4a0)]();return _0x5a7652[_0x55ffe8(0x526)]=_0x27fdf4=>this[_0x55ffe8(0x257)]['transformSelections'](_0x27fdf4),_0x5a7652;}async[_0x4a9685(0x3f4)](){const _0x18c0d1=_0x4a9685,_0x11eab5=await super[_0x18c0d1(0x3f4)]();return this[_0x18c0d1(0x3c7)](this[_0x18c0d1(0x55e)]['onCommandExecuted']((_0x395dd2,_0x30f940)=>{const _0x379510=_0x18c0d1;if(_0x395dd2[_0x379510(0x3e4)]!==a[_0x379510(0x4b4)][_0x379510(0x58a)]||_0x30f940!=null&&_0x30f940[_0x379510(0x20d)]||_0x30f940!=null&&_0x30f940[_0x379510(0x2d7)])return;const _0x4ea6ae=_0x395dd2[_0x379510(0x4da)];if((_0x4ea6ae==null?void 0x0:_0x4ea6ae[_0x379510(0x2de)])!==this[_0x379510(0x197)])return;const _0xe89315=_0x395dd2,_0x49ccb8=this[_0x379510(0x2b3)][_0x379510(0x200)][_0x379510(0x3cc)](this[_0x379510(0x2b3)][_0x379510(0x200)]['getInterceptPoints']()[_0x379510(0x472)])([_0xe89315],null)||[_0xe89315];this['_onLocalMutation'](_0x49ccb8[0x0]);})),_0x11eab5;}},exports[_0x4a9685(0x456)]=yt([H(0x3,a['Inject'](a[_0x4a9685(0x17d)])),H(0x4,a[_0x4a9685(0x27a)](exports['LocalCacheService'])),H(0x5,a[_0x4a9685(0x27a)](S['CompressMutationService'])),H(0x6,a[_0x4a9685(0x27a)](a[_0x4a9685(0x4a8)])),H(0x7,a['Inject'](S[_0x4a9685(0x1a9)])),H(0x8,a[_0x4a9685(0x27a)](ke)),H(0x9,a[_0x4a9685(0x2e8)]),H(0xa,a['ICommandService']),H(0xb,ee[_0x4a9685(0x27d)]),H(0xc,a[_0x4a9685(0x310)]),H(0xd,a['Optional'](qe))],exports[_0x4a9685(0x456)]);var Wi=Object['defineProperty'],Fi=Object[_0x4a9685(0x484)],Vi=(_0x481ef1,_0xdb0237,_0x47c285,_0x56f2d7)=>{for(var _0x3ea802=_0x56f2d7>0x1?void 0x0:_0x56f2d7?Fi(_0xdb0237,_0x47c285):_0xdb0237,_0xc89e=_0x481ef1['length']-0x1,_0xa7899b;_0xc89e>=0x0;_0xc89e--)(_0xa7899b=_0x481ef1[_0xc89e])&&(_0x3ea802=(_0x56f2d7?_0xa7899b(_0xdb0237,_0x47c285,_0x3ea802):_0xa7899b(_0x3ea802))||_0x3ea802);return _0x56f2d7&&_0x3ea802&&Wi(_0xdb0237,_0x47c285,_0x3ea802),_0x3ea802;},tt=(_0x137694,_0x391c1a)=>(_0x16cba1,_0x3c7aa1)=>_0x391c1a(_0x16cba1,_0x3c7aa1,_0x137694);exports[_0x4a9685(0x1ff)]=class extends a[_0x4a9685(0x2c7)]{constructor(_0x43129f,_0x34bb48,_0x40ae74){const _0x3aa70e=_0x4a9685;super(),I(this,_0x3aa70e(0x35f),new Map()),I(this,_0x3aa70e(0x242),new A[(_0x3aa70e(0x4c3))]()),(this['_injector']=_0x43129f,this[_0x3aa70e(0x5b4)]=_0x34bb48,this[_0x3aa70e(0x54a)]=_0x40ae74,this[_0x3aa70e(0x3f4)]());}['dispose'](){const _0x1c0237=_0x4a9685;super[_0x1c0237(0x1d7)](),this[_0x1c0237(0x35f)][_0x1c0237(0x38f)](_0xa619c=>_0xa619c[_0x1c0237(0x1d7)]()),this[_0x1c0237(0x35f)]['clear']();}[_0x4a9685(0x298)](_0x193866){const _0x5e071e=_0x4a9685;var _0x47ff10;return(_0x47ff10=this[_0x5e071e(0x35f)][_0x5e071e(0x542)](_0x193866))!=null?_0x47ff10:null;}[_0x4a9685(0x5bf)](_0x34a92b){const _0x158256=_0x4a9685,_0x4a60f1=this[_0x158256(0x298)](_0x34a92b);return _0x4a60f1?A['of'](_0x4a60f1):this[_0x158256(0x242)][_0x158256(0x172)](V['filter'](_0x42b5d7=>_0x42b5d7[_0x158256(0x197)]===_0x34a92b));}['_init'](){const _0x57883b=_0x4a9685;this[_0x57883b(0x54a)][_0x57883b(0x3f9)](a[_0x57883b(0x33e)][_0x57883b(0x1af)])[_0x57883b(0x172)](A['takeUntil'](this[_0x57883b(0x5c9)]),V[_0x57883b(0x55d)](0x10))[_0x57883b(0x419)](async _0x3f0a53=>{const _0x475050=_0x57883b,_0x1e7729=_0x3f0a53['getUnitId'](),_0x495c17=await this[_0x475050(0x2a1)](_0x1e7729,ie[_0x475050(0x1af)]);this[_0x475050(0x35f)]['set'](_0x1e7729,_0x495c17);}),this[_0x57883b(0x54a)][_0x57883b(0x3f9)](a['UniverInstanceType'][_0x57883b(0x22a)])['pipe'](A[_0x57883b(0x5e8)](this['dispose$']),V[_0x57883b(0x55d)](0x10))[_0x57883b(0x172)](V[_0x57883b(0x464)](_0x181a9f=>!_0x181a9f['getUnitId']()['startsWith']('__')))[_0x57883b(0x419)](async _0x197c7b=>{const _0x4366f8=_0x57883b,_0x3160b3=_0x197c7b[_0x4366f8(0x56f)](),_0x2c816a=await this[_0x4366f8(0x2a1)](_0x3160b3,ie['UNIVER_DOC']);this[_0x4366f8(0x35f)][_0x4366f8(0x568)](_0x3160b3,_0x2c816a);}),A[_0x57883b(0x345)](this[_0x57883b(0x54a)][_0x57883b(0x388)](a[_0x57883b(0x33e)]['UNIVER_SHEET']),this[_0x57883b(0x54a)][_0x57883b(0x388)](a[_0x57883b(0x33e)]['UNIVER_DOC']))['pipe'](A['takeUntil'](this['dispose$']))[_0x57883b(0x419)](_0x3b4000=>{const _0x41e400=_0x57883b,_0x2954c8=_0x3b4000[_0x41e400(0x56f)](),_0x5e69ac=this[_0x41e400(0x35f)][_0x41e400(0x542)](_0x2954c8);_0x5e69ac&&(_0x5e69ac['dispose'](),this[_0x41e400(0x35f)][_0x41e400(0x224)](_0x2954c8));});}async[_0x4a9685(0x2a1)](_0x633c78,_0x5a7489){const _0x1e3a25=_0x4a9685,_0x2e4088=await this[_0x1e3a25(0x5b4)][_0x1e3a25(0x461)](_0x633c78),_0x1cfa4f=this['_injector'][_0x1e3a25(0x572)](this[_0x1e3a25(0x3fa)](_0x5a7489),_0x633c78,_0x5a7489,_0x2e4088);return await _0x1cfa4f[_0x1e3a25(0x432)](),this[_0x1e3a25(0x242)][_0x1e3a25(0x503)](_0x1cfa4f),_0x1cfa4f;}[_0x4a9685(0x3fa)](_0x4bccd9){const _0x52b296=_0x4a9685;switch(_0x4bccd9){case ie[_0x52b296(0x22a)]:return exports[_0x52b296(0x5b0)];case ie[_0x52b296(0x1af)]:return exports[_0x52b296(0x456)];default:throw new Error(_0x52b296(0x150)+_0x4bccd9);}}},exports[_0x4a9685(0x1ff)]=Vi([tt(0x0,a['Inject'](a[_0x4a9685(0x17d)])),tt(0x1,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x2a7)])),tt(0x2,a[_0x4a9685(0x3c5)])],exports[_0x4a9685(0x1ff)]);const $t=['purple300','jiqing500','verdancy600','red300',_0x4a9685(0x5e4),_0x4a9685(0x1e0)];class Ot extends a[_0x4a9685(0x261)]{constructor(){const _0x2f1cf2=_0x4a9685;super(...arguments),I(this,_0x2f1cf2(0x137),new Map()),I(this,'_colorIndex',0x0);}[_0x4a9685(0x3b0)](_0x3dd24d){const _0x49ede7=_0x4a9685;if(this[_0x49ede7(0x137)][_0x49ede7(0x1d2)](_0x3dd24d))return this['_assignedColors'][_0x49ede7(0x542)](_0x3dd24d);const _0x40ba36=$t[this[_0x49ede7(0x23c)]];return this[_0x49ede7(0x23c)]=(this[_0x49ede7(0x23c)]+0x1)%$t['length'],this[_0x49ede7(0x137)][_0x49ede7(0x568)](_0x3dd24d,_0x40ba36),_0x40ba36;}}var Gi=Object['defineProperty'],Yi=Object[_0x4a9685(0x484)],Ki=(_0x4fd6b0,_0x5b8807,_0x418d26,_0x44ba38)=>{const _0x1197a2=_0x4a9685;for(var _0x1f9b6e=_0x44ba38>0x1?void 0x0:_0x44ba38?Yi(_0x5b8807,_0x418d26):_0x5b8807,_0x238969=_0x4fd6b0[_0x1197a2(0x530)]-0x1,_0xff9bc3;_0x238969>=0x0;_0x238969--)(_0xff9bc3=_0x4fd6b0[_0x238969])&&(_0x1f9b6e=(_0x44ba38?_0xff9bc3(_0x5b8807,_0x418d26,_0x1f9b6e):_0xff9bc3(_0x1f9b6e))||_0x1f9b6e);return _0x44ba38&&_0x1f9b6e&&Gi(_0x5b8807,_0x418d26,_0x1f9b6e),_0x1f9b6e;},Se=(_0x3e1420,_0x286aff)=>(_0x164b10,_0x50fcaf)=>_0x286aff(_0x164b10,_0x50fcaf,_0x3e1420);const qi=0x12c,zi=0x64;let mt=class extends a[_0x4a9685(0x2c7)]{constructor(_0x20ee0b,_0x30ee2b,_0xe0ed27,_0x65bf6e,_0x54c902,_0x30ac97,_0x291bd8,_0x3ff39b,_0x16e904){const _0x5ebb79=_0x4a9685;super(),I(this,_0x5ebb79(0x420),!0x1),I(this,_0x5ebb79(0x3f4),!0x1),I(this,_0x5ebb79(0x3be),new A[(_0x5ebb79(0x563))](new Map())),I(this,_0x5ebb79(0x3d1),this[_0x5ebb79(0x3be)]['asObservable']()),I(this,_0x5ebb79(0x490),new A[(_0x5ebb79(0x563))]([])),I(this,_0x5ebb79(0x46e),this[_0x5ebb79(0x490)][_0x5ebb79(0x172)](A[_0x5ebb79(0x416)](qi))),I(this,_0x5ebb79(0x2fa),a[_0x5ebb79(0x158)](_0x2615a7=>{const _0xc1cf39=_0x5ebb79,_0x15b1f0={'eventID':S[_0xc1cf39(0x35a)]['UPDATE_CURSOR'],'data':{'unitID':this[_0xc1cf39(0x197)],'memberID':this[_0xc1cf39(0x466)][_0xc1cf39(0x204)](),'selection':dn(_0x2615a7)}};this[_0xc1cf39(0x466)][_0xc1cf39(0x170)](_0x15b1f0,this[_0xc1cf39(0x197)]);},zi)),(this[_0x5ebb79(0x197)]=_0x20ee0b,this[_0x5ebb79(0x466)]=_0x30ee2b,this[_0x5ebb79(0x372)]=_0xe0ed27,this[_0x5ebb79(0x544)]=_0x65bf6e,this[_0x5ebb79(0x1f9)]=_0x54c902,this['_syncEditingCollabCursorService']=_0x30ac97,this['_transformService']=_0x291bd8,this['_univerInstanceService']=_0x3ff39b,this[_0x5ebb79(0x55e)]=_0x16e904);}get[_0x4a9685(0x468)](){return this['_cursorInfo$']['getValue']();}get[_0x4a9685(0x334)](){const _0x1509db=_0x4a9685;return this[_0x1509db(0x490)][_0x1509db(0x1ae)]();}['dispose'](){const _0x3cf017=_0x4a9685;super[_0x3cf017(0x1d7)](),this[_0x3cf017(0x3be)][_0x3cf017(0x503)](new Map()),this[_0x3cf017(0x3be)]['complete'](),this[_0x3cf017(0x490)][_0x3cf017(0x503)]([]),this[_0x3cf017(0x490)]['complete']();}[_0x4a9685(0x432)](){const _0x355284=_0x4a9685;this[_0x355284(0x3f4)]||(this[_0x355284(0x3f4)]=!0x0,this[_0x355284(0x466)][_0x355284(0x44d)][_0x355284(0x172)](A[_0x355284(0x5e8)](this[_0x355284(0x5c9)]))[_0x355284(0x419)](_0x3a447e=>{const _0x30194f=_0x355284;_0x3a447e===se[_0x30194f(0x244)]?this[_0x30194f(0x4dd)]():this['_toggleOffline']();}),this[_0x355284(0x466)]['event$'][_0x355284(0x172)](A[_0x355284(0x5e8)](this['dispose$']))[_0x355284(0x419)](_0x54ab2a=>{const _0x33e1bc=_0x355284,_0x292e7d=_0x54ab2a['eventID'];_0x292e7d===S[_0x33e1bc(0x35a)][_0x33e1bc(0x49a)]&&this[_0x33e1bc(0x4f8)](_0x54ab2a),_0x292e7d===S[_0x33e1bc(0x35a)]['USERS_LEAVE']&&this['_onCursorDelete'](_0x54ab2a);}),this[_0x355284(0x3c7)](this[_0x355284(0x55e)][_0x355284(0x555)](_0x1a4e16=>{const _0x26b0bf=_0x355284,_0x27d151=_0x1a4e16[_0x26b0bf(0x4da)];_0x27d151!=null&&this['_online']&&_0x1a4e16['id']===ye[_0x26b0bf(0x50a)]['id']&&_0x27d151[_0x26b0bf(0x2de)]===this[_0x26b0bf(0x197)]&&_0x27d151['isEditing']===!0x1&&_0x27d151[_0x26b0bf(0x1c1)]['length']>0x0&&this[_0x26b0bf(0x2fa)](_0x27d151[_0x26b0bf(0x1c1)]);})),this['_syncEditingCollabCursorService'][_0x355284(0x20a)][_0x355284(0x172)](A[_0x355284(0x5e8)](this[_0x355284(0x5c9)]))[_0x355284(0x419)](_0x506934=>{const _0x1590ec=_0x355284;if((_0x506934==null?void 0x0:_0x506934[_0x1590ec(0x197)])!==this['unitID'])return;const _0xff5153={'eventID':S[_0x1590ec(0x35a)][_0x1590ec(0x49a)],'data':_0x506934};this[_0x1590ec(0x4f8)](_0xff5153);}),this[_0x355284(0x3c7)](this[_0x355284(0x55e)]['onCommandExecuted'](_0x422a0a=>{const _0x4397a3=_0x355284;if(_0x422a0a['params']==null)return;const _0x4d80e0=_0x422a0a['params'];if(_0x422a0a['id']!==ye[_0x4397a3(0x4de)]['id']||_0x4d80e0[_0x4397a3(0x2de)]!==this['unitID'])return;const _0x1a9300={'id':_0x4397a3(0x3cf),'params':_0x4d80e0},_0x4aab6e=this['cursorInfo'];for(const [_0x104c0e,_0x4e47f0]of _0x4aab6e){const _0x3fe4f7={'id':_0x4397a3(0x3cf),'params':{'unitId':this[_0x4397a3(0x197)],'actions':null,'textRanges':_0x4e47f0[_0x4397a3(0x1c1)]}},_0x1ff816=this[_0x4397a3(0x4f6)][_0x4397a3(0x23e)](_0x1a9300,_0x3fe4f7,!0x1);if(S[_0x4397a3(0x498)](_0x1ff816))throw _0x1ff816['error'];_0x4aab6e[_0x4397a3(0x568)](_0x104c0e,{..._0x4e47f0,'ranges':_0x1ff816[_0x4397a3(0x403)][_0x4397a3(0x4da)][_0x4397a3(0x236)]});}queueMicrotask(()=>{this['_cursorInfo$']['next'](_0x4aab6e);});})));}[_0x4a9685(0x4f8)](_0x1b7975){const _0x4747b6=_0x4a9685;var _0x436171,_0x3b1d9f;const {memberID:_0x5344dd,selection:_0x395c1a}=_0x1b7975[_0x4747b6(0x18f)],_0x1f32ac=Ui(_0x395c1a),_0x36632d=(_0x3b1d9f=(_0x436171=this[_0x4747b6(0x1f9)][_0x4747b6(0x5a6)](this[_0x4747b6(0x197)],_0x5344dd))==null?void 0x0:_0x436171[_0x4747b6(0x2b9)])!=null?_0x3b1d9f:_0x4747b6(0x4af),_0x493456={'color':this[_0x4747b6(0x544)]['assignAColorForMemberID'](_0x5344dd),'name':_0x36632d,'ranges':_0x1f32ac},_0xc0c878=this[_0x4747b6(0x468)];_0xc0c878[_0x4747b6(0x568)](_0x5344dd,_0x493456),this[_0x4747b6(0x3be)][_0x4747b6(0x503)](_0xc0c878);}[_0x4a9685(0x4f0)](_0x5842e2){const _0x51a608=_0x4a9685,{memberID:_0xbf7719}=_0x5842e2['data'],_0x55770f=this['cursorInfo'];_0x55770f[_0x51a608(0x224)](_0xbf7719),this[_0x51a608(0x3be)][_0x51a608(0x503)](_0x55770f);}[_0x4a9685(0x4dd)](){const _0x552ccd=_0x4a9685;var _0x4a1b9e;if(this['_online']=!0x0,((_0x4a1b9e=this[_0x552ccd(0x54a)][_0x552ccd(0x2dd)]())==null?void 0x0:_0x4a1b9e[_0x552ccd(0x56f)]())!==this['unitID'])return;const _0x3f6a75=this[_0x552ccd(0x372)]['get'](ye[_0x552ccd(0x1f8)])[_0x552ccd(0x231)]();Array['isArray'](_0x3f6a75)&&_0x3f6a75[_0x552ccd(0x530)]>0x0&&this[_0x552ccd(0x2fa)](_0x3f6a75);}['_toggleOffline'](){this['_online']=!0x1;}};mt=Ki([Se(0x2,a[_0x4a9685(0x27a)](a['Injector'])),Se(0x3,a[_0x4a9685(0x27a)](Ot)),Se(0x4,a['Inject'](exports[_0x4a9685(0x3e1)])),Se(0x5,a[_0x4a9685(0x27a)](Rt)),Se(0x6,S['ITransformService']),Se(0x7,a[_0x4a9685(0x3c5)]),Se(0x8,a['ICommandService'])],mt);var Xi=Object[_0x4a9685(0x377)],Ji=Object[_0x4a9685(0x484)],Zi=(_0x83b968,_0x211619,_0x25a295,_0x5d1c59)=>{for(var _0x20175f=_0x5d1c59>0x1?void 0x0:_0x5d1c59?Ji(_0x211619,_0x25a295):_0x211619,_0x12c720=_0x83b968['length']-0x1,_0x1b60ff;_0x12c720>=0x0;_0x12c720--)(_0x1b60ff=_0x83b968[_0x12c720])&&(_0x20175f=(_0x5d1c59?_0x1b60ff(_0x211619,_0x25a295,_0x20175f):_0x1b60ff(_0x20175f))||_0x20175f);return _0x5d1c59&&_0x20175f&&Xi(_0x211619,_0x25a295,_0x20175f),_0x20175f;},be=(_0x559b03,_0x1ab25f)=>(_0x44ba05,_0x750587)=>_0x1ab25f(_0x44ba05,_0x750587,_0x559b03);const Qi=0x12c,es=0x64,ts=()=>{let _0x3baa65=[],_0x234ee9=!0x1;return _0x482bb6=>{_0x3baa65['push'](_0x482bb6),_0x234ee9||(_0x234ee9=!0x0,setTimeout(()=>{const _0x509fc0=_0x5f2c;_0x3baa65[_0x509fc0(0x38f)](_0xfb7950=>_0xfb7950()),_0x3baa65=[],_0x234ee9=!0x1;}));};};let St=class extends a[_0x4a9685(0x2c7)]{constructor(_0x4c1234,_0x44df28,_0x3b98d2,_0x25f44d,_0x5a32cf,_0x997642,_0x4b61a2,_0x365954){const _0x5cf697=_0x4a9685;super(),I(this,_0x5cf697(0x420),!0x1),I(this,_0x5cf697(0x3f4),!0x1),I(this,'_cursorInfo$',new A[(_0x5cf697(0x563))](new Map())),I(this,_0x5cf697(0x3d1),this[_0x5cf697(0x3be)][_0x5cf697(0x135)]()),I(this,'_roomMembers$',new A[(_0x5cf697(0x563))]([])),I(this,_0x5cf697(0x46e),this['_roomMembers$'][_0x5cf697(0x172)](A[_0x5cf697(0x416)](Qi))),I(this,_0x5cf697(0x2fa),a[_0x5cf697(0x158)]((_0x1cc945,_0xfead57)=>{const _0x259163=_0x5cf697,_0x1e3d54={'eventID':S['CollaborationEvent']['UPDATE_CURSOR'],'data':{'unitID':this[_0x259163(0x197)],'memberID':this[_0x259163(0x466)][_0x259163(0x204)](),'selection':Pt[_0x259163(0x41c)](_0x1cc945,_0xfead57[_0x259163(0x27f)])}};this['_session']['send'](_0x1e3d54,this[_0x259163(0x197)]);},es)),(this[_0x5cf697(0x197)]=_0x4c1234,this[_0x5cf697(0x466)]=_0x44df28,this['_injector']=_0x3b98d2,this['_colorAssignService']=_0x25f44d,this[_0x5cf697(0x1f9)]=_0x5a32cf,this[_0x5cf697(0x54a)]=_0x997642,this[_0x5cf697(0x55e)]=_0x4b61a2,this[_0x5cf697(0x4fa)]=_0x365954);}get[_0x4a9685(0x468)](){const _0x18f97e=_0x4a9685;return this[_0x18f97e(0x3be)]['getValue']();}get['roomMembers'](){const _0x38d57c=_0x4a9685;return this[_0x38d57c(0x490)][_0x38d57c(0x1ae)]();}[_0x4a9685(0x1d7)](){const _0x190678=_0x4a9685;super[_0x190678(0x1d7)](),this['_cursorInfo$'][_0x190678(0x503)](new Map()),this[_0x190678(0x3be)]['complete'](),this['_roomMembers$'][_0x190678(0x503)]([]),this[_0x190678(0x490)][_0x190678(0x2f7)]();}['init'](){const _0x28d850=_0x4a9685;this[_0x28d850(0x3f4)]||(this['_init']=!0x0,this[_0x28d850(0x466)]['sessionStatus$'][_0x28d850(0x172)](A[_0x28d850(0x5e8)](this[_0x28d850(0x5c9)]))[_0x28d850(0x419)](_0xf2331f=>{const _0x47922a=_0x28d850;_0xf2331f===se[_0x47922a(0x244)]?this[_0x47922a(0x4dd)]():this[_0x47922a(0x1c0)]();}),this['_session'][_0x28d850(0x297)][_0x28d850(0x172)](A[_0x28d850(0x5e8)](this[_0x28d850(0x5c9)]))['subscribe'](_0x595525=>{const _0x3dc3ab=_0x28d850,_0x3d0cb5=_0x595525[_0x3dc3ab(0x3af)];_0x3d0cb5===S[_0x3dc3ab(0x35a)]['UPDATE_CURSOR']&&this['_onCursorUpdate'](_0x595525),_0x3d0cb5===S[_0x3dc3ab(0x35a)][_0x3dc3ab(0x5c3)]&&this[_0x3dc3ab(0x4f0)](_0x595525);}),this[_0x28d850(0x48e)](),this[_0x28d850(0x3c7)](this[_0x28d850(0x55e)]['onCommandExecuted'](_0x67fffb=>{const _0x45b33a=_0x28d850;if(this['_online']&&_0x67fffb['id']===k[_0x45b33a(0x25b)]['id']&&_0x67fffb[_0x45b33a(0x4da)][_0x45b33a(0x2de)]===this[_0x45b33a(0x197)]){const _0x32ef0b=_0x67fffb[_0x45b33a(0x4da)];this[_0x45b33a(0x2fa)](_0x32ef0b[_0x45b33a(0x2ae)],_0x32ef0b[_0x45b33a(0x5c6)][0x0]);}})));}['_onCursorUpdate'](_0x4fdfb3){const _0x482c8e=_0x4a9685;var _0x5a33fe,_0x42bda2;const {memberID:_0x5f474f,selection:_0x1f57d8}=_0x4fdfb3['data'],{sheetName:_0x34ea61,range:_0x306930}=Pt[_0x482c8e(0x329)](_0x1f57d8),_0x194405={'name':(_0x42bda2=(_0x5a33fe=this[_0x482c8e(0x1f9)][_0x482c8e(0x5a6)](this['unitID'],_0x5f474f))==null?void 0x0:_0x5a33fe[_0x482c8e(0x2b9)])!=null?_0x42bda2:_0x482c8e(0x4af),'range':this[_0x482c8e(0x4f5)](_0x34ea61,_0x306930),'sheetID':_0x34ea61,'color':this[_0x482c8e(0x544)]['assignAColorForMemberID'](_0x5f474f),'selection':_0x1f57d8},_0x8526c8=this[_0x482c8e(0x468)];_0x8526c8['set'](_0x5f474f,_0x194405),this[_0x482c8e(0x3be)]['next'](_0x8526c8);}[_0x4a9685(0x4f0)](_0x3aa6a0){const _0x36f32f=_0x4a9685,{memberID:_0x37499c}=_0x3aa6a0[_0x36f32f(0x18f)],_0x5cf652=this[_0x36f32f(0x468)];_0x5cf652['delete'](_0x37499c),this[_0x36f32f(0x3be)][_0x36f32f(0x503)](_0x5cf652);}[_0x4a9685(0x4f5)](_0x9e0736,_0x39d57f){const _0x491ca0=_0x4a9685;var _0xae6002,_0x3e9ccb;const _0x514d02=(_0x3e9ccb=(_0xae6002=this[_0x491ca0(0x54a)]['getUniverSheetInstance'](this[_0x491ca0(0x197)]))==null?void 0x0:_0xae6002[_0x491ca0(0x2ca)](_0x9e0736))==null?void 0x0:_0x3e9ccb[_0x491ca0(0x4d1)]();return(_0x514d02==null?void 0x0:_0x514d02[_0x491ca0(0x284)](_0x40d29a=>a['Rectangle'][_0x491ca0(0x167)](_0x40d29a,_0x39d57f)))||_0x39d57f;}[_0x4a9685(0x48e)](){const _0x2c6bf4=_0x4a9685,_0x365faa=new a[(_0x2c6bf4(0x4b2))](),_0x1d7943=ts(),_0x1870c1=()=>{const _0x1f6d10=_0x2c6bf4;_0x365faa[_0x1f6d10(0x1d7)]();const _0x3e08c9=(_0xaddbc5,_0x2875ca,_0x3e86d3,_0x5b8423)=>{const _0xb54edd=_0x1f6d10;let _0x49258e=[];switch(_0xaddbc5['id']){case k[_0xb54edd(0x48c)][_0xb54edd(0x4b7)]:{_0x49258e=k['handleDeleteRangeMoveLeft'](_0xaddbc5,_0x5b8423);break;}case k['EffectRefRangId'][_0xb54edd(0x2e4)]:{_0x49258e=k[_0xb54edd(0x169)](_0xaddbc5,_0x5b8423);break;}case k['EffectRefRangId'][_0xb54edd(0x2da)]:{_0x49258e=k[_0xb54edd(0x3ff)](_0xaddbc5,_0x5b8423);break;}case k[_0xb54edd(0x48c)][_0xb54edd(0x471)]:{_0x49258e=k['handleInsertRangeMoveDown'](_0xaddbc5,_0x5b8423);break;}case k[_0xb54edd(0x48c)]['InsertRangeMoveRightCommandId']:{_0x49258e=k['handleInsertRangeMoveRight'](_0xaddbc5,_0x5b8423);break;}case k[_0xb54edd(0x48c)][_0xb54edd(0x58e)]:{_0x49258e=k['handleInsertRow'](_0xaddbc5,_0x5b8423);break;}case k['EffectRefRangId'][_0xb54edd(0x219)]:{_0x49258e=k['handleMoveRange'](_0xaddbc5,_0x5b8423);break;}case k[_0xb54edd(0x48c)][_0xb54edd(0x316)]:{_0x49258e=k['handleIRemoveCol'](_0xaddbc5,_0x5b8423);break;}case k[_0xb54edd(0x48c)]['RemoveRowCommandId']:{_0x49258e=k[_0xb54edd(0x587)](_0xaddbc5,_0x5b8423);break;}}const _0x56b403=k[_0xb54edd(0x458)](_0x49258e,_0x5b8423),_0x13b859=this['cursorInfo'][_0xb54edd(0x542)](_0x2875ca);if(_0x13b859&&_0x56b403){const _0x469398={..._0x13b859,'range':_0x56b403};this[_0xb54edd(0x468)]['set'](_0x2875ca,_0x469398),_0x1d7943(()=>{const _0x407598=_0xb54edd,_0x215ddc=this['_refRangeService'][_0x407598(0x506)](_0x56b403,_0x3443fe=>(_0x215ddc[_0x407598(0x1d7)](),_0x3e08c9(_0x3443fe,_0x2875ca,_0x3e86d3,_0x56b403)));_0x365faa['add'](_0x215ddc);});}return{'redos':[],'undos':[]};};this['cursorInfo'][_0x1f6d10(0x38f)]((_0x45e2e6,_0x1d1f12)=>{const _0x4b60c7=_0x1f6d10,{range:_0x2a365d,sheetID:_0x1a4317}=_0x45e2e6,_0x5de2d4=this[_0x4b60c7(0x4fa)][_0x4b60c7(0x506)](_0x2a365d,_0xb533=>(_0x5de2d4[_0x4b60c7(0x1d7)](),_0x3e08c9(_0xb533,_0x1d1f12,_0x1a4317,_0x2a365d)));_0x365faa[_0x4b60c7(0x42a)](_0x5de2d4);});};this[_0x2c6bf4(0x3c7)](a[_0x2c6bf4(0x4fd)](this[_0x2c6bf4(0x3be)][_0x2c6bf4(0x419)](()=>{_0x1870c1();})));}[_0x4a9685(0x4dd)](){const _0x26e3ed=_0x4a9685;var _0x62973c,_0x20cf1a;if(this[_0x26e3ed(0x420)]=!0x0,((_0x62973c=this['_univerInstanceService'][_0x26e3ed(0x2dd)]())==null?void 0x0:_0x62973c[_0x26e3ed(0x56f)]())!==this[_0x26e3ed(0x197)])return;const _0x1d4524=(_0x20cf1a=this[_0x26e3ed(0x372)][_0x26e3ed(0x542)](k[_0x26e3ed(0x31c)])[_0x26e3ed(0x3b1)]())==null?void 0x0:_0x20cf1a[0x0],_0x4e2217=this['_univerInstanceService'][_0x26e3ed(0x5cf)](a['UniverInstanceType'][_0x26e3ed(0x1af)])[_0x26e3ed(0x4d4)]();_0x1d4524&&_0x4e2217&&this[_0x26e3ed(0x2fa)](_0x4e2217[_0x26e3ed(0x180)](),_0x1d4524);}[_0x4a9685(0x1c0)](){const _0x123934=_0x4a9685;this[_0x123934(0x420)]=!0x1;}};St=Zi([be(0x2,a['Inject'](a['Injector'])),be(0x3,a[_0x4a9685(0x27a)](Ot)),be(0x4,a['Inject'](exports[_0x4a9685(0x3e1)])),be(0x5,a[_0x4a9685(0x3c5)]),be(0x6,a[_0x4a9685(0x449)]),be(0x7,a[_0x4a9685(0x27a)](k[_0x4a9685(0x198)]))],St);var ns=Object[_0x4a9685(0x377)],is=Object[_0x4a9685(0x484)],ss=(_0x34f34d,_0xa5b57b,_0x24dccc,_0x57fb50)=>{const _0xc984f9=_0x4a9685;for(var _0x3451f1=_0x57fb50>0x1?void 0x0:_0x57fb50?is(_0xa5b57b,_0x24dccc):_0xa5b57b,_0x31250e=_0x34f34d[_0xc984f9(0x530)]-0x1,_0x1fbb62;_0x31250e>=0x0;_0x31250e--)(_0x1fbb62=_0x34f34d[_0x31250e])&&(_0x3451f1=(_0x57fb50?_0x1fbb62(_0xa5b57b,_0x24dccc,_0x3451f1):_0x1fbb62(_0x3451f1))||_0x3451f1);return _0x57fb50&&_0x3451f1&&ns(_0xa5b57b,_0x24dccc,_0x3451f1),_0x3451f1;},nt=(_0x228cff,_0x4619ca)=>(_0x16d455,_0x5b2431)=>_0x4619ca(_0x16d455,_0x5b2431,_0x228cff);let De=class extends a[_0x4a9685(0x2c7)]{constructor(_0x3ad23c,_0x3321e8,_0x4087c3){const _0x16fc7f=_0x4a9685;super(),I(this,_0x16fc7f(0x35f),new Map()),I(this,_0x16fc7f(0x242),new A['Subject']()),(this[_0x16fc7f(0x54a)]=_0x3ad23c,this[_0x16fc7f(0x372)]=_0x3321e8,this[_0x16fc7f(0x5b4)]=_0x4087c3,this[_0x16fc7f(0x3f4)]());}[_0x4a9685(0x1d7)](){const _0x545527=_0x4a9685;super['dispose'](),this[_0x545527(0x242)]['complete'](),this[_0x545527(0x35f)][_0x545527(0x38f)](_0x430d87=>_0x430d87['dispose']());}[_0x4a9685(0x406)](_0xdc9732){const _0x57684f=_0x4a9685;return this[_0x57684f(0x35f)][_0x57684f(0x1d2)](_0xdc9732)?this[_0x57684f(0x35f)][_0x57684f(0x542)](_0xdc9732)[_0x57684f(0x3d1)]:this[_0x57684f(0x242)][_0x57684f(0x172)](A['filter'](_0x4a39cb=>_0x4a39cb[_0x57684f(0x197)]===_0xdc9732),A[_0x57684f(0x4c9)](_0x974679=>_0x974679[_0x57684f(0x3d1)]));}[_0x4a9685(0x3f4)](){const _0x1099ba=_0x4a9685;this[_0x1099ba(0x54a)]['getTypeOfUnitAdded$'](a[_0x1099ba(0x33e)]['UNIVER_SHEET'])[_0x1099ba(0x172)](A[_0x1099ba(0x5e8)](this[_0x1099ba(0x5c9)]))[_0x1099ba(0x419)](async _0x55096c=>{const _0x1a52d0=_0x1099ba,_0x1be740=_0x55096c[_0x1a52d0(0x56f)](),_0x2a0801=await this[_0x1a52d0(0x1c4)](_0x1be740);this[_0x1a52d0(0x242)][_0x1a52d0(0x503)](_0x2a0801),this[_0x1a52d0(0x35f)][_0x1a52d0(0x568)](_0x1be740,_0x2a0801);}),this['_univerInstanceService']['getTypeOfUnitAdded$'](a[_0x1099ba(0x33e)][_0x1099ba(0x22a)])[_0x1099ba(0x172)](A[_0x1099ba(0x5e8)](this[_0x1099ba(0x5c9)]))[_0x1099ba(0x172)](A[_0x1099ba(0x464)](_0x4b06b6=>!_0x4b06b6[_0x1099ba(0x56f)]()[_0x1099ba(0x3c4)]('__')))[_0x1099ba(0x419)](async _0x5dbffe=>{const _0x66163e=_0x1099ba,_0x4164a8=_0x5dbffe[_0x66163e(0x56f)](),_0x277154=await this[_0x66163e(0x574)](_0x4164a8);this[_0x66163e(0x242)][_0x66163e(0x503)](_0x277154),this[_0x66163e(0x35f)][_0x66163e(0x568)](_0x4164a8,_0x277154);}),A['merge'](this[_0x1099ba(0x54a)][_0x1099ba(0x388)](a[_0x1099ba(0x33e)][_0x1099ba(0x22a)]),this[_0x1099ba(0x54a)][_0x1099ba(0x388)](a[_0x1099ba(0x33e)][_0x1099ba(0x1af)]))[_0x1099ba(0x172)](A[_0x1099ba(0x5e8)](this[_0x1099ba(0x5c9)]))[_0x1099ba(0x419)](_0x4d4b69=>{const _0x1b007a=_0x1099ba,_0x176d9d=_0x4d4b69[_0x1b007a(0x56f)](),_0x5dd815=this['_entities'][_0x1b007a(0x542)](_0x176d9d);_0x5dd815&&(_0x5dd815['dispose'](),this['_entities']['delete'](_0x176d9d));});}async[_0x4a9685(0x1c4)](_0x54acaf){const _0x2ff541=_0x4a9685,_0x166a9d=await this[_0x2ff541(0x5b4)][_0x2ff541(0x461)](_0x54acaf),_0x3b137d=this[_0x2ff541(0x372)][_0x2ff541(0x572)](St,_0x54acaf,_0x166a9d);return _0x3b137d['init'](),_0x3b137d;}async[_0x4a9685(0x574)](_0x389cf5){const _0x387af4=_0x4a9685,_0xfe3aa9=await this[_0x387af4(0x5b4)][_0x387af4(0x461)](_0x389cf5),_0x2bc231=this[_0x387af4(0x372)][_0x387af4(0x572)](mt,_0x389cf5,_0xfe3aa9);return _0x2bc231[_0x387af4(0x432)](),_0x2bc231;}};De=ss([nt(0x0,a['IUniverInstanceService']),nt(0x1,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),nt(0x2,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x2a7)]))],De);const Le=0x14,Ht=0xc8,it=0x4,rs=0x5;function os(_0x14b240,_0x43b859){const _0x322e1c=_0x4a9685;let {radius:_0x164e66,width:_0x2d8cd9,height:_0x34c08b}=_0x43b859;_0x164e66=_0x164e66!=null?_0x164e66:0x0,_0x2d8cd9=_0x2d8cd9!=null?_0x2d8cd9:0x1e,_0x34c08b=_0x34c08b!=null?_0x34c08b:0x1e;let _0x1e83f4=0x0,_0x2f5924=0x0,_0x59729e=0x0;_0x1e83f4=_0x2f5924=_0x59729e=Math[_0x322e1c(0x585)](_0x164e66,_0x2d8cd9/0x2,_0x34c08b/0x2),_0x14b240['beginPath'](),_0x14b240[_0x322e1c(0x51f)](_0x1e83f4,0x0),_0x14b240['lineTo'](_0x2d8cd9-_0x2f5924,0x0),_0x14b240[_0x322e1c(0x485)](_0x2d8cd9-_0x2f5924,_0x2f5924,_0x2f5924,Math['PI']*0x3/0x2,0x0,!0x1),_0x14b240[_0x322e1c(0x41e)](_0x2d8cd9,_0x34c08b-_0x59729e),_0x14b240['arc'](_0x2d8cd9-_0x59729e,_0x34c08b-_0x59729e,_0x59729e,0x0,Math['PI']/0x2,!0x1),_0x14b240[_0x322e1c(0x41e)](0x0,_0x34c08b),_0x14b240[_0x322e1c(0x41e)](0x0,_0x1e83f4),_0x14b240[_0x322e1c(0x485)](_0x1e83f4,_0x1e83f4,_0x1e83f4,Math['PI'],Math['PI']*0x3/0x2,!0x1),_0x14b240[_0x322e1c(0x25e)](),_0x43b859[_0x322e1c(0x28d)]&&(_0x14b240[_0x322e1c(0x4ff)](),_0x14b240[_0x322e1c(0x2e2)]=_0x43b859['fill'],_0x43b859[_0x322e1c(0x5c8)]==='evenodd'?_0x14b240['fill'](_0x322e1c(0x2b7)):_0x14b240[_0x322e1c(0x28d)](),_0x14b240[_0x322e1c(0x4a9)]());}function _0x2b0a(){const _0x213ed4=['SheetCollaborationEntity','SheetCollabCursorShape','runRefRangeMutations','getCurrentUser','/block/','onTransformIME','_updateURLWithCurrentState','touchDependencies','exhaustSavingTask','[PendingState]:\x20unhandled\x20univer\x20type:\x20','endColumn','requireSession','you\x20should\x20override\x20\x22IUndoRedoService\x22\x20provided\x20in\x20\x22core\x22\x20package!','_docSkeleton','filter','url','_session','DocSkeletonManagerService','cursorInfo','CollaborationEntity','withCredentials','_collaborationController','_nDataBytes','@univerjs/engine-render','roomMembers$','univer-pro.collaboration-client.single-active-unit-service','values','InsertRangeMoveDownCommandId','COMPRESS_MUTATION_SEND','CHANGESET_REJ','liveShareOperation','_draw','_doCryptBlock','ILocalStorageService','idSuffix','_onRecvEvent','MergeInterceptorFactory','PSEUDO_FETCH_MISSING_RESULT','equals','_handleJoinEvent','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.','column','_logService','round','ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=','ITelemetryService','getOwnPropertyDescriptor','arc','_cursor','_drawAnchor','HEARTBEAT_INTERVAL','collabStatus.fetchMiss','[PendingState]:\x20invalid\x20calling\x20to\x20`resend`.','_socketService','EffectRefRangId','@univerjs-pro/collaboration','_onRefRangeChange','_localStorageService','_roomMembers$','_socket$','DocStateChangeManagerService','change$','_collaborationSessionService','socket$','?url=','_state$','isTransformMutationFailure','[CollaborationUndoRedoService]','UPDATE_CURSOR','SEND_CHANGESET_TIMEOUT','updateCollaborator','processBlock','LOGIN_URL_KEY','_nRounds','_createHandler','getConfig','none','jsx','_fetchMissChangesets','collab-text-anchor-','_oKey','_onFetchMissResult','LocaleService','restore','onTransformRemoteChangesetByIMECache','currentTheme$','COMPLETION_FINISHED','BuiltInUIPart','collabStatus.conflict','Unknown\x20user','every','957104hgvwHj','DisposableCollection','liveShareNewHost','CommandType','endRow','_getSaveTimeout','DeleteRangeMoveLeftCommandId','_onRemoteChangeset','image/bmp','status$','algo','SheetPermissionInitController','#fff','UNRECOGNIZED','isActive','msCrypto','_name','setInterval','Subject','_change$','create','currentColor','_docStateChangeManagerService','saveSheetBlock','switchMap','SheetSkeletonManagerService','decrypt','src','univer-online-status-icon','fromEventSubject','color','shouldCloseConn','getMergeData','HttpExport','_id','getActiveSheet','_parse','conflict.title','No\x20unitID\x20or\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','split','IRemoteInstanceService','params','_redoStacks','kdf','_toggleOnline','RichTextEditingMutation','_resendTimeout','[PendingState]:\x20received\x20acknowledgement.','getRelativeToViewportCoord','MD5','StreamCipher','encrypt','974055MQSetI','1848510BsEahU','SetWorksheetActivateCommand','getOwnPropertySymbols','_initMergeInterceptor','clipPath','setActiveRange','_transformHistoryAndStateStack','transformMutationsWithChangeset','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','onload','_onCursorDelete','_retryCount','routeKey','url(#on-line-single_clip0_910_349)','distinctUntilChanged','_getMergeRange','_transformService','_drawRectRange','_onCursorUpdate','catch','_refRangeService','_rescheduleHeartbeat','transformIMECache','toDisposable','downloadEndpointUrl','save','copyFileMeta','randomBytes','blockSize','next','_docTransformIMECacheService','_render','registerRefRange','PasswordBasedCipher','collaboration-session-retry','transform','SetTextSelectionsOperation','_event$','createEncryptor','ImageIoService','selection','for','font','CONNECTOR_DATA_TOO_LARGE','_clearOtherTimers','deepClone','getCoordByCell','[CollaborationSession]:\x20should\x20not\x20send\x20message\x20when\x20the\x20session\x20is\x20offline!','0\x200\x2017\x2016','ENSURE_SNAPSHOT_EXECUTION','UNIVER_SLIDE','/role','_key','conflict.content','permission.content','drawWith','c1Prime','moveTo','ColorKit','OTHER_CLIENTS_EDITING','entries','_saveTaskMap','/resources','resize','onTransformSelections','div','DOC_RANGE_TYPE','awaiting','HMAC','SNAPSHOT_INVALID_SNAPSHOT','shareReplay','getRangePointData','RECV','NodePositionConvertToRectRange','length','_range','/collaborator','registerHTTPInterceptor','\x20in\x20_schedule.','LICENSE_IMPORT_SIZE_EXCEEDED','[CollaborationEntity]:\x20initial\x20state\x20has\x20been\x20created\x20before.\x20You\x20should\x20not\x20call\x20\x22init\x22\x20twice.','throttleTime','EmptyMutation','@univerjs/sheets','_docSyncEditingCollabCursorService','_transformUndoredo','CollaborationSocketService','/universer-api/oidc/authpage','FileId','leaveEvent','append','cfg','get','JOINING','_colorAssignService','userID','saveOfflineData','LICENSE_EXPORT_SIZE_EXCEEDED','_startTelemetryCollaborationNewChangeset','NodePositionConvertToCursor','_univerInstanceService','_HTTPService','uploadFileServerUrl','getVpScrollXYInfoByPosToVp','_invKeySchedule','rxjs/operators','rng','_themeService','setShapeProps','mode','DataLoaderController','onCommandExecuted','setAlpha','method','indexOf','location','top','IContextService','defs','delay','_commandService','univer-pro.collaboration-client-socket-service','_imageSourceCache','_prevBlock','collabStatus.offline','BehaviorSubject','crypto','_getDownloadEndpointURL','b64DecodeUnicode','YUUMI_SUBSCRIPTION_NOT_FOUND','set','roles','urlChange$','_scheduleClearOtherTimer','HEARTBEAT_TIMEOUT','socket\x20open.','initWorkbookPermissionChange','getUnitId','_initCloseConn','_onMessage','createInstance','session.will-retry','_startDocCollabCursor','_updateCollabCursors','VIEW_MAIN','_sessions','/rev/','\x20-\x20','_hideTimer','_listenToOfflineEvent','focused$','UNKNOWN_CODE','_labelPosition','mixIn','newCsEvent','awaiting_with_pending','_renderManagerService','_sendingTimer','NOT_FOUND','min','reqId','handleIRemoveRow','random','onPointerEnter$','MUTATION','[OfflineState]:\x20received\x20rejection.','_onJoinRoomEvent','UUID','InsertRowCommandId','transformSelections','getSheetBlock','ciphertext','useObservable','CollaborationStatusDisplay','sheetId','setTimeout','readInt32LE','onTransformChange$','saveChangeset','Workbook','toStringTag','Optional','_roomMembers','_docTransformSelectionsService','fromEvent','_onCombEvent','onTransformRemoteChangesetByStateCache','CommentService','originalMeta','cmd','_hovered','collaMsg','getMember','_setupSubUnitSync','Univer','_docSkeletonManagerService','reverse','startTime','_stopTelemetryCollaborationNewChangeset','LICENSE_DISTRO_REJECTED','getInterceptPoints','collabStatus.syncing','DocCollaborationEntity','pad','_setupBeforeClosingHandler','_executeRemoteChangeset','_collabSessionService','_shouldReportTelemetry','actions','formatter','_beforeCloseService','getSheetObject','transformStateCache','@univerjs/network','syncEditingCollabCursor','NOT_COLLAB','_initStatusListener','getCollabEntity$','_keyPriorReset','HEADER_MENU','LEAVE','USERS_LEAVE','toLowerCase','_sheetSkeletonManagerService','selections','bottom','fillRule','dispose$','_exhaustRemoteChangesetQueue','_reverseMap','apply','_initRequestHeader','then','getCurrentUnitForType','refreshPermission','Error\x20on\x20receiving\x20event','PERMISSION_REJ','url(#$1','Vector2','open$','FAIL','ICollaborationSocketService','_removeCollabCursors','updateCursorEvent','setWaitCount','loginUrlKey','override','exports','snapshot','auth.needGotoLoginAlert','csShouldRetryEvent','searchParams','CompressMutationService','_color','blue400','_transformStateCache','getSkeleton','objectID','takeUntil','NO_OTHER_CLIENTS_EDITING','substr','SUBMIT_CHANGESET','makeDirty','_initUnitPermissionChange','collaboration.closeRoom','translate(.97)','baseRev','defIds','COLLAB_SUBMIT_CHANGESET_URL_KEY','unload','executeCommand','salt','getUnitStatus$','flatMap','_cachedData','isTransformMutationsWithChangesetFailure','measureText','asObservable','[CollaborationState]:\x20apply\x20error!','_assignedColors','_sessionStatus$','current','univer-online','buffer','byteLength','IBeforeCloseService','isTransformChangesetsSuccess','ERROR_IMAGE','failed\x20to\x20apply\x20missed\x20changesets!','_hasher','_localCacheService','_members','onMissedChangesetFetched','serializeCombRequest','COLORS','IRenderManagerService','patch','reset','\x20to\x20','addImageSourceCache','action','setCurrentUser','JSONX','updateOfflineData','[CollaborationController]:\x20invalid\x20univer\x20type:\x20','bind','/universer-api/snapshot','CollaborationStatus','collab-text-range-','words','hasher','telemetry\x20info\x20is\x20not\x20initialized','debounce','SHA1','capture','hidden','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','deleteCollaborator','_removeClearOtherTimer','_showConflictNotification','_tryEnsureSocket','batchAllowed','_getLoginPath','displayName','sheets','submit\x20changeset\x20error!','assign','contains','_handler','handleDeleteRangeMoveUp','_clearRedo','APPLY_PERMISSION_DENIED','@univerjs/drawing','_getRedoStack','className','_state','send','post','pipe','_getSheetObject','Warning','_decreaseWaiting','close','_resendTimer','PERMISSION_DENIED','SNAPSHOT_SERVER_URL_KEY','transformStack\x20failed!','_createInitialStateImpl','textEncoder','Injector','black','&assign=','getSheetId','_unitStatus','connection\x20error','infoRsp','symbol','_hover','toRgbString','_doFinalize','ISnapshotServerService','state$','_unitID','permission.title','substring','lib','_handleLeaveEvent','data','[DataLoaderController]','RETRY_CONNECTING_MAX_COUNT','compute','transformByState','useCallback','localeService','_initStatusComponent','unitID','RefRangeService','/new_changes','_cursors','getUnitType','includes','setUndoRedoMutationParamsCache','UniverCollaborationPlugin','subscribeEvent','LocalCacheService','not_collab','ImageSourceType','enableAuthServer','univer-online-status','@univerjs/core','[SyncedState]:\x20received\x20acknowledgement.','EvpKDF','COLLAB_SUBMIT_CHANGESET_URL','RevisionService','_saveCache','useRef','BufferedBlockAlgorithm','popstate','getValue','UNIVER_SHEET','_unitOnClients','_getUndoStack','_applyRemoteChangeset','_createSocket','startRow','_disableEditing','rev','_throwTelemetryCollaborationNewChangeset','mutations','No\x20remote\x20instance\x20service\x20injected.\x20May\x20not\x20syncing\x20edits\x20to\x20the\x20web\x20worker.','_clearScheduledTask','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','_queuedRemoteChangesets','Base','x-univer-host','online','_toggleOffline','ranges','getRoom','body','_startSheetCollabCursor','unknown','clone','title','getRandomValues','LIVESHARE_NEW_HOST','_scheduleHeartbeat','_minBufferSize','_removeRoom','loadSheet','[FetchMissState]','message$','floor','getTime','has','JOIN','rgba(255,\x20255,\x20255,\x200.01)','9cyHtzv','unshift','dispose','incrementRevOfUnit','_telemetryService','@univerjs/telemetry','_replaceFileID','_cipher','resend','removeMember','Cipher','gold400','getCurrent','splice','createIdentifier','members','memberID','_resendWithTimeout','collaboratorID','COLLAB_WEB_SOCKET_URL','unit','M0\x200H16V16H0z','getUndoRedoMutationParamsCache','USERS_ENTER','engine','Decryptor','WorkbookEditablePermission','_sendHeartbeat','_getAPIPrefixPath','LICENSE_MAX_UNITS_EXCEEDED','UnitSnapshot','path','{fileID}','[CollaborationSocketService]:\x20failed\x20to\x20create\x20socket!','1663876RofJzw','DocSelectionManagerService','_memberService','_getAPIPrefix','2ECNIjH','react.element','href','default','CollaborationController','interceptor','getStateCache','sendChangesetTimeout','transformRemoteChangeset','getMemberID','encodeURIComponent','loadOfflineData','NoPadding','m1Prime','children','collabCursorState$','_transformPreviousActiveRange','call','fromCollab','getLatestCsReqIdBySid','_doReset','image/png','defaultProps','_eventUnsubscribe','_httpService','_singleActiveUnitService','setStateCache','prototype','getOffsetConfig','RETRY_CONNECTING_MAX_COUNT_KEY','MoveRangeCommandId','CHANGESET_REVISION_CONFILICT','COLLAB_WEB_SOCKET_URL_KEY','OpenSSL','CBC','_updateSubUnitFromURLParams','file','Base64','origin','AES','editingUnit','delete','_data','status','YUUMI_RATE_OVER_LIMIT','pauseCollaboration','sid','UNIVER_DOC','socketService','xlink:href','charAt','padding','/universer-api/file/{fileID}/sign-url','_urlService','getDocRanges','_snapshotService','_syncEditingCollabCursor','Could\x20not\x20dynamically\x20require\x20\x22','put','textRanges','colorChannel1','_textBubble','from','_uiPartsService','IUndoRedoService','_colorIndex','_http','transformMutation','PENDING','authzUrl','join','_entityInit$','INTERNAL_ERROR','ONLINE','useDependency','transformUndoRedo','attrs','HEARTBEAT_TIMEOUT_KEY','_awaitingChangeset','reconnect','onStateChange','_tryReconnect','getDeserializedSheetBlock','_docTransformStateCacheService','_send','_anchorDot','InsertSheetMutation','onlineStatusTitle','collabWebSocketUrl','_onConnectionFailed','fetch_missing','_pendingMutations','_sheetTransformSelectionsService','react','headers','[CollaborationSessionService]','SetSelectionsOperation','collaborators','LIVESHARE_OPERATION','closePath','_incrementRevisionNumber','_joinRoom','Disposable','_commentUpdate$','_onOffline','_waitForHeartbeatResponse','/universer-api/comb','RegularPolygon','_scheduleTimestamp','UNDEFINED','_substituteUndoStack','ImageUploadStatusType','AuthzIoHttpService','stopTime','_revisionService','onCommentUpdate','_submitChangeset','FromArray','clear','CHANGESET_ACK','_transformStack','[OfflineState]:\x20invalid\x20calling\x20to\x20`resend`.','VIEWPORT_KEY','_collabCursorController','offline','_clearCollaborationTimeoutTimer','_changesetSessionId','Inject','onRendered','NEW_CHANGESETS','IMessageService','_registerDependencies','range','[ConflictState]:\x20invalid\x20calling\x20to\x20`resend`.','registerOnClose','setParam','LIVESHARE_TERMINATE','find','updatePermissionObjEvent','getItem','replaceState','fetchMiss','Utf8','map','AWAITING_WITH_PENDING','SYNCED','fill','addObject','_scheduleCollaborationTimeoutTimer','image/gif','_getUploadFileURL','Rect','pushState','_configService','retryConnectingInterval','collab-rect-range-','event$','getCollabEntity','_clearTimeoutTimer','fromCharCode','_selfUnitIDs','_backgroundColor','@univerjs/rpc','_updateLocalCache','_loadDoc','confirm','_startCollaboration','reduce','forwardRef','setItem','_replayCachedMutations','OffLineSingle','CollaborationSessionService','_sender','/universer-api/snapshot/','toggleOnline','EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY','propertyIsEnumerable','c2Prime','subUnitId','parse','ALREADY_EXISTS','conflict','_onLocalMutation','_compressMutationService','FETCH_MISSING','getCellPositionByOffset','removeParam','evenodd','onSendChangeset','name','onPointerMove$','_listenToOnlineEvent','WordArray','_ensureSubject','format','onRemoteChangeset','getAllMembers','changesets','fillText','concatMap','_clearUndo','sin','FETCH_MISS','RxDisposable','APPLY_DUPLICATED','[CollaborationEntity]','getSheetBySheetId','registerRenderModule','tag','Shape','/-/object/list','getColor','Error','stringify','CollaborationSession','_anchor','_candidateSocket','function','size','onlyLocal','_disabled','_updateStatus','InsertColCommandId','HTTPService','visibilitychange','getFocusedUnit','unitId','onRemoteRetry','_instanceService','onlineStatus','fillStyle','MessageType','DeleteRangeMoveUpCommandId','collabStatus.synced','json','max','ILogService','workbook','_onRemoteRejected','_createInitialState','_transitionLocked','[FetchingMissState]:\x20not\x20expected\x20to\x20receive\x20ack\x20when\x20`this._awaitingChangeset`\x20is\x20null!','$super','_socket','IAuthzIoService','&to=','slice','_initCommandExecutedListener','hasOwnProperty','encryptBlock','_createHelper','complete','DesktopCollaborationStatusDisplayController','...','_updateLocalCursor','_unlockTransition','/allowed','YUUMI_URL_COL_OUT_OF_RANGE','some','ReactCurrentOwner','\x0aCurrent:\x20','duration','_xformMode','key','clamp','session','enableLocalCache','_refreshCollabCursors','TEXT_RANGE_LAYER_INDEX','_keySchedule','getUnit','LOCAL_CACHE_INTERVAL_KEY','replaceDocRanges','createCollaborator','APPLY_REVISION_CONFILICT','result','IPermissionService','_DEC_XFORM_MODE','deserializeToCombResponse','ivSize','Hasher','ITransformService','RemoveColCommandId','encode','BASE64','SessionStatus','getRenderById','_onUserLeave','SheetsSelectionsService','_notificationService','updateMember','_userManagerService','WebURLService','_lockTransition','collaboration-client.config','mergeOverrideWithDependencies','HTTPRequest','enableSingleActiveInstanceLock','with','fetchMissingChangesets','CONFLICT','deserializeRangeWithSheet','LIVESHARE_REQUEST_HOST','_handleHeartbeatEvent','row','disposeUnit','generateRandomId','object','compose','_ENC_XFORM_MODE','createSocket','ref','roomMembers','_transformSelections','_lastPointer','_getAnchorBounding','OFFLINE','allowed','revision','/unit/','_clearHeartbeatTimer','SnapshotService','UniverInstanceType','_telemetryInfo','_heartbeatTimer','_onConflict','_getCurrentRevision','/object/','unitId\x20is\x20not\x20found','merge','_commentService','UPDATE_PERMISSION_OBJ','UNIVER_COLLABORATION_CLIENT_PLUGIN','_sendHeartbeatTimer','_onUserJoin','_append','HttpImport','_checkMissing','unit-cache-','_handleEvent','toString','@univerjs/docs','image/jpeg','1em','onMissingChangesets','_createHmacHelper','getWorkbookSelections','[serializeCombRequest]:\x20should\x20not\x20fall\x20into\x20default\x20branch!','now','labelPosition','CollaborationEvent','DocIMEInputManagerService','Encryptor','/fetchmissing?from=','saveImage','_entities','disableLocalCache','visibilityState','reject','_timeoutTimer','_clearLocalCache','objects','_status$','_getScale','addEventListener','@univerjs/design','finalize','show','_changesetReqId','isArray','_substituteRedoStack','url(#off-line-single_clip0_910_343)','getUnitOnRev','hide','_injector','APPLY_REJECT','This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!','currentSkeleton$','SnapshotServerOverHTTPService','defineProperty','WebSocketService','onSyncEditingCollabCursor','debug','onRemoteRej','error$','CipherParams','[CollaborationSessionService]:\x20socket\x20error','BlockCipher','_process','width','update','_onRemoteRetry','rxjs','requestParams','session.connection-failed','HEARTBEAT_INTERVAL_KEY','getTypeOfUnitDisposed$','Plugin','COMMENT_UPDATE','replace','all','APPLY_NON_SEQUENTIAL_REVISION','updatePermissionPoint','forEach','objectActions','[PendingState]:\x20received\x20rejection.','_socketReady','createElement','_document','pluginName','on-line-single_clip0_910_349','trim','CHANGESET_SHOULD_RETRY','Native\x20crypto\x20module\x20could\x20not\x20be\x20used\x20to\x20get\x20secure\x20random\x20number.','execute','[CollaborationEntity]:\x20invalid\x20state\x20transition!\x20State\x20transferred\x20from\x20is\x20not\x20the\x20current\x20state.\x0aBefore:\x20','_localeService','SerializableCipher','off-line-single','_initEventListeners','IDLE','INGEST','UniverCollaborationClientPlugin','collaboration.single-unit.warning','randomUUID','take','sigBytes','_messageService','_schedule','SNAPSHOT_HAS_BEEN_REMOVED','UniverNetworkPlugin','_waitCount','parseProtocolChangeset','BlockCipherMode','redoState','eventID','assignAColorForMemberID','getCurrentSelections','string','clearTimeout','charCodeAt','/-/object/-/batch_allowed','3203946BScfDh','toggleOffline','Module','list','_isPermissionRej','extend','__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED','_collabCursorState$','_cursorInfo$','jsxs','@univerjs/docs-ui','_ws','_map','_scene','startsWith','IUniverInstanceService','newValue','disposeWithMe','onlineStatusIcon','_retryConnectingTimer','_initDependencies','_getSendChangesetTimeout','fetchThroughInterceptors','number','ThemeService','doc.mutation.rich-text-editing','triggerDblclick','cursorInfo$','_undoRedoService','[OfflineState]:\x20received\x20acknowledgement.','UnitEmbedded','transformChangesets','push','_iv','error','_shapes','TRANSFORM_CHANGE_OBSERVABLE_TYPE','_mode','height','synced','storage','_socketMessageSubscription','_permissionService','MemberService','getParam','_transformUndoRedoStack','type','getCurrentRevOfUnit','enc','COMPRESS_MUTATION_APPLY','_cursorShapes','onRemoteAck','6603884CIvAuT','image/jpg','onReady','ThresholdInterceptorFactory','onMouseMove','combineLatest','pending','keySize','_config','IImageIoService','_init','HELLO','[SyncedState]:\x20invalid\x20calling\x20to\x20`resend`.','_hash','[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.','getTypeOfUnitAdded$','_getCtorByUniverType','IConfigService','_context','use','subunit','handleInsertCol','/universer-api/authz','RECT','unsubscribe','m2Prime','[CollaborationSession]','_collaborationTimeoutTimer','getCollabCursors$','concat','_onConnectionOpen','_initResize','\x0aAfter:\x20','decryptBlock','appendMutation','LIVESHARE_FETCH_OPERATIONS','_collaborationPaused','on-line-single','_getSignURL','AWAITING','__creator','responseType','_acknowledgedAwaitingChangeset','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','debounceTime','Undefined','startColumn','subscribe','_type','_updateState','serializeRangeWithSheet','UNKNOWN_CMD','lineTo','target','_online','svg','hovered','_handleHover','parseChangesetToProtocol','commentUpdateEvent','Tools','HEARTBEAT','AUTHZ_URL_KEY','mapTo','add','SHOULD_CLOSE_CONN','INVALID_ARGUMENT','history','MSG_FOR_ERROR','undoState','docStateChange$','POST','init','UNIVER_PROJECT','uni.network.url-service','skeleton','_drawTextRange','_remoteChangesetQueue','icon','off-line-single_clip0_910_343','_transformIMECache','TEXT','UNAUTHENTICATED','findNodePositionByCharIndex','/universer-api/stream/file/upload','SEND_CHANGESET_TIMEOUT_KEY','registerDependencies','sheetID','SNAPSHOT_URL_KEY','enableOfflineEditing','[OfflineState]:\x20received\x20changeset.','addObjects','_onRemoteACK','YUUMI_UNABLE_LOAD_URL','Tooltip','ICommandService','clearInterval','Cannot\x20assemble\x20a\x20changeset\x20from\x20multiple\x20mutations\x20of\x20different\x20types:\x20','#FFF','sessionStatus$','TOO_MANY_REQUESTS','4040488CmPain','sessionStatus','objectType','_transformRemoteChangesetByStateCache','isTransformMutationsWithChangesetSuccess','_loadSheet','createDecryptor'];_0x2b0a=function(){return _0x213ed4;};return _0x2b0a();}class ze extends K[_0x4a9685(0x2cd)]{constructor(_0xa7b895,_0x25bed0){const _0x438573=_0x4a9685;super(_0xa7b895,_0x25bed0),I(this,_0x438573(0x4cf)),I(this,'text'),(this['color']=_0x25bed0==null?void 0x0:_0x25bed0['color'],this['text']=_0x25bed0==null?void 0x0:_0x25bed0['text']);}static[_0x4a9685(0x51d)](_0x56d706,_0xfaa5b){const _0x57673f=_0x4a9685,{text:_0x2367c3,color:_0x4f6fcf}=_0xfaa5b;_0x56d706[_0x57673f(0x4ff)](),_0x56d706[_0x57673f(0x510)]='bold\x2013px\x20Source\x20Han\x20Sans\x20CN';const _0x272b0e=_0x56d706[_0x57673f(0x134)](_0x2367c3)[_0x57673f(0x381)],_0x913e48=Math[_0x57673f(0x585)](_0x272b0e+0x2*it,Ht);os(_0x56d706,{'height':Le,'radius':0x4,'width':_0x913e48,'fill':_0x4f6fcf,'evented':!0x1}),_0x56d706['fillStyle']=_0x57673f(0x44c);const _0x126581=it,_0x2d2a9c=Le-rs,_0xcfa6a1=Ht-0x2*it;if(_0x272b0e>_0xcfa6a1){let _0xc4ff3a='',_0x195c16=0x0;for(const _0x22d885 of _0x2367c3){const _0x13e1e9=_0x56d706[_0x57673f(0x134)](_0x22d885)[_0x57673f(0x381)];if(_0x195c16+_0x13e1e9<=_0xcfa6a1-_0x56d706[_0x57673f(0x134)](_0x57673f(0x2f9))['width'])_0xc4ff3a+=_0x22d885,_0x195c16+=_0x13e1e9;else{_0xc4ff3a+=_0x57673f(0x2f9);break;}}_0x56d706[_0x57673f(0x2c2)](_0xc4ff3a,_0x126581,_0x2d2a9c);}else _0x56d706[_0x57673f(0x2c2)](_0x2367c3,_0x126581,_0x2d2a9c);_0x56d706[_0x57673f(0x4a9)]();}[_0x4a9685(0x475)](_0x260692){const _0x18a7ab=_0x4a9685;ze[_0x18a7ab(0x51d)](_0x260692,this);}}const st=_0x4a9685(0x4a5),as=_0x4a9685(0x154),cs=_0x4a9685(0x296),Ue=0x6,ls=1.5,rt=0x4,hs=1.5,_s=_0x4a9685(0x1d4);class Bt{constructor(_0x24d0cc,_0xb81dd,_0x1c1eaf,_0x3b7d76){const _0x19f27e=_0x4a9685;I(this,_0x19f27e(0x3d9),[]),I(this,_0x19f27e(0x2d3),null),I(this,_0x19f27e(0x238),null),I(this,_0x19f27e(0x250),null),I(this,_0x19f27e(0x57a),null),I(this,_0x19f27e(0x212),null),(this[_0x19f27e(0x486)]=_0x24d0cc,this[_0x19f27e(0x3c3)]=_0xb81dd,this[_0x19f27e(0x463)]=_0x1c1eaf,this[_0x19f27e(0x394)]=_0x3b7d76,this[_0x19f27e(0x505)]());}set[_0x4a9685(0x185)](_0x173211){const _0x2c1d3a=_0x4a9685;_0x173211?(this['_anchorDot']&&this[_0x2c1d3a(0x250)][_0x2c1d3a(0x371)](),this['_textBubble']&&this[_0x2c1d3a(0x238)]['show']()):(this[_0x2c1d3a(0x250)]&&this['_anchorDot'][_0x2c1d3a(0x36b)](),this[_0x2c1d3a(0x238)]&&this[_0x2c1d3a(0x238)][_0x2c1d3a(0x371)]());}['dispose'](){const _0x46c8ce=_0x4a9685;for(const _0x7443b5 of this[_0x46c8ce(0x3d9)])_0x7443b5[_0x46c8ce(0x1d7)]();this[_0x46c8ce(0x238)]&&this[_0x46c8ce(0x238)]['dispose'](),this[_0x46c8ce(0x250)]&&this[_0x46c8ce(0x250)][_0x46c8ce(0x1d7)](),this[_0x46c8ce(0x2d3)]&&this['_anchor'][_0x46c8ce(0x1d7)](),this[_0x46c8ce(0x212)]&&this['_eventUnsubscribe']();}[_0x4a9685(0x505)](){const _0x26c96e=_0x4a9685;var _0xab1cbd;const {_docSkeleton:_0x277fa4,_document:_0x36031f}=this,{color:_0x4a1340,name:_0xf8dd9d,ranges:_0x23f5b8}=this[_0x26c96e(0x486)],_0x40f24f=_0x36031f[_0x26c96e(0x217)](),{docsLeft:_0x559e31,docsTop:_0x3edeb3}=_0x40f24f,_0x2a78aa=new J[(_0x26c96e(0x549))](_0x40f24f,_0x277fa4);for(const {startOffset:_0x12ae9d,endOffset:_0x538794,rangeType:_0x2f83d7,segmentId:_0x5ddbf3,segmentPage:_0x30b4d7,collapsed:_0x418225,isActive:_0x5d710d}of _0x23f5b8){const _0x207fbc=_0x277fa4[_0x26c96e(0x43d)](_0x12ae9d,!0x0,_0x5ddbf3,_0x30b4d7);let _0x1108bb=_0x277fa4[_0x26c96e(0x43d)](_0x538794,!0x0,_0x5ddbf3,_0x30b4d7);if(_0x1108bb==null&&(_0x1108bb=_0x277fa4['findNodePositionByCharIndex'](_0x538794-0x1,!0x1,_0x5ddbf3,_0x30b4d7)),_0x5d710d){const {contentBoxPointGroup:_0x2f9d11}=_0x2a78aa['getRangePointData'](_0x1108bb,_0x1108bb);if(_0x2f9d11[_0x26c96e(0x530)]===0x0)continue;this[_0x26c96e(0x487)](_0x4a1340,_0x2f9d11,_0x559e31,_0x3edeb3,_0xf8dd9d),this[_0x26c96e(0x212)]=this[_0x26c96e(0x423)]();}if(_0x207fbc&&_0x1108bb){if(_0x2f83d7===a[_0x26c96e(0x528)][_0x26c96e(0x401)]){const _0x309173=new J[(_0x26c96e(0x52f))](_0x40f24f,_0x277fa4),{pointGroup:_0x4a82ce}=(_0xab1cbd=_0x309173[_0x26c96e(0x52d)](_0x207fbc,_0x1108bb))!=null?_0xab1cbd:{};if(_0x4a82ce==null||_0x4a82ce[_0x26c96e(0x530)]===0x0)continue;this['_drawRectRange'](_0x4a1340,_0x4a82ce,_0x559e31,_0x3edeb3);}else{if(!_0x418225){const {borderBoxPointGroup:_0x49a541}=_0x2a78aa['getRangePointData'](_0x207fbc,_0x1108bb);if(_0x49a541['length']===0x0)continue;this[_0x26c96e(0x436)](_0x4a1340,_0x49a541,_0x559e31,_0x3edeb3);}}}}}[_0x4a9685(0x487)](_0x4c016e,_0x3fab16,_0x5c19ce,_0xd1f7df,_0x2b156d){const _0x20de16=_0x4a9685,_0x46677b=this[_0x20de16(0x337)](_0x3fab16),{left:_0x2a969d,top:_0x41f125,height:_0x5a3eda}=_0x46677b,_0x2fe142=this[_0x20de16(0x367)](),_0x171ddc=hs/_0x2fe142,_0xbd2c58=new K[(_0x20de16(0x292))](st+a['Tools'][_0x20de16(0x32e)](Ue),{'left':_0x2a969d+_0x5c19ce-_0x171ddc,'top':_0x41f125+_0xd1f7df,'height':_0x5a3eda,'width':ls,'fill':_0x4c016e||K[_0x20de16(0x2cf)](a[_0x20de16(0x146)][_0x20de16(0x17e)],0x0),'strokeWidth':_0x171ddc,'stroke':_s,'evented':!0x0});this[_0x20de16(0x2d3)]=_0xbd2c58,this['_scene'][_0x20de16(0x28e)](_0xbd2c58,J['TEXT_RANGE_LAYER_INDEX']);const _0x28532f=new K[(_0x20de16(0x292))](st+a[_0x20de16(0x426)][_0x20de16(0x32e)](Ue),{'left':_0x2a969d+_0x5c19ce-_0x171ddc,'top':_0x41f125+_0xd1f7df-rt/0x2,'height':rt,'width':rt,'fill':_0x4c016e||K[_0x20de16(0x2cf)](a[_0x20de16(0x146)][_0x20de16(0x17e)],0x0),'strokeWidth':0x0,'stroke':_0x4c016e||K[_0x20de16(0x2cf)](a['COLORS'][_0x20de16(0x17e)],0x0),'evented':!0x1});this[_0x20de16(0x250)]=_0x28532f,this[_0x20de16(0x3c3)][_0x20de16(0x28e)](_0x28532f,J[_0x20de16(0x308)]);const _0xb838b2=new ze(st+a[_0x20de16(0x426)]['generateRandomId'](Ue),{'left':_0x2a969d+_0x5c19ce-_0x171ddc,'top':_0x41f125+_0xd1f7df-Le,'text':_0x2b156d,'color':_0x4c016e});this[_0x20de16(0x238)]=_0xb838b2,this['_scene'][_0x20de16(0x28e)](_0xb838b2,J['TEXT_RANGE_LAYER_INDEX']),this[_0x20de16(0x185)]=!0x1;}['_handleHover'](){const _0xaa9ce6=_0x4a9685,_0x2a6bac=this['_anchor']['onPointerEnter$'][_0xaa9ce6(0x19f)](()=>{const _0xc8d956=_0xaa9ce6;this[_0xc8d956(0x185)]=!0x0;}),_0x325d0c=this['_anchor']['onPointerLeave$'][_0xaa9ce6(0x19f)](()=>{const _0x12a27a=_0xaa9ce6;this[_0x12a27a(0x57a)]&&clearTimeout(this[_0x12a27a(0x57a)]),this[_0x12a27a(0x57a)]=setTimeout(()=>{const _0x374563=_0x12a27a;this[_0x374563(0x185)]=!0x1;},0x7d0);});return()=>{const _0x23fd97=_0xaa9ce6;_0x2a6bac[_0x23fd97(0x402)](),_0x325d0c[_0x23fd97(0x402)]();};}[_0x4a9685(0x436)](_0x3dc19e,_0xde55ff,_0xda5cc7,_0x4fd71a){const _0x46de2b=_0x4a9685,_0x1b7296=new a[(_0x46de2b(0x520))](_0x3dc19e)[_0x46de2b(0x556)](0.2)[_0x46de2b(0x186)](),_0x2f90cd=new K[(_0x46de2b(0x266))](as+a['Tools']['generateRandomId'](Ue),{'pointsGroup':_0xde55ff,'fill':_0x1b7296||K['getColor'](a[_0x46de2b(0x146)][_0x46de2b(0x17e)],0.2),'left':_0xda5cc7,'top':_0x4fd71a,'evented':!0x1,'debounceParentDirty':!0x1});this['_shapes'][_0x46de2b(0x3d6)](_0x2f90cd),this[_0x46de2b(0x3c3)][_0x46de2b(0x28e)](_0x2f90cd,J[_0x46de2b(0x308)]);}[_0x4a9685(0x4f7)](_0x27c52d,_0x35b728,_0x24a8cb,_0x16f806){const _0x45e6ef=_0x4a9685,_0x5e8190=new a['ColorKit'](_0x27c52d)['setAlpha'](0.2)[_0x45e6ef(0x186)](),_0x5aa893=new K[(_0x45e6ef(0x266))](cs+a[_0x45e6ef(0x426)][_0x45e6ef(0x32e)](Ue),{'pointsGroup':_0x35b728,'fill':_0x5e8190||K['getColor'](a[_0x45e6ef(0x146)][_0x45e6ef(0x17e)],0.2),'left':_0x24a8cb,'top':_0x16f806,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x45e6ef(0x3d9)][_0x45e6ef(0x3d6)](_0x5aa893),this[_0x45e6ef(0x3c3)][_0x45e6ef(0x28e)](_0x5aa893,J[_0x45e6ef(0x308)]);}[_0x4a9685(0x337)](_0x5e30b9){const _0x40c4c8=_0x5e30b9[0x0],_0x437500=_0x40c4c8[0x0],_0xd57ed7=_0x40c4c8[0x2],{x:_0x5a4167,y:_0x5c24a8}=_0x437500,{x:_0x520296,y:_0x48a56e}=_0xd57ed7;return{'left':_0x5a4167,'top':_0x5c24a8,'width':_0x520296-_0x5a4167,'height':_0x48a56e-_0x5c24a8};}[_0x4a9685(0x367)](){const _0x305924=_0x4a9685,{scaleX:_0x45d429,scaleY:_0x3e0d08}=this[_0x305924(0x3c3)]['getAncestorScale']();return Math[_0x305924(0x2e7)](_0x45d429,_0x3e0d08);}}var us=Object[_0x4a9685(0x377)],ds=Object[_0x4a9685(0x484)],fs=(_0x3bc273,_0xa5b36f,_0x545382,_0x402b11)=>{const _0x296d27=_0x4a9685;for(var _0x296f0e=_0x402b11>0x1?void 0x0:_0x402b11?ds(_0xa5b36f,_0x545382):_0xa5b36f,_0x1e2d0a=_0x3bc273[_0x296d27(0x530)]-0x1,_0xb731b5;_0x1e2d0a>=0x0;_0x1e2d0a--)(_0xb731b5=_0x3bc273[_0x1e2d0a])&&(_0x296f0e=(_0x402b11?_0xb731b5(_0xa5b36f,_0x545382,_0x296f0e):_0xb731b5(_0x296f0e))||_0x296f0e);return _0x402b11&&_0x296f0e&&us(_0xa5b36f,_0x545382,_0x296f0e),_0x296f0e;},je=(_0x4c91d7,_0x448d57)=>(_0x8875fe,_0x32eac0)=>_0x448d57(_0x8875fe,_0x32eac0,_0x4c91d7);let pt=class extends a[_0x4a9685(0x2c7)]{constructor(_0x4991ae,_0x29c75b,_0x1ef7be,_0x20fec8,_0x557669){const _0x11501f=_0x4a9685;super(),I(this,'_cursorShapes',[]),I(this,'_cursors',[]),(this[_0x11501f(0x3fc)]=_0x4991ae,this[_0x11501f(0x5a9)]=_0x29c75b,this[_0x11501f(0x276)]=_0x1ef7be,this[_0x11501f(0x55e)]=_0x20fec8,this[_0x11501f(0x551)]=_0x557669,this[_0x11501f(0x3f4)]());}[_0x4a9685(0x3f4)](){const _0x5b1bc8=_0x4a9685,_0x11989f=this[_0x5b1bc8(0x3fc)]['unitId'],_0x4d72d4=this[_0x5b1bc8(0x5a9)];this[_0x5b1bc8(0x3c7)](A[_0x5b1bc8(0x3ef)]([this[_0x5b1bc8(0x276)][_0x5b1bc8(0x406)](_0x11989f),this['_themeService']['currentTheme$']])[_0x5b1bc8(0x172)](V[_0x5b1bc8(0x28a)](([_0x3ef843,_0x55d4c7])=>({'skeleton':_0x4d72d4['getSkeleton'](),'cursors':[..._0x3ef843[_0x5b1bc8(0x470)]()][_0x5b1bc8(0x5f7)](_0x277d2d=>({..._0x277d2d,'color':_0x55d4c7[_0x277d2d['color']]}))})))['subscribe'](_0x36bf32=>{const _0x5ddfc6=_0x5b1bc8;if(this['_removeCollabCursors'](),_0x36bf32){const {skeleton:_0x158127,cursors:_0x4755f8}=_0x36bf32;this[_0x5ddfc6(0x575)](_0x158127,_0x4755f8);}})),this['_initResize'](),this[_0x5b1bc8(0x2f3)]();}['_updateCollabCursors'](_0x3d8440,_0x4e9c73){const _0x354f3a=_0x4a9685,{scene:_0x4b30e9,mainComponent:_0x39a1eb}=this[_0x354f3a(0x3fc)],_0x1b249a=_0x4e9c73[_0x354f3a(0x28a)](_0x238372=>new Bt(_0x238372,_0x4b30e9,_0x3d8440,_0x39a1eb));this[_0x354f3a(0x3e8)]=_0x1b249a,this['_cursors']=_0x4e9c73;}[_0x4a9685(0x307)](){const _0x1e2a58=_0x4a9685;this['_removeCollabCursors']();const {scene:_0x439f06,mainComponent:_0x3ea5de}=this[_0x1e2a58(0x3fc)],_0x4e3c25=this[_0x1e2a58(0x5a9)][_0x1e2a58(0x5e6)](),_0x5a43b6=this[_0x1e2a58(0x19a)][_0x1e2a58(0x28a)](_0x40a977=>new Bt(_0x40a977,_0x439f06,_0x4e3c25,_0x3ea5de));this[_0x1e2a58(0x3e8)]=_0x5a43b6;}[_0x4a9685(0x5d8)](){const _0x36c748=_0x4a9685;this[_0x36c748(0x3e8)][_0x36c748(0x38f)](_0x37d3f0=>_0x37d3f0[_0x36c748(0x1d7)]()),this[_0x36c748(0x3e8)]=[];}[_0x4a9685(0x2f3)](){const _0x1a4517=_0x4a9685,_0xff1c06=[J['SetDocZoomRatioOperation']['id']];this['disposeWithMe'](this[_0x1a4517(0x55e)]['onCommandExecuted'](_0x1ef7dc=>{const _0x5c487e=_0x1a4517;_0xff1c06[_0x5c487e(0x19c)](_0x1ef7dc['id'])&&_0x1ef7dc[_0x5c487e(0x4da)][_0x5c487e(0x2de)]===this[_0x5c487e(0x3fc)][_0x5c487e(0x2de)]&&this[_0x5c487e(0x307)]();}));}[_0x4a9685(0x409)](){const _0x40910a=_0x4a9685;this['disposeWithMe'](a[_0x40910a(0x4ce)](this[_0x40910a(0x3fc)][_0x40910a(0x1ed)][_0x40910a(0x597)])[_0x40910a(0x172)](V[_0x40910a(0x464)](_0x1b7934=>_0x1b7934['type']===K[_0x40910a(0x3da)][_0x40910a(0x525)]),V[_0x40910a(0x537)](0x10))[_0x40910a(0x419)](()=>{const _0x3661eb=_0x40910a;this[_0x3661eb(0x307)]();}));}};pt=fs([je(0x1,a[_0x4a9685(0x27a)](ye[_0x4a9685(0x467)])),je(0x2,a['Inject'](De)),je(0x3,a[_0x4a9685(0x449)]),je(0x4,a[_0x4a9685(0x27a)](a['ThemeService']))],pt);const vs=0x1,ms=1.5;class Sn extends K['Shape']{constructor(_0x21517c,_0x5ab4ea){const _0x120aa0=_0x4a9685;super(_0x21517c,_0x5ab4ea),I(this,_0x120aa0(0x5e3)),I(this,_0x120aa0(0x5a4),!0x1),I(this,'_range'),I(this,_0x120aa0(0x4c1),''),I(this,_0x120aa0(0x57e),_0x120aa0(0x55a)),I(this,_0x120aa0(0x29c)),(_0x5ab4ea&&this[_0x120aa0(0x552)](_0x5ab4ea),this[_0x120aa0(0x589)]['subscribeEvent'](()=>this[_0x120aa0(0x552)]({'hovered':!0x0})),this['onPointerLeave$'][_0x120aa0(0x19f)](()=>this[_0x120aa0(0x552)]({'hovered':!0x1})));}[_0x4a9685(0x552)](_0x570503){const _0x2128fa=_0x4a9685;var _0x1df9fe,_0x16e3e8,_0x3543f0,_0x3ba7a2,_0x14a4c3,_0x28335c;this['_color']=(_0x1df9fe=_0x570503[_0x2128fa(0x4cf)])!=null?_0x1df9fe:this['_color'],this[_0x2128fa(0x5a4)]=(_0x16e3e8=_0x570503[_0x2128fa(0x422)])!=null?_0x16e3e8:this[_0x2128fa(0x5a4)],this[_0x2128fa(0x531)]=(_0x3543f0=_0x570503[_0x2128fa(0x27f)])!=null?_0x3543f0:this[_0x2128fa(0x531)],this['_name']=(_0x3ba7a2=_0x570503['name'])!=null?_0x3ba7a2:this[_0x2128fa(0x4c1)],this[_0x2128fa(0x57e)]=(_0x14a4c3=_0x570503[_0x2128fa(0x359)])!=null?_0x14a4c3:this[_0x2128fa(0x57e)],this[_0x2128fa(0x29c)]=(_0x28335c=_0x570503['backgroundColor'])!=null?_0x28335c:this[_0x2128fa(0x29c)],this[_0x2128fa(0x193)]({'width':_0x570503[_0x2128fa(0x381)],'height':_0x570503[_0x2128fa(0x3dc)]});}[_0x4a9685(0x3ee)](_0x20189c){const _0x3b2a4c=_0x4a9685,{row:_0x5f22ac,column:_0x5360c9}=_0x20189c;if(_0x5f22ac>=this['_range'][_0x3b2a4c(0x1b4)]&&_0x5f22ac<=this[_0x3b2a4c(0x531)][_0x3b2a4c(0x4b5)]&&_0x5360c9>=this[_0x3b2a4c(0x531)][_0x3b2a4c(0x418)]&&_0x5360c9<=this[_0x3b2a4c(0x531)][_0x3b2a4c(0x460)]){this['setShapeProps']({'hovered':!0x0});return;}this[_0x3b2a4c(0x552)]({'hovered':!0x1});}[_0x4a9685(0x3d0)](_0x126f54){return!0x1;}[_0x4a9685(0x475)](_0x512eaf){const _0x5a82c8=_0x4a9685;K[_0x5a82c8(0x292)][_0x5a82c8(0x51d)](_0x512eaf,{'width':this[_0x5a82c8(0x381)],'height':this[_0x5a82c8(0x3dc)],'strokeWidth':ms,'stroke':this[_0x5a82c8(0x5e3)],'evented':!0x1,'fill':this['_backgroundColor']}),this['_hovered']&&(_0x512eaf[_0x5a82c8(0x4ff)](),_0x512eaf[_0x5a82c8(0x509)](0x1,0x0,0x0,0x1,this[_0x5a82c8(0x381)],this[_0x5a82c8(0x57e)]===_0x5a82c8(0x5c7)?0x0:-Le),ze[_0x5a82c8(0x51d)](_0x512eaf,{'text':this['_name'],'color':this[_0x5a82c8(0x5e3)]}),_0x512eaf[_0x5a82c8(0x4a9)]());}}var Ss=Object['defineProperty'],ps=Object[_0x4a9685(0x484)],gs=(_0x216e7a,_0x5e8c4e,_0x577960,_0x4d265f)=>{for(var _0x3de0ab=_0x4d265f>0x1?void 0x0:_0x4d265f?ps(_0x5e8c4e,_0x577960):_0x5e8c4e,_0x428012=_0x216e7a['length']-0x1,_0x325291;_0x428012>=0x0;_0x428012--)(_0x325291=_0x216e7a[_0x428012])&&(_0x3de0ab=(_0x4d265f?_0x325291(_0x5e8c4e,_0x577960,_0x3de0ab):_0x325291(_0x3de0ab))||_0x3de0ab);return _0x4d265f&&_0x3de0ab&&Ss(_0x5e8c4e,_0x577960,_0x3de0ab),_0x3de0ab;},ot=(_0x23c4c4,_0x1caef5)=>(_0x3d895f,_0x3247a7)=>_0x1caef5(_0x3d895f,_0x3247a7,_0x23c4c4);const Is=0x1389;let gt=class extends a[_0x4a9685(0x2c7)]{constructor(_0x3ff6cf,_0x368c1f,_0x52c2f8,_0x1cbc5c){const _0x16656b=_0x4a9685;super(),I(this,_0x16656b(0x19a),new Set()),I(this,'_lastPointer',null),(this[_0x16656b(0x3fc)]=_0x3ff6cf,this['_sheetSkeletonManagerService']=_0x368c1f,this[_0x16656b(0x276)]=_0x52c2f8,this[_0x16656b(0x551)]=_0x1cbc5c,this['_init']());}[_0x4a9685(0x3f4)](){const _0x42c34b=_0x4a9685;this[_0x42c34b(0x5c5)][_0x42c34b(0x375)][_0x42c34b(0x172)](V[_0x42c34b(0x5e8)](this[_0x42c34b(0x5c9)]),V[_0x42c34b(0x4c9)](_0x3d276e=>{const _0x2f32c9=_0x42c34b;if(_0x3d276e){const _0x1a6173=_0x3d276e[_0x2f32c9(0x594)];return A[_0x2f32c9(0x3ef)](this[_0x2f32c9(0x276)][_0x2f32c9(0x406)](this['_context']['unitId']),this[_0x2f32c9(0x551)][_0x2f32c9(0x4ab)])[_0x2f32c9(0x172)](V[_0x2f32c9(0x28a)](([_0x3699ad,_0xab05af])=>{const _0x4387a5=_0x2f32c9,_0x182aa1=new Map();return _0x3699ad[_0x4387a5(0x38f)]((_0x2ef828,_0x411d53)=>{const _0x3c79d2=_0x4387a5;if(_0x2ef828[_0x3c79d2(0x441)]===_0x1a6173){const _0x30c824={..._0x2ef828};_0x30c824['color']=_0xab05af[_0x2ef828[_0x3c79d2(0x4cf)]],_0x182aa1[_0x3c79d2(0x568)](_0x411d53,_0x30c824);}}),{'skeleton':_0x3d276e,'cursors':_0x182aa1};}));}return A['of']({'skeleton':null,'cursors':new Map()});}))[_0x42c34b(0x419)](({skeleton:_0x545d7b,cursors:_0x173e30})=>{const _0x5872dc=_0x42c34b;this['_removeCollabCursors'](),_0x545d7b&&this[_0x5872dc(0x575)](_0x545d7b,_0x173e30);}),this[_0x42c34b(0x5c5)][_0x42c34b(0x375)][_0x42c34b(0x419)](_0x80fe19=>{const _0x13b3d8=_0x42c34b;if(_0x80fe19==null)return;const {skeleton:_0x10e3a3}=_0x80fe19,{scene:_0x203916}=this[_0x13b3d8(0x3fc)];_0x203916[_0x13b3d8(0x2ba)][_0x13b3d8(0x19f)](a[_0x13b3d8(0x158)](_0x3c17e5=>{const _0x5d8010=_0x13b3d8;var _0x291c88,_0x223ef6;const {offsetX:_0x3d4e0f,offsetY:_0x26f063}=_0x3c17e5,{x:_0x2e9797,y:_0x469d55}=_0x203916[_0x5d8010(0x4e1)](K[_0x5d8010(0x5d4)][_0x5d8010(0x270)]([_0x3d4e0f,_0x26f063])),{scaleX:_0x42b259,scaleY:_0x2f230b}=_0x203916['getAncestorScale'](),_0x255c9c=_0x203916['getViewport'](Re[_0x5d8010(0x275)][_0x5d8010(0x576)]),_0x59a85e=_0x203916[_0x5d8010(0x54d)](K[_0x5d8010(0x5d4)][_0x5d8010(0x270)]([_0x2e9797,_0x469d55]),_0x255c9c),_0x37dbf3=_0x10e3a3[_0x5d8010(0x2b5)](_0x3d4e0f,_0x26f063,_0x42b259,_0x2f230b,_0x59a85e);((_0x291c88=this[_0x5d8010(0x336)])==null?void 0x0:_0x291c88['column'])===_0x37dbf3[_0x5d8010(0x47f)]&&((_0x223ef6=this[_0x5d8010(0x336)])==null?void 0x0:_0x223ef6[_0x5d8010(0x32c)])===_0x37dbf3[_0x5d8010(0x32c)]||this[_0x5d8010(0x19a)][_0x5d8010(0x38f)](_0x3f75db=>{const _0xa669ac=_0x5d8010;_0x3f75db[_0xa669ac(0x3ee)](_0x37dbf3);});},0x64));});}[_0x4a9685(0x575)](_0x560673,_0x2aeb33){const _0x5dc7df=_0x4a9685;var _0x4cc7b7;const _0x27da3f=(_0x4cc7b7=this[_0x5dc7df(0x5c5)][_0x5dc7df(0x1e1)]())==null?void 0x0:_0x4cc7b7[_0x5dc7df(0x435)];if(!_0x27da3f)return;const _0xc769c5=this[_0x5dc7df(0x173)]();if(!_0xc769c5)return;this[_0x5dc7df(0x19a)]['forEach'](_0x28787f=>{const _0x40886b=_0x5dc7df;_0x28787f[_0x40886b(0x5ec)]();});const {scene:_0x3d3852}=_0xc769c5,_0x558f62=Cs(Array[_0x5dc7df(0x239)](_0x2aeb33[_0x5dc7df(0x470)]()))[_0x5dc7df(0x28a)](_0xbb9365=>{const _0x135a19=_0x5dc7df,{color:_0x2d6662,range:_0x2e6736,name:_0x43567f,selection:_0x2586a9,sheetID:_0x1ef62a}=_0xbb9365,{startColumn:_0x23b21e,startRow:_0x1107b7,endColumn:_0x5ae4a9,endRow:_0xcc6ddb}=_0x2e6736,_0x210f18=Re[_0x135a19(0x514)](_0x1107b7,_0x23b21e,_0x3d3852,_0x27da3f),_0x511d8c=Re[_0x135a19(0x514)](_0xcc6ddb,_0x5ae4a9,_0x3d3852,_0x27da3f),{columnHeaderHeightAndMarginTop:_0x16d440}=_0x27da3f,{startX:_0x26bee7,startY:_0x483cb3}=_0x210f18,{endX:_0x1b29e6,endY:_0x163da9}=_0x511d8c,_0x16ff0e=_0x1b29e6-_0x26bee7,_0x21dfcf=_0x163da9-_0x483cb3,_0x1f7f4f={'labelPosition':_0x483cb3-_0x16d440>=Le?_0x135a19(0x55a):_0x135a19(0x5c7),'sheetID':_0x1ef62a,'range':_0x2e6736,'color':_0x2d6662,'name':_0x43567f,'selection':_0x2586a9,'left':_0x26bee7,'top':_0x483cb3,'width':_0x16ff0e,'height':_0x21dfcf,'evented':!0x1,'zIndex':Is};return new Sn(_0x43567f,_0x1f7f4f);});_0x3d3852[_0x5dc7df(0x445)](_0x558f62,vs),this[_0x5dc7df(0x19a)]=new Set(_0x558f62);}['_removeCollabCursors'](){const _0x3ebc94=_0x4a9685;var _0x498fc8;(_0x498fc8=this[_0x3ebc94(0x19a)])==null||_0x498fc8[_0x3ebc94(0x38f)](_0x4bcc4d=>_0x4bcc4d[_0x3ebc94(0x1d7)]());}[_0x4a9685(0x173)](){const _0x5d140f=_0x4a9685;return Re[_0x5d140f(0x5b9)](this[_0x5d140f(0x3fc)][_0x5d140f(0x1e9)],this['_context']);}};gt=gs([ot(0x1,a['Inject'](Re[_0x4a9685(0x4ca)])),ot(0x2,a[_0x4a9685(0x27a)](De)),ot(0x3,a[_0x4a9685(0x27a)](a[_0x4a9685(0x3ce)]))],gt);function Cs(_0x408d3b){const _0x5e1c71=_0x4a9685,_0x44288e=new Map();return _0x408d3b[_0x5e1c71(0x38f)](_0x210491=>{const _0x2cc73c=_0x5e1c71;if(_0x44288e[_0x2cc73c(0x1d2)](_0x210491[_0x2cc73c(0x50e)])){const _0xd6ca69=_0x44288e[_0x2cc73c(0x542)](_0x210491['selection']);_0xd6ca69[_0x2cc73c(0x2b9)]+=',\x20'+_0x210491['name'];}else _0x44288e['set'](_0x210491[_0x2cc73c(0x50e)],_0x210491);}),Array[_0x5e1c71(0x239)](_0x44288e[_0x5e1c71(0x470)]());}var X=typeof globalThis<'u'?globalThis:typeof window<'u'?window:typeof global<'u'?global:typeof self<'u'?self:{};function xe(_0xdbc733){const _0x152afc=_0x4a9685;return _0xdbc733&&_0xdbc733['__esModule']&&Object[_0x152afc(0x216)][_0x152afc(0x2f4)][_0x152afc(0x20c)](_0xdbc733,_0x152afc(0x1fe))?_0xdbc733[_0x152afc(0x1fe)]:_0xdbc733;}var pn={'exports':{}},Xe={},Es=ae,bs=Symbol[_0x4a9685(0x50f)](_0x4a9685(0x1fc)),Ts=Symbol['for']('react.fragment'),Rs=Object[_0x4a9685(0x216)]['hasOwnProperty'],ys=Es[_0x4a9685(0x3bc)][_0x4a9685(0x2ff)],Os={'key':!0x0,'ref':!0x0,'__self':!0x0,'__source':!0x0};function gn(_0x3a45db,_0x921192,_0x5d7d5c){const _0x14609d=_0x4a9685;var _0x4a0587,_0x19052b={},_0x12381d=null,_0x5e1182=null;_0x5d7d5c!==void 0x0&&(_0x12381d=''+_0x5d7d5c),_0x921192['key']!==void 0x0&&(_0x12381d=''+_0x921192[_0x14609d(0x303)]),_0x921192[_0x14609d(0x333)]!==void 0x0&&(_0x5e1182=_0x921192[_0x14609d(0x333)]);for(_0x4a0587 in _0x921192)Rs[_0x14609d(0x20c)](_0x921192,_0x4a0587)&&!Os['hasOwnProperty'](_0x4a0587)&&(_0x19052b[_0x4a0587]=_0x921192[_0x4a0587]);if(_0x3a45db&&_0x3a45db[_0x14609d(0x211)]){for(_0x4a0587 in(_0x921192=_0x3a45db[_0x14609d(0x211)],_0x921192))_0x19052b[_0x4a0587]===void 0x0&&(_0x19052b[_0x4a0587]=_0x921192[_0x4a0587]);}return{'$$typeof':bs,'type':_0x3a45db,'key':_0x12381d,'ref':_0x5e1182,'props':_0x19052b,'_owner':ys[_0x14609d(0x139)]};}Xe['Fragment']=Ts,Xe[_0x4a9685(0x4a3)]=gn,Xe[_0x4a9685(0x3bf)]=gn,pn[_0x4a9685(0x5dd)]=Xe;var pe=pn[_0x4a9685(0x5dd)],Q=function(){const _0x7e1e73=_0x4a9685;return Q=Object[_0x7e1e73(0x166)]||function(_0x34613c){const _0x29eb63=_0x7e1e73;for(var _0x3f80c7,_0x2c0b4a=0x1,_0x2e0ba2=arguments[_0x29eb63(0x530)];_0x2c0b4a<_0x2e0ba2;_0x2c0b4a++){_0x3f80c7=arguments[_0x2c0b4a];for(var _0x241f69 in _0x3f80c7)Object['prototype']['hasOwnProperty'][_0x29eb63(0x20c)](_0x3f80c7,_0x241f69)&&(_0x34613c[_0x241f69]=_0x3f80c7[_0x241f69]);}return _0x34613c;},Q[_0x7e1e73(0x5cc)](this,arguments);},Ds=function(_0x32a432,_0x5b27e0){const _0x35cdd9=_0x4a9685;var _0x2571f5={};for(var _0x9a7de in _0x32a432)Object[_0x35cdd9(0x216)][_0x35cdd9(0x2f4)][_0x35cdd9(0x20c)](_0x32a432,_0x9a7de)&&_0x5b27e0[_0x35cdd9(0x558)](_0x9a7de)<0x0&&(_0x2571f5[_0x9a7de]=_0x32a432[_0x9a7de]);if(_0x32a432!=null&&typeof Object[_0x35cdd9(0x4e8)]=='function'){for(var _0x247bd6=0x0,_0x9a7de=Object['getOwnPropertySymbols'](_0x32a432);_0x247bd6<_0x9a7de['length'];_0x247bd6++)_0x5b27e0[_0x35cdd9(0x558)](_0x9a7de[_0x247bd6])<0x0&&Object[_0x35cdd9(0x216)][_0x35cdd9(0x2ac)][_0x35cdd9(0x20c)](_0x32a432,_0x9a7de[_0x247bd6])&&(_0x2571f5[_0x9a7de[_0x247bd6]]=_0x32a432[_0x9a7de[_0x247bd6]]);}return _0x2571f5;},Dt=ae[_0x4a9685(0x2a3)](function(_0x1826bd,_0x5f04df){const _0x1d2366=_0x4a9685;var _0x23ff5a=_0x1826bd[_0x1d2366(0x438)],_0x11298f=_0x1826bd['id'],_0x251fd4=_0x1826bd[_0x1d2366(0x16e)],_0x338dd9=_0x1826bd['extend'],_0x46c379=Ds(_0x1826bd,[_0x1d2366(0x438),'id',_0x1d2366(0x16e),'extend']),_0x2655d3='univerjs-icon\x20univerjs-icon-'[_0x1d2366(0x407)](_0x11298f,'\x20')[_0x1d2366(0x407)](_0x251fd4||'')[_0x1d2366(0x397)](),_0xce4d54=ae[_0x1d2366(0x1ab)]('_'[_0x1d2366(0x407)](Us()));return In(_0x23ff5a,''['concat'](_0x11298f),{'defIds':_0x23ff5a[_0x1d2366(0x5f1)],'idSuffix':_0xce4d54[_0x1d2366(0x139)]},Q({'ref':_0x5f04df,'className':_0x2655d3},_0x46c379),_0x338dd9);});function In(_0x4d4543,_0x2865c7,_0x2ee10f,_0x16b418,_0x25dd91){const _0x4f293f=_0x4a9685;return ae[_0x4f293f(0x393)](_0x4d4543['tag'],Q(Q({'key':_0x2865c7},ws(_0x4d4543,_0x2ee10f,_0x25dd91)),_0x16b418),(Ps(_0x4d4543,_0x2ee10f)[_0x4f293f(0x209)]||[])[_0x4f293f(0x28a)](function(_0x2b2b66,_0x4855a1){const _0x1579bd=_0x4f293f;return In(_0x2b2b66,''['concat'](_0x2865c7,'-')[_0x1579bd(0x407)](_0x4d4543['tag'],'-')['concat'](_0x4855a1),_0x2ee10f,void 0x0,_0x25dd91);}));}function ws(_0x1533d1,_0x2990f9,_0xf6bfa1){const _0x5767c5=_0x4a9685;var _0x2ca07d=Q({},_0x1533d1['attrs']);_0xf6bfa1!=null&&_0xf6bfa1[_0x5767c5(0x237)]&&_0x2ca07d[_0x5767c5(0x28d)]===_0x5767c5(0x237)&&(_0x2ca07d[_0x5767c5(0x28d)]=_0xf6bfa1[_0x5767c5(0x237)]);var _0x281e30=_0x2990f9[_0x5767c5(0x5f1)];return!_0x281e30||_0x281e30[_0x5767c5(0x530)]===0x0||(_0x1533d1[_0x5767c5(0x2cc)]===_0x5767c5(0x3fd)&&_0x2ca07d['xlink:href']&&(_0x2ca07d['xlink:href']=_0x2ca07d[_0x5767c5(0x22c)]+_0x2990f9[_0x5767c5(0x478)]),Object[_0x5767c5(0x522)](_0x2ca07d)['forEach'](function(_0x57f8ba){const _0xe5e036=_0x5767c5;var _0x158eb2=_0x57f8ba[0x0],_0x458580=_0x57f8ba[0x1];typeof _0x458580==_0xe5e036(0x3b2)&&(_0x2ca07d[_0x158eb2]=_0x458580[_0xe5e036(0x38b)](/url\(#(.*)\)/,_0xe5e036(0x5d3)[_0xe5e036(0x407)](_0x2990f9[_0xe5e036(0x478)],')')));})),_0x2ca07d;}function Ps(_0x499521,_0x4091bd){const _0x19e6f8=_0x4a9685;var _0x3d9707,_0x4ecbd9=_0x4091bd[_0x19e6f8(0x5f1)];return!_0x4ecbd9||_0x4ecbd9['length']===0x0?_0x499521:_0x499521[_0x19e6f8(0x2cc)]===_0x19e6f8(0x55c)&&(!((_0x3d9707=_0x499521['children'])===null||_0x3d9707===void 0x0)&&_0x3d9707[_0x19e6f8(0x530)])?Q(Q({},_0x499521),{'children':_0x499521[_0x19e6f8(0x209)][_0x19e6f8(0x28a)](function(_0x52bffc){const _0x1e3026=_0x19e6f8;return typeof _0x52bffc[_0x1e3026(0x247)]['id']==_0x1e3026(0x3b2)&&_0x4ecbd9&&_0x4ecbd9[_0x1e3026(0x558)](_0x52bffc[_0x1e3026(0x247)]['id'])>-0x1?Q(Q({},_0x52bffc),{'attrs':Q(Q({},_0x52bffc[_0x1e3026(0x247)]),{'id':_0x52bffc[_0x1e3026(0x247)]['id']+_0x4091bd[_0x1e3026(0x478)]})}):_0x52bffc;})}):_0x499521;}function Us(){const _0x53822f=_0x4a9685;return Math[_0x53822f(0x588)]()[_0x53822f(0x350)](0x24)[_0x53822f(0x18c)](0x2,0x8);}Dt['displayName']='UniverIcon';var Ms={'tag':_0x4a9685(0x421),'attrs':{'fill':_0x4a9685(0x4a2),'viewBox':'0\x200\x2016\x2016','width':'1em','height':_0x4a9685(0x353)},'children':[{'tag':'g','attrs':{'clipPath':_0x4a9685(0x36f)},'children':[{'tag':'path','attrs':{'stroke':_0x4a9685(0x4c6),'d':_0x4a9685(0x415),'strokeLinecap':_0x4a9685(0x481),'strokeLinejoin':_0x4a9685(0x481),'strokeWidth':1.2}}]},{'tag':_0x4a9685(0x55c),'attrs':{},'children':[{'tag':_0x4a9685(0x4ea),'attrs':{'id':'off-line-single_clip0_910_343'},'children':[{'tag':_0x4a9685(0x1f4),'attrs':{'fill':_0x4a9685(0x4bd),'d':_0x4a9685(0x1ea)}}]}]}],'defIds':[_0x4a9685(0x439)]},Cn=ae[_0x4a9685(0x2a3)](function(_0x19a73c,_0x27019f){const _0x2151f3=_0x4a9685;return ae['createElement'](Dt,Object[_0x2151f3(0x166)]({},_0x19a73c,{'id':_0x2151f3(0x39e),'ref':_0x27019f,'icon':Ms}));});Cn[_0x4a9685(0x163)]=_0x4a9685(0x2a6);var As={'tag':_0x4a9685(0x421),'attrs':{'fill':_0x4a9685(0x4a2),'viewBox':_0x4a9685(0x516),'width':_0x4a9685(0x353),'height':_0x4a9685(0x353)},'children':[{'tag':'g','attrs':{'clipPath':_0x4a9685(0x4f3)},'children':[{'tag':_0x4a9685(0x1f4),'attrs':{'stroke':_0x4a9685(0x4c6),'d':_0x4a9685(0x15c),'strokeLinecap':'round','strokeLinejoin':_0x4a9685(0x481),'strokeWidth':1.2}}]},{'tag':'defs','attrs':{},'children':[{'tag':'clipPath','attrs':{'id':_0x4a9685(0x396)},'children':[{'tag':_0x4a9685(0x1f4),'attrs':{'fill':'#fff','d':_0x4a9685(0x1ea),'transform':_0x4a9685(0x5ef)}}]}]}],'defIds':[_0x4a9685(0x396)]},En=ae[_0x4a9685(0x2a3)](function(_0x543e0e,_0x10ad11){const _0x4e4104=_0x4a9685;return ae[_0x4e4104(0x393)](Dt,Object[_0x4e4104(0x166)]({},_0x543e0e,{'id':_0x4e4104(0x40f),'ref':_0x10ad11,'icon':As}));});En['displayName']='OnLineSingle';function bn(_0xa8d2e4){const _0x4ff853=_0x4a9685;var _0x24dd33,_0x2f414e,_0x34ff42='';if(typeof _0xa8d2e4==_0x4ff853(0x3b2)||typeof _0xa8d2e4==_0x4ff853(0x3cd))_0x34ff42+=_0xa8d2e4;else{if(typeof _0xa8d2e4==_0x4ff853(0x32f)){if(Array[_0x4ff853(0x36d)](_0xa8d2e4)){var _0x18082f=_0xa8d2e4[_0x4ff853(0x530)];for(_0x24dd33=0x0;_0x24dd33<_0x18082f;_0x24dd33++)_0xa8d2e4[_0x24dd33]&&(_0x2f414e=bn(_0xa8d2e4[_0x24dd33]))&&(_0x34ff42&&(_0x34ff42+='\x20'),_0x34ff42+=_0x2f414e);}else{for(_0x2f414e in _0xa8d2e4)_0xa8d2e4[_0x2f414e]&&(_0x34ff42&&(_0x34ff42+='\x20'),_0x34ff42+=_0x2f414e);}}}return _0x34ff42;}function Ns(){const _0x2d909e=_0x4a9685;for(var _0x195f13,_0x3ccbe3,_0x34d65a=0x0,_0x1d88c3='',_0x161e0e=arguments[_0x2d909e(0x530)];_0x34d65a<_0x161e0e;_0x34d65a++)(_0x195f13=arguments[_0x34d65a])&&(_0x3ccbe3=bn(_0x195f13))&&(_0x1d88c3&&(_0x1d88c3+='\x20'),_0x1d88c3+=_0x3ccbe3);return _0x1d88c3;}const Ls=_0x4a9685(0x4cd),xs='univer-online-status-title',js=_0x4a9685(0x1a4),$s=_0x4a9685(0x13a),Hs='univer-offline',Me={'onlineStatusIcon':Ls,'onlineStatusTitle':xs,'onlineStatus':js,'online':$s,'offline':Hs};function Bs(_0x38e9ff){const _0x457b06=_0x4a9685;switch(_0x38e9ff){case q[_0x457b06(0x338)]:return _0x457b06(0x562);case q[_0x457b06(0x328)]:return _0x457b06(0x4ae);case q[_0x457b06(0x2c6)]:return _0x457b06(0x489);case q['NOT_COLLAB']:return'collabStatus.notCollab';case q['AWAITING']:case q[_0x457b06(0x28b)]:return _0x457b06(0x5af);case q[_0x457b06(0x28c)]:case q[_0x457b06(0x23f)]:return _0x457b06(0x2e5);}}function Tn(_0x945aa4){const _0x1fc9c4=_0x4a9685,{status$:_0x5ce12a}=_0x945aa4,_0x3b6846=ee[_0x1fc9c4(0x592)](_0x5ce12a,q[_0x1fc9c4(0x5bd)]),_0xfcef97=a[_0x1fc9c4(0x245)](a[_0x1fc9c4(0x4a8)]),_0x591bbe=a[_0x1fc9c4(0x245)](exports[_0x1fc9c4(0x2a7)]),_0x5f3e28=_0x3b6846!==q[_0x1fc9c4(0x338)],_0x8f3aa1=_0xfcef97['t'](Bs(_0x3b6846)),_0x31bbd6=Ns(Me[_0x1fc9c4(0x2e1)],{[Me[_0x1fc9c4(0x1bf)]]:_0x5f3e28,[Me[_0x1fc9c4(0x277)]]:!_0x5f3e28}),_0x37285a=_0x5f3e28?pe[_0x1fc9c4(0x4a3)](En,{}):pe[_0x1fc9c4(0x4a3)](Cn,{}),_0x45165b=ae[_0x1fc9c4(0x194)](()=>{const _0x24342f=_0x1fc9c4;_0x5f3e28||_0x591bbe[_0x24342f(0x24a)]();},[_0x5f3e28,_0x591bbe]);function _0xba2a86(){const _0x15d753=_0x1fc9c4;return pe[_0x15d753(0x3bf)](_0x15d753(0x527),{'className':_0x31bbd6,'onClick':_0x45165b,'children':[pe['jsx'](_0x15d753(0x527),{'className':Me[_0x15d753(0x3c8)],'children':_0x37285a}),pe[_0x15d753(0x4a3)]('div',{'className':Me[_0x15d753(0x252)],'children':_0x8f3aa1})]});}return _0x5f3e28?_0xba2a86():pe['jsx'](ge[_0x1fc9c4(0x448)],{'title':_0xfcef97['t']('collab-client.tooltip.reconnect'),'children':_0xba2a86()});}var ks=Object[_0x4a9685(0x377)],Ws=Object[_0x4a9685(0x484)],Fs=(_0x2c2a62,_0x41215a,_0x50eb75,_0x84adfc)=>{const _0x55e064=_0x4a9685;for(var _0x6d331=_0x84adfc>0x1?void 0x0:_0x84adfc?Ws(_0x41215a,_0x50eb75):_0x41215a,_0x39e792=_0x2c2a62[_0x55e064(0x530)]-0x1,_0x39e2ef;_0x39e792>=0x0;_0x39e792--)(_0x39e2ef=_0x2c2a62[_0x39e792])&&(_0x6d331=(_0x84adfc?_0x39e2ef(_0x41215a,_0x50eb75,_0x6d331):_0x39e2ef(_0x6d331))||_0x6d331);return _0x84adfc&&_0x6d331&&ks(_0x41215a,_0x50eb75,_0x6d331),_0x6d331;},$e=(_0x19d2c5,_0x53c4ed)=>(_0x1fa745,_0x1870ef)=>_0x53c4ed(_0x1fa745,_0x1870ef,_0x19d2c5);exports['DesktopCollaborationStatusDisplayController']=class extends a[_0x4a9685(0x261)]{constructor(_0x1dff0d,_0x4c43a2,_0x294c3d,_0xb45487){const _0xb527b=_0x4a9685;super(),I(this,'_status$',new A['BehaviorSubject'](q[_0xb527b(0x5bd)])),(this[_0xb527b(0x54a)]=_0x1dff0d,this['_uiPartsService']=_0x4c43a2,this[_0xb527b(0x372)]=_0x294c3d,this[_0xb527b(0x46b)]=_0xb45487,this['_initStatusComponent'](),this['_initStatusListener']());}[_0x4a9685(0x5be)](){const _0x2ed6a0=_0x4a9685;this[_0x2ed6a0(0x3c7)](this['_univerInstanceService'][_0x2ed6a0(0x57c)][_0x2ed6a0(0x172)](A[_0x2ed6a0(0x4c9)](()=>{const _0x21a734=_0x2ed6a0,_0x5dbd39=this['_univerInstanceService'][_0x21a734(0x2dd)]();return _0x5dbd39?this[_0x21a734(0x46b)][_0x21a734(0x5bf)](_0x5dbd39[_0x21a734(0x56f)]()):A['of'](null);}),A[_0x2ed6a0(0x4c9)](_0x3a5f21=>_0x3a5f21?_0x3a5f21[_0x2ed6a0(0x4ba)]:A['of'](q['NOT_COLLAB'])))['subscribe'](_0x2f69a7=>{const _0x365146=_0x2ed6a0;this[_0x365146(0x366)][_0x365146(0x503)](_0x2f69a7);}));}[_0x4a9685(0x196)](){const _0x53ff94=_0x4a9685;this[_0x53ff94(0x3c7)](this[_0x53ff94(0x23a)]['registerComponent'](ee[_0x53ff94(0x4ad)][_0x53ff94(0x5c1)],()=>a['connectInjector'](Vs({'status$':this['_status$']['asObservable']()}),this['_injector'])));}},exports[_0x4a9685(0x2f8)]=Fs([$e(0x0,a[_0x4a9685(0x3c5)]),$e(0x1,ee['IUIPartsService']),$e(0x2,a[_0x4a9685(0x27a)](a[_0x4a9685(0x17d)])),$e(0x3,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1ff)]))],exports[_0x4a9685(0x2f8)]);function Vs(_0x56a877){const {status$:_0x5a191c}=_0x56a877;return function(){const _0x3b65da=_0x5f2c;return pe[_0x3b65da(0x4a3)](Tn,{'status$':_0x5a191c});};}const wt=a[_0x4a9685(0x1e3)](_0x4a9685(0x434));var Gs=Object['defineProperty'],Ys=Object['getOwnPropertyDescriptor'],Ks=(_0x55b9be,_0x1c1469,_0x57e58a,_0x36bbca)=>{const _0x27a6db=_0x4a9685;for(var _0x285425=_0x36bbca>0x1?void 0x0:_0x36bbca?Ys(_0x1c1469,_0x57e58a):_0x1c1469,_0xf504da=_0x55b9be[_0x27a6db(0x530)]-0x1,_0x272c50;_0xf504da>=0x0;_0xf504da--)(_0x272c50=_0x55b9be[_0xf504da])&&(_0x285425=(_0x36bbca?_0x272c50(_0x1c1469,_0x57e58a,_0x285425):_0x272c50(_0x285425))||_0x285425);return _0x36bbca&&_0x285425&&Gs(_0x1c1469,_0x57e58a,_0x285425),_0x285425;},Te=(_0x2b39fb,_0x709c86)=>(_0x2e575a,_0x2c3b2c)=>_0x709c86(_0x2e575a,_0x2c3b2c,_0x2b39fb);exports[_0x4a9685(0x554)]=class extends a[_0x4a9685(0x2c7)]{constructor(_0x5ec5c6,_0x2f4b62,_0x14f006,_0x3295b8,_0x2d34e1,_0x57985c){const _0x1b082d=_0x4a9685;super(),this['_urlService']=_0x5ec5c6,this[_0x1b082d(0x480)]=_0x2f4b62,this[_0x1b082d(0x55e)]=_0x14f006,this[_0x1b082d(0x142)]=_0x3295b8,this[_0x1b082d(0x232)]=_0x2d34e1,_0x57985c?_0x57985c==null||_0x57985c['whenReady']()['then'](()=>this[_0x1b082d(0x3f4)]()):(this[_0x1b082d(0x480)]['debug'](_0x1b082d(0x190),_0x1b082d(0x1b9)),this['_init']());}async['_init'](){const _0x3b0b8e=_0x4a9685,_0x20f5bb=this['_urlService']['getParam'](_0x3b0b8e(0x1e9)),_0x29158a=this[_0x3b0b8e(0x230)][_0x3b0b8e(0x3e2)](_0x3b0b8e(0x3e4));if(!_0x20f5bb||!_0x29158a){this['_logService'][_0x3b0b8e(0x37a)](_0x3b0b8e(0x190),_0x3b0b8e(0x4d7));return;}switch(Number(_0x29158a)){case ie['UNIVER_SHEET']:{const _0x1b1498=await this['_loadSheet'](_0x20f5bb);this[_0x3b0b8e(0x5a7)](_0x1b1498);break;}case ie['UNIVER_DOC']:{await this['_loadDoc'](_0x20f5bb);break;}default:{this[_0x3b0b8e(0x480)]['error'](_0x3b0b8e(0x190),'Unknown\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.');break;}}}async[_0x4a9685(0x5a7)](_0x3aea06){const _0x16955a=_0x4a9685;await this[_0x16955a(0x21e)](_0x3aea06),_0x3aea06['activeSheet$']['pipe'](A['takeUntil'](this[_0x16955a(0x5c9)]))[_0x16955a(0x419)](_0x1bb618=>{const _0x2fe324=_0x16955a;_0x1bb618&&this[_0x2fe324(0x45c)](_0x1bb618);}),this['_urlService'][_0x16955a(0x56a)][_0x16955a(0x172)](A['takeUntil'](this[_0x16955a(0x5c9)]))[_0x16955a(0x419)](()=>this['_updateSubUnitFromURLParams'](_0x3aea06));}['_updateURLWithCurrentState'](_0x2f2175,_0x4d041=!0x1){const _0x44093a=_0x4a9685,_0x3e59e0=this[_0x44093a(0x230)]['getParam']('subunit');_0x2f2175['getSheetId']()!==_0x3e59e0&&this[_0x44093a(0x230)][_0x44093a(0x282)](_0x44093a(0x3fe),_0x2f2175['getSheetId'](),_0x4d041);}async[_0x4a9685(0x21e)](_0x9d2fb2){const _0x455a4d=_0x4a9685;var _0xe86375;const _0x1895b4=this[_0x455a4d(0x230)][_0x455a4d(0x3e2)]('subunit');if(!_0x1895b4||!_0x9d2fb2[_0x455a4d(0x2ca)](_0x1895b4)){const _0x1369b1=_0x9d2fb2['getUnhiddenWorksheets']()[0x0],_0x3694d2=_0x9d2fb2['getSheetBySheetId'](_0x1369b1);if(!_0x3694d2)return;this['_updateURLWithCurrentState'](_0x3694d2,!0x0),await this[_0x455a4d(0x55e)][_0x455a4d(0x5f4)](k[_0x455a4d(0x4e7)]['id'],{'unitId':_0x9d2fb2[_0x455a4d(0x56f)](),'subUnitId':_0x1369b1});return;}((_0xe86375=_0x9d2fb2[_0x455a4d(0x4d4)]())==null?void 0x0:_0xe86375[_0x455a4d(0x180)]())!==_0x1895b4&&await this[_0x455a4d(0x55e)][_0x455a4d(0x5f4)](k[_0x455a4d(0x4e7)]['id'],{'unitId':_0x9d2fb2[_0x455a4d(0x56f)](),'subUnitId':_0x1895b4});}async[_0x4a9685(0x454)](_0x7cffb9){const _0x1e7e8f=_0x4a9685;let _0x31f75a=0x0;const _0x1808b0=await this[_0x1e7e8f(0x142)][_0x1e7e8f(0x206)](_0x7cffb9);return _0x1808b0&&(_0x1808b0['awaitingChangeset']||_0x1808b0['mutations'][_0x1e7e8f(0x530)]!==0x0)&&(_0x31f75a=_0x1808b0[_0x1e7e8f(0x1b6)]),_0x31f75a===0x0&&this[_0x1e7e8f(0x480)]['debug'](_0x1e7e8f(0x190),'fetching\x20the\x20latest\x20document\x20from\x20the\x20server.'),this['_snapshotService'][_0x1e7e8f(0x1cd)](_0x7cffb9,_0x31f75a);}async[_0x4a9685(0x29f)](_0x2c4431){const _0x822a18=_0x4a9685;let _0x5d4155=0x0;const _0x28ffd1=await this[_0x822a18(0x142)]['loadOfflineData'](_0x2c4431);return _0x28ffd1&&(_0x28ffd1['awaitingChangeset']||_0x28ffd1[_0x822a18(0x1b8)][_0x822a18(0x530)]!==0x0)&&(_0x5d4155=_0x28ffd1[_0x822a18(0x1b6)]),_0x5d4155===0x0&&this['_logService']['debug'](_0x822a18(0x190),_0x822a18(0x47e)),this[_0x822a18(0x232)]['loadDoc'](_0x2c4431,_0x5d4155);}},exports['DataLoaderController']=Ks([Te(0x0,wt),Te(0x1,a[_0x4a9685(0x2e8)]),Te(0x2,a[_0x4a9685(0x449)]),Te(0x3,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x1a0)])),Te(0x4,a[_0x4a9685(0x27a)](S[_0x4a9685(0x33d)])),Te(0x5,a['Optional']($n[_0x4a9685(0x4d9)]))],exports[_0x4a9685(0x554)]);var qs=Object[_0x4a9685(0x377)],zs=Object[_0x4a9685(0x484)],Xs=(_0x5e0e58,_0x5681e1,_0x351554,_0x386dd9)=>{for(var _0x2eea1c=_0x386dd9>0x1?void 0x0:_0x386dd9?zs(_0x5681e1,_0x351554):_0x5681e1,_0x111413=_0x5e0e58['length']-0x1,_0x5dd800;_0x111413>=0x0;_0x111413--)(_0x5dd800=_0x5e0e58[_0x111413])&&(_0x2eea1c=(_0x386dd9?_0x5dd800(_0x5681e1,_0x351554,_0x2eea1c):_0x5dd800(_0x2eea1c))||_0x2eea1c);return _0x386dd9&&_0x2eea1c&&qs(_0x5681e1,_0x351554,_0x2eea1c),_0x2eea1c;},kt=(_0x96b049,_0x54bb60)=>(_0xb601f3,_0x315b8b)=>_0x54bb60(_0xb601f3,_0x315b8b,_0x96b049);const Js='DEFAULT_FILE_NAME',Zs=_0x4a9685(0x5a8);let Ve=class extends a[_0x4a9685(0x261)]{constructor(_0xb9b835,_0x55e433){const _0x28583d=_0x4a9685;super(),this[_0x28583d(0x54a)]=_0xb9b835,this[_0x28583d(0x294)]=_0x55e433,this['_init']();}[_0x4a9685(0x3f4)](){const _0x5325e6=_0x4a9685;this[_0x5325e6(0x3c7)](this[_0x5325e6(0x54a)]['focused$'][_0x5325e6(0x419)](()=>{const _0x48b30f=_0x5325e6;var _0xd4896;const _0x31f219=this[_0x48b30f(0x54a)][_0x48b30f(0x2dd)]();let _0x225c98=(_0xd4896=this[_0x48b30f(0x294)][_0x48b30f(0x4a1)](Js))!=null?_0xd4896:Zs;_0x31f219 instanceof a[_0x48b30f(0x599)]&&(_0x225c98=_0x31f219[_0x48b30f(0x2b9)]),document[_0x48b30f(0x1c7)]=_0x225c98;}));}};Ve=Xs([kt(0x0,a[_0x4a9685(0x3c5)]),kt(0x1,a[_0x4a9685(0x3fb)])],Ve);var Qs=Object[_0x4a9685(0x377)],er=Object[_0x4a9685(0x484)],tr=(_0x1d63a6,_0x1d281d,_0xf17d16,_0x4f7362)=>{const _0x2d0e8b=_0x4a9685;for(var _0x863bf=_0x4f7362>0x1?void 0x0:_0x4f7362?er(_0x1d281d,_0xf17d16):_0x1d281d,_0x463b01=_0x1d63a6[_0x2d0e8b(0x530)]-0x1,_0x4909d2;_0x463b01>=0x0;_0x463b01--)(_0x4909d2=_0x1d63a6[_0x463b01])&&(_0x863bf=(_0x4f7362?_0x4909d2(_0x1d281d,_0xf17d16,_0x863bf):_0x4909d2(_0x863bf))||_0x863bf);return _0x4f7362&&_0x863bf&&Qs(_0x1d281d,_0xf17d16,_0x863bf),_0x863bf;},at=(_0x58396d,_0x2cd97a)=>(_0x45ebd0,_0x1d7e08)=>_0x2cd97a(_0x45ebd0,_0x1d7e08,_0x58396d);function _0x5f2c(_0x16bfb7,_0x42776d){const _0x2b0a68=_0x2b0a();return _0x5f2c=function(_0x5f2c73,_0x241e5d){_0x5f2c73=_0x5f2c73-0x133;let _0x53c513=_0x2b0a68[_0x5f2c73];return _0x53c513;},_0x5f2c(_0x16bfb7,_0x42776d);}let Ge=class{constructor(_0x534843,_0x3702c1,_0x1d41c7){const _0x32c64e=_0x4a9685;this['_configService']=_0x534843,this[_0x32c64e(0x213)]=_0x3702c1,this[_0x32c64e(0x195)]=_0x1d41c7,this[_0x32c64e(0x432)]();}[_0x4a9685(0x432)](){const _0x4c02aa=_0x4a9685;this[_0x4c02aa(0x213)][_0x4c02aa(0x533)]({'priority':0x1,'interceptor':(_0x6fc23a,_0x9733a7)=>_0x9733a7(_0x6fc23a)[_0x4c02aa(0x172)](A[_0x4c02aa(0x2c3)](async _0x529ca0=>{const _0x53589e=_0x4c02aa,_0x263fd4=_0x529ca0;if(_0x263fd4[_0x53589e(0x226)]===0x191&&window[_0x53589e(0x2a0)](this[_0x53589e(0x195)]['t'](_0x53589e(0x5df)))){const _0x19d7f0=window[_0x53589e(0x205)](window[_0x53589e(0x559)][_0x53589e(0x1fd)]);window[_0x53589e(0x559)][_0x53589e(0x1fd)]=this['_getLoginPath']()+_0x53589e(0x496)+_0x19d7f0;}return _0x263fd4;}))});}[_0x4a9685(0x162)](){const _0x4d3bb7=_0x4a9685;var _0x511e17,_0x2081c5;const _0x29f732=this[_0x4d3bb7(0x294)][_0x4d3bb7(0x4a1)](an),_0x1664e4=this[_0x4d3bb7(0x294)]['getConfig'](te);return(_0x2081c5=(_0x511e17=_0x1664e4==null?void 0x0:_0x1664e4[_0x4d3bb7(0x5db)])!=null?_0x511e17:_0x29f732)!=null?_0x2081c5:qn;}};Ge=tr([at(0x0,a[_0x4a9685(0x3fb)]),at(0x1,a[_0x4a9685(0x27a)](Z[_0x4a9685(0x2db)])),at(0x2,a[_0x4a9685(0x27a)](a[_0x4a9685(0x4a8)]))],Ge);var nr=Object[_0x4a9685(0x377)],ir=Object['getOwnPropertyDescriptor'],sr=(_0x25dab8,_0x13c967,_0x19d17c,_0x3318bb)=>{const _0x56b2f6=_0x4a9685;for(var _0x3eaa87=_0x3318bb>0x1?void 0x0:_0x3318bb?ir(_0x13c967,_0x19d17c):_0x13c967,_0x2e9495=_0x25dab8[_0x56b2f6(0x530)]-0x1,_0xc77bd9;_0x2e9495>=0x0;_0x2e9495--)(_0xc77bd9=_0x25dab8[_0x2e9495])&&(_0x3eaa87=(_0x3318bb?_0xc77bd9(_0x13c967,_0x19d17c,_0x3eaa87):_0xc77bd9(_0x3eaa87))||_0x3eaa87);return _0x3318bb&&_0x3eaa87&&nr(_0x13c967,_0x19d17c,_0x3eaa87),_0x3eaa87;},Wt=(_0x4039a6,_0x5458d9)=>(_0x266252,_0x43cbf4)=>_0x5458d9(_0x266252,_0x43cbf4,_0x4039a6);const Rn=_0x4a9685(0x428),rr=_0x4a9685(0x400);exports[_0x4a9685(0x26b)]=class extends a[_0x4a9685(0x261)]{constructor(_0x341f3a,_0x1f0f6a){const _0x19dfe9=_0x4a9685;super(),this[_0x19dfe9(0x54b)]=_0x341f3a,this[_0x19dfe9(0x294)]=_0x1f0f6a,this[_0x19dfe9(0x4e9)]();}['_initMergeInterceptor'](){const _0xc8647=_0x4a9685,_0x38729d=this;this[_0xc8647(0x3c7)](this[_0xc8647(0x54b)]['registerHTTPInterceptor']({'priority':0x3e7,'interceptor':Z[_0xc8647(0x47a)]({'isMatch'(_0x555094){const _0x1146c0=_0xc8647;var _0x473e2d;if(_0x555094[_0x1146c0(0x557)]==='POST'&&((_0x473e2d=_0x555094[_0x1146c0(0x385)])!=null&&_0x473e2d[_0x1146c0(0x1c3)])){const {objectID:_0x5a17c4,objectType:_0x34b0eb}=_0x555094[_0x1146c0(0x385)][_0x1146c0(0x1c3)]||{};if(!_0x5a17c4||_0x34b0eb===void 0x0)return!0x1;const _0x35cf88=_0x38729d[_0x1146c0(0x1f1)]()+'/'+_0x34b0eb+'/object/'+_0x5a17c4+'/allowed';if(_0x555094[_0x1146c0(0x465)]===_0x35cf88)return!0x0;}return!0x1;},'getParamsFromRequest'(_0x487297){var _0x36acd2;return(_0x36acd2=_0x487297['requestParams'])==null?void 0x0:_0x36acd2['body'];},'mergeParamsToRequest'(_0x262d10,_0x923482){const _0x6865fb=_0xc8647,_0xa5a4fe=_0x38729d[_0x6865fb(0x1f1)]()+_0x6865fb(0x3b5),_0x474251=_0x262d10[_0x6865fb(0x2a2)]((_0x45798d,_0x3bf79f)=>{const _0x3435a0=_0x6865fb,{unitID:_0x509f5e,objectID:_0xb708a6,objectType:_0x7b4dfe,actions:_0x3afc57}=_0x3bf79f;return _0x45798d[_0x509f5e]||(_0x45798d[_0x509f5e]={}),_0x45798d[_0x509f5e][_0xb708a6]||(_0x45798d[_0x509f5e][_0xb708a6]={'objectID':_0xb708a6,'objectType':_0x7b4dfe,'actions':[]}),_0x45798d[_0x509f5e][_0xb708a6]['actions'][_0x3435a0(0x3d6)](..._0x3afc57),_0x45798d;},{}),_0x384c84=[];for(const _0x2b667f in _0x474251)for(const _0x256c9c in _0x474251[_0x2b667f]){const {actions:_0x306904,objectType:_0x5c0bcd}=_0x474251[_0x2b667f][_0x256c9c],_0x456238=[...new Set(_0x306904)];_0x384c84[_0x6865fb(0x3d6)]({'unitID':_0x2b667f,'objectID':_0x256c9c,'objectType':_0x5c0bcd,'actions':_0x456238});}return new Z[(_0x6865fb(0x324))](_0x6865fb(0x431),_0xa5a4fe,{'headers':_0x923482[_0x6865fb(0x259)],'withCredentials':_0x923482[_0x6865fb(0x46a)],'responseType':_0x923482[_0x6865fb(0x413)],'body':{'requests':_0x384c84}});}},{'distributeResult'(_0x2031e6,_0x1d133){const {objectActions:_0x29bf0b}=_0x2031e6;return _0x1d133['map'](_0xc9d21e=>{const _0x31f078=_0x5f2c,{unitID:_0x138c05,objectID:_0x139bc3,actions:_0x1c2f58}=_0xc9d21e,_0x465e6=_0x29bf0b[_0x31f078(0x284)](_0x1d21e1=>_0x1d21e1[_0x31f078(0x197)]===_0x138c05&&_0x1d21e1[_0x31f078(0x5e7)]===_0x139bc3),_0x2f9823=_0x1c2f58['map'](_0x52c460=>_0x465e6==null?void 0x0:_0x465e6['actions'][_0x31f078(0x284)](_0x145e3c=>_0x145e3c[_0x31f078(0x14c)]===_0x52c460))[_0x31f078(0x464)](_0x58e3f0=>!!_0x58e3f0);return{'config':_0xc9d21e,'result':{'actions':_0x2f9823,'error':_0x2031e6['error']}};});}})}));}['_getAPIPrefixPath'](){const _0x3a1599=_0x4a9685;var _0x15802d,_0x53b19f;const _0x17db61=this[_0x3a1599(0x294)][_0x3a1599(0x4a1)](Rn),_0x1c702d=this[_0x3a1599(0x294)]['getConfig'](te);return(_0x53b19f=(_0x15802d=_0x1c702d==null?void 0x0:_0x1c702d[_0x3a1599(0x240)])!=null?_0x15802d:_0x17db61)!=null?_0x53b19f:rr;}async[_0x4a9685(0x4c5)](_0x371b00){const _0x5dd1a8=_0x4a9685,_0x4f020a=this[_0x5dd1a8(0x1f1)]()+'/'+_0x371b00[_0x5dd1a8(0x451)]+'/object';return(await this['_HTTPService']['post'](_0x4f020a,{'body':_0x371b00}))[_0x5dd1a8(0x1c3)][_0x5dd1a8(0x5e7)]||'';}async[_0x4a9685(0x3b9)](_0x1434f0){const _0xf61595=_0x4a9685,_0x3888ca=this[_0xf61595(0x1f1)]()+_0xf61595(0x2ce);return(await this[_0xf61595(0x54b)][_0xf61595(0x171)](_0x3888ca,{'body':_0x1434f0}))['body'][_0xf61595(0x365)];}async['update'](_0x3f9bb5){const _0x11501e=_0x4a9685,_0x4e95b8=this['_getAPIPrefixPath']()+'/'+_0x3f9bb5[_0x11501e(0x451)]+_0x11501e(0x343)+_0x3f9bb5[_0x11501e(0x5e7)];await this[_0x11501e(0x54b)]['put'](_0x4e95b8,{'body':_0x3f9bb5});}async[_0x4a9685(0x339)](_0x3855b2){const _0x16e29b=_0x4a9685,_0xb105c6=this[_0x16e29b(0x1f1)]()+'/'+_0x3855b2[_0x16e29b(0x451)]+_0x16e29b(0x343)+_0x3855b2[_0x16e29b(0x5e7)]+_0x16e29b(0x2fc);return(await this[_0x16e29b(0x54b)][_0x16e29b(0x171)](_0xb105c6,{'body':_0x3855b2}))[_0x16e29b(0x1c3)][_0x16e29b(0x5b6)];}async[_0x4a9685(0x161)](_0x31c644){const _0x444f19=_0x4a9685,_0x2a7651=this[_0x444f19(0x1f1)]()+'/-/object/-/batch_allowed';return(await this[_0x444f19(0x54b)][_0x444f19(0x171)](_0x2a7651,{'body':{'requests':_0x31c644}}))['body'][_0x444f19(0x390)];}async['listRoles'](_0x29e437){const _0x595a3a=_0x4a9685,_0x3d2b22=this[_0x595a3a(0x1f1)]()+'/'+_0x29e437[_0x595a3a(0x451)]+_0x595a3a(0x519),_0x313565=await this[_0x595a3a(0x54b)][_0x595a3a(0x171)](_0x3d2b22,{'body':_0x29e437});return{'roles':_0x313565[_0x595a3a(0x1c3)][_0x595a3a(0x569)],'actions':_0x313565[_0x595a3a(0x1c3)]['actions']};}async[_0x4a9685(0x15d)](_0x30182e){const _0x3947a9=_0x4a9685,_0x686027=this[_0x3947a9(0x1f1)]()+_0x3947a9(0x532);await this[_0x3947a9(0x54b)][_0x3947a9(0x224)](_0x686027,{'params':{'collaboratorID':_0x30182e[_0x3947a9(0x1e7)],'objectID':_0x30182e[_0x3947a9(0x5e7)],'unitID':_0x30182e[_0x3947a9(0x197)]}});}async[_0x4a9685(0x49c)](_0x3c76a7){const _0x5c700a=_0x4a9685,_0x20bfe5=this['_getAPIPrefixPath']()+_0x5c700a(0x532);await this[_0x5c700a(0x54b)][_0x5c700a(0x148)](_0x20bfe5,{'body':_0x3c76a7});}async[_0x4a9685(0x30d)](_0x4d2658){const _0x5a5dd5=_0x4a9685,_0x583357=this[_0x5a5dd5(0x1f1)]()+_0x5a5dd5(0x532);await this['_HTTPService'][_0x5a5dd5(0x171)](_0x583357,{'body':_0x4d2658});}async['listCollaborators'](_0x112ca2){const _0x5bc42a=_0x4a9685,_0x521951=this[_0x5bc42a(0x1f1)]()+'/collaborator';return(await this['_HTTPService']['get'](_0x521951,{'params':{'objectID':_0x112ca2[_0x5bc42a(0x5e7)],'unitID':_0x112ca2[_0x5bc42a(0x197)]}}))[_0x5bc42a(0x1c3)][_0x5bc42a(0x25c)];}async['putCollaborators'](_0x1c288c){const _0x53e6a8=_0x4a9685,_0x295f91=this['_getAPIPrefixPath']()+_0x53e6a8(0x532);await this[_0x53e6a8(0x54b)][_0x53e6a8(0x235)](_0x295f91,{'body':_0x1c288c});}},exports[_0x4a9685(0x26b)]=sr([Wt(0x0,a[_0x4a9685(0x27a)](Z[_0x4a9685(0x2db)])),Wt(0x1,a['Inject'](a[_0x4a9685(0x3fb)]))],exports[_0x4a9685(0x26b)]);var yn={'exports':{}};function or(_0x5e0b21){const _0x46e5e6=_0x4a9685;throw new Error(_0x46e5e6(0x234)+_0x5e0b21+'\x22.\x20Please\x20configure\x20the\x20dynamicRequireTargets\x20or/and\x20ignoreDynamicRequires\x20option\x20of\x20@rollup/plugin-commonjs\x20appropriately\x20for\x20this\x20require\x20call\x20to\x20work.');}var ct={'exports':{}},Ft;function oe(){const _0x396100=_0x4a9685;return Ft||(Ft=0x1,function(_0x33d567,_0x171b64){(function(_0x9c82f,_0x294afb){const _0xf85903=_0x5f2c;_0x33d567[_0xf85903(0x5dd)]=_0x294afb();}(X,function(){var _0x209bbf=_0x209bbf||function(_0x288c73,_0x218720){const _0xd579ef=_0x5f2c;var _0x36d28e;if(typeof window<'u'&&window[_0xd579ef(0x564)]&&(_0x36d28e=window['crypto']),typeof self<'u'&&self[_0xd579ef(0x564)]&&(_0x36d28e=self[_0xd579ef(0x564)]),typeof globalThis<'u'&&globalThis[_0xd579ef(0x564)]&&(_0x36d28e=globalThis[_0xd579ef(0x564)]),!_0x36d28e&&typeof window<'u'&&window[_0xd579ef(0x4c0)]&&(_0x36d28e=window[_0xd579ef(0x4c0)]),!_0x36d28e&&typeof X<'u'&&X[_0xd579ef(0x564)]&&(_0x36d28e=X[_0xd579ef(0x564)]),!_0x36d28e&&typeof or==_0xd579ef(0x2d5))try{_0x36d28e=require('crypto');}catch{}var _0x10cb8d=function(){const _0x547215=_0xd579ef;if(_0x36d28e){if(typeof _0x36d28e[_0x547215(0x1c8)]==_0x547215(0x2d5))try{return _0x36d28e['getRandomValues'](new Uint32Array(0x1))[0x0];}catch{}if(typeof _0x36d28e[_0x547215(0x501)]==_0x547215(0x2d5))try{return _0x36d28e[_0x547215(0x501)](0x4)[_0x547215(0x596)]();}catch{}}throw new Error(_0x547215(0x399));},_0x205d70=Object[_0xd579ef(0x4c5)]||(function(){function _0x596158(){}return function(_0x37000b){const _0x363c59=_0x5f2c;var _0x5bac7;return _0x596158[_0x363c59(0x216)]=_0x37000b,_0x5bac7=new _0x596158(),_0x596158['prototype']=null,_0x5bac7;};}()),_0x2b54ef={},_0x3575b6=_0x2b54ef[_0xd579ef(0x18d)]={},_0x54ec5f=_0x3575b6[_0xd579ef(0x1bd)]=(function(){return{'extend':function(_0x2943ed){const _0x4909ef=_0x5f2c;var _0x202943=_0x205d70(this);return _0x2943ed&&_0x202943['mixIn'](_0x2943ed),(!_0x202943[_0x4909ef(0x2f4)](_0x4909ef(0x432))||this[_0x4909ef(0x432)]===_0x202943[_0x4909ef(0x432)])&&(_0x202943[_0x4909ef(0x432)]=function(){const _0x15ae69=_0x4909ef;_0x202943[_0x15ae69(0x2ee)][_0x15ae69(0x432)][_0x15ae69(0x5cc)](this,arguments);}),_0x202943['init'][_0x4909ef(0x216)]=_0x202943,_0x202943[_0x4909ef(0x2ee)]=this,_0x202943;},'create':function(){const _0x5c2cd0=_0x5f2c;var _0x561aaa=this[_0x5c2cd0(0x3bb)]();return _0x561aaa['init'][_0x5c2cd0(0x5cc)](_0x561aaa,arguments),_0x561aaa;},'init':function(){},'mixIn':function(_0x1d9ce7){const _0x2c2b24=_0x5f2c;for(var _0x12f748 in _0x1d9ce7)_0x1d9ce7['hasOwnProperty'](_0x12f748)&&(this[_0x12f748]=_0x1d9ce7[_0x12f748]);_0x1d9ce7[_0x2c2b24(0x2f4)](_0x2c2b24(0x350))&&(this['toString']=_0x1d9ce7['toString']);},'clone':function(){const _0x1f19aa=_0x5f2c;return this[_0x1f19aa(0x432)][_0x1f19aa(0x216)][_0x1f19aa(0x3bb)](this);}};}()),_0x4b53b6=_0x3575b6[_0xd579ef(0x2bc)]=_0x54ec5f['extend']({'init':function(_0x1d6066,_0x2a1fd7){const _0x18e642=_0xd579ef;_0x1d6066=this[_0x18e642(0x155)]=_0x1d6066||[],_0x2a1fd7!=_0x218720?this[_0x18e642(0x3a6)]=_0x2a1fd7:this[_0x18e642(0x3a6)]=_0x1d6066[_0x18e642(0x530)]*0x4;},'toString':function(_0x5e7f3e){const _0x55657a=_0xd579ef;return(_0x5e7f3e||_0x537afb)[_0x55657a(0x2d1)](this);},'concat':function(_0x2b5877){const _0x9c1ffb=_0xd579ef;var _0x4cb8e9=this[_0x9c1ffb(0x155)],_0x416fbc=_0x2b5877[_0x9c1ffb(0x155)],_0x2f77c3=this[_0x9c1ffb(0x3a6)],_0x3f8847=_0x2b5877[_0x9c1ffb(0x3a6)];if(this[_0x9c1ffb(0x304)](),_0x2f77c3%0x4)for(var _0x3841e1=0x0;_0x3841e1<_0x3f8847;_0x3841e1++){var _0x155b1a=_0x416fbc[_0x3841e1>>>0x2]>>>0x18-_0x3841e1%0x4*0x8&0xff;_0x4cb8e9[_0x2f77c3+_0x3841e1>>>0x2]|=_0x155b1a<<0x18-(_0x2f77c3+_0x3841e1)%0x4*0x8;}else{for(var _0xad8d58=0x0;_0xad8d58<_0x3f8847;_0xad8d58+=0x4)_0x4cb8e9[_0x2f77c3+_0xad8d58>>>0x2]=_0x416fbc[_0xad8d58>>>0x2];}return this['sigBytes']+=_0x3f8847,this;},'clamp':function(){const _0x823018=_0xd579ef;var _0x399133=this[_0x823018(0x155)],_0x127f2f=this[_0x823018(0x3a6)];_0x399133[_0x127f2f>>>0x2]&=0xffffffff<<0x20-_0x127f2f%0x4*0x8,_0x399133[_0x823018(0x530)]=_0x288c73['ceil'](_0x127f2f/0x4);},'clone':function(){const _0x4d3a5d=_0xd579ef;var _0x4874b6=_0x54ec5f[_0x4d3a5d(0x1c6)]['call'](this);return _0x4874b6[_0x4d3a5d(0x155)]=this[_0x4d3a5d(0x155)][_0x4d3a5d(0x2f2)](0x0),_0x4874b6;},'random':function(_0x5cb12f){const _0x71dbc7=_0xd579ef;for(var _0x420304=[],_0x5c0db5=0x0;_0x5c0db5<_0x5cb12f;_0x5c0db5+=0x4)_0x420304[_0x71dbc7(0x3d6)](_0x10cb8d());return new _0x4b53b6[(_0x71dbc7(0x432))](_0x420304,_0x5cb12f);}}),_0x49264d=_0x2b54ef['enc']={},_0x537afb=_0x49264d['Hex']={'stringify':function(_0x172aa9){const _0x31ab0b=_0xd579ef;for(var _0x3b07e4=_0x172aa9[_0x31ab0b(0x155)],_0x1eef5d=_0x172aa9[_0x31ab0b(0x3a6)],_0x2cbd6c=[],_0x3a7e50=0x0;_0x3a7e50<_0x1eef5d;_0x3a7e50++){var _0x13ef37=_0x3b07e4[_0x3a7e50>>>0x2]>>>0x18-_0x3a7e50%0x4*0x8&0xff;_0x2cbd6c[_0x31ab0b(0x3d6)]((_0x13ef37>>>0x4)[_0x31ab0b(0x350)](0x10)),_0x2cbd6c['push']((_0x13ef37&0xf)['toString'](0x10));}return _0x2cbd6c['join']('');},'parse':function(_0x96fd5f){const _0x248578=_0xd579ef;for(var _0x3be6b7=_0x96fd5f['length'],_0x21542b=[],_0x2bd6b4=0x0;_0x2bd6b4<_0x3be6b7;_0x2bd6b4+=0x2)_0x21542b[_0x2bd6b4>>>0x3]|=parseInt(_0x96fd5f[_0x248578(0x5ea)](_0x2bd6b4,0x2),0x10)<<0x18-_0x2bd6b4%0x8*0x4;return new _0x4b53b6[(_0x248578(0x432))](_0x21542b,_0x3be6b7/0x2);}},_0x3fafc1=_0x49264d['Latin1']={'stringify':function(_0x52ecb2){const _0x25ea4e=_0xd579ef;for(var _0x26449c=_0x52ecb2[_0x25ea4e(0x155)],_0x5248b0=_0x52ecb2['sigBytes'],_0x4b581c=[],_0x7b4eb7=0x0;_0x7b4eb7<_0x5248b0;_0x7b4eb7++){var _0x57a84e=_0x26449c[_0x7b4eb7>>>0x2]>>>0x18-_0x7b4eb7%0x4*0x8&0xff;_0x4b581c['push'](String[_0x25ea4e(0x29a)](_0x57a84e));}return _0x4b581c['join']('');},'parse':function(_0x4e00c8){const _0x34a4f7=_0xd579ef;for(var _0x3df153=_0x4e00c8[_0x34a4f7(0x530)],_0x395559=[],_0x4229f8=0x0;_0x4229f8<_0x3df153;_0x4229f8++)_0x395559[_0x4229f8>>>0x2]|=(_0x4e00c8[_0x34a4f7(0x3b4)](_0x4229f8)&0xff)<<0x18-_0x4229f8%0x4*0x8;return new _0x4b53b6['init'](_0x395559,_0x3df153);}},_0x1eee9b=_0x49264d[_0xd579ef(0x289)]={'stringify':function(_0x4d7859){const _0x1f3a00=_0xd579ef;try{return decodeURIComponent(escape(_0x3fafc1[_0x1f3a00(0x2d1)](_0x4d7859)));}catch{throw new Error('Malformed\x20UTF-8\x20data');}},'parse':function(_0x15c285){return _0x3fafc1['parse'](unescape(encodeURIComponent(_0x15c285)));}},_0x4d915f=_0x3575b6[_0xd579ef(0x1ac)]=_0x54ec5f[_0xd579ef(0x3bb)]({'reset':function(){const _0x14390c=_0xd579ef;this[_0x14390c(0x225)]=new _0x4b53b6[(_0x14390c(0x432))](),this[_0x14390c(0x46c)]=0x0;},'_append':function(_0x29f4b0){const _0x3db43e=_0xd579ef;typeof _0x29f4b0==_0x3db43e(0x3b2)&&(_0x29f4b0=_0x1eee9b[_0x3db43e(0x2af)](_0x29f4b0)),this[_0x3db43e(0x225)][_0x3db43e(0x407)](_0x29f4b0),this['_nDataBytes']+=_0x29f4b0[_0x3db43e(0x3a6)];},'_process':function(_0x55cb44){const _0x37fdf7=_0xd579ef;var _0xea8b81,_0x1ec558=this[_0x37fdf7(0x225)],_0x4f66bd=_0x1ec558['words'],_0x2bd231=_0x1ec558[_0x37fdf7(0x3a6)],_0x1b916c=this[_0x37fdf7(0x502)],_0x5b4b7c=_0x1b916c*0x4,_0x4b6a11=_0x2bd231/_0x5b4b7c;_0x55cb44?_0x4b6a11=_0x288c73['ceil'](_0x4b6a11):_0x4b6a11=_0x288c73[_0x37fdf7(0x2e7)]((_0x4b6a11|0x0)-this[_0x37fdf7(0x1cb)],0x0);var _0x2dbd2b=_0x4b6a11*_0x1b916c,_0x23ca1f=_0x288c73[_0x37fdf7(0x585)](_0x2dbd2b*0x4,_0x2bd231);if(_0x2dbd2b){for(var _0x2c0539=0x0;_0x2c0539<_0x2dbd2b;_0x2c0539+=_0x1b916c)this['_doProcessBlock'](_0x4f66bd,_0x2c0539);_0xea8b81=_0x4f66bd['splice'](0x0,_0x2dbd2b),_0x1ec558[_0x37fdf7(0x3a6)]-=_0x23ca1f;}return new _0x4b53b6[(_0x37fdf7(0x432))](_0xea8b81,_0x23ca1f);},'clone':function(){const _0x124754=_0xd579ef;var _0x23b545=_0x54ec5f['clone'][_0x124754(0x20c)](this);return _0x23b545[_0x124754(0x225)]=this[_0x124754(0x225)][_0x124754(0x1c6)](),_0x23b545;},'_minBufferSize':0x0});_0x3575b6['Hasher']=_0x4d915f['extend']({'cfg':_0x54ec5f[_0xd579ef(0x3bb)](),'init':function(_0x59810a){const _0x263117=_0xd579ef;this['cfg']=this[_0x263117(0x541)]['extend'](_0x59810a),this[_0x263117(0x149)]();},'reset':function(){const _0x9fb42c=_0xd579ef;_0x4d915f[_0x9fb42c(0x149)]['call'](this),this[_0x9fb42c(0x20f)]();},'update':function(_0x4ecebb){const _0x430241=_0xd579ef;return this[_0x430241(0x34b)](_0x4ecebb),this[_0x430241(0x380)](),this;},'finalize':function(_0x2fff7e){const _0x14d8e1=_0xd579ef;_0x2fff7e&&this['_append'](_0x2fff7e);var _0x56a6e5=this[_0x14d8e1(0x187)]();return _0x56a6e5;},'blockSize':0x10,'_createHelper':function(_0x16a174){return function(_0x13b4c1,_0x5b62bc){const _0x49e9b7=_0x5f2c;return new _0x16a174['init'](_0x5b62bc)[_0x49e9b7(0x36a)](_0x13b4c1);};},'_createHmacHelper':function(_0x526f81){return function(_0x3f79bd,_0x581fb6){const _0x2cd6e3=_0x5f2c;return new _0x566044['HMAC']['init'](_0x526f81,_0x581fb6)[_0x2cd6e3(0x36a)](_0x3f79bd);};}});var _0x566044=_0x2b54ef[_0xd579ef(0x4bb)]={};return _0x2b54ef;}(Math);return _0x209bbf;}));}(ct)),ct[_0x396100(0x5dd)];}var lt={'exports':{}},Vt;function On(){const _0x36c78e=_0x4a9685;return Vt||(Vt=0x1,function(_0x866ff,_0x2e4262){(function(_0x379715,_0xd4237a){const _0xa498c4=_0x5f2c;_0x866ff[_0xa498c4(0x5dd)]=_0xd4237a(oe());}(X,function(_0x1c1c82){const _0xb28be2=_0x5f2c;return(function(){const _0x2bb7b1=_0x5f2c;var _0x1e57ce=_0x1c1c82,_0x28d1da=_0x1e57ce[_0x2bb7b1(0x18d)],_0x9d0437=_0x28d1da[_0x2bb7b1(0x2bc)],_0x1f16e2=_0x1e57ce[_0x2bb7b1(0x3e6)];_0x1f16e2['Base64']={'stringify':function(_0x655681){const _0xc16999=_0x2bb7b1;var _0x2c680d=_0x655681['words'],_0x40f15c=_0x655681[_0xc16999(0x3a6)],_0x470e3e=this[_0xc16999(0x3c2)];_0x655681[_0xc16999(0x304)]();for(var _0x4df4d7=[],_0x12bcf1=0x0;_0x12bcf1<_0x40f15c;_0x12bcf1+=0x3)for(var _0x1f9c6b=_0x2c680d[_0x12bcf1>>>0x2]>>>0x18-_0x12bcf1%0x4*0x8&0xff,_0x398ffe=_0x2c680d[_0x12bcf1+0x1>>>0x2]>>>0x18-(_0x12bcf1+0x1)%0x4*0x8&0xff,_0x6c3715=_0x2c680d[_0x12bcf1+0x2>>>0x2]>>>0x18-(_0x12bcf1+0x2)%0x4*0x8&0xff,_0x52ed2f=_0x1f9c6b<<0x10|_0x398ffe<<0x8|_0x6c3715,_0x37c0ee=0x0;_0x37c0ee<0x4&&_0x12bcf1+_0x37c0ee*0.75<_0x40f15c;_0x37c0ee++)_0x4df4d7['push'](_0x470e3e[_0xc16999(0x22d)](_0x52ed2f>>>0x6*(0x3-_0x37c0ee)&0x3f));var _0x2660a1=_0x470e3e['charAt'](0x40);if(_0x2660a1){for(;_0x4df4d7[_0xc16999(0x530)]%0x4;)_0x4df4d7[_0xc16999(0x3d6)](_0x2660a1);}return _0x4df4d7[_0xc16999(0x241)]('');},'parse':function(_0x2f6beb){const _0x20498b=_0x2bb7b1;var _0x2b93f6=_0x2f6beb['length'],_0x20b6c8=this[_0x20498b(0x3c2)],_0x114927=this[_0x20498b(0x5cb)];if(!_0x114927){_0x114927=this[_0x20498b(0x5cb)]=[];for(var _0x3079bb=0x0;_0x3079bb<_0x20b6c8[_0x20498b(0x530)];_0x3079bb++)_0x114927[_0x20b6c8['charCodeAt'](_0x3079bb)]=_0x3079bb;}var _0x4f17bb=_0x20b6c8['charAt'](0x40);if(_0x4f17bb){var _0x1870c0=_0x2f6beb['indexOf'](_0x4f17bb);_0x1870c0!==-0x1&&(_0x2b93f6=_0x1870c0);}return _0x51af72(_0x2f6beb,_0x2b93f6,_0x114927);},'_map':_0x2bb7b1(0x482)};function _0x51af72(_0x5351e7,_0x7c7bce,_0x51702c){const _0x1e84ff=_0x2bb7b1;for(var _0x2e1fbb=[],_0x24ff7a=0x0,_0x64f4a4=0x0;_0x64f4a4<_0x7c7bce;_0x64f4a4++)if(_0x64f4a4%0x4){var _0x505986=_0x51702c[_0x5351e7[_0x1e84ff(0x3b4)](_0x64f4a4-0x1)]<<_0x64f4a4%0x4*0x2,_0x5226ee=_0x51702c[_0x5351e7[_0x1e84ff(0x3b4)](_0x64f4a4)]>>>0x6-_0x64f4a4%0x4*0x2,_0x59097a=_0x505986|_0x5226ee;_0x2e1fbb[_0x24ff7a>>>0x2]|=_0x59097a<<0x18-_0x24ff7a%0x4*0x8,_0x24ff7a++;}return _0x9d0437[_0x1e84ff(0x4c5)](_0x2e1fbb,_0x24ff7a);}}()),_0x1c1c82[_0xb28be2(0x3e6)][_0xb28be2(0x220)];}));}(lt)),lt[_0x36c78e(0x5dd)];}var ht={'exports':{}},Gt;function ar(){const _0x20a98d=_0x4a9685;return Gt||(Gt=0x1,function(_0x2fba60,_0xbebd10){(function(_0x4c38d6,_0x5e3d58){_0x2fba60['exports']=_0x5e3d58(oe());}(X,function(_0x44fd49){const _0x164e18=_0x5f2c;return function(_0x53bd40){const _0x25b699=_0x5f2c;var _0x2d79af=_0x44fd49,_0x4e29d5=_0x2d79af[_0x25b699(0x18d)],_0x1b8b5d=_0x4e29d5[_0x25b699(0x2bc)],_0x4b1123=_0x4e29d5[_0x25b699(0x314)],_0x2ce341=_0x2d79af[_0x25b699(0x4bb)],_0x26af8c=[];(function(){const _0x5af54d=_0x25b699;for(var _0x5acf78=0x0;_0x5acf78<0x40;_0x5acf78++)_0x26af8c[_0x5acf78]=_0x53bd40['abs'](_0x53bd40[_0x5af54d(0x2c5)](_0x5acf78+0x1))*0x100000000|0x0;}());var _0x8790c6=_0x2ce341[_0x25b699(0x4e2)]=_0x4b1123[_0x25b699(0x3bb)]({'_doReset':function(){const _0xa63cf0=_0x25b699;this[_0xa63cf0(0x3f7)]=new _0x1b8b5d['init']([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);},'_doProcessBlock':function(_0x4832f6,_0x1d8ea0){const _0x15e7fe=_0x25b699;for(var _0x24b9ed=0x0;_0x24b9ed<0x10;_0x24b9ed++){var _0x208946=_0x1d8ea0+_0x24b9ed,_0x31bcca=_0x4832f6[_0x208946];_0x4832f6[_0x208946]=(_0x31bcca<<0x8|_0x31bcca>>>0x18)&0xff00ff|(_0x31bcca<<0x18|_0x31bcca>>>0x8)&0xff00ff00;}var _0x51a61b=this[_0x15e7fe(0x3f7)]['words'],_0x349055=_0x4832f6[_0x1d8ea0+0x0],_0x469da0=_0x4832f6[_0x1d8ea0+0x1],_0x5aef62=_0x4832f6[_0x1d8ea0+0x2],_0x37a1bd=_0x4832f6[_0x1d8ea0+0x3],_0x59d26e=_0x4832f6[_0x1d8ea0+0x4],_0x3b0e28=_0x4832f6[_0x1d8ea0+0x5],_0x58de18=_0x4832f6[_0x1d8ea0+0x6],_0x25e9a6=_0x4832f6[_0x1d8ea0+0x7],_0x11f3a0=_0x4832f6[_0x1d8ea0+0x8],_0x18b8db=_0x4832f6[_0x1d8ea0+0x9],_0x2dd31b=_0x4832f6[_0x1d8ea0+0xa],_0x1a734f=_0x4832f6[_0x1d8ea0+0xb],_0x548be8=_0x4832f6[_0x1d8ea0+0xc],_0x325ff3=_0x4832f6[_0x1d8ea0+0xd],_0x31e6f0=_0x4832f6[_0x1d8ea0+0xe],_0xe0cab2=_0x4832f6[_0x1d8ea0+0xf],_0x139ef4=_0x51a61b[0x0],_0x34a64c=_0x51a61b[0x1],_0x34373b=_0x51a61b[0x2],_0x5ca88b=_0x51a61b[0x3];_0x139ef4=_0x24eb0d(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x349055,0x7,_0x26af8c[0x0]),_0x5ca88b=_0x24eb0d(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x469da0,0xc,_0x26af8c[0x1]),_0x34373b=_0x24eb0d(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x5aef62,0x11,_0x26af8c[0x2]),_0x34a64c=_0x24eb0d(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x37a1bd,0x16,_0x26af8c[0x3]),_0x139ef4=_0x24eb0d(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x59d26e,0x7,_0x26af8c[0x4]),_0x5ca88b=_0x24eb0d(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x3b0e28,0xc,_0x26af8c[0x5]),_0x34373b=_0x24eb0d(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x58de18,0x11,_0x26af8c[0x6]),_0x34a64c=_0x24eb0d(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x25e9a6,0x16,_0x26af8c[0x7]),_0x139ef4=_0x24eb0d(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x11f3a0,0x7,_0x26af8c[0x8]),_0x5ca88b=_0x24eb0d(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x18b8db,0xc,_0x26af8c[0x9]),_0x34373b=_0x24eb0d(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x2dd31b,0x11,_0x26af8c[0xa]),_0x34a64c=_0x24eb0d(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x1a734f,0x16,_0x26af8c[0xb]),_0x139ef4=_0x24eb0d(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x548be8,0x7,_0x26af8c[0xc]),_0x5ca88b=_0x24eb0d(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x325ff3,0xc,_0x26af8c[0xd]),_0x34373b=_0x24eb0d(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x31e6f0,0x11,_0x26af8c[0xe]),_0x34a64c=_0x24eb0d(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0xe0cab2,0x16,_0x26af8c[0xf]),_0x139ef4=_0x337a06(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x469da0,0x5,_0x26af8c[0x10]),_0x5ca88b=_0x337a06(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x58de18,0x9,_0x26af8c[0x11]),_0x34373b=_0x337a06(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x1a734f,0xe,_0x26af8c[0x12]),_0x34a64c=_0x337a06(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x349055,0x14,_0x26af8c[0x13]),_0x139ef4=_0x337a06(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x3b0e28,0x5,_0x26af8c[0x14]),_0x5ca88b=_0x337a06(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x2dd31b,0x9,_0x26af8c[0x15]),_0x34373b=_0x337a06(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0xe0cab2,0xe,_0x26af8c[0x16]),_0x34a64c=_0x337a06(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x59d26e,0x14,_0x26af8c[0x17]),_0x139ef4=_0x337a06(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x18b8db,0x5,_0x26af8c[0x18]),_0x5ca88b=_0x337a06(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x31e6f0,0x9,_0x26af8c[0x19]),_0x34373b=_0x337a06(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x37a1bd,0xe,_0x26af8c[0x1a]),_0x34a64c=_0x337a06(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x11f3a0,0x14,_0x26af8c[0x1b]),_0x139ef4=_0x337a06(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x325ff3,0x5,_0x26af8c[0x1c]),_0x5ca88b=_0x337a06(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x5aef62,0x9,_0x26af8c[0x1d]),_0x34373b=_0x337a06(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x25e9a6,0xe,_0x26af8c[0x1e]),_0x34a64c=_0x337a06(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x548be8,0x14,_0x26af8c[0x1f]),_0x139ef4=_0x3fbdd7(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x3b0e28,0x4,_0x26af8c[0x20]),_0x5ca88b=_0x3fbdd7(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x11f3a0,0xb,_0x26af8c[0x21]),_0x34373b=_0x3fbdd7(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x1a734f,0x10,_0x26af8c[0x22]),_0x34a64c=_0x3fbdd7(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x31e6f0,0x17,_0x26af8c[0x23]),_0x139ef4=_0x3fbdd7(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x469da0,0x4,_0x26af8c[0x24]),_0x5ca88b=_0x3fbdd7(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x59d26e,0xb,_0x26af8c[0x25]),_0x34373b=_0x3fbdd7(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x25e9a6,0x10,_0x26af8c[0x26]),_0x34a64c=_0x3fbdd7(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x2dd31b,0x17,_0x26af8c[0x27]),_0x139ef4=_0x3fbdd7(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x325ff3,0x4,_0x26af8c[0x28]),_0x5ca88b=_0x3fbdd7(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x349055,0xb,_0x26af8c[0x29]),_0x34373b=_0x3fbdd7(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x37a1bd,0x10,_0x26af8c[0x2a]),_0x34a64c=_0x3fbdd7(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x58de18,0x17,_0x26af8c[0x2b]),_0x139ef4=_0x3fbdd7(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x18b8db,0x4,_0x26af8c[0x2c]),_0x5ca88b=_0x3fbdd7(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x548be8,0xb,_0x26af8c[0x2d]),_0x34373b=_0x3fbdd7(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0xe0cab2,0x10,_0x26af8c[0x2e]),_0x34a64c=_0x3fbdd7(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x5aef62,0x17,_0x26af8c[0x2f]),_0x139ef4=_0x547cf5(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x349055,0x6,_0x26af8c[0x30]),_0x5ca88b=_0x547cf5(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x25e9a6,0xa,_0x26af8c[0x31]),_0x34373b=_0x547cf5(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x31e6f0,0xf,_0x26af8c[0x32]),_0x34a64c=_0x547cf5(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x3b0e28,0x15,_0x26af8c[0x33]),_0x139ef4=_0x547cf5(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x548be8,0x6,_0x26af8c[0x34]),_0x5ca88b=_0x547cf5(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x37a1bd,0xa,_0x26af8c[0x35]),_0x34373b=_0x547cf5(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x2dd31b,0xf,_0x26af8c[0x36]),_0x34a64c=_0x547cf5(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x469da0,0x15,_0x26af8c[0x37]),_0x139ef4=_0x547cf5(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x11f3a0,0x6,_0x26af8c[0x38]),_0x5ca88b=_0x547cf5(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0xe0cab2,0xa,_0x26af8c[0x39]),_0x34373b=_0x547cf5(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x58de18,0xf,_0x26af8c[0x3a]),_0x34a64c=_0x547cf5(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x325ff3,0x15,_0x26af8c[0x3b]),_0x139ef4=_0x547cf5(_0x139ef4,_0x34a64c,_0x34373b,_0x5ca88b,_0x59d26e,0x6,_0x26af8c[0x3c]),_0x5ca88b=_0x547cf5(_0x5ca88b,_0x139ef4,_0x34a64c,_0x34373b,_0x1a734f,0xa,_0x26af8c[0x3d]),_0x34373b=_0x547cf5(_0x34373b,_0x5ca88b,_0x139ef4,_0x34a64c,_0x5aef62,0xf,_0x26af8c[0x3e]),_0x34a64c=_0x547cf5(_0x34a64c,_0x34373b,_0x5ca88b,_0x139ef4,_0x18b8db,0x15,_0x26af8c[0x3f]),_0x51a61b[0x0]=_0x51a61b[0x0]+_0x139ef4|0x0,_0x51a61b[0x1]=_0x51a61b[0x1]+_0x34a64c|0x0,_0x51a61b[0x2]=_0x51a61b[0x2]+_0x34373b|0x0,_0x51a61b[0x3]=_0x51a61b[0x3]+_0x5ca88b|0x0;},'_doFinalize':function(){const _0x1be980=_0x25b699;var _0x57dae9=this[_0x1be980(0x225)],_0x15a20a=_0x57dae9[_0x1be980(0x155)],_0x1bed08=this['_nDataBytes']*0x8,_0x4be219=_0x57dae9[_0x1be980(0x3a6)]*0x8;_0x15a20a[_0x4be219>>>0x5]|=0x80<<0x18-_0x4be219%0x20;var _0x28e8a2=_0x53bd40[_0x1be980(0x1d0)](_0x1bed08/0x100000000),_0x293ba0=_0x1bed08;_0x15a20a[(_0x4be219+0x40>>>0x9<<0x4)+0xf]=(_0x28e8a2<<0x8|_0x28e8a2>>>0x18)&0xff00ff|(_0x28e8a2<<0x18|_0x28e8a2>>>0x8)&0xff00ff00,_0x15a20a[(_0x4be219+0x40>>>0x9<<0x4)+0xe]=(_0x293ba0<<0x8|_0x293ba0>>>0x18)&0xff00ff|(_0x293ba0<<0x18|_0x293ba0>>>0x8)&0xff00ff00,_0x57dae9[_0x1be980(0x3a6)]=(_0x15a20a[_0x1be980(0x530)]+0x1)*0x4,this[_0x1be980(0x380)]();for(var _0x10f2c0=this[_0x1be980(0x3f7)],_0x44d059=_0x10f2c0['words'],_0x5b8686=0x0;_0x5b8686<0x4;_0x5b8686++){var _0x36933a=_0x44d059[_0x5b8686];_0x44d059[_0x5b8686]=(_0x36933a<<0x8|_0x36933a>>>0x18)&0xff00ff|(_0x36933a<<0x18|_0x36933a>>>0x8)&0xff00ff00;}return _0x10f2c0;},'clone':function(){const _0x29180f=_0x25b699;var _0x37dc7c=_0x4b1123[_0x29180f(0x1c6)][_0x29180f(0x20c)](this);return _0x37dc7c[_0x29180f(0x3f7)]=this[_0x29180f(0x3f7)]['clone'](),_0x37dc7c;}});function _0x24eb0d(_0x2f0d7c,_0x33a419,_0x55bed2,_0xf9edc7,_0x6fd2e9,_0x2812d1,_0x50473b){var _0x3f28c4=_0x2f0d7c+(_0x33a419&_0x55bed2|~_0x33a419&_0xf9edc7)+_0x6fd2e9+_0x50473b;return(_0x3f28c4<<_0x2812d1|_0x3f28c4>>>0x20-_0x2812d1)+_0x33a419;}function _0x337a06(_0x25bd68,_0x948fa,_0x3ec39c,_0x19f722,_0x15fe5e,_0xd6278e,_0x313b18){var _0x5c8a7d=_0x25bd68+(_0x948fa&_0x19f722|_0x3ec39c&~_0x19f722)+_0x15fe5e+_0x313b18;return(_0x5c8a7d<<_0xd6278e|_0x5c8a7d>>>0x20-_0xd6278e)+_0x948fa;}function _0x3fbdd7(_0x4b0b59,_0x4906ff,_0x29e131,_0x1ad888,_0x38cd6f,_0x2457f2,_0x1072a5){var _0x2aa4e9=_0x4b0b59+(_0x4906ff^_0x29e131^_0x1ad888)+_0x38cd6f+_0x1072a5;return(_0x2aa4e9<<_0x2457f2|_0x2aa4e9>>>0x20-_0x2457f2)+_0x4906ff;}function _0x547cf5(_0x5214f9,_0x5cf8a9,_0x2a6eee,_0x39e496,_0x5c86e1,_0xee06aa,_0x177fe4){var _0x579308=_0x5214f9+(_0x2a6eee^(_0x5cf8a9|~_0x39e496))+_0x5c86e1+_0x177fe4;return(_0x579308<<_0xee06aa|_0x579308>>>0x20-_0xee06aa)+_0x5cf8a9;}_0x2d79af[_0x25b699(0x4e2)]=_0x4b1123[_0x25b699(0x2f6)](_0x8790c6),_0x2d79af['HmacMD5']=_0x4b1123['_createHmacHelper'](_0x8790c6);}(Math),_0x44fd49[_0x164e18(0x4e2)];}));}(ht)),ht[_0x20a98d(0x5dd)];}var _t={'exports':{}},ut={'exports':{}},Yt;function cr(){return Yt||(Yt=0x1,function(_0x2bcfc9,_0x3bd4a9){(function(_0x13b15b,_0x142c79){const _0x541b49=_0x5f2c;_0x2bcfc9[_0x541b49(0x5dd)]=_0x142c79(oe());}(X,function(_0xeb114){const _0xf92009=_0x5f2c;return(function(){const _0x163a46=_0x5f2c;var _0x1f8306=_0xeb114,_0x5e37dc=_0x1f8306[_0x163a46(0x18d)],_0xbdd5bf=_0x5e37dc[_0x163a46(0x2bc)],_0x4c9f1a=_0x5e37dc[_0x163a46(0x314)],_0xafeb03=_0x1f8306[_0x163a46(0x4bb)],_0x5cf4c0=[],_0x2bb2ed=_0xafeb03[_0x163a46(0x159)]=_0x4c9f1a[_0x163a46(0x3bb)]({'_doReset':function(){const _0x32bc12=_0x163a46;this[_0x32bc12(0x3f7)]=new _0xbdd5bf[(_0x32bc12(0x432))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]);},'_doProcessBlock':function(_0x3d9b8d,_0x559e27){const _0x2a1f10=_0x163a46;for(var _0x3c99f9=this[_0x2a1f10(0x3f7)][_0x2a1f10(0x155)],_0x530459=_0x3c99f9[0x0],_0x40bf66=_0x3c99f9[0x1],_0x409d24=_0x3c99f9[0x2],_0xcbf88c=_0x3c99f9[0x3],_0x593997=_0x3c99f9[0x4],_0x4f3864=0x0;_0x4f3864<0x50;_0x4f3864++){if(_0x4f3864<0x10)_0x5cf4c0[_0x4f3864]=_0x3d9b8d[_0x559e27+_0x4f3864]|0x0;else{var _0x238314=_0x5cf4c0[_0x4f3864-0x3]^_0x5cf4c0[_0x4f3864-0x8]^_0x5cf4c0[_0x4f3864-0xe]^_0x5cf4c0[_0x4f3864-0x10];_0x5cf4c0[_0x4f3864]=_0x238314<<0x1|_0x238314>>>0x1f;}var _0x3081b3=(_0x530459<<0x5|_0x530459>>>0x1b)+_0x593997+_0x5cf4c0[_0x4f3864];_0x4f3864<0x14?_0x3081b3+=(_0x40bf66&_0x409d24|~_0x40bf66&_0xcbf88c)+0x5a827999:_0x4f3864<0x28?_0x3081b3+=(_0x40bf66^_0x409d24^_0xcbf88c)+0x6ed9eba1:_0x4f3864<0x3c?_0x3081b3+=(_0x40bf66&_0x409d24|_0x40bf66&_0xcbf88c|_0x409d24&_0xcbf88c)-0x70e44324:_0x3081b3+=(_0x40bf66^_0x409d24^_0xcbf88c)-0x359d3e2a,_0x593997=_0xcbf88c,_0xcbf88c=_0x409d24,_0x409d24=_0x40bf66<<0x1e|_0x40bf66>>>0x2,_0x40bf66=_0x530459,_0x530459=_0x3081b3;}_0x3c99f9[0x0]=_0x3c99f9[0x0]+_0x530459|0x0,_0x3c99f9[0x1]=_0x3c99f9[0x1]+_0x40bf66|0x0,_0x3c99f9[0x2]=_0x3c99f9[0x2]+_0x409d24|0x0,_0x3c99f9[0x3]=_0x3c99f9[0x3]+_0xcbf88c|0x0,_0x3c99f9[0x4]=_0x3c99f9[0x4]+_0x593997|0x0;},'_doFinalize':function(){const _0xc28955=_0x163a46;var _0x1aa506=this['_data'],_0xb20b94=_0x1aa506[_0xc28955(0x155)],_0x4f1bb5=this[_0xc28955(0x46c)]*0x8,_0x3b57cc=_0x1aa506[_0xc28955(0x3a6)]*0x8;return _0xb20b94[_0x3b57cc>>>0x5]|=0x80<<0x18-_0x3b57cc%0x20,_0xb20b94[(_0x3b57cc+0x40>>>0x9<<0x4)+0xe]=Math[_0xc28955(0x1d0)](_0x4f1bb5/0x100000000),_0xb20b94[(_0x3b57cc+0x40>>>0x9<<0x4)+0xf]=_0x4f1bb5,_0x1aa506['sigBytes']=_0xb20b94[_0xc28955(0x530)]*0x4,this['_process'](),this['_hash'];},'clone':function(){const _0x57bd38=_0x163a46;var _0x107ae7=_0x4c9f1a[_0x57bd38(0x1c6)][_0x57bd38(0x20c)](this);return _0x107ae7[_0x57bd38(0x3f7)]=this[_0x57bd38(0x3f7)]['clone'](),_0x107ae7;}});_0x1f8306['SHA1']=_0x4c9f1a['_createHelper'](_0x2bb2ed),_0x1f8306['HmacSHA1']=_0x4c9f1a[_0x163a46(0x355)](_0x2bb2ed);}()),_0xeb114[_0xf92009(0x159)];}));}(ut)),ut['exports'];}var dt={'exports':{}},Kt;function lr(){const _0x1bd0a8=_0x4a9685;return Kt||(Kt=0x1,function(_0x28a8b6,_0x57a1fd){(function(_0x4d8a6c,_0x1abf8c){const _0x44cbeb=_0x5f2c;_0x28a8b6[_0x44cbeb(0x5dd)]=_0x1abf8c(oe());}(X,function(_0x84886b){(function(){const _0x580322=_0x5f2c;var _0x5e15f0=_0x84886b,_0x345ed1=_0x5e15f0[_0x580322(0x18d)],_0x48bd86=_0x345ed1[_0x580322(0x1bd)],_0x4319ed=_0x5e15f0[_0x580322(0x3e6)],_0x2c7c91=_0x4319ed[_0x580322(0x289)],_0x515b60=_0x5e15f0[_0x580322(0x4bb)];_0x515b60[_0x580322(0x52a)]=_0x48bd86['extend']({'init':function(_0x4b9e51,_0x499542){const _0x121fc2=_0x580322;_0x4b9e51=this[_0x121fc2(0x141)]=new _0x4b9e51['init'](),typeof _0x499542==_0x121fc2(0x3b2)&&(_0x499542=_0x2c7c91[_0x121fc2(0x2af)](_0x499542));var _0x1e16d9=_0x4b9e51['blockSize'],_0x430db9=_0x1e16d9*0x4;_0x499542[_0x121fc2(0x3a6)]>_0x430db9&&(_0x499542=_0x4b9e51[_0x121fc2(0x36a)](_0x499542)),_0x499542['clamp']();for(var _0x4a2483=this[_0x121fc2(0x4a6)]=_0x499542['clone'](),_0x303fdb=this['_iKey']=_0x499542['clone'](),_0x1028bd=_0x4a2483[_0x121fc2(0x155)],_0x27b6a2=_0x303fdb[_0x121fc2(0x155)],_0x34ff0b=0x0;_0x34ff0b<_0x1e16d9;_0x34ff0b++)_0x1028bd[_0x34ff0b]^=0x5c5c5c5c,_0x27b6a2[_0x34ff0b]^=0x36363636;_0x4a2483[_0x121fc2(0x3a6)]=_0x303fdb[_0x121fc2(0x3a6)]=_0x430db9,this[_0x121fc2(0x149)]();},'reset':function(){const _0x1eee22=_0x580322;var _0x3f87bc=this[_0x1eee22(0x141)];_0x3f87bc['reset'](),_0x3f87bc['update'](this['_iKey']);},'update':function(_0x81d94b){const _0x2b5680=_0x580322;return this[_0x2b5680(0x141)][_0x2b5680(0x382)](_0x81d94b),this;},'finalize':function(_0x9ee063){const _0x203845=_0x580322;var _0x579b8f=this[_0x203845(0x141)],_0x464c23=_0x579b8f[_0x203845(0x36a)](_0x9ee063);_0x579b8f[_0x203845(0x149)]();var _0x3353d8=_0x579b8f[_0x203845(0x36a)](this[_0x203845(0x4a6)][_0x203845(0x1c6)]()['concat'](_0x464c23));return _0x3353d8;}});}());}));}(dt)),dt[_0x1bd0a8(0x5dd)];}var qt;function Dn(){const _0x2fb9c9=_0x4a9685;return qt||(qt=0x1,function(_0x5cafe9,_0x25d2fa){(function(_0x41a392,_0x15b5c4,_0xa984b3){_0x5cafe9['exports']=_0x15b5c4(oe(),cr(),lr());}(X,function(_0x3d94f9){const _0x3c1ea1=_0x5f2c;return(function(){const _0x184440=_0x5f2c;var _0x18a5c2=_0x3d94f9,_0x3bbd12=_0x18a5c2[_0x184440(0x18d)],_0x5d8954=_0x3bbd12['Base'],_0x3af7a8=_0x3bbd12['WordArray'],_0x27e6cd=_0x18a5c2[_0x184440(0x4bb)],_0xfbe86c=_0x27e6cd['MD5'],_0x4a2ba3=_0x27e6cd['EvpKDF']=_0x5d8954[_0x184440(0x3bb)]({'cfg':_0x5d8954['extend']({'keySize':0x80/0x20,'hasher':_0xfbe86c,'iterations':0x1}),'init':function(_0x4a53f4){const _0x4dcea1=_0x184440;this[_0x4dcea1(0x541)]=this['cfg'][_0x4dcea1(0x3bb)](_0x4a53f4);},'compute':function(_0x3b9615,_0x413107){const _0x4af8bf=_0x184440;for(var _0x392fb2,_0x5531a2=this[_0x4af8bf(0x541)],_0x4d35dc=_0x5531a2[_0x4af8bf(0x156)][_0x4af8bf(0x4c5)](),_0x49cd2d=_0x3af7a8[_0x4af8bf(0x4c5)](),_0x2ca635=_0x49cd2d[_0x4af8bf(0x155)],_0x1b6fc7=_0x5531a2[_0x4af8bf(0x3f1)],_0x38625c=_0x5531a2['iterations'];_0x2ca635['length']<_0x1b6fc7;){_0x392fb2&&_0x4d35dc[_0x4af8bf(0x382)](_0x392fb2),_0x392fb2=_0x4d35dc['update'](_0x3b9615)[_0x4af8bf(0x36a)](_0x413107),_0x4d35dc['reset']();for(var _0x562a15=0x1;_0x562a15<_0x38625c;_0x562a15++)_0x392fb2=_0x4d35dc[_0x4af8bf(0x36a)](_0x392fb2),_0x4d35dc['reset']();_0x49cd2d['concat'](_0x392fb2);}return _0x49cd2d[_0x4af8bf(0x3a6)]=_0x1b6fc7*0x4,_0x49cd2d;}});_0x18a5c2['EvpKDF']=function(_0x2f8266,_0x2d0e28,_0x36f4fd){const _0xe8ed72=_0x184440;return _0x4a2ba3[_0xe8ed72(0x4c5)](_0x36f4fd)['compute'](_0x2f8266,_0x2d0e28);};}()),_0x3d94f9[_0x3c1ea1(0x1a7)];}));}(_t)),_t[_0x2fb9c9(0x5dd)];}var ft={'exports':{}},zt;function wn(){const _0x282f53=_0x4a9685;return zt||(zt=0x1,function(_0x2f1f63,_0x232588){(function(_0x2e5627,_0x4f37a3,_0x4cf20b){const _0x222c24=_0x5f2c;_0x2f1f63[_0x222c24(0x5dd)]=_0x4f37a3(oe(),Dn());}(X,function(_0x73392e){const _0x546342=_0x5f2c;_0x73392e[_0x546342(0x18d)]['Cipher']||function(_0x2d756a){const _0x387a19=_0x546342;var _0x1e5b0a=_0x73392e,_0x380cc3=_0x1e5b0a[_0x387a19(0x18d)],_0x5aaf9b=_0x380cc3[_0x387a19(0x1bd)],_0x5caa13=_0x380cc3[_0x387a19(0x2bc)],_0x103b8a=_0x380cc3[_0x387a19(0x1ac)],_0x185711=_0x1e5b0a[_0x387a19(0x3e6)];_0x185711['Utf8'];var _0x4a505d=_0x185711['Base64'],_0x37672c=_0x1e5b0a['algo'],_0x3a7149=_0x37672c[_0x387a19(0x1a7)],_0x1379cf=_0x380cc3[_0x387a19(0x1df)]=_0x103b8a[_0x387a19(0x3bb)]({'cfg':_0x5aaf9b[_0x387a19(0x3bb)](),'createEncryptor':function(_0x5e83f6,_0x3ab844){const _0x31de89=_0x387a19;return this[_0x31de89(0x4c5)](this[_0x31de89(0x331)],_0x5e83f6,_0x3ab844);},'createDecryptor':function(_0x4910c3,_0x38926f){const _0x51f064=_0x387a19;return this['create'](this[_0x51f064(0x311)],_0x4910c3,_0x38926f);},'init':function(_0x34c37c,_0x373a68,_0x114dfc){const _0x50756f=_0x387a19;this['cfg']=this[_0x50756f(0x541)]['extend'](_0x114dfc),this[_0x50756f(0x302)]=_0x34c37c,this['_key']=_0x373a68,this[_0x50756f(0x149)]();},'reset':function(){const _0xb3f85a=_0x387a19;_0x103b8a[_0xb3f85a(0x149)][_0xb3f85a(0x20c)](this),this[_0xb3f85a(0x20f)]();},'process':function(_0x37bf17){const _0x713b42=_0x387a19;return this[_0x713b42(0x34b)](_0x37bf17),this[_0x713b42(0x380)]();},'finalize':function(_0x196006){const _0x461a41=_0x387a19;_0x196006&&this[_0x461a41(0x34b)](_0x196006);var _0x3d8434=this['_doFinalize']();return _0x3d8434;},'keySize':0x80/0x20,'ivSize':0x80/0x20,'_ENC_XFORM_MODE':0x1,'_DEC_XFORM_MODE':0x2,'_createHelper':(function(){function _0x820f73(_0x21efd2){const _0x5f1a7b=_0x5f2c;return typeof _0x21efd2==_0x5f1a7b(0x3b2)?_0x2d31a6:_0x53b80d;}return function(_0xc60f01){return{'encrypt':function(_0xcfeb54,_0x4b239a,_0xf823fe){const _0x29fb61=_0x5f2c;return _0x820f73(_0x4b239a)[_0x29fb61(0x4e4)](_0xc60f01,_0xcfeb54,_0x4b239a,_0xf823fe);},'decrypt':function(_0x21ebf2,_0x46db9a,_0x3a71cb){return _0x820f73(_0x46db9a)['decrypt'](_0xc60f01,_0x21ebf2,_0x46db9a,_0x3a71cb);}};};}())});_0x380cc3[_0x387a19(0x4e3)]=_0x1379cf[_0x387a19(0x3bb)]({'_doFinalize':function(){const _0x2ae4e5=_0x387a19;var _0x404e27=this[_0x2ae4e5(0x380)](!0x0);return _0x404e27;},'blockSize':0x1});var _0x5e6787=_0x1e5b0a[_0x387a19(0x553)]={},_0x562035=_0x380cc3[_0x387a19(0x3ad)]=_0x5aaf9b['extend']({'createEncryptor':function(_0x2ebf42,_0x1fd59a){const _0x1f1c59=_0x387a19;return this[_0x1f1c59(0x35c)][_0x1f1c59(0x4c5)](_0x2ebf42,_0x1fd59a);},'createDecryptor':function(_0x711138,_0x384924){const _0x57e38e=_0x387a19;return this[_0x57e38e(0x1ee)][_0x57e38e(0x4c5)](_0x711138,_0x384924);},'init':function(_0x2fbf07,_0x83a969){const _0x2a4049=_0x387a19;this[_0x2a4049(0x1dc)]=_0x2fbf07,this[_0x2a4049(0x3d7)]=_0x83a969;}}),_0x44277=_0x5e6787[_0x387a19(0x21d)]=(function(){const _0x5cae72=_0x387a19;var _0x5deeea=_0x562035[_0x5cae72(0x3bb)]();_0x5deeea[_0x5cae72(0x35c)]=_0x5deeea[_0x5cae72(0x3bb)]({'processBlock':function(_0x340285,_0x5e78e4){const _0x4acdc9=_0x5cae72;var _0x159d2d=this[_0x4acdc9(0x1dc)],_0x400cbf=_0x159d2d[_0x4acdc9(0x502)];_0x1c3b25[_0x4acdc9(0x20c)](this,_0x340285,_0x5e78e4,_0x400cbf),_0x159d2d[_0x4acdc9(0x2f5)](_0x340285,_0x5e78e4),this[_0x4acdc9(0x561)]=_0x340285[_0x4acdc9(0x2f2)](_0x5e78e4,_0x5e78e4+_0x400cbf);}}),_0x5deeea[_0x5cae72(0x1ee)]=_0x5deeea[_0x5cae72(0x3bb)]({'processBlock':function(_0x4e5f09,_0xae41a6){const _0x413442=_0x5cae72;var _0x25bd34=this[_0x413442(0x1dc)],_0x1d080f=_0x25bd34['blockSize'],_0x3086df=_0x4e5f09['slice'](_0xae41a6,_0xae41a6+_0x1d080f);_0x25bd34[_0x413442(0x40b)](_0x4e5f09,_0xae41a6),_0x1c3b25[_0x413442(0x20c)](this,_0x4e5f09,_0xae41a6,_0x1d080f),this['_prevBlock']=_0x3086df;}});function _0x1c3b25(_0x4e464d,_0x85ea5c,_0x44cd40){const _0x25424e=_0x5cae72;var _0x1c9f2e,_0x4968a4=this[_0x25424e(0x3d7)];_0x4968a4?(_0x1c9f2e=_0x4968a4,this[_0x25424e(0x3d7)]=_0x2d756a):_0x1c9f2e=this[_0x25424e(0x561)];for(var _0x50cb1f=0x0;_0x50cb1f<_0x44cd40;_0x50cb1f++)_0x4e464d[_0x85ea5c+_0x50cb1f]^=_0x1c9f2e[_0x50cb1f];}return _0x5deeea;}()),_0x5eb087=_0x1e5b0a[_0x387a19(0x5b1)]={},_0x57ea9f=_0x5eb087['Pkcs7']={'pad':function(_0x179095,_0x2a3259){const _0x60c97f=_0x387a19;for(var _0x2db20f=_0x2a3259*0x4,_0xe3ece9=_0x2db20f-_0x179095[_0x60c97f(0x3a6)]%_0x2db20f,_0x2005bf=_0xe3ece9<<0x18|_0xe3ece9<<0x10|_0xe3ece9<<0x8|_0xe3ece9,_0x242dd2=[],_0x2c55bd=0x0;_0x2c55bd<_0xe3ece9;_0x2c55bd+=0x4)_0x242dd2['push'](_0x2005bf);var _0x2d4645=_0x5caa13[_0x60c97f(0x4c5)](_0x242dd2,_0xe3ece9);_0x179095[_0x60c97f(0x407)](_0x2d4645);},'unpad':function(_0x34300b){const _0x231f2d=_0x387a19;var _0x353e04=_0x34300b[_0x231f2d(0x155)][_0x34300b['sigBytes']-0x1>>>0x2]&0xff;_0x34300b[_0x231f2d(0x3a6)]-=_0x353e04;}};_0x380cc3[_0x387a19(0x37f)]=_0x1379cf[_0x387a19(0x3bb)]({'cfg':_0x1379cf[_0x387a19(0x541)][_0x387a19(0x3bb)]({'mode':_0x44277,'padding':_0x57ea9f}),'reset':function(){const _0x336508=_0x387a19;var _0x227447;_0x1379cf['reset'][_0x336508(0x20c)](this);var _0x40effa=this[_0x336508(0x541)],_0x403706=_0x40effa['iv'],_0x43d2e5=_0x40effa[_0x336508(0x553)];this['_xformMode']==this[_0x336508(0x331)]?_0x227447=_0x43d2e5[_0x336508(0x50c)]:(_0x227447=_0x43d2e5[_0x336508(0x455)],this['_minBufferSize']=0x1),this[_0x336508(0x3db)]&&this[_0x336508(0x3db)]['__creator']==_0x227447?this[_0x336508(0x3db)][_0x336508(0x432)](this,_0x403706&&_0x403706['words']):(this['_mode']=_0x227447[_0x336508(0x20c)](_0x43d2e5,this,_0x403706&&_0x403706[_0x336508(0x155)]),this[_0x336508(0x3db)][_0x336508(0x412)]=_0x227447);},'_doProcessBlock':function(_0x1649cc,_0x1f326f){const _0xe8cb6b=_0x387a19;this['_mode'][_0xe8cb6b(0x49d)](_0x1649cc,_0x1f326f);},'_doFinalize':function(){const _0x21cd2e=_0x387a19;var _0x5ad09b,_0x4d439a=this[_0x21cd2e(0x541)][_0x21cd2e(0x22e)];return this[_0x21cd2e(0x302)]==this['_ENC_XFORM_MODE']?(_0x4d439a['pad'](this['_data'],this[_0x21cd2e(0x502)]),_0x5ad09b=this[_0x21cd2e(0x380)](!0x0)):(_0x5ad09b=this[_0x21cd2e(0x380)](!0x0),_0x4d439a['unpad'](_0x5ad09b)),_0x5ad09b;},'blockSize':0x80/0x20});var _0x3d67d5=_0x380cc3[_0x387a19(0x37d)]=_0x5aaf9b['extend']({'init':function(_0x447257){const _0x245950=_0x387a19;this[_0x245950(0x57f)](_0x447257);},'toString':function(_0x449218){const _0x1e5111=_0x387a19;return(_0x449218||this[_0x1e5111(0x5b7)])[_0x1e5111(0x2d1)](this);}}),_0x2ead2e=_0x1e5b0a[_0x387a19(0x2be)]={},_0x3ea591=_0x2ead2e[_0x387a19(0x21c)]={'stringify':function(_0x1b0473){const _0x4846e2=_0x387a19;var _0x4c1dd1,_0x12f063=_0x1b0473[_0x4846e2(0x591)],_0x2c6f9f=_0x1b0473[_0x4846e2(0x5f5)];return _0x2c6f9f?_0x4c1dd1=_0x5caa13['create']([0x53616c74,0x65645f5f])['concat'](_0x2c6f9f)['concat'](_0x12f063):_0x4c1dd1=_0x12f063,_0x4c1dd1['toString'](_0x4a505d);},'parse':function(_0x97b230){const _0x243fda=_0x387a19;var _0x39c6d9,_0x2f41e9=_0x4a505d[_0x243fda(0x2af)](_0x97b230),_0x5bd4f5=_0x2f41e9[_0x243fda(0x155)];return _0x5bd4f5[0x0]==0x53616c74&&_0x5bd4f5[0x1]==0x65645f5f&&(_0x39c6d9=_0x5caa13['create'](_0x5bd4f5[_0x243fda(0x2f2)](0x2,0x4)),_0x5bd4f5[_0x243fda(0x1e2)](0x0,0x4),_0x2f41e9['sigBytes']-=0x10),_0x3d67d5[_0x243fda(0x4c5)]({'ciphertext':_0x2f41e9,'salt':_0x39c6d9});}},_0x53b80d=_0x380cc3[_0x387a19(0x39d)]=_0x5aaf9b[_0x387a19(0x3bb)]({'cfg':_0x5aaf9b['extend']({'format':_0x3ea591}),'encrypt':function(_0x4ab7df,_0x36f219,_0x2d52bc,_0xeb0a0){const _0x2d30cf=_0x387a19;_0xeb0a0=this[_0x2d30cf(0x541)][_0x2d30cf(0x3bb)](_0xeb0a0);var _0x2405e9=_0x4ab7df[_0x2d30cf(0x50c)](_0x2d52bc,_0xeb0a0),_0x421ebc=_0x2405e9['finalize'](_0x36f219),_0x523dd9=_0x2405e9[_0x2d30cf(0x541)];return _0x3d67d5[_0x2d30cf(0x4c5)]({'ciphertext':_0x421ebc,'key':_0x2d52bc,'iv':_0x523dd9['iv'],'algorithm':_0x4ab7df,'mode':_0x523dd9[_0x2d30cf(0x553)],'padding':_0x523dd9['padding'],'blockSize':_0x4ab7df['blockSize'],'formatter':_0xeb0a0[_0x2d30cf(0x2be)]});},'decrypt':function(_0x28a459,_0x8f64f2,_0x5cfcb9,_0x583e5e){const _0x415481=_0x387a19;_0x583e5e=this[_0x415481(0x541)]['extend'](_0x583e5e),_0x8f64f2=this['_parse'](_0x8f64f2,_0x583e5e['format']);var _0x34cfad=_0x28a459[_0x415481(0x455)](_0x5cfcb9,_0x583e5e)['finalize'](_0x8f64f2['ciphertext']);return _0x34cfad;},'_parse':function(_0x381be1,_0x38db67){const _0x259f86=_0x387a19;return typeof _0x381be1==_0x259f86(0x3b2)?_0x38db67[_0x259f86(0x2af)](_0x381be1,this):_0x381be1;}}),_0x51f750=_0x1e5b0a['kdf']={},_0x56f262=_0x51f750['OpenSSL']={'execute':function(_0x31c94f,_0x764ccb,_0x4a7922,_0xddb030,_0x3cbacf){const _0x52bb18=_0x387a19;if(_0xddb030||(_0xddb030=_0x5caa13[_0x52bb18(0x588)](0x40/0x8)),_0x3cbacf)var _0x217cee=_0x3a7149[_0x52bb18(0x4c5)]({'keySize':_0x764ccb+_0x4a7922,'hasher':_0x3cbacf})[_0x52bb18(0x192)](_0x31c94f,_0xddb030);else var _0x217cee=_0x3a7149['create']({'keySize':_0x764ccb+_0x4a7922})[_0x52bb18(0x192)](_0x31c94f,_0xddb030);var _0x5ebb0c=_0x5caa13[_0x52bb18(0x4c5)](_0x217cee[_0x52bb18(0x155)][_0x52bb18(0x2f2)](_0x764ccb),_0x4a7922*0x4);return _0x217cee[_0x52bb18(0x3a6)]=_0x764ccb*0x4,_0x3d67d5[_0x52bb18(0x4c5)]({'key':_0x217cee,'iv':_0x5ebb0c,'salt':_0xddb030});}},_0x2d31a6=_0x380cc3[_0x387a19(0x507)]=_0x53b80d[_0x387a19(0x3bb)]({'cfg':_0x53b80d[_0x387a19(0x541)][_0x387a19(0x3bb)]({'kdf':_0x56f262}),'encrypt':function(_0x36b88a,_0x309e0c,_0x4fad00,_0x140c7b){const _0x33adbb=_0x387a19;_0x140c7b=this[_0x33adbb(0x541)][_0x33adbb(0x3bb)](_0x140c7b);var _0x31053a=_0x140c7b['kdf'][_0x33adbb(0x39a)](_0x4fad00,_0x36b88a[_0x33adbb(0x3f1)],_0x36b88a[_0x33adbb(0x313)],_0x140c7b[_0x33adbb(0x5f5)],_0x140c7b[_0x33adbb(0x156)]);_0x140c7b['iv']=_0x31053a['iv'];var _0x6220da=_0x53b80d['encrypt'][_0x33adbb(0x20c)](this,_0x36b88a,_0x309e0c,_0x31053a[_0x33adbb(0x303)],_0x140c7b);return _0x6220da['mixIn'](_0x31053a),_0x6220da;},'decrypt':function(_0x3c8bc0,_0xd0ac71,_0x2c3721,_0x46a4f1){const _0x23467c=_0x387a19;_0x46a4f1=this['cfg']['extend'](_0x46a4f1),_0xd0ac71=this[_0x23467c(0x4d5)](_0xd0ac71,_0x46a4f1[_0x23467c(0x2be)]);var _0x52ccd1=_0x46a4f1[_0x23467c(0x4dc)]['execute'](_0x2c3721,_0x3c8bc0[_0x23467c(0x3f1)],_0x3c8bc0[_0x23467c(0x313)],_0xd0ac71[_0x23467c(0x5f5)],_0x46a4f1['hasher']);_0x46a4f1['iv']=_0x52ccd1['iv'];var _0x1f1d18=_0x53b80d[_0x23467c(0x4cb)][_0x23467c(0x20c)](this,_0x3c8bc0,_0xd0ac71,_0x52ccd1[_0x23467c(0x303)],_0x46a4f1);return _0x1f1d18;}});}();}));}(ft)),ft[_0x282f53(0x5dd)];}(function(_0x5a3f30,_0x1167c5){(function(_0x5a02c5,_0x506710,_0x1ad8ea){_0x5a3f30['exports']=_0x506710(oe(),On(),ar(),Dn(),wn());}(X,function(_0x37537c){const _0x46a34e=_0x5f2c;return(function(){const _0x4e1ef1=_0x5f2c;var _0x16ee4a=_0x37537c,_0x167850=_0x16ee4a[_0x4e1ef1(0x18d)],_0x5296df=_0x167850[_0x4e1ef1(0x37f)],_0x57f608=_0x16ee4a[_0x4e1ef1(0x4bb)],_0xbf0193=[],_0x43e1ea=[],_0x3c3462=[],_0x213f3c=[],_0x5b8696=[],_0x5089b1=[],_0x955351=[],_0x188899=[],_0x55e119=[],_0x21cc1a=[];(function(){for(var _0x10247c=[],_0x3e6359=0x0;_0x3e6359<0x100;_0x3e6359++)_0x3e6359<0x80?_0x10247c[_0x3e6359]=_0x3e6359<<0x1:_0x10247c[_0x3e6359]=_0x3e6359<<0x1^0x11b;for(var _0x5be012=0x0,_0x3554d7=0x0,_0x3e6359=0x0;_0x3e6359<0x100;_0x3e6359++){var _0x1629fc=_0x3554d7^_0x3554d7<<0x1^_0x3554d7<<0x2^_0x3554d7<<0x3^_0x3554d7<<0x4;_0x1629fc=_0x1629fc>>>0x8^_0x1629fc&0xff^0x63,_0xbf0193[_0x5be012]=_0x1629fc,_0x43e1ea[_0x1629fc]=_0x5be012;var _0x359d71=_0x10247c[_0x5be012],_0x362857=_0x10247c[_0x359d71],_0x2352f1=_0x10247c[_0x362857],_0x5c4371=_0x10247c[_0x1629fc]*0x101^_0x1629fc*0x1010100;_0x3c3462[_0x5be012]=_0x5c4371<<0x18|_0x5c4371>>>0x8,_0x213f3c[_0x5be012]=_0x5c4371<<0x10|_0x5c4371>>>0x10,_0x5b8696[_0x5be012]=_0x5c4371<<0x8|_0x5c4371>>>0x18,_0x5089b1[_0x5be012]=_0x5c4371;var _0x5c4371=_0x2352f1*0x1010101^_0x362857*0x10001^_0x359d71*0x101^_0x5be012*0x1010100;_0x955351[_0x1629fc]=_0x5c4371<<0x18|_0x5c4371>>>0x8,_0x188899[_0x1629fc]=_0x5c4371<<0x10|_0x5c4371>>>0x10,_0x55e119[_0x1629fc]=_0x5c4371<<0x8|_0x5c4371>>>0x18,_0x21cc1a[_0x1629fc]=_0x5c4371,_0x5be012?(_0x5be012=_0x359d71^_0x10247c[_0x10247c[_0x10247c[_0x2352f1^_0x359d71]]],_0x3554d7^=_0x10247c[_0x10247c[_0x3554d7]]):_0x5be012=_0x3554d7=0x1;}}());var _0x1ccca5=[0x0,0x1,0x2,0x4,0x8,0x10,0x20,0x40,0x80,0x1b,0x36],_0x111a5a=_0x57f608[_0x4e1ef1(0x222)]=_0x5296df[_0x4e1ef1(0x3bb)]({'_doReset':function(){const _0x39e372=_0x4e1ef1;var _0x3daa8f;if(!(this[_0x39e372(0x49f)]&&this[_0x39e372(0x5c0)]===this[_0x39e372(0x51a)])){for(var _0x5078a8=this[_0x39e372(0x5c0)]=this[_0x39e372(0x51a)],_0x306367=_0x5078a8[_0x39e372(0x155)],_0x246d47=_0x5078a8[_0x39e372(0x3a6)]/0x4,_0x415c2f=this[_0x39e372(0x49f)]=_0x246d47+0x6,_0x5dc488=(_0x415c2f+0x1)*0x4,_0x416a3a=this[_0x39e372(0x309)]=[],_0x52a99c=0x0;_0x52a99c<_0x5dc488;_0x52a99c++)_0x52a99c<_0x246d47?_0x416a3a[_0x52a99c]=_0x306367[_0x52a99c]:(_0x3daa8f=_0x416a3a[_0x52a99c-0x1],_0x52a99c%_0x246d47?_0x246d47>0x6&&_0x52a99c%_0x246d47==0x4&&(_0x3daa8f=_0xbf0193[_0x3daa8f>>>0x18]<<0x18|_0xbf0193[_0x3daa8f>>>0x10&0xff]<<0x10|_0xbf0193[_0x3daa8f>>>0x8&0xff]<<0x8|_0xbf0193[_0x3daa8f&0xff]):(_0x3daa8f=_0x3daa8f<<0x8|_0x3daa8f>>>0x18,_0x3daa8f=_0xbf0193[_0x3daa8f>>>0x18]<<0x18|_0xbf0193[_0x3daa8f>>>0x10&0xff]<<0x10|_0xbf0193[_0x3daa8f>>>0x8&0xff]<<0x8|_0xbf0193[_0x3daa8f&0xff],_0x3daa8f^=_0x1ccca5[_0x52a99c/_0x246d47|0x0]<<0x18),_0x416a3a[_0x52a99c]=_0x416a3a[_0x52a99c-_0x246d47]^_0x3daa8f);for(var _0x289239=this[_0x39e372(0x54e)]=[],_0x2191e7=0x0;_0x2191e7<_0x5dc488;_0x2191e7++){var _0x52a99c=_0x5dc488-_0x2191e7;if(_0x2191e7%0x4)var _0x3daa8f=_0x416a3a[_0x52a99c];else var _0x3daa8f=_0x416a3a[_0x52a99c-0x4];_0x2191e7<0x4||_0x52a99c<=0x4?_0x289239[_0x2191e7]=_0x3daa8f:_0x289239[_0x2191e7]=_0x955351[_0xbf0193[_0x3daa8f>>>0x18]]^_0x188899[_0xbf0193[_0x3daa8f>>>0x10&0xff]]^_0x55e119[_0xbf0193[_0x3daa8f>>>0x8&0xff]]^_0x21cc1a[_0xbf0193[_0x3daa8f&0xff]];}}},'encryptBlock':function(_0x282e71,_0x5c55f5){const _0x1d40a1=_0x4e1ef1;this[_0x1d40a1(0x476)](_0x282e71,_0x5c55f5,this[_0x1d40a1(0x309)],_0x3c3462,_0x213f3c,_0x5b8696,_0x5089b1,_0xbf0193);},'decryptBlock':function(_0x8978ec,_0x448843){const _0x560c9e=_0x4e1ef1;var _0x2ffb3b=_0x8978ec[_0x448843+0x1];_0x8978ec[_0x448843+0x1]=_0x8978ec[_0x448843+0x3],_0x8978ec[_0x448843+0x3]=_0x2ffb3b,this[_0x560c9e(0x476)](_0x8978ec,_0x448843,this[_0x560c9e(0x54e)],_0x955351,_0x188899,_0x55e119,_0x21cc1a,_0x43e1ea);var _0x2ffb3b=_0x8978ec[_0x448843+0x1];_0x8978ec[_0x448843+0x1]=_0x8978ec[_0x448843+0x3],_0x8978ec[_0x448843+0x3]=_0x2ffb3b;},'_doCryptBlock':function(_0x224260,_0x5ce112,_0x4e2bb8,_0x4cae06,_0x2cccb2,_0x5a99f2,_0x570f8e,_0x5e310b){const _0x350903=_0x4e1ef1;for(var _0x37b8ac=this[_0x350903(0x49f)],_0x2292f8=_0x224260[_0x5ce112]^_0x4e2bb8[0x0],_0x387970=_0x224260[_0x5ce112+0x1]^_0x4e2bb8[0x1],_0x257a5e=_0x224260[_0x5ce112+0x2]^_0x4e2bb8[0x2],_0x197fb=_0x224260[_0x5ce112+0x3]^_0x4e2bb8[0x3],_0x5f2a66=0x4,_0x204b67=0x1;_0x204b67<_0x37b8ac;_0x204b67++){var _0x5a02bc=_0x4cae06[_0x2292f8>>>0x18]^_0x2cccb2[_0x387970>>>0x10&0xff]^_0x5a99f2[_0x257a5e>>>0x8&0xff]^_0x570f8e[_0x197fb&0xff]^_0x4e2bb8[_0x5f2a66++],_0x3fb048=_0x4cae06[_0x387970>>>0x18]^_0x2cccb2[_0x257a5e>>>0x10&0xff]^_0x5a99f2[_0x197fb>>>0x8&0xff]^_0x570f8e[_0x2292f8&0xff]^_0x4e2bb8[_0x5f2a66++],_0x3f8267=_0x4cae06[_0x257a5e>>>0x18]^_0x2cccb2[_0x197fb>>>0x10&0xff]^_0x5a99f2[_0x2292f8>>>0x8&0xff]^_0x570f8e[_0x387970&0xff]^_0x4e2bb8[_0x5f2a66++],_0x1a4ca5=_0x4cae06[_0x197fb>>>0x18]^_0x2cccb2[_0x2292f8>>>0x10&0xff]^_0x5a99f2[_0x387970>>>0x8&0xff]^_0x570f8e[_0x257a5e&0xff]^_0x4e2bb8[_0x5f2a66++];_0x2292f8=_0x5a02bc,_0x387970=_0x3fb048,_0x257a5e=_0x3f8267,_0x197fb=_0x1a4ca5;}var _0x5a02bc=(_0x5e310b[_0x2292f8>>>0x18]<<0x18|_0x5e310b[_0x387970>>>0x10&0xff]<<0x10|_0x5e310b[_0x257a5e>>>0x8&0xff]<<0x8|_0x5e310b[_0x197fb&0xff])^_0x4e2bb8[_0x5f2a66++],_0x3fb048=(_0x5e310b[_0x387970>>>0x18]<<0x18|_0x5e310b[_0x257a5e>>>0x10&0xff]<<0x10|_0x5e310b[_0x197fb>>>0x8&0xff]<<0x8|_0x5e310b[_0x2292f8&0xff])^_0x4e2bb8[_0x5f2a66++],_0x3f8267=(_0x5e310b[_0x257a5e>>>0x18]<<0x18|_0x5e310b[_0x197fb>>>0x10&0xff]<<0x10|_0x5e310b[_0x2292f8>>>0x8&0xff]<<0x8|_0x5e310b[_0x387970&0xff])^_0x4e2bb8[_0x5f2a66++],_0x1a4ca5=(_0x5e310b[_0x197fb>>>0x18]<<0x18|_0x5e310b[_0x2292f8>>>0x10&0xff]<<0x10|_0x5e310b[_0x387970>>>0x8&0xff]<<0x8|_0x5e310b[_0x257a5e&0xff])^_0x4e2bb8[_0x5f2a66++];_0x224260[_0x5ce112]=_0x5a02bc,_0x224260[_0x5ce112+0x1]=_0x3fb048,_0x224260[_0x5ce112+0x2]=_0x3f8267,_0x224260[_0x5ce112+0x3]=_0x1a4ca5;},'keySize':0x100/0x20});_0x16ee4a[_0x4e1ef1(0x222)]=_0x5296df['_createHelper'](_0x111a5a);}()),_0x37537c[_0x46a34e(0x222)];}));}(yn));var hr=yn[_0x4a9685(0x5dd)];const _r=xe(hr);var ur=On();const Xt=xe(ur);var Pn={'exports':{}};(function(_0x58973c,_0x1e0edd){(function(_0x507c9e,_0x261515){const _0xeaa695=_0x5f2c;_0x58973c[_0xeaa695(0x5dd)]=_0x261515(oe());}(X,function(_0x54f5e4){const _0x11abe7=_0x5f2c;return _0x54f5e4[_0x11abe7(0x3e6)][_0x11abe7(0x289)];}));}(Pn));var dr=Pn['exports'];const fr=xe(dr);var Un={'exports':{}};(function(_0x311bb0,_0x1ab2e7){(function(_0x4856e3,_0x15094b){const _0x5df7ef=_0x5f2c;_0x311bb0[_0x5df7ef(0x5dd)]=_0x15094b(oe());}(X,function(_0x26467e){const _0x22d87f=_0x5f2c;return(function(){const _0x4b47b8=_0x5f2c;if(typeof ArrayBuffer=='function'){var _0x2638b8=_0x26467e,_0x4796e0=_0x2638b8[_0x4b47b8(0x18d)],_0x1eae6b=_0x4796e0[_0x4b47b8(0x2bc)],_0x1e136e=_0x1eae6b[_0x4b47b8(0x432)],_0x457ea4=_0x1eae6b[_0x4b47b8(0x432)]=function(_0x95e098){const _0xca9a8f=_0x4b47b8;if(_0x95e098 instanceof ArrayBuffer&&(_0x95e098=new Uint8Array(_0x95e098)),(_0x95e098 instanceof Int8Array||typeof Uint8ClampedArray<'u'&&_0x95e098 instanceof Uint8ClampedArray||_0x95e098 instanceof Int16Array||_0x95e098 instanceof Uint16Array||_0x95e098 instanceof Int32Array||_0x95e098 instanceof Uint32Array||_0x95e098 instanceof Float32Array||_0x95e098 instanceof Float64Array)&&(_0x95e098=new Uint8Array(_0x95e098[_0xca9a8f(0x13b)],_0x95e098['byteOffset'],_0x95e098[_0xca9a8f(0x13c)])),_0x95e098 instanceof Uint8Array){for(var _0x657b9c=_0x95e098['byteLength'],_0x1e3024=[],_0x632d65=0x0;_0x632d65<_0x657b9c;_0x632d65++)_0x1e3024[_0x632d65>>>0x2]|=_0x95e098[_0x632d65]<<0x18-_0x632d65%0x4*0x8;_0x1e136e[_0xca9a8f(0x20c)](this,_0x1e3024,_0x657b9c);}else _0x1e136e['apply'](this,arguments);};_0x457ea4['prototype']=_0x1eae6b;}}()),_0x26467e[_0x22d87f(0x18d)][_0x22d87f(0x2bc)];}));}(Un));var vr=Un['exports'];const mr=xe(vr);var Mn={'exports':{}};(function(_0x4ec7fe,_0x5974ad){(function(_0x5e0510,_0x39c3fe,_0x232ac0){const _0x1339cd=_0x5f2c;_0x4ec7fe[_0x1339cd(0x5dd)]=_0x39c3fe(oe(),wn());}(X,function(_0x4175cd){const _0x1a7460=_0x5f2c;return _0x4175cd[_0x1a7460(0x5b1)][_0x1a7460(0x207)]={'pad':function(){},'unpad':function(){}},_0x4175cd['pad']['NoPadding'];}));}(Mn));var Sr=Mn[_0x4a9685(0x5dd)];const pr=xe(Sr);function gr(_0x86df85,_0x38e9c1){const _0x2c97ba=_0x38e9c1-_0x86df85['length']%_0x38e9c1,_0x1be686=String['fromCharCode'](_0x2c97ba)['repeat'](_0x2c97ba);return _0x86df85+_0x1be686;}function Ir(_0x1b7773,_0x439ab5){const _0x40bb61=_0x4a9685,_0x5504db=mr[_0x40bb61(0x588)](0x10),_0x368e96=gr(_0x1b7773,0x10),_0x182b66=_r[_0x40bb61(0x4e4)](fr['parse'](_0x368e96),Xt[_0x40bb61(0x2af)](_0x439ab5),{'iv':_0x5504db,'padding':pr});return _0x5504db[_0x40bb61(0x407)](_0x182b66[_0x40bb61(0x591)])[_0x40bb61(0x350)](Xt);}function Cr(){const _0x134731=_0x4a9685,_0x45185d=(typeof WorkerGlobalScope<'u'&&self instanceof WorkerGlobalScope?self:window)['__Key__'];if(_0x45185d){const _0x4b8b35={'time':Math[_0x134731(0x1d0)](Date[_0x134731(0x358)]()/0x3e8),'domain':location['hostname']};return Ir(JSON['stringify'](_0x4b8b35),_0x45185d);}}var Er=Object[_0x4a9685(0x377)],br=Object[_0x4a9685(0x484)],Tr=(_0x468aa6,_0x3b200d,_0x4d6925,_0x1816e9)=>{const _0x3fa23a=_0x4a9685;for(var _0x593e4d=_0x1816e9>0x1?void 0x0:_0x1816e9?br(_0x3b200d,_0x4d6925):_0x3b200d,_0x34aed7=_0x468aa6[_0x3fa23a(0x530)]-0x1,_0x3a761b;_0x34aed7>=0x0;_0x34aed7--)(_0x3a761b=_0x468aa6[_0x34aed7])&&(_0x593e4d=(_0x1816e9?_0x3a761b(_0x3b200d,_0x4d6925,_0x593e4d):_0x3a761b(_0x593e4d))||_0x593e4d);return _0x1816e9&&_0x593e4d&&Er(_0x3b200d,_0x4d6925,_0x593e4d),_0x593e4d;},Rr=(_0x242e69,_0x164c76)=>(_0x4d1b8e,_0x20a1f9)=>_0x164c76(_0x4d1b8e,_0x20a1f9,_0x242e69);let Ye=class{constructor(_0x31e286){const _0x529b4d=_0x4a9685;this[_0x529b4d(0x213)]=_0x31e286,this[_0x529b4d(0x5cd)]();}[_0x4a9685(0x5cd)](){const _0x13001f=_0x4a9685;this[_0x13001f(0x213)]['registerHTTPInterceptor']({'interceptor':(_0x3a191e,_0x4c6aa9)=>{const _0x902fe6=_0x13001f,_0x59ac38=_0x3a191e[_0x902fe6(0x259)],_0x599423=Cr();return _0x599423&&_0x59ac38['set'](_0x902fe6(0x1be),_0x599423),_0x4c6aa9(_0x3a191e);}});}};Ye=Tr([Rr(0x0,a['Inject'](Z[_0x4a9685(0x2db)]))],Ye);var yr=Object['defineProperty'],Or=Object[_0x4a9685(0x484)],Dr=(_0x36e3e9,_0x22c4b1,_0xf98bc7,_0x384612)=>{const _0x3e2029=_0x4a9685;for(var _0x37fa40=_0x384612>0x1?void 0x0:_0x384612?Or(_0x22c4b1,_0xf98bc7):_0x22c4b1,_0x80b23b=_0x36e3e9[_0x3e2029(0x530)]-0x1,_0x598e0f;_0x80b23b>=0x0;_0x80b23b--)(_0x598e0f=_0x36e3e9[_0x80b23b])&&(_0x37fa40=(_0x384612?_0x598e0f(_0x22c4b1,_0xf98bc7,_0x37fa40):_0x598e0f(_0x37fa40))||_0x37fa40);return _0x384612&&_0x37fa40&&yr(_0x22c4b1,_0xf98bc7,_0x37fa40),_0x37fa40;},vt=(_0x4719fa,_0x42d62e)=>(_0x1ed653,_0xa0f7fa)=>_0x42d62e(_0x1ed653,_0xa0f7fa,_0x4719fa);const wr=[_0x4a9685(0x210),_0x4a9685(0x352),_0x4a9685(0x3eb),_0x4a9685(0x290),_0x4a9685(0x4b9)],Pr=0x5*0x400*0x400,Ur=_0x4a9685(0x2ab),Mr=_0x4a9685(0x43e),Ar='EXCHANGE_SIGN_URL_SERVER_URL_KEY',Nr=_0x4a9685(0x22f);exports[_0x4a9685(0x50d)]=class{constructor(_0x53cadf,_0x337cc3,_0x724ac9){const _0x4e6596=_0x4a9685;I(this,_0x4e6596(0x3ab),0x0),I(this,_0x4e6596(0x4c4),new A[(_0x4e6596(0x4c3))]()),I(this,_0x4e6596(0x493),this[_0x4e6596(0x4c4)]),I(this,_0x4e6596(0x560),new Map()),(this[_0x4e6596(0x213)]=_0x53cadf,this[_0x4e6596(0x294)]=_0x337cc3,this[_0x4e6596(0x54a)]=_0x724ac9);}[_0x4a9685(0x5da)](_0xf074f6){const _0xd9c6e3=_0x4a9685;this[_0xd9c6e3(0x3ab)]=_0xf074f6,this[_0xd9c6e3(0x4c4)][_0xd9c6e3(0x503)](_0xf074f6);}['getImageSourceCache'](_0x8d0f33,_0x42660b){const _0x321eff=_0x4a9685;if(_0x42660b===ne['ImageSourceType'][_0x321eff(0x318)]){const _0x2ef708=new Image();return _0x2ef708[_0x321eff(0x4cc)]=_0x8d0f33,_0x2ef708;}return this[_0x321eff(0x560)][_0x321eff(0x542)](_0x8d0f33);}[_0x4a9685(0x14b)](_0x339205,_0x21f9c1,_0x5ee63b){const _0x40f23a=_0x4a9685;_0x21f9c1===ne['ImageSourceType'][_0x40f23a(0x318)]||_0x5ee63b==null||this['_imageSourceCache'][_0x40f23a(0x568)](_0x339205,_0x5ee63b);}async['getImage'](_0x47c6ab){const _0x338de7=_0x4a9685;try{const _0x45663e=this[_0x338de7(0x1db)](this[_0x338de7(0x410)](),''+_0x47c6ab),_0x19699a=(await this[_0x338de7(0x213)][_0x338de7(0x542)](_0x45663e))['body'];if(_0x19699a[_0x338de7(0x3d8)]&&_0x19699a[_0x338de7(0x3d8)]['code']===cn['OK']){const _0x357d89=new URL(_0x19699a[_0x338de7(0x465)],this['_getDownloadEndpointURL']())[_0x338de7(0x350)]();return Promise['resolve'](_0x357d89);}return Promise['reject'](_0x19699a[_0x338de7(0x3d8)]);}catch(_0x24eebc){return Promise[_0x338de7(0x362)](_0x24eebc);}}async[_0x4a9685(0x35e)](_0x278a35){const _0x2e3a56=_0x4a9685;let _0x3e1b5d='';if(!wr['includes'](_0x278a35[_0x2e3a56(0x3e4)]))return this['_decreaseWaiting'](),Promise[_0x2e3a56(0x362)](new Error(ne[_0x2e3a56(0x26a)]['ERROR_IMAGE_TYPE']));if(_0x278a35['size']>Pr)return this['_decreaseWaiting'](),Promise[_0x2e3a56(0x362)](new Error(ne[_0x2e3a56(0x26a)]['ERROR_EXCEED_SIZE']));try{const _0x671dfa=new FormData();_0x671dfa[_0x2e3a56(0x540)](_0x2e3a56(0x21f),_0x278a35);const _0x27f4b1=this[_0x2e3a56(0x54a)][_0x2e3a56(0x2dd)](),_0x1c993e=_0x27f4b1==null?void 0x0:_0x27f4b1[_0x2e3a56(0x56f)]();if(!_0x1c993e)throw new Error(_0x2e3a56(0x344));const _0x4d859f=this[_0x2e3a56(0x291)]()+'?size='+_0x278a35[_0x2e3a56(0x2d6)][_0x2e3a56(0x350)]()+'&source='+ln[_0x2e3a56(0x3d4)]+_0x2e3a56(0x17f)+encodeURIComponent(_0x1c993e),_0xa75243=await(await fetch(_0x4d859f,{'method':_0x2e3a56(0x431),'body':_0x671dfa}))[_0x2e3a56(0x2e6)]();if(typeof _0xa75243[_0x2e3a56(0x53e)]!='string')return this[_0x2e3a56(0x175)](),Promise['reject'](new Error(ne['ImageUploadStatusType'][_0x2e3a56(0x13f)]));_0x3e1b5d=_0xa75243[_0x2e3a56(0x53e)];}catch{return this[_0x2e3a56(0x175)](),Promise[_0x2e3a56(0x362)](new Error(ne['ImageUploadStatusType']['ERROR_IMAGE']));}return new Promise((_0xd221f5,_0x2ee23c)=>{const _0x445ae4=_0x2e3a56,_0x41719f=new FileReader();_0x41719f['readAsDataURL'](_0x278a35),_0x41719f[_0x445ae4(0x4ef)]=_0x2e7ce3=>{const _0x296469=_0x445ae4;var _0x45f0dd;const _0x544327=(_0x45f0dd=_0x2e7ce3[_0x296469(0x41f)])==null?void 0x0:_0x45f0dd['result'];if(_0x544327==null){this[_0x296469(0x175)](),_0x2ee23c(new Error(ne[_0x296469(0x26a)][_0x296469(0x13f)]));return;}const _0x36d5b7=a[_0x296469(0x426)][_0x296469(0x32e)](0x6);_0xd221f5({'imageId':_0x36d5b7,'imageSourceType':ne[_0x296469(0x1a2)][_0x296469(0x58d)],'source':_0x3e1b5d,'base64Cache':_0x544327,'status':ne['ImageUploadStatusType']['SUCCUSS']}),this[_0x296469(0x175)]();};});}[_0x4a9685(0x291)](){const _0xa16b5f=_0x4a9685;var _0x5542f2,_0x4054d7;const _0x4382aa=this[_0xa16b5f(0x294)][_0xa16b5f(0x4a1)](Ur),_0x31b30a=this['_configService'][_0xa16b5f(0x4a1)](te);return(_0x4054d7=(_0x5542f2=_0x31b30a==null?void 0x0:_0x31b30a[_0xa16b5f(0x54c)])!=null?_0x5542f2:_0x4382aa)!=null?_0x4054d7:Mr;}[_0x4a9685(0x410)](){const _0x4998f8=_0x4a9685;var _0x54f1e9,_0x21ba52;const _0x4bda5f=this[_0x4998f8(0x294)]['getConfig'](Ar),_0x19e768=this['_configService']['getConfig'](te);return(_0x21ba52=(_0x54f1e9=_0x19e768==null?void 0x0:_0x19e768['signUrlServerUrl'])!=null?_0x54f1e9:_0x4bda5f)!=null?_0x21ba52:Nr;}[_0x4a9685(0x565)](){const _0x48171c=_0x4a9685;var _0x3c5809;const _0x25b472=this[_0x48171c(0x294)][_0x48171c(0x4a1)](te);return(_0x3c5809=_0x25b472==null?void 0x0:_0x25b472[_0x48171c(0x4fe)])!=null?_0x3c5809:location[_0x48171c(0x221)];}[_0x4a9685(0x1db)](_0x3997ac,_0x3df67c){const _0x24d881=_0x4a9685;return _0x3997ac[_0x24d881(0x38b)](_0x24d881(0x1f5),_0x3df67c);}[_0x4a9685(0x175)](){const _0x30d5ab=_0x4a9685;this[_0x30d5ab(0x3ab)]-=0x1,this[_0x30d5ab(0x4c4)][_0x30d5ab(0x503)](this[_0x30d5ab(0x3ab)]);}},exports[_0x4a9685(0x50d)]=Dr([vt(0x0,a['Inject'](Z[_0x4a9685(0x2db)])),vt(0x1,a[_0x4a9685(0x3fb)]),vt(0x2,a[_0x4a9685(0x27a)](a['IUniverInstanceService']))],exports[_0x4a9685(0x50d)]);var Lr=Object[_0x4a9685(0x377)],xr=Object[_0x4a9685(0x484)],jr=(_0x2a1d3d,_0x49f16d,_0x56352f,_0x43a2de)=>{const _0x39a5ae=_0x4a9685;for(var _0x3e286c=_0x43a2de>0x1?void 0x0:_0x43a2de?xr(_0x49f16d,_0x56352f):_0x49f16d,_0x479e11=_0x2a1d3d[_0x39a5ae(0x530)]-0x1,_0x2e3eae;_0x479e11>=0x0;_0x479e11--)(_0x2e3eae=_0x2a1d3d[_0x479e11])&&(_0x3e286c=(_0x43a2de?_0x2e3eae(_0x49f16d,_0x56352f,_0x3e286c):_0x2e3eae(_0x3e286c))||_0x3e286c);return _0x43a2de&&_0x3e286c&&Lr(_0x49f16d,_0x56352f,_0x3e286c),_0x3e286c;},Ae=(_0x347797,_0x5803b6)=>(_0x2560f2,_0x3e070f)=>_0x5803b6(_0x2560f2,_0x3e070f,_0x347797);let Ke=class extends a[_0x4a9685(0x2c7)]{constructor(_0xd71fa1,_0x42377f,_0x4caadd,_0x1848c9,_0x5439fc){const _0x9cbbf0=_0x4a9685;super(),this['_injector']=_0xd71fa1,this[_0x9cbbf0(0x54a)]=_0x42377f,this[_0x9cbbf0(0x3e0)]=_0x4caadd,this['_collaborationSessionService']=_0x1848c9,this[_0x9cbbf0(0x39c)]=_0x5439fc,this[_0x9cbbf0(0x5ed)](),this[_0x9cbbf0(0x570)]();}[_0x4a9685(0x570)](){const _0xef1b5c=_0x4a9685,_0x296bd9=async _0x56cad1=>{const _0xeff08a=_0x5f2c;(await this[_0xeff08a(0x494)][_0xeff08a(0x461)](_0x56cad1))['event$']['pipe'](V[_0xeff08a(0x464)](_0x5633e8=>_0x5633e8[_0xeff08a(0x3af)]===S[_0xeff08a(0x35a)][_0xeff08a(0x42b)]),V[_0xeff08a(0x5e8)](this[_0xeff08a(0x5c9)]))['subscribe'](_0x4816a3=>{const _0x5fdc8c=_0xeff08a,_0x479f35=_0x4816a3,{reason:_0x301a43}=_0x479f35[_0x5fdc8c(0x18f)];this['_injector'][_0x5fdc8c(0x542)](ee[_0x5fdc8c(0x27d)])[_0x5fdc8c(0x36b)]({'type':ge[_0x5fdc8c(0x2e3)][_0x5fdc8c(0x2d0)],'content':this['_localeService']['t'](_0x5fdc8c(0x5ee))+'('+_0x301a43+')'}),this[_0x5fdc8c(0x3e0)][_0x5fdc8c(0x38e)](new k[(_0x5fdc8c(0x1ef))](_0x56cad1)['id'],!0x1),this[_0x5fdc8c(0x494)]['closeSession'](_0x56cad1);});};A[_0xef1b5c(0x345)](this['_univerInstanceService'][_0xef1b5c(0x3f9)](a[_0xef1b5c(0x33e)][_0xef1b5c(0x1af)]),this[_0xef1b5c(0x54a)][_0xef1b5c(0x3f9)](a['UniverInstanceType']['UNIVER_DOC']))[_0xef1b5c(0x172)](V['map'](_0xe32f95=>_0xe32f95[_0xef1b5c(0x56f)]()),V[_0xef1b5c(0x464)](_0x328090=>!a['isInternalEditorID'](_0x328090)),V['takeUntil'](this[_0xef1b5c(0x5c9)]))[_0xef1b5c(0x419)](_0x160c61=>{_0x296bd9(_0x160c61);});}[_0x4a9685(0x5ed)](){const _0x16a293=_0x4a9685,_0x3d11c5=async _0x9e9e45=>{const _0x4fb4e4=_0x5f2c;(await this[_0x4fb4e4(0x494)][_0x4fb4e4(0x461)](_0x9e9e45))[_0x4fb4e4(0x297)][_0x4fb4e4(0x172)](V[_0x4fb4e4(0x464)](_0x8da3b9=>_0x8da3b9[_0x4fb4e4(0x3af)]===S[_0x4fb4e4(0x35a)][_0x4fb4e4(0x347)]),V[_0x4fb4e4(0x5e8)](this[_0x4fb4e4(0x5c9)]))[_0x4fb4e4(0x419)](_0x45e983=>{const _0x48b720=_0x4fb4e4,_0x2283dc=_0x45e983,{objectId:_0x4e58a0}=_0x2283dc[_0x48b720(0x18f)],_0xb40c20=this['_injector']['get'](Re[_0x48b720(0x4bc)]);_0x4e58a0===_0x9e9e45?_0xb40c20[_0x48b720(0x56e)](_0x9e9e45):_0xb40c20[_0x48b720(0x5d0)](_0x9e9e45,_0x4e58a0);});};A['merge'](this[_0x16a293(0x54a)][_0x16a293(0x3f9)](a['UniverInstanceType'][_0x16a293(0x1af)]),this[_0x16a293(0x54a)][_0x16a293(0x3f9)](a[_0x16a293(0x33e)][_0x16a293(0x22a)]))[_0x16a293(0x172)](V[_0x16a293(0x28a)](_0x23eb66=>_0x23eb66[_0x16a293(0x56f)]()),V['filter'](_0xb39b53=>!a['isInternalEditorID'](_0xb39b53)),V[_0x16a293(0x5e8)](this[_0x16a293(0x5c9)]))[_0x16a293(0x419)](_0x18685b=>{_0x3d11c5(_0x18685b);});}};Ke=jr([Ae(0x0,a['Inject'](a[_0x4a9685(0x17d)])),Ae(0x1,a[_0x4a9685(0x3c5)]),Ae(0x2,a[_0x4a9685(0x310)]),Ae(0x3,a[_0x4a9685(0x27a)](exports[_0x4a9685(0x2a7)])),Ae(0x4,a[_0x4a9685(0x27a)](a[_0x4a9685(0x4a8)]))],Ke);var $r=Object['defineProperty'],Hr=Object[_0x4a9685(0x484)],Br=(_0x48ee30,_0x41ff1d,_0x51afdb,_0x54cbe3)=>{const _0x139c7e=_0x4a9685;for(var _0x30b33a=_0x54cbe3>0x1?void 0x0:_0x54cbe3?Hr(_0x41ff1d,_0x51afdb):_0x41ff1d,_0x1ae4cb=_0x48ee30[_0x139c7e(0x530)]-0x1,_0x2580ff;_0x1ae4cb>=0x0;_0x1ae4cb--)(_0x2580ff=_0x48ee30[_0x1ae4cb])&&(_0x30b33a=(_0x54cbe3?_0x2580ff(_0x41ff1d,_0x51afdb,_0x30b33a):_0x2580ff(_0x30b33a))||_0x30b33a);return _0x54cbe3&&_0x30b33a&&$r(_0x41ff1d,_0x51afdb,_0x30b33a),_0x30b33a;},Jt=(_0x382203,_0x359909)=>(_0x86d34,_0x5f17af)=>_0x359909(_0x86d34,_0x5f17af,_0x382203);exports[_0x4a9685(0x376)]=class{constructor(_0x33d433,_0x36bdf5){const _0x25fb13=_0x4a9685;this['_configService']=_0x33d433,this[_0x25fb13(0x213)]=_0x36bdf5;}async[_0x4a9685(0x370)](_0x5f2ed0,_0x546b86){const _0x4755ac=_0x4a9685;var _0x2ebfb7;const {unitID:_0x2aae17,type:_0x248849,revision:_0x10eaec=0x0}=_0x546b86,_0x34350d=this['_getSnapshotAPIPrefix']()+'/'+_0x248849+_0x4755ac(0x33b)+_0x2aae17+_0x4755ac(0x578)+_0x10eaec,_0x4c8ab1=(await this[_0x4755ac(0x213)][_0x4755ac(0x542)](_0x34350d))[_0x4755ac(0x1c3)],_0x588cae=(_0x2ebfb7=_0x4c8ab1[_0x4755ac(0x5de)])==null?void 0x0:_0x2ebfb7[_0x4755ac(0x2e9)];if(_0x588cae){const _0x21e5f7=_0x588cae==null?void 0x0:_0x588cae[_0x4755ac(0x5a2)],_0x929907=S['textEncoder'][_0x4755ac(0x317)](S[_0x4755ac(0x566)](_0x21e5f7));_0x588cae[_0x4755ac(0x5a2)]=_0x929907,Object['entries'](_0x588cae[_0x4755ac(0x164)])[_0x4755ac(0x38f)](([,_0x480b4b])=>{const _0x9e070d=_0x4755ac,_0x389ba6=_0x480b4b[_0x9e070d(0x5a2)],_0x250d9e=S[_0x9e070d(0x17c)]['encode'](S[_0x9e070d(0x566)](_0x389ba6));_0x480b4b[_0x9e070d(0x5a2)]=_0x250d9e;});}return _0x4c8ab1;}async[_0x4a9685(0x590)](_0x5b585d,_0x3a72ba){const _0x28b86=_0x4a9685,{unitID:_0x12eeec,type:_0x2fecde,blockID:_0x5cf7c1}=_0x3a72ba,_0x944ed8=this['_getAPIPrefix']()+'/'+_0x2fecde+'/unit/'+_0x12eeec+'/block/'+_0x5cf7c1;return(await this[_0x28b86(0x213)][_0x28b86(0x542)](_0x944ed8))[_0x28b86(0x1c3)];}async[_0x4a9685(0x24d)](_0x2e266a,_0x572da6){const _0x5eb3b9=_0x4a9685,{unitID:_0x399df5,type:_0x31b1e5,blockID:_0x291e26}=_0x572da6,_0x55a894=this[_0x5eb3b9(0x1fa)]()+'/block/'+_0x31b1e5+_0x5eb3b9(0x33b)+_0x399df5+_0x5eb3b9(0x45a)+_0x291e26;return(await this[_0x5eb3b9(0x213)][_0x5eb3b9(0x542)](_0x55a894))[_0x5eb3b9(0x1c3)];}async[_0x4a9685(0x327)](_0x3e9f09,_0x3acbdf){const _0xe537a2=_0x4a9685,{unitID:_0x51d361,type:_0x4e664f,from:_0x4e0abd,to:_0x3d52c8}=_0x3acbdf,_0x29f884=this[_0xe537a2(0x1fa)]()+'/'+_0x4e664f+'/unit/'+_0x51d361+_0xe537a2(0x35d)+_0x4e0abd+_0xe537a2(0x2f1)+_0x3d52c8;return(await this['_httpService'][_0xe537a2(0x542)](_0x29f884))[_0xe537a2(0x1c3)];}['_getSnapshotAPIPrefix'](){const _0xbe2d36=_0x4a9685;var _0x3ada12;return(_0x3ada12=this[_0xbe2d36(0x294)]['getConfig'](Qt))!=null?_0x3ada12:this[_0xbe2d36(0x1fa)]();}[_0x4a9685(0x1fa)](){const _0x15c9e0=_0x4a9685;var _0x56d45e,_0x5a89bc;const _0x358709=this[_0x15c9e0(0x294)]['getConfig'](Zt),_0x517f3d=this[_0x15c9e0(0x294)][_0x15c9e0(0x4a1)](te);return(_0x5a89bc=(_0x56d45e=_0x517f3d==null?void 0x0:_0x517f3d['snapshotServerUrl'])!=null?_0x56d45e:_0x358709)!=null?_0x5a89bc:Hn;}async['getResourcesRequest'](_0x1a4a17,_0x2dff41){const _0x198402=_0x4a9685,_0x10fb55=_0x198402(0x2a9)+_0x2dff41[_0x198402(0x3e4)]+'/unit/'+_0x2dff41[_0x198402(0x197)]+_0x198402(0x524);return(await this[_0x198402(0x213)][_0x198402(0x542)](_0x10fb55,{'params':{'resourceId':JSON[_0x198402(0x2d1)](_0x2dff41['resourceIDs'])}}))['body'];}['saveSnapshot'](){const _0xa82188=_0x4a9685;throw new Error(_0xa82188(0x374));}[_0x4a9685(0x4c8)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x4a9685(0x598)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x4a9685(0x500)](){const _0x5c061f=_0x4a9685;throw new Error(_0x5c061f(0x374));}[_0x4a9685(0x20e)](){const _0x5bbcba=_0x4a9685;throw new Error(_0x5bbcba(0x374));}},exports[_0x4a9685(0x376)]=Br([Jt(0x0,a[_0x4a9685(0x3fb)]),Jt(0x1,a[_0x4a9685(0x27a)](Z[_0x4a9685(0x2db)]))],exports[_0x4a9685(0x376)]);var kr=Object[_0x4a9685(0x377)],Wr=Object['getOwnPropertyDescriptor'],Fr=(_0x2c08cc,_0x2e8ca9,_0x16568a,_0x34a933)=>{for(var _0x51d4b8=_0x34a933>0x1?void 0x0:_0x34a933?Wr(_0x2e8ca9,_0x16568a):_0x2e8ca9,_0x3bee77=_0x2c08cc['length']-0x1,_0x425779;_0x3bee77>=0x0;_0x3bee77--)(_0x425779=_0x2c08cc[_0x3bee77])&&(_0x51d4b8=(_0x34a933?_0x425779(_0x2e8ca9,_0x16568a,_0x51d4b8):_0x425779(_0x51d4b8))||_0x51d4b8);return _0x34a933&&_0x51d4b8&&kr(_0x2e8ca9,_0x16568a,_0x51d4b8),_0x51d4b8;},Ne=(_0x8f2221,_0x2fdc4a)=>(_0x352217,_0x3b9471)=>_0x2fdc4a(_0x352217,_0x3b9471,_0x8f2221);let It=class extends a['LocalUndoRedoService']{constructor(_0x14fa8b,_0xc8c866,_0x33cd52,_0x2efa7c,_0x2c4290){const _0x24b8fb=_0x4a9685;super(_0x14fa8b,_0xc8c866,_0x33cd52),this[_0x24b8fb(0x4f6)]=_0x2efa7c,this[_0x24b8fb(0x480)]=_0x2c4290;}['transformUndoRedo'](_0x5c35f5,_0x513d11){const _0x6c8ec3=_0x4a9685,_0x2a7c94=this[_0x6c8ec3(0x1b1)](_0x5c35f5);if(_0x2a7c94)try{const _0x474ab0=this[_0x6c8ec3(0x273)](_0x2a7c94,_0x513d11);this[_0x6c8ec3(0x269)](_0x5c35f5,_0x474ab0);}catch(_0x5c8864){this[_0x6c8ec3(0x480)][_0x6c8ec3(0x3d8)](_0x6c8ec3(0x499),_0x5c8864),this[_0x6c8ec3(0x2c4)](_0x5c35f5);}const _0x355f44=this[_0x6c8ec3(0x16d)](_0x5c35f5);if(_0x355f44)try{const _0x33b062=this[_0x6c8ec3(0x273)](_0x355f44,_0x513d11);this[_0x6c8ec3(0x36e)](_0x5c35f5,_0x33b062);}catch(_0x358a8a){this[_0x6c8ec3(0x480)][_0x6c8ec3(0x3d8)](_0x358a8a),this[_0x6c8ec3(0x16a)](_0x5c35f5);}}[_0x4a9685(0x2c4)](_0x211f48){const _0x487f48=_0x4a9685,_0xfbb008=this['_getUndoStack'](_0x211f48);_0xfbb008&&(_0xfbb008[_0x487f48(0x530)]=0x0,this[_0x487f48(0x2d9)]());}['_clearRedo'](_0x411609){const _0x10b28d=_0x4a9685,_0x38b4be=this[_0x10b28d(0x16d)](_0x411609);_0x38b4be&&(_0x38b4be[_0x10b28d(0x530)]=0x0,this[_0x10b28d(0x2d9)]());}[_0x4a9685(0x269)](_0xa706dc,_0x375919){const _0x3cfa1f=_0x4a9685;this['_undoStacks'][_0x3cfa1f(0x568)](_0xa706dc,_0x375919),this[_0x3cfa1f(0x2d9)]();}[_0x4a9685(0x36e)](_0x37af8a,_0x465b93){const _0x41e3ae=_0x4a9685;this[_0x41e3ae(0x4db)][_0x41e3ae(0x568)](_0x37af8a,_0x465b93),this[_0x41e3ae(0x2d9)]();}[_0x4a9685(0x273)](_0x2e9527,_0x5b9c80){const _0x4a149c=_0x4a9685,_0x2b666e=[];let _0x403470=_0x5b9c80,_0x22c04b=_0x5b9c80;for(let _0x20777f=_0x2e9527[_0x4a149c(0x530)]-0x1;_0x20777f>=0x0;_0x20777f--){const {unitID:_0x2672f9,undoMutations:_0x11e09f,redoMutations:_0x330fcb}=_0x2e9527[_0x20777f],_0x336334=this['_transformService']['transformMutationsWithChangeset'](_0x403470,_0x11e09f),_0xeb4c76=this[_0x4a149c(0x4f6)]['transformMutationsWithChangeset'](_0x22c04b,_0x330fcb);if(S['isTransformMutationsWithChangesetFailure'](_0x336334)||S[_0x4a149c(0x133)](_0xeb4c76)){this[_0x4a149c(0x480)][_0x4a149c(0x3d8)](_0x4a149c(0x499),_0x4a149c(0x17a),_0x336334,_0xeb4c76);break;}_0x403470=_0x336334[_0x4a149c(0x51e)],_0x22c04b=_0xeb4c76[_0x4a149c(0x51e)],_0x2b666e[_0x4a149c(0x3d6)]({'unitID':_0x2672f9,'undoMutations':_0x336334[_0x4a149c(0x403)],'redoMutations':_0xeb4c76[_0x4a149c(0x403)]});}return _0x2b666e[_0x4a149c(0x5aa)]();}};It=Fr([Ne(0x0,a[_0x4a9685(0x3c5)]),Ne(0x1,a['ICommandService']),Ne(0x2,a[_0x4a9685(0x55b)]),Ne(0x3,S[_0x4a9685(0x315)]),Ne(0x4,a[_0x4a9685(0x2e8)])],It);class An extends a['RxDisposable']{constructor(){const _0x59bb9c=_0x4a9685;super(),I(this,_0x59bb9c(0x56a)),this[_0x59bb9c(0x56a)]=A[_0x59bb9c(0x59e)](window,_0x59bb9c(0x1ad))[_0x59bb9c(0x172)](A[_0x59bb9c(0x5e8)](this[_0x59bb9c(0x5c9)]),A[_0x59bb9c(0x52c)](0x1),A[_0x59bb9c(0x429)](void 0x0));}[_0x4a9685(0x282)](_0x5c9ce1,_0x1a5423,_0x151032=!0x1){const _0x1524d6=_0x4a9685,_0x3c943a=new URL(window[_0x1524d6(0x559)]['href']);_0x3c943a[_0x1524d6(0x5e1)][_0x1524d6(0x568)](_0x5c9ce1,_0x1a5423),_0x151032?window[_0x1524d6(0x42d)][_0x1524d6(0x287)]('','',_0x3c943a[_0x1524d6(0x350)]()):window['history']['pushState']('','',_0x3c943a['toString']());}[_0x4a9685(0x2b6)](_0x4dd8e7,_0x423762=!0x1){const _0xb11921=_0x4a9685,_0x30ff5d=new URL(window[_0xb11921(0x559)][_0xb11921(0x1fd)]);_0x30ff5d['searchParams'][_0xb11921(0x224)](_0x4dd8e7),_0x423762?window[_0xb11921(0x42d)][_0xb11921(0x287)]('','',_0x30ff5d[_0xb11921(0x350)]()):window[_0xb11921(0x42d)][_0xb11921(0x293)]('','',_0x30ff5d['toString']());}[_0x4a9685(0x3e2)](_0x251e71){const _0x20cfbd=_0x4a9685;var _0x3cc807;return(_0x3cc807=new URL(window[_0x20cfbd(0x559)][_0x20cfbd(0x1fd)])[_0x20cfbd(0x5e1)][_0x20cfbd(0x542)](_0x251e71))!=null?_0x3cc807:void 0x0;}}var Nn=Object[_0x4a9685(0x377)],Vr=Object[_0x4a9685(0x484)],Gr=(_0x334a1e,_0x50e9d5,_0x26f1f1)=>_0x50e9d5 in _0x334a1e?Nn(_0x334a1e,_0x50e9d5,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x26f1f1}):_0x334a1e[_0x50e9d5]=_0x26f1f1,Yr=(_0x23ef46,_0x48efd,_0x2a0155,_0x22d8b7)=>{const _0x7bb278=_0x4a9685;for(var _0x3c4282=_0x22d8b7>0x1?void 0x0:_0x22d8b7?Vr(_0x48efd,_0x2a0155):_0x48efd,_0x242ed5=_0x23ef46[_0x7bb278(0x530)]-0x1,_0x163a1f;_0x242ed5>=0x0;_0x242ed5--)(_0x163a1f=_0x23ef46[_0x242ed5])&&(_0x3c4282=(_0x22d8b7?_0x163a1f(_0x48efd,_0x2a0155,_0x3c4282):_0x163a1f(_0x3c4282))||_0x3c4282);return _0x22d8b7&&_0x3c4282&&Nn(_0x48efd,_0x2a0155,_0x3c4282),_0x3c4282;},He=(_0x3a5c64,_0x37e1ec)=>(_0x339e34,_0xa85f6b)=>_0x37e1ec(_0x339e34,_0xa85f6b,_0x3a5c64),Kr=(_0x19b025,_0x534314,_0x6904b4)=>Gr(_0x19b025,_0x534314+'',_0x6904b4);const qr=_0x4a9685(0x348);exports[_0x4a9685(0x3a2)]=class extends a[_0x4a9685(0x389)]{constructor(_0x298a34=zn,_0x54a264,_0x57f91f,_0x4ea73d,_0x206829){const _0x4e6dbf=_0x4a9685;super(),this[_0x4e6dbf(0x3f2)]=_0x298a34,this['_logService']=_0x54a264,this[_0x4e6dbf(0x582)]=_0x57f91f,this['_injector']=_0x4ea73d,this[_0x4e6dbf(0x294)]=_0x206829;const {..._0x4552c9}=this[_0x4e6dbf(0x3f2)];this[_0x4e6dbf(0x294)]['setConfig'](te,_0x4552c9);}['onStarting'](){const _0x4c6f15=_0x4a9685;this['_registerDependencies'](),this[_0x4c6f15(0x3ca)]();}[_0x4a9685(0x3ec)](){const _0x56f375=_0x4a9685;a[_0x56f375(0x45d)](this[_0x56f375(0x372)],[[Ve]]);}[_0x4a9685(0x27b)](){this['_registerRenderDependencies']();}[_0x4a9685(0x27e)](){const _0x216c94=_0x4a9685;var _0xf6ae82,_0xc6d029,_0x181d9e,_0x34e0d6;this[_0x216c94(0x372)]['has'](a[_0x216c94(0x23b)])&&this[_0x216c94(0x480)][_0x216c94(0x3d8)]('[UniverCollaborationClientPlugin]',_0x216c94(0x462));const _0x35be81=[[a[_0x216c94(0x23b)],{'useClass':It}],[exports[_0x216c94(0x2a7)]],[Ot],[wt,{'useClass':An}],[exports[_0x216c94(0x3e1)]],[exports['LocalCacheService']],[Z[_0x216c94(0x378)]],[ke],[Fe],[Be],[We],[Rt],[Ge],[Ye],[Tt],[Ke],[bt,{'useClass':(_0xc6d029=(_0xf6ae82=this[_0x216c94(0x3f2)])==null?void 0x0:_0xf6ae82[_0x216c94(0x22b)])!=null?_0xc6d029:exports[_0x216c94(0x53c)]}],[S['ISnapshotServerService'],{'useClass':exports[_0x216c94(0x376)]}],[a[_0x216c94(0x2f0)],{'useClass':exports[_0x216c94(0x26b)]}],[ne[_0x216c94(0x3f3)],{'useClass':exports[_0x216c94(0x50d)]}],[exports[_0x216c94(0x1ff)]],[exports[_0x216c94(0x554)]],[exports[_0x216c94(0x2f8)]],[Ve],[De]];(_0x181d9e=this['_config'])!=null&&_0x181d9e[_0x216c94(0x325)]&&_0x35be81['push']([qe,{'useClass':Oi}]),a[_0x216c94(0x440)](this[_0x216c94(0x372)],a[_0x216c94(0x323)](_0x35be81,(_0x34e0d6=this[_0x216c94(0x3f2)])==null?void 0x0:_0x34e0d6[_0x216c94(0x5dc)]));}['_registerRenderDependencies'](){const _0x1904e7=_0x4a9685;this[_0x1904e7(0x3c7)](this[_0x1904e7(0x582)][_0x1904e7(0x2cb)](a['UniverInstanceType'][_0x1904e7(0x22a)],[pt])),this[_0x1904e7(0x3c7)](this[_0x1904e7(0x582)][_0x1904e7(0x2cb)](a[_0x1904e7(0x33e)][_0x1904e7(0x1af)],[gt]));}[_0x4a9685(0x3ca)](){const _0xd318f2=_0x4a9685;var _0x4862b9,_0x3b17b8;this[_0xd318f2(0x372)][_0xd318f2(0x542)](Z['HTTPService'])[_0xd318f2(0x533)]({'priority':0x14,'interceptor':Z[_0xd318f2(0x3ed)]({'maxParallel':0x6})}),(_0x4862b9=this[_0xd318f2(0x3f2)])!=null&&_0x4862b9[_0xd318f2(0x443)]||this[_0xd318f2(0x372)][_0xd318f2(0x542)](exports['LocalCacheService'])[_0xd318f2(0x360)](),(_0x3b17b8=this['_config'])!=null&&_0x3b17b8[_0xd318f2(0x1a3)]&&a['touchDependencies'](this['_injector'],[[Ge]]),a[_0xd318f2(0x45d)](this['_injector'],[[Ye],[De],[exports[_0xd318f2(0x554)]],[exports[_0xd318f2(0x1ff)]],[exports['DesktopCollaborationStatusDisplayController']],[Ke]]);}},Kr(exports['UniverCollaborationClientPlugin'],_0x4a9685(0x395),qr),exports[_0x4a9685(0x3a2)]=Yr([a['DependentOn'](S[_0x4a9685(0x19e)],Z[_0x4a9685(0x3aa)]),He(0x1,a[_0x4a9685(0x2e8)]),He(0x2,K['IRenderManagerService']),He(0x3,a[_0x4a9685(0x27a)](a['Injector'])),He(0x4,a[_0x4a9685(0x3fb)])],exports['UniverCollaborationClientPlugin']),exports['AUTHZ_URL_KEY']=Rn,exports[_0x4a9685(0x5f2)]=on,exports[_0x4a9685(0x21b)]=en,exports[_0x4a9685(0x153)]=q,exports[_0x4a9685(0x593)]=Tn,exports[_0x4a9685(0x5a1)]=Tt,exports[_0x4a9685(0x387)]=tn,exports[_0x4a9685(0x248)]=Ct,exports[_0x4a9685(0x5d7)]=bt,exports['IURLService']=wt,exports[_0x4a9685(0x30b)]=rn,exports[_0x4a9685(0x49e)]=an,exports[_0x4a9685(0x218)]=sn,exports[_0x4a9685(0x43f)]=Bn,exports[_0x4a9685(0x179)]=Zt,exports[_0x4a9685(0x442)]=Qt,exports[_0x4a9685(0x319)]=se,exports[_0x4a9685(0x457)]=Sn,exports[_0x4a9685(0x320)]=An,exports[_0x4a9685(0x312)]=hn,exports[_0x4a9685(0x145)]=_n;
|
1
|
+
'use strict';const _0x5a89b4=_0x4da2;(function(_0x188036,_0x1ad21f){const _0x295a52=_0x4da2,_0x2715ac=_0x188036();while(!![]){try{const _0x462a0f=-parseInt(_0x295a52(0x37e))/0x1*(-parseInt(_0x295a52(0x549))/0x2)+parseInt(_0x295a52(0x231))/0x3*(parseInt(_0x295a52(0x2b5))/0x4)+-parseInt(_0x295a52(0x572))/0x5+parseInt(_0x295a52(0x428))/0x6*(parseInt(_0x295a52(0x56b))/0x7)+parseInt(_0x295a52(0x413))/0x8+parseInt(_0x295a52(0x2f0))/0x9+-parseInt(_0x295a52(0x28b))/0xa*(parseInt(_0x295a52(0x5db))/0xb);if(_0x462a0f===_0x1ad21f)break;else _0x2715ac['push'](_0x2715ac['shift']());}catch(_0x126442){_0x2715ac['push'](_0x2715ac['shift']());}}}(_0x295e,0xd4731));var Nn=Object['defineProperty'],Ln=(_0x18c176,_0x191a91,_0x4d2cf5)=>_0x191a91 in _0x18c176?Nn(_0x18c176,_0x191a91,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x4d2cf5}):_0x18c176[_0x191a91]=_0x4d2cf5,I=(_0x113e57,_0x159852,_0x45fbeb)=>Ln(_0x113e57,typeof _0x159852!=_0x5a89b4(0x485)?_0x159852+'':_0x159852,_0x45fbeb);Object[_0x5a89b4(0x5bf)](exports,Symbol[_0x5a89b4(0x1f0)],{'value':_0x5a89b4(0x3a0)});const a=require(_0x5a89b4(0x35d)),A=require(_0x5a89b4(0x5d1)),V=require('rxjs/operators'),Ie=require(_0x5a89b4(0x16a)),J=require('@univerjs/network'),te=require(_0x5a89b4(0x598)),p=require(_0x5a89b4(0x1e8)),xn=require('@univerjs/telemetry'),Z=require(_0x5a89b4(0x358)),B=require(_0x5a89b4(0x29e)),K=require(_0x5a89b4(0x172)),ye=require('@univerjs/docs'),ne=require(_0x5a89b4(0x193)),wt=require(_0x5a89b4(0x389)),Re=require(_0x5a89b4(0x429)),ae=require(_0x5a89b4(0x1d8)),jn=require(_0x5a89b4(0x2a8)),Xt=_0x5a89b4(0x347),$n=_0x5a89b4(0x3a5),Jt='SNAPSHOT_URL_KEY',Hn=_0x5a89b4(0x5f2),kn=0x7d0,Zt='COLLAB_WEB_SOCKET_URL',Bn=_0x5a89b4(0x17f),Wn=_0x5a89b4(0x254),Qt=_0x5a89b4(0x4f4),Fn=0x7530,It=_0x5a89b4(0x34a),en=0x4e20,Vn=0x4e20,tn=_0x5a89b4(0x510),Gn=0x3,nn=_0x5a89b4(0x28a),Yn=0x3e8,sn=_0x5a89b4(0x295),Kn='/universer-api/comb',rn='LOGIN_URL_KEY',qn=_0x5a89b4(0x532);var on=(_0x337a10=>(_0x337a10[_0x337a10['UNDEFINED']=0x0]=_0x5a89b4(0x436),_0x337a10[_0x337a10['OK']=0x1]='OK',_0x337a10[_0x337a10[_0x5a89b4(0x3e5)]=0x2]='INTERNAL_ERROR',_0x337a10[_0x337a10['PERMISSION_DENIED']=0x3]=_0x5a89b4(0x225),_0x337a10[_0x337a10['NOT_FOUND']=0x4]='NOT_FOUND',_0x337a10[_0x337a10['UNAUTHENTICATED']=0x5]='UNAUTHENTICATED',_0x337a10[_0x337a10['ALREADY_EXISTS']=0x6]=_0x5a89b4(0x5b7),_0x337a10[_0x337a10[_0x5a89b4(0x38e)]=0x7]='INVALID_ARGUMENT',_0x337a10[_0x337a10[_0x5a89b4(0x2f7)]=0x8]=_0x5a89b4(0x2f7),_0x337a10[_0x337a10[_0x5a89b4(0x2c5)]=0x9]=_0x5a89b4(0x2c5),_0x337a10[_0x337a10[_0x5a89b4(0x232)]=0x1389]='CHANGESET_REVISION_CONFILICT',_0x337a10[_0x337a10[_0x5a89b4(0x426)]=0x1771]=_0x5a89b4(0x426),_0x337a10[_0x337a10[_0x5a89b4(0x33f)]=0x1772]=_0x5a89b4(0x33f),_0x337a10[_0x337a10[_0x5a89b4(0x41a)]=0x1773]=_0x5a89b4(0x41a),_0x337a10[_0x337a10[_0x5a89b4(0x355)]=0x1b59]=_0x5a89b4(0x355),_0x337a10[_0x337a10['APPLY_NON_SEQUENTIAL_REVISION']=0x1b5a]='APPLY_NON_SEQUENTIAL_REVISION',_0x337a10[_0x337a10['APPLY_REVISION_CONFILICT']=0x1b5b]=_0x5a89b4(0x3d1),_0x337a10[_0x337a10[_0x5a89b4(0x3be)]=0x1b5c]=_0x5a89b4(0x3be),_0x337a10[_0x337a10[_0x5a89b4(0x55e)]=0x1b5d]=_0x5a89b4(0x55e),_0x337a10[_0x337a10[_0x5a89b4(0x4e8)]=0x1f41]=_0x5a89b4(0x4e8),_0x337a10[_0x337a10[_0x5a89b4(0x4ae)]=0x2329]='LICENSE_MAX_UNITS_EXCEEDED',_0x337a10[_0x337a10[_0x5a89b4(0x245)]=0x232a]=_0x5a89b4(0x245),_0x337a10[_0x337a10['LICENSE_IMPORT_SIZE_EXCEEDED']=0x232b]=_0x5a89b4(0x541),_0x337a10[_0x337a10[_0x5a89b4(0x297)]=0x232c]='LICENSE_EXPORT_SIZE_EXCEEDED',_0x337a10[_0x337a10[_0x5a89b4(0x296)]=0x232d]='LICENSE_DISTRO_REJECTED',_0x337a10[_0x337a10[_0x5a89b4(0x350)]=0x2711]=_0x5a89b4(0x350),_0x337a10[_0x337a10[_0x5a89b4(0x21e)]=0x2712]=_0x5a89b4(0x21e),_0x337a10[_0x337a10['YUUMI_RATE_OVER_LIMIT']=0x2713]=_0x5a89b4(0x357),_0x337a10[_0x337a10['YUUMI_SUBSCRIPTION_NOT_FOUND']=0x2714]=_0x5a89b4(0x342),_0x337a10[_0x337a10[_0x5a89b4(0x157)]=-0x1]=_0x5a89b4(0x157),_0x337a10))(on||{}),ie=(_0x33cac1=>(_0x33cac1[_0x33cac1['UNIVER_UNKNOWN']=0x0]=_0x5a89b4(0x22e),_0x33cac1[_0x33cac1[_0x5a89b4(0x222)]=0x1]=_0x5a89b4(0x222),_0x33cac1[_0x33cac1[_0x5a89b4(0x479)]=0x2]=_0x5a89b4(0x479),_0x33cac1[_0x33cac1[_0x5a89b4(0x423)]=0x3]='UNIVER_SLIDE',_0x33cac1[_0x33cac1[_0x5a89b4(0x25c)]=0x4]=_0x5a89b4(0x25c),_0x33cac1[_0x33cac1[_0x5a89b4(0x157)]=-0x1]=_0x5a89b4(0x157),_0x33cac1))(ie||{}),G=(_0x2203f2=>(_0x2203f2[_0x2203f2[_0x5a89b4(0x516)]=0x0]=_0x5a89b4(0x516),_0x2203f2[_0x2203f2[_0x5a89b4(0x49a)]=0x1]=_0x5a89b4(0x49a),_0x2203f2[_0x2203f2[_0x5a89b4(0x5ef)]=0x2]=_0x5a89b4(0x5ef),_0x2203f2[_0x2203f2[_0x5a89b4(0x5a4)]=0x3]=_0x5a89b4(0x5a4),_0x2203f2[_0x2203f2['INGEST']=0x4]=_0x5a89b4(0x3a9),_0x2203f2[_0x2203f2[_0x5a89b4(0x49e)]=0x5]=_0x5a89b4(0x49e),_0x2203f2[_0x2203f2[_0x5a89b4(0x4ff)]=0x6]=_0x5a89b4(0x4ff),_0x2203f2[_0x2203f2[_0x5a89b4(0x157)]=-0x1]=_0x5a89b4(0x157),_0x2203f2))(G||{}),Ct=(_0x3ea373=>(_0x3ea373[_0x3ea373['UNKNOWN_CODE']=0x0]='UNKNOWN_CODE',_0x3ea373[_0x3ea373['OK']=0x1]='OK',_0x3ea373[_0x3ea373['FAIL']=0x2]=_0x5a89b4(0x40d),_0x3ea373[_0x3ea373['JOIN_ROOM_FULL']=0x3e9]='JOIN_ROOM_FULL',_0x3ea373[_0x3ea373['JOIN_ROOM_NOT_ALLOWED']=0x3ea]=_0x5a89b4(0x5d8),_0x3ea373[_0x3ea373[_0x5a89b4(0x157)]=-0x1]=_0x5a89b4(0x157),_0x3ea373))(Ct||{}),an=(_0x1312fa=>(_0x1312fa[_0x1312fa[_0x5a89b4(0x46e)]=0x0]=_0x5a89b4(0x46e),_0x1312fa[_0x1312fa[_0x5a89b4(0x551)]=0x1]=_0x5a89b4(0x551),_0x1312fa[_0x1312fa[_0x5a89b4(0x55f)]=0x2]=_0x5a89b4(0x55f),_0x1312fa[_0x1312fa[_0x5a89b4(0x521)]=0x3]=_0x5a89b4(0x521),_0x1312fa[_0x1312fa['UnitSnapshot']=0x4]=_0x5a89b4(0x27e),_0x1312fa[_0x1312fa[_0x5a89b4(0x157)]=-0x1]='UNRECOGNIZED',_0x1312fa))(an||{});const ee=_0x5a89b4(0x14e),zn={};function cn(_0x24a121){const _0x32bbdc=_0x5a89b4;var _0x2e0e25,_0x5cd6ba,_0x495eb8,_0x4fa2b5,_0x3b3517;const _0x2c0ed4=_0x24a121[_0x32bbdc(0x3e4)],_0x517bd6=JSON[_0x32bbdc(0x402)](_0x2c0ed4);switch(_0x517bd6['cmd']){case G[_0x32bbdc(0x49e)]:case G['HELLO']:{const _0x4a43c4=_0x517bd6[_0x32bbdc(0x595)];return{..._0x517bd6,'data':_0x4a43c4,'cmd':_0x517bd6[_0x32bbdc(0x30e)]};}case G['JOIN']:{const _0x24a564=_0x517bd6['joinRsp'];return{..._0x517bd6,'data':_0x24a564,'cmd':_0x517bd6[_0x32bbdc(0x30e)]};}case G['RECV']:{const _0x2a6de2=_0x517bd6['collaMsg'];switch(_0x2a6de2[_0x32bbdc(0x14f)]){case p[_0x32bbdc(0x44f)][_0x32bbdc(0x2e3)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':(_0x2e0e25=_0x2a6de2['permissionRejEvent'])==null?void 0x0:_0x2e0e25['cs']},'cmd':_0x517bd6['cmd']};case p['CollaborationEvent'][_0x32bbdc(0x45a)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':(_0x5cd6ba=_0x2a6de2[_0x32bbdc(0x58e)])==null?void 0x0:_0x5cd6ba['cs']},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)][_0x32bbdc(0x233)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':(_0x495eb8=_0x2a6de2['newCsEvent'])==null?void 0x0:_0x495eb8['cs']},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)]['CHANGESET_REJ']:return{..._0x517bd6,'data':{..._0x2a6de2,'data':(_0x4fa2b5=_0x2a6de2['csRejEvent'])==null?void 0x0:_0x4fa2b5['cs']},'cmd':_0x517bd6['cmd']};case p['CollaborationEvent'][_0x32bbdc(0x45b)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':(_0x3b3517=_0x2a6de2[_0x32bbdc(0x60d)])==null?void 0x0:_0x3b3517['cs']},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)][_0x32bbdc(0x2ae)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2[_0x32bbdc(0x497)]},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p['CollaborationEvent']['USERS_ENTER']:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2['joinEvent']},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)]['USERS_LEAVE']:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2['leaveEvent']},'cmd':_0x517bd6['cmd']};case p['CollaborationEvent'][_0x32bbdc(0x3c8)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2[_0x32bbdc(0x50f)]},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)][_0x32bbdc(0x26f)]:case p[_0x32bbdc(0x44f)][_0x32bbdc(0x2bc)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2[_0x32bbdc(0x494)]},'cmd':_0x517bd6['cmd']};case p[_0x32bbdc(0x44f)]['LIVESHARE_TERMINATE']:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2['liveShareNewHost']},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)][_0x32bbdc(0x45c)]:return{..._0x517bd6,'data':_0x2a6de2,'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p['CollaborationEvent']['COMMENT_UPDATE']:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2[_0x32bbdc(0x5b4)]},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p['CollaborationEvent'][_0x32bbdc(0x340)]:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2[_0x32bbdc(0x17e)]},'cmd':_0x517bd6[_0x32bbdc(0x30e)]};case p[_0x32bbdc(0x44f)]['SHOULD_CLOSE_CONN']:return{..._0x517bd6,'data':{..._0x2a6de2,'data':_0x2a6de2[_0x32bbdc(0x25e)]},'cmd':_0x517bd6['cmd']};default:return _0x517bd6;}}default:return _0x517bd6;}}function ln(_0x4d4692){const _0xb62eff=_0x5a89b4;switch(_0x4d4692[_0xb62eff(0x30e)]){case G[_0xb62eff(0x49e)]:case G[_0xb62eff(0x49a)]:return JSON[_0xb62eff(0x456)]({'cmd':_0x4d4692[_0xb62eff(0x30e)],'routeKey':_0x4d4692[_0xb62eff(0x39b)]});case G['INGEST']:{let _0x3ead9a;switch(_0x4d4692[_0xb62eff(0x3e4)][_0xb62eff(0x14f)]){case p['CollaborationEvent'][_0xb62eff(0x2ae)]:{_0x3ead9a={'eventID':p[_0xb62eff(0x44f)][_0xb62eff(0x2ae)],'updateCursorEvent':_0x4d4692[_0xb62eff(0x3e4)]['data']};break;}case p['CollaborationEvent'][_0xb62eff(0x4fa)]:{_0x3ead9a={'eventID':p['CollaborationEvent'][_0xb62eff(0x4fa)],'leaveEvent':_0x4d4692[_0xb62eff(0x3e4)][_0xb62eff(0x3e4)]};break;}case p[_0xb62eff(0x44f)][_0xb62eff(0x2a0)]:{_0x3ead9a={'eventID':p['CollaborationEvent']['USERS_ENTER'],'joinEvent':_0x4d4692[_0xb62eff(0x3e4)]['data']};break;}case p[_0xb62eff(0x44f)][_0xb62eff(0x3c8)]:{_0x3ead9a={'eventID':p['CollaborationEvent']['LIVESHARE_NEW_HOST'],'liveShareNewHost':_0x4d4692['data']['data']};break;}case p['CollaborationEvent'][_0xb62eff(0x2bc)]:{_0x3ead9a={'eventID':p['CollaborationEvent']['LIVESHARE_OPERATION'],'liveShareOperation':_0x4d4692[_0xb62eff(0x3e4)][_0xb62eff(0x3e4)]};break;}case p[_0xb62eff(0x44f)][_0xb62eff(0x3b0)]:{_0x3ead9a={'eventID':p['CollaborationEvent']['LIVESHARE_TERMINATE'],'liveShareTerminate':_0x4d4692[_0xb62eff(0x3e4)][_0xb62eff(0x3e4)]};break;}case p['CollaborationEvent'][_0xb62eff(0x180)]:{_0x3ead9a={'eventID':p[_0xb62eff(0x44f)][_0xb62eff(0x180)],'liveShareRequestHost':_0x4d4692[_0xb62eff(0x3e4)][_0xb62eff(0x3e4)]};break;}case p[_0xb62eff(0x44f)][_0xb62eff(0x26f)]:{_0x3ead9a={'eventID':p[_0xb62eff(0x44f)][_0xb62eff(0x26f)]};break;}default:_0x3ead9a={'eventID':_0x4d4692[_0xb62eff(0x3e4)][_0xb62eff(0x14f)]};}return JSON[_0xb62eff(0x456)]({'cmd':_0x4d4692[_0xb62eff(0x30e)],'routeKey':_0x4d4692[_0xb62eff(0x39b)],'collaMsg':_0x3ead9a});}case G[_0xb62eff(0x5ef)]:return JSON[_0xb62eff(0x456)]({'cmd':_0x4d4692[_0xb62eff(0x30e)],'routeKey':_0x4d4692[_0xb62eff(0x39b)],'joinReq':_0x4d4692[_0xb62eff(0x3e4)]});case G[_0xb62eff(0x5a4)]:return JSON[_0xb62eff(0x456)]({'cmd':_0x4d4692[_0xb62eff(0x30e)],'routeKey':_0x4d4692[_0xb62eff(0x39b)],'leaveReq':_0x4d4692[_0xb62eff(0x3e4)]});default:throw new Error('[serializeCombRequest]:\x20should\x20not\x20fall\x20into\x20default\x20branch!');}}var Xn=Object[_0x5a89b4(0x5bf)],Jn=Object[_0x5a89b4(0x227)],Zn=(_0x2e7775,_0x3c1031,_0x1f1d34,_0x3fbe1c)=>{const _0x3e7181=_0x5a89b4;for(var _0x520dc6=_0x3fbe1c>0x1?void 0x0:_0x3fbe1c?Jn(_0x3c1031,_0x1f1d34):_0x3c1031,_0x510e5e=_0x2e7775[_0x3e7181(0x554)]-0x1,_0x1fd848;_0x510e5e>=0x0;_0x510e5e--)(_0x1fd848=_0x2e7775[_0x510e5e])&&(_0x520dc6=(_0x3fbe1c?_0x1fd848(_0x3c1031,_0x1f1d34,_0x520dc6):_0x1fd848(_0x520dc6))||_0x520dc6);return _0x3fbe1c&&_0x520dc6&&Xn(_0x3c1031,_0x1f1d34,_0x520dc6),_0x520dc6;},we=(_0x5246df,_0x41c3cd)=>(_0x16a843,_0x5a485d)=>_0x41c3cd(_0x16a843,_0x5a485d,_0x5246df);const Et=a[_0x5a89b4(0x2c7)](_0x5a89b4(0x4c7));function Qn(_0x122fac,_0x208283,_0x4fdefd){return _0x122fac+'/'+_0x208283+'/unit/'+_0x4fdefd+'/new_changes';}exports[_0x5a89b4(0x48d)]=class extends a[_0x5a89b4(0x4c8)]{constructor(_0x38f095,_0x3f5e94,_0x36bb9d,_0x30d61d,_0x16489c){const _0x26c3bc=_0x5a89b4;super(),this[_0x26c3bc(0x1c4)]=_0x38f095,this[_0x26c3bc(0x4e4)]=_0x3f5e94,this[_0x26c3bc(0x162)]=_0x36bb9d,this['_logService']=_0x30d61d,this[_0x26c3bc(0x2c1)]=_0x16489c;}[_0x5a89b4(0x1f9)](_0x3521fb){const _0x2d2919=_0x5a89b4,_0x5c9d7e=this[_0x2d2919(0x4e4)][_0x2d2919(0x1f9)](_0x3521fb);if(!_0x5c9d7e)throw new Error('[CollaborationSocketService]:\x20failed\x20to\x20create\x20socket!');const _0x3b75ac=new a[(_0x2d2919(0x523))](),_0x405de1=new A[(_0x2d2919(0x5d2))]();_0x3b75ac['add'](_0x5c9d7e['close$'][_0x2d2919(0x3d8)](_0x1cadc9=>_0x405de1[_0x2d2919(0x52c)](_0x1cadc9))),_0x3b75ac[_0x2d2919(0x5ba)](a[_0x2d2919(0x502)](()=>_0x405de1['complete']()));const _0x2fa4f4=new A['Subject']();_0x3b75ac['add'](_0x5c9d7e[_0x2d2919(0x4cf)][_0x2d2919(0x3d8)](_0x4d4249=>_0x2fa4f4[_0x2d2919(0x52c)](_0x4d4249))),_0x3b75ac[_0x2d2919(0x5ba)](a[_0x2d2919(0x502)](()=>_0x2fa4f4['complete']()));const _0x1a41d3=new A[(_0x2d2919(0x5d2))]();_0x3b75ac[_0x2d2919(0x5ba)](_0x5c9d7e[_0x2d2919(0x1c2)][_0x2d2919(0x3d8)](_0x35e51a=>{const _0x4a28e7=cn(_0x35e51a);_0x1a41d3['next'](_0x4a28e7);})),_0x3b75ac[_0x2d2919(0x5ba)](a['toDisposable'](()=>_0x1a41d3[_0x2d2919(0x1b0)]()));let _0xbdbd6f;const _0x2593c1=()=>{const _0x25b71d=_0x2d2919;_0x2fa4f4['next'](new Event(_0x25b71d(0x439))),_0x405de1[_0x25b71d(0x52c)](new CloseEvent(_0x25b71d(0x439))),_0xbdbd6f[_0x25b71d(0x504)]();};return _0xbdbd6f={'memberID':'','close$':_0x405de1[_0x2d2919(0x159)](),'error$':_0x2fa4f4[_0x2d2919(0x159)](),'open$':_0x5c9d7e[_0x2d2919(0x4ba)],'message$':_0x1a41d3['asObservable'](),'send':_0x4304ed=>{const _0x429f98=_0x2d2919;if(_0x4304ed[_0x429f98(0x30e)]===G[_0x429f98(0x3a9)]){if(_0x4304ed[_0x429f98(0x3e4)][_0x429f98(0x14f)]===p[_0x429f98(0x44f)][_0x429f98(0x42d)]){this[_0x429f98(0x15c)](_0xbdbd6f,_0x4304ed['data'])[_0x429f98(0x526)](_0x3f6870=>{const _0x4f3b79=_0x429f98;this[_0x4f3b79(0x52a)]['error'](_0x3f6870),_0x2593c1();});return;}if(_0x4304ed[_0x429f98(0x3e4)][_0x429f98(0x14f)]===p[_0x429f98(0x44f)][_0x429f98(0x1bc)]){const _0x387243=_0x4304ed[_0x429f98(0x3e4)];this[_0x429f98(0x198)](_0x387243)['then'](_0x176e95=>{const _0x4574b4=_0x429f98;_0x1a41d3[_0x4574b4(0x52c)]({'cmd':G[_0x4574b4(0x4ff)],'code':Ct['OK'],'routeKey':_0x387243[_0x4574b4(0x3e4)]['unitID'],'routeType':'','data':{'eventID':p[_0x4574b4(0x44f)]['PSEUDO_FETCH_MISSING_RESULT'],'data':{'changesets':_0x176e95}}});})[_0x429f98(0x526)](_0x100453=>{const _0x5de7f3=_0x429f98;this['_logService'][_0x5de7f3(0x395)](_0x100453),_0x2593c1();});return;}}_0x5c9d7e[_0x429f98(0x2c4)](ln(_0x4304ed));},'close':()=>{const _0x29306d=_0x2d2919;_0x5c9d7e[_0x29306d(0x504)](),_0x3b75ac[_0x29306d(0x1db)]();}},_0xbdbd6f;}async[_0x5a89b4(0x15c)](_0xc73f83,_0x179cd4){const _0x51ad17=_0x5a89b4;var _0x4ced09,_0x2063c6;const {unitType:_0x18d561,unitID:_0x116e3b,changeset:_0x5d4fbe}=_0x179cd4[_0x51ad17(0x3e4)],_0x4a5d89={'unitID':_0x116e3b,'memberID':_0xc73f83['memberID'],'type':_0x18d561,'changeset':p['parseChangesetToProtocol'](_0x5d4fbe)},_0x2e1270=this['_configService'][_0x51ad17(0x287)](sn),_0x3fc012=this[_0x51ad17(0x162)][_0x51ad17(0x287)](ee),_0x27c244=Qn((_0x2063c6=(_0x4ced09=_0x3fc012==null?void 0x0:_0x3fc012[_0x51ad17(0x4ea)])!=null?_0x4ced09:_0x2e1270)!=null?_0x2063c6:Kn,_0x18d561,_0x116e3b);try{await this[_0x51ad17(0x1c4)][_0x51ad17(0x38f)](_0x27c244,{'body':_0x4a5d89});}catch(_0x4e1811){throw this['_logService'][_0x51ad17(0x395)](_0x51ad17(0x19b),'submit\x20changeset\x20error!'),_0x4e1811;}}async[_0x5a89b4(0x198)](_0x480664){const _0x1ecdec=_0x5a89b4,{unitID:_0x9270e1,from:_0x3e3206,to:_0x53df64,unitType:_0x916a02}=_0x480664[_0x1ecdec(0x3e4)];return(await this['_snapshotServerService'][_0x1ecdec(0x237)]({'metadata':void 0x0},{'unitID':_0x9270e1,'type':_0x916a02,'from':_0x3e3206,'to':_0x53df64}))[_0x1ecdec(0x602)];}},exports[_0x5a89b4(0x48d)]=Zn([we(0x0,a[_0x5a89b4(0x3d5)](J[_0x5a89b4(0x294)])),we(0x1,a[_0x5a89b4(0x3d5)](J['WebSocketService'])),we(0x2,a[_0x5a89b4(0x569)]),we(0x3,a[_0x5a89b4(0x3dd)]),we(0x4,p[_0x5a89b4(0x3a2)])],exports[_0x5a89b4(0x48d)]);const ei=_0x5a89b4(0x2d3);function ti(_0x266f6b){const _0x49c2d5=_0x5a89b4;return JSON[_0x49c2d5(0x456)](_0x266f6b)[_0x49c2d5(0x554)];}class bt{constructor(){const _0x221b3a=_0x5a89b4;I(this,_0x221b3a(0x41f),new A[(_0x221b3a(0x5d2))]()),I(this,'commentUpdate$',this['_commentUpdate$']['asObservable']());}['onCommentUpdate'](_0x134be2){const _0x119c9d=_0x5a89b4;this[_0x119c9d(0x41f)][_0x119c9d(0x52c)](_0x134be2);}}var ni=Object['defineProperty'],ii=Object[_0x5a89b4(0x227)],si=(_0x2dc86d,_0x2dcb20,_0x437d4f,_0x1349f7)=>{const _0x514c1e=_0x5a89b4;for(var _0x3bac92=_0x1349f7>0x1?void 0x0:_0x1349f7?ii(_0x2dcb20,_0x437d4f):_0x2dcb20,_0x3f3e3f=_0x2dc86d[_0x514c1e(0x554)]-0x1,_0x3cb549;_0x3f3e3f>=0x0;_0x3f3e3f--)(_0x3cb549=_0x2dc86d[_0x3f3e3f])&&(_0x3bac92=(_0x1349f7?_0x3cb549(_0x2dcb20,_0x437d4f,_0x3bac92):_0x3cb549(_0x3bac92))||_0x3bac92);return _0x1349f7&&_0x3bac92&&ni(_0x2dcb20,_0x437d4f,_0x3bac92),_0x3bac92;},Pt=(_0x4c1ed5,_0x1bef85)=>(_0x1188cb,_0x12b07e)=>_0x1bef85(_0x1188cb,_0x12b07e,_0x4c1ed5);exports[_0x5a89b4(0x5ac)]=class extends a[_0x5a89b4(0x4c8)]{constructor(_0x33c2aa,_0x59125a){const _0x3fa588=_0x5a89b4;super(),I(this,_0x3fa588(0x4d7),new Map()),(this[_0x3fa588(0x4b5)]=_0x33c2aa,this[_0x3fa588(0x4f6)]=_0x59125a,this['disposeWithMe'](a[_0x3fa588(0x502)](A[_0x3fa588(0x209)](this['_univerInstanceService'][_0x3fa588(0x2fd)](a[_0x3fa588(0x1af)][_0x3fa588(0x479)])['pipe'](V['map'](_0x34fae0=>_0x34fae0[_0x3fa588(0x5df)]())),this[_0x3fa588(0x4b5)]['getTypeOfUnitDisposed$'](a[_0x3fa588(0x1af)]['UNIVER_DOC'])[_0x3fa588(0x564)](V[_0x3fa588(0x272)](_0x50acd6=>_0x50acd6[_0x3fa588(0x5df)]())),this[_0x3fa588(0x4b5)][_0x3fa588(0x2fd)](a[_0x3fa588(0x1af)][_0x3fa588(0x423)])[_0x3fa588(0x564)](V[_0x3fa588(0x272)](_0x140fb1=>_0x140fb1[_0x3fa588(0x5df)]())))[_0x3fa588(0x3d8)](_0x3962ac=>this[_0x3fa588(0x481)](_0x3962ac)))));}[_0x5a89b4(0x562)](_0x340ac9){const _0x52428f=_0x5a89b4;this[_0x52428f(0x4f6)][_0x52428f(0x562)](_0x340ac9);}['getCurrentUser'](){const _0x1e6310=_0x5a89b4;return this[_0x1e6310(0x4f6)][_0x1e6310(0x249)]();}[_0x5a89b4(0x3ed)](_0x2d3990,_0x35bfa7){const _0x39d71c=_0x5a89b4;let _0x288c32=this[_0x39d71c(0x4d7)]['get'](_0x2d3990);_0x288c32||(_0x288c32=new ri(),this[_0x39d71c(0x4d7)][_0x39d71c(0x352)](_0x2d3990,_0x288c32)),_0x288c32['updateMember'](_0x35bfa7);}[_0x5a89b4(0x5a5)](_0x71e68b,_0x22ee46){const _0x3c7f8a=_0x5a89b4,_0x36cb8e=this[_0x3c7f8a(0x4d7)][_0x3c7f8a(0x58d)](_0x71e68b);_0x36cb8e&&_0x36cb8e['removeMember'](_0x22ee46);}['getRoom'](_0x4ec665){const _0x3a5602=_0x5a89b4;return this[_0x3a5602(0x4d7)][_0x3a5602(0x58d)](_0x4ec665);}[_0x5a89b4(0x21b)](_0x9f3c77,_0x18a827){const _0x429fb0=_0x5a89b4,_0x1f6e20=this[_0x429fb0(0x4d7)]['get'](_0x9f3c77);if(_0x1f6e20)return _0x1f6e20['getMember'](_0x18a827);}[_0x5a89b4(0x481)](_0x338aaf){const _0x4ca577=_0x5a89b4,_0x1f5be8=this[_0x4ca577(0x4d7)][_0x4ca577(0x58d)](_0x338aaf);_0x1f5be8&&(_0x1f5be8[_0x4ca577(0x1db)](),this[_0x4ca577(0x4d7)][_0x4ca577(0x204)](_0x338aaf));}[_0x5a89b4(0x1db)](){const _0x48117b=_0x5a89b4;this[_0x48117b(0x4d7)][_0x48117b(0x3a4)](_0x35b041=>_0x35b041[_0x48117b(0x1db)]()),this['_roomMembers']['clear']();}},exports[_0x5a89b4(0x5ac)]=si([Pt(0x0,a[_0x5a89b4(0x21c)]),Pt(0x1,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x54e)]))],exports[_0x5a89b4(0x5ac)]);class ri extends a[_0x5a89b4(0x4c8)]{constructor(){const _0xb3844d=_0x5a89b4;super(...arguments),I(this,_0xb3844d(0x414),new Map());}[_0x5a89b4(0x1db)](){const _0x336fe2=_0x5a89b4;this[_0x336fe2(0x414)][_0x336fe2(0x5d5)]();}[_0x5a89b4(0x3ed)](_0x3f548c){const _0x26074=_0x5a89b4;this[_0x26074(0x414)][_0x26074(0x352)](_0x3f548c[_0x26074(0x29c)],_0x3f548c);}['removeMember'](_0x51c1c6){const _0x46dbac=_0x5a89b4;this[_0x46dbac(0x414)]['delete'](_0x51c1c6);}['getMember'](_0x31c1d8){const _0x399fe3=_0x5a89b4;return this[_0x399fe3(0x414)][_0x399fe3(0x58d)](_0x31c1d8);}[_0x5a89b4(0x2ab)](){const _0x575375=_0x5a89b4;return Array[_0x575375(0x2fc)](this[_0x575375(0x414)]['values']());}}var oi=Object['defineProperty'],ai=Object[_0x5a89b4(0x227)],ci=(_0x350e6,_0x26f290,_0x9038fd,_0x139ab8)=>{const _0x59ed89=_0x5a89b4;for(var _0x246768=_0x139ab8>0x1?void 0x0:_0x139ab8?ai(_0x26f290,_0x9038fd):_0x26f290,_0x230703=_0x350e6[_0x59ed89(0x554)]-0x1,_0x4f08c8;_0x230703>=0x0;_0x230703--)(_0x4f08c8=_0x350e6[_0x230703])&&(_0x246768=(_0x139ab8?_0x4f08c8(_0x26f290,_0x9038fd,_0x246768):_0x4f08c8(_0x246768))||_0x246768);return _0x139ab8&&_0x246768&&oi(_0x26f290,_0x9038fd,_0x246768),_0x246768;},de=(_0x928ee6,_0x18c7e3)=>(_0x633ede,_0x1403e7)=>_0x18c7e3(_0x633ede,_0x1403e7,_0x928ee6),se=(_0x3e889c=>(_0x3e889c[_0x3e889c[_0x5a89b4(0x29b)]=0x0]='IDLE',_0x3e889c[_0x3e889c['JOINING']=0x1]=_0x5a89b4(0x266),_0x3e889c[_0x3e889c[_0x5a89b4(0x289)]=0x2]=_0x5a89b4(0x289),_0x3e889c[_0x3e889c[_0x5a89b4(0x609)]=0x3]=_0x5a89b4(0x609),_0x3e889c))(se||{});exports[_0x5a89b4(0x244)]=class extends a['RxDisposable']{constructor(_0x5bfff7,_0x3a7ade,_0x57f82d,_0x27d746,_0x310cb3,_0x2c0e55,_0x52afdc,_0x340a26,_0x5dff38,_0x15ecb6){const _0xb54bdb=_0x5a89b4;super(),I(this,_0xb54bdb(0x555),new A['BehaviorSubject'](0x0)),I(this,_0xb54bdb(0x5e0),this[_0xb54bdb(0x555)]['asObservable']()),I(this,_0xb54bdb(0x1b5),new A['Subject']()),I(this,_0xb54bdb(0x52f),this[_0xb54bdb(0x1b5)][_0xb54bdb(0x159)]()),I(this,_0xb54bdb(0x464)),I(this,_0xb54bdb(0x5cb)),I(this,'_collaborationTimeoutTimer'),I(this,_0xb54bdb(0x39f),!0x1),I(this,_0xb54bdb(0x58b),null),(this[_0xb54bdb(0x22f)]=_0x5bfff7,this[_0xb54bdb(0x52a)]=_0x57f82d,this[_0xb54bdb(0x404)]=_0x27d746,this['_messageService']=_0x310cb3,this[_0xb54bdb(0x162)]=_0x2c0e55,this[_0xb54bdb(0x37c)]=_0x52afdc,this[_0xb54bdb(0x47d)]=_0x340a26,this['_commentService']=_0x5dff38,this[_0xb54bdb(0x52b)]=_0x15ecb6,this['_shouldReportTelemetry']=!!this[_0xb54bdb(0x52b)],_0x3a7ade[_0xb54bdb(0x564)](A['takeUntil'](this['dispose$']))['subscribe'](_0xf1625c=>{const _0x3dd83c=_0xb54bdb;var _0x5ef42f;typeof _0xf1625c>'u'||(this['_socket']=_0xf1625c,_0xf1625c?(this[_0x3dd83c(0x472)](_0xf1625c),this[_0x3dd83c(0x5cb)]=_0xf1625c[_0x3dd83c(0x1c2)][_0x3dd83c(0x3d8)](_0x3e5c73=>{const _0x5ddebd=_0x3dd83c;_0x3e5c73[_0x5ddebd(0x39b)]===this[_0x5ddebd(0x22f)]&&this[_0x5ddebd(0x158)](_0x3e5c73);})):(this['_throwTelemetryCollaborationNewChangeset'](),this[_0x3dd83c(0x555)][_0x3dd83c(0x52c)](0x2),(_0x5ef42f=this[_0x3dd83c(0x5cb)])==null||_0x5ef42f[_0x3dd83c(0x2c2)](),this[_0x3dd83c(0x5cb)]=null));}),this['disposeWithMe'](this[_0xb54bdb(0x404)][_0xb54bdb(0x173)](()=>{const _0x41127a=_0xb54bdb;var _0x3dd318;(_0x3dd318=this[_0x41127a(0x464)])==null||_0x3dd318[_0x41127a(0x2c4)]({'cmd':G['LEAVE'],'data':{'roomID':this[_0x41127a(0x22f)]}});})));}get['sessionStatus'](){const _0x5d89e4=_0x5a89b4;return this[_0x5d89e4(0x555)][_0x5d89e4(0x5fb)]();}[_0x5a89b4(0x578)](){const _0x76336c=_0x5a89b4;var _0x3d7e2b,_0x551b7d;return(_0x551b7d=(_0x3d7e2b=this[_0x76336c(0x464)])==null?void 0x0:_0x3d7e2b[_0x76336c(0x29c)])!=null?_0x551b7d:null;}['dispose'](){const _0x13c2d2=_0x5a89b4;super['dispose'](),this[_0x13c2d2(0x256)][_0x13c2d2(0x52c)](),this['dispose$']['complete']();}['close'](){const _0x3d7b58=_0x5a89b4;var _0x4ac127,_0xbecc14;this[_0x3d7b58(0x4af)](),(_0x4ac127=this['_socket'])==null||_0x4ac127[_0x3d7b58(0x2c4)]({'cmd':G['LEAVE'],'data':{'roomID':this[_0x3d7b58(0x22f)]}}),(_0xbecc14=this[_0x3d7b58(0x464)])==null||_0xbecc14[_0x3d7b58(0x504)](),this[_0x3d7b58(0x1b5)]['complete'](),this[_0x3d7b58(0x555)][_0x3d7b58(0x1b0)](),this[_0x3d7b58(0x1db)]();}[_0x5a89b4(0x158)](_0x4ac294){const _0x30e8c1=_0x5a89b4;_0x4ac294[_0x30e8c1(0x30e)]===G[_0x30e8c1(0x5ef)]?this[_0x30e8c1(0x314)](_0x4ac294):_0x4ac294[_0x30e8c1(0x30e)]===G[_0x30e8c1(0x4ff)]&&this[_0x30e8c1(0x197)](_0x4ac294);}[_0x5a89b4(0x472)](_0x1651a7){const _0x697cd=_0x5a89b4;this[_0x697cd(0x555)][_0x697cd(0x52c)](0x1),_0x1651a7[_0x697cd(0x2c4)]({'cmd':G[_0x697cd(0x5ef)],'routeKey':this['_unitID'],'routeType':'','data':{'rooms':[{'roomID':this[_0x697cd(0x22f)]}]}});}['_onJoinRoomEvent'](_0x206091){const _0xf72101=_0x5a89b4;var _0x209eec;if(_0x206091[_0xf72101(0x323)]===Ct['FAIL']){this['_messageService'][_0xf72101(0x2ad)]({'type':Ie['MessageType'][_0xf72101(0x307)],'content':this[_0xf72101(0x37c)]['t']('session.room-full')}),this[_0xf72101(0x555)][_0xf72101(0x52c)](0x2);return;}this[_0xf72101(0x555)][_0xf72101(0x52c)](0x3);const _0x575a81=(_0x209eec=_0x206091[_0xf72101(0x3e4)]['roomInfos'][this[_0xf72101(0x22f)]])==null?void 0x0:_0x209eec[_0xf72101(0x509)];_0x575a81&&_0x575a81[_0xf72101(0x3a4)](_0x45a80f=>this[_0xf72101(0x47d)][_0xf72101(0x3ed)](this[_0xf72101(0x22f)],_0x45a80f));}[_0x5a89b4(0x197)](_0x3ca14b){const _0x97cfce=_0x5a89b4;try{const _0x456330=_0x3ca14b[_0x97cfce(0x3e4)];switch(_0x456330[_0x97cfce(0x14f)]){case p[_0x97cfce(0x44f)][_0x97cfce(0x2a0)]:this[_0x97cfce(0x291)](_0x456330),this[_0x97cfce(0x1b5)][_0x97cfce(0x52c)](_0x456330);break;case p[_0x97cfce(0x44f)][_0x97cfce(0x4fa)]:this[_0x97cfce(0x5ca)](_0x456330),this[_0x97cfce(0x1b5)][_0x97cfce(0x52c)](_0x456330);break;case p[_0x97cfce(0x44f)][_0x97cfce(0x45a)]:case p[_0x97cfce(0x44f)][_0x97cfce(0x45b)]:this[_0x97cfce(0x4d0)](),this[_0x97cfce(0x3e3)](),this['_event$']['next'](_0x456330);break;case p['CollaborationEvent'][_0x97cfce(0x45c)]:this[_0x97cfce(0x52a)][_0x97cfce(0x395)]('save\x20fail\x20reason\x20is\x20'+JSON['stringify'](_0x456330)),this[_0x97cfce(0x1b5)][_0x97cfce(0x52c)](_0x456330);break;case p['CollaborationEvent'][_0x97cfce(0x4f5)]:this[_0x97cfce(0x58a)][_0x97cfce(0x416)](_0x456330['data']),this['_event$'][_0x97cfce(0x52c)](_0x456330);break;default:this[_0x97cfce(0x1b5)][_0x97cfce(0x52c)](_0x456330);}}catch(_0x3b4b33){this[_0x97cfce(0x52a)][_0x97cfce(0x395)](_0x3b4b33,_0x3ca14b);}}[_0x5a89b4(0x291)](_0xeb087e){const _0xbac910=_0x5a89b4;this[_0xbac910(0x47d)][_0xbac910(0x3ed)](this[_0xbac910(0x22f)],_0xeb087e[_0xbac910(0x3e4)]);}[_0x5a89b4(0x5ca)](_0x272bd4){const _0x59f3fc=_0x5a89b4;this[_0x59f3fc(0x47d)][_0x59f3fc(0x5a5)](this[_0x59f3fc(0x22f)],_0x272bd4[_0x59f3fc(0x3e4)][_0x59f3fc(0x29c)]);}async['send'](_0x411f1f,_0x46c163){const _0x1d203c=_0x5a89b4;if(this[_0x1d203c(0x3cb)]!==0x3||!this[_0x1d203c(0x464)])throw new Error('[CollaborationSession]:\x20should\x20not\x20send\x20message\x20when\x20the\x20session\x20is\x20offline!');try{_0x411f1f['eventID']===p['CollaborationEvent'][_0x1d203c(0x42d)]&&(this['_scheduleCollaborationTimeoutTimer'](),this['_startTelemetryCollaborationNewChangeset'](_0x411f1f)),this[_0x1d203c(0x464)]['send']({'cmd':G[_0x1d203c(0x3a9)],'routeKey':_0x46c163,'routeType':'','data':_0x411f1f});}catch(_0x541e6f){this[_0x1d203c(0x52a)][_0x1d203c(0x395)](_0x541e6f);}}[_0x5a89b4(0x191)](){const _0x51769d=_0x5a89b4;var _0xf1f20e;this['_collaborationTimeoutTimer']=window[_0x51769d(0x22a)](()=>{const _0x27f66e=_0x51769d;this[_0x27f66e(0x4c9)]=null,this[_0x27f66e(0x44a)][_0x27f66e(0x2ad)]({'type':Ie[_0x27f66e(0x1cd)][_0x27f66e(0x412)],'content':this[_0x27f66e(0x37c)]['t']('session.collaboration-timeout')});},(_0xf1f20e=this[_0x51769d(0x162)]['getConfig'](It))!=null?_0xf1f20e:en);}['_clearCollaborationTimeoutTimer'](){this['_collaborationTimeoutTimer']&&(clearTimeout(this['_collaborationTimeoutTimer']),this['_collaborationTimeoutTimer']=null);}[_0x5a89b4(0x442)](_0x1baad8){const _0x4f93e6=_0x5a89b4;if(!this[_0x4f93e6(0x39f)])return;const {data:_0x5a8f23}=_0x1baad8,{unitID:_0x386451,changeset:_0x29a95e}=_0x5a8f23,{mutations:_0x1dedfd,type:_0x4dc8fd}=_0x29a95e;this[_0x4f93e6(0x58b)]={'unitId':_0x386451,'type':_0x4dc8fd,'startTime':performance[_0x4f93e6(0x38a)](),'stopTime':0x0,'duration':0x0,'size':ti(_0x1dedfd)};}[_0x5a89b4(0x4d0)](){const _0x4a73c9=_0x5a89b4;if(this[_0x4a73c9(0x39f)]){if(!this[_0x4a73c9(0x58b)]){this[_0x4a73c9(0x52a)][_0x4a73c9(0x395)](_0x4a73c9(0x19b),'telemetry\x20info\x20is\x20not\x20initialized');return;}this[_0x4a73c9(0x58b)][_0x4a73c9(0x4ee)]=performance[_0x4a73c9(0x38a)](),this['_telemetryInfo'][_0x4a73c9(0x18d)]=this[_0x4a73c9(0x58b)][_0x4a73c9(0x4ee)]-this[_0x4a73c9(0x58b)][_0x4a73c9(0x3e1)],this['_telemetryService'][_0x4a73c9(0x18a)](ei,this[_0x4a73c9(0x58b)]),this[_0x4a73c9(0x58b)]=null;}}[_0x5a89b4(0x4af)](){this['_telemetryInfo']=null;}},exports[_0x5a89b4(0x244)]=ci([de(0x2,a['ILogService']),de(0x3,te[_0x5a89b4(0x321)]),de(0x4,te[_0x5a89b4(0x38b)]),de(0x5,a[_0x5a89b4(0x569)]),de(0x6,a[_0x5a89b4(0x3d5)](a['LocaleService'])),de(0x7,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x5ac)])),de(0x8,a[_0x5a89b4(0x3d5)](bt)),de(0x9,a[_0x5a89b4(0x587)](xn[_0x5a89b4(0x280)]))],exports[_0x5a89b4(0x244)]);var li=Object['defineProperty'],hi=Object[_0x5a89b4(0x227)],_i=(_0x59ec47,_0xc857b3,_0x3fd175,_0x3f5298)=>{const _0x3e1100=_0x5a89b4;for(var _0x3681ca=_0x3f5298>0x1?void 0x0:_0x3f5298?hi(_0xc857b3,_0x3fd175):_0xc857b3,_0x10c094=_0x59ec47[_0x3e1100(0x554)]-0x1,_0x59be97;_0x10c094>=0x0;_0x10c094--)(_0x59be97=_0x59ec47[_0x10c094])&&(_0x3681ca=(_0x3f5298?_0x59be97(_0xc857b3,_0x3fd175,_0x3681ca):_0x59be97(_0x3681ca))||_0x3681ca);return _0x3f5298&&_0x3681ca&&li(_0xc857b3,_0x3fd175,_0x3681ca),_0x3681ca;},pe=(_0x5c7ecf,_0x2176ba)=>(_0x50b189,_0x1fbb4e)=>_0x2176ba(_0x50b189,_0x1fbb4e,_0x5c7ecf);exports[_0x5a89b4(0x19c)]=class extends a[_0x5a89b4(0x4c8)]{constructor(_0x4b49e6,_0x19a40c,_0x612c2e,_0x5a87b9,_0x93fb2e,_0x4843a7,_0x12f982){const _0x2d8da=_0x5a89b4;super(),I(this,'_socket$',new A[(_0x2d8da(0x4c2))](void 0x0)),I(this,'socket$',this['_socket$']['asObservable']()),I(this,_0x2d8da(0x5bc),null),I(this,_0x2d8da(0x380),new Map()),I(this,_0x2d8da(0x386),new A[(_0x2d8da(0x4c2))](se['IDLE'])),I(this,_0x2d8da(0x178),this[_0x2d8da(0x386)][_0x2d8da(0x159)]()),I(this,_0x2d8da(0x4ce),!0x1),I(this,_0x2d8da(0x3c2)),I(this,'_retryCount',0x0),I(this,_0x2d8da(0x520)),I(this,'_timeoutTimer'),(this['_injector']=_0x4b49e6,this[_0x2d8da(0x37c)]=_0x19a40c,this[_0x2d8da(0x44a)]=_0x612c2e,this['_logService']=_0x5a87b9,this[_0x2d8da(0x162)]=_0x93fb2e,this[_0x2d8da(0x33b)]=_0x4843a7,this[_0x2d8da(0x379)]=_0x12f982,this[_0x2d8da(0x55a)]());}get[_0x5a89b4(0x464)](){const _0x45a60b=_0x5a89b4;return this[_0x45a60b(0x23b)][_0x45a60b(0x5fb)]();}[_0x5a89b4(0x55a)](){const _0x30ca0d=_0x5a89b4;this[_0x30ca0d(0x1cb)](),this['_listenToOnlineEvent']();}[_0x5a89b4(0x1db)](){const _0xb170ef=_0x5a89b4;super['dispose'](),this[_0xb170ef(0x380)][_0xb170ef(0x3a4)](_0x132a55=>_0x132a55[_0xb170ef(0x1db)]()),this[_0xb170ef(0x380)]['clear'](),this[_0xb170ef(0x386)]['complete']();}async['requireSession'](_0x23ac6a){const _0x556054=_0x5a89b4;if(this[_0x556054(0x380)][_0x556054(0x4df)](_0x23ac6a))return this[_0x556054(0x380)]['get'](_0x23ac6a);this['_tryEnsureSocket']();const _0xc4db0b=this[_0x556054(0x274)][_0x556054(0x45d)](exports['CollaborationSession'],_0x23ac6a,this['_socket$'][_0x556054(0x159)]());return this[_0x556054(0x380)][_0x556054(0x352)](_0x23ac6a,_0xc4db0b),_0xc4db0b;}[_0x5a89b4(0x4f3)](_0x3c0132){const _0xeae53f=_0x5a89b4;var _0xb8b498;const _0x3f0e3d=this[_0xeae53f(0x380)][_0xeae53f(0x58d)](_0x3c0132);_0x3f0e3d&&(this[_0xeae53f(0x380)][_0xeae53f(0x204)](_0x3c0132),_0x3f0e3d[_0xeae53f(0x504)]()),this[_0xeae53f(0x380)]['size']||(_0xb8b498=this[_0xeae53f(0x464)])==null||_0xb8b498['close']();}[_0x5a89b4(0x604)](){const _0x29c688=_0x5a89b4;this['_retryCount']=0x0,this['_retryConnectingTimer']!=null&&(clearTimeout(this[_0x29c688(0x3c2)]),this['_retryConnectingTimer']=null),this[_0x29c688(0x538)]();}async[_0x5a89b4(0x270)](){const _0x4be1d3=_0x5a89b4;var _0xa768e5,_0x198542,_0x429a61;const _0x1762d2=this[_0x4be1d3(0x162)][_0x4be1d3(0x287)](ee),_0x4ff2fe=(_0xa768e5=_0x1762d2==null?void 0x0:_0x1762d2['wsSessionTicketUrl'])!=null?_0xa768e5:Wn;return(_0x429a61=(_0x198542=(await this[_0x4be1d3(0x379)][_0x4be1d3(0x58d)](_0x4ff2fe,{'headers':{'Content-Type':'application/json'}}))['body'])==null?void 0x0:_0x198542[_0x4be1d3(0x3a6)])!=null?_0x429a61:'';}[_0x5a89b4(0x15f)](_0x67815d){const _0x324808=_0x5a89b4;var _0x1851c8,_0x3fefe7;const _0x377f9b=this[_0x324808(0x162)]['getConfig'](Zt),_0x2bf187=this[_0x324808(0x162)][_0x324808(0x287)](ee),_0x2b70bf=(_0x3fefe7=(_0x1851c8=_0x2bf187==null?void 0x0:_0x2bf187[_0x324808(0x4b6)])!=null?_0x1851c8:_0x377f9b)!=null?_0x3fefe7:Bn,_0x5da9e5=new URL(_0x2b70bf,window[_0x324808(0x5e5)][_0x324808(0x32d)]);return _0x5da9e5[_0x324808(0x2fe)][_0x324808(0x352)]('sessionTicket',_0x67815d),_0x5da9e5[_0x324808(0x54b)]();}async['_createSocket'](){const _0x418ead=_0x5a89b4,_0x5944d5=await this[_0x418ead(0x270)](),_0x390bb0=this[_0x418ead(0x15f)](_0x5944d5),_0x4a9824=this['_socketService'][_0x418ead(0x1f9)](_0x390bb0);return this[_0x418ead(0x5bc)]=_0x4a9824,_0x4a9824;}async[_0x5a89b4(0x1ba)](){const _0xa7f37f=_0x5a89b4;var _0x44f3c6,_0x2fa52f;try{const _0x48bb66=(_0x2fa52f=(_0x44f3c6=this[_0xa7f37f(0x464)])!=null?_0x44f3c6:this['_candidateSocket'])!=null?_0x2fa52f:await this[_0xa7f37f(0x44c)]();if(_0x48bb66){const _0x23a766=_0x48bb66[_0xa7f37f(0x2c4)];_0x48bb66[_0xa7f37f(0x2c4)]=_0x2956a8=>(this['_rescheduleHeartbeat'](),_0x23a766[_0xa7f37f(0x2b9)](_0x48bb66,[_0x2956a8])),_0x48bb66[_0xa7f37f(0x1c2)]['subscribe'](_0x4eec0c=>this['_onMessage'](_0x48bb66,_0x4eec0c)),_0x48bb66[_0xa7f37f(0x4cf)]['pipe'](V[_0xa7f37f(0x3ef)](0x1))['subscribe'](_0xe880c2=>this[_0xa7f37f(0x52a)][_0xa7f37f(0x395)](_0xa7f37f(0x23d),_0xe880c2)),_0x48bb66['open$'][_0xa7f37f(0x564)](V[_0xa7f37f(0x3ef)](0x1))[_0xa7f37f(0x3d8)](()=>{this['_onConnectionOpen'](_0x48bb66);}),_0x48bb66[_0xa7f37f(0x183)][_0xa7f37f(0x564)](V['take'](0x1))[_0xa7f37f(0x3d8)](_0x1da840=>{const _0x55e2b0=_0xa7f37f;this[_0x55e2b0(0x52a)][_0x55e2b0(0x210)]('[CollaborationSessionService]',_0x55e2b0(0x492),_0x1da840),this['_onConnectionFailed']();});}}catch(_0xeaedb6){this[_0xa7f37f(0x52a)][_0xa7f37f(0x395)](_0xeaedb6),this['_onConnectionFailed']();}}[_0x5a89b4(0x326)](_0xd2a2f7){const _0x2f49d7=_0x5a89b4;this[_0x2f49d7(0x52a)][_0x2f49d7(0x210)](_0x2f49d7(0x4bf),'socket\x20open.'),_0xd2a2f7[_0x2f49d7(0x2c4)]({'cmd':G[_0x2f49d7(0x49a)]}),this[_0x2f49d7(0x2a7)]();}[_0x5a89b4(0x1cb)](){const _0x4acce5=_0x5a89b4;window[_0x4acce5(0x1b6)](_0x4acce5(0x5d9),()=>this['_onOffline']());}[_0x5a89b4(0x264)](){const _0x5a6bff=_0x5a89b4;this[_0x5a6bff(0x4ce)]=!0x1,this[_0x5a6bff(0x5bc)]=null,this[_0x5a6bff(0x386)][_0x5a6bff(0x52c)](se['OFFLINE']),this[_0x5a6bff(0x23b)]['next'](null),this[_0x5a6bff(0x3ee)](),this['_clearHeartbeatTimer']();}[_0x5a89b4(0x5f3)](){const _0x3e852b=_0x5a89b4;var _0x164a13;this[_0x3e852b(0x264)](),this[_0x3e852b(0x1e5)]<((_0x164a13=this[_0x3e852b(0x162)][_0x3e852b(0x287)](tn))!=null?_0x164a13:Gn)?(this[_0x3e852b(0x44a)][_0x3e852b(0x2ad)]({'key':_0x3e852b(0x1df),'type':Ie[_0x3e852b(0x1cd)][_0x3e852b(0x307)],'content':this['_localeService']['t'](_0x3e852b(0x2c6))}),this[_0x3e852b(0x538)]()):this[_0x3e852b(0x44a)][_0x3e852b(0x2ad)]({'key':_0x3e852b(0x1df),'type':Ie[_0x3e852b(0x1cd)][_0x3e852b(0x412)],'content':this['_localeService']['t'](_0x3e852b(0x2f8))});}['_listenToOnlineEvent'](){const _0x4845bb=_0x5a89b4,_0x1562f4=()=>{const _0x44f165=_0x4da2;this[_0x44f165(0x464)]||this['reconnect']();},_0x323985=()=>{const _0x3ea575=_0x4da2;this[_0x3ea575(0x464)]||document[_0x3ea575(0x43f)]===_0x3ea575(0x4b4)||this['reconnect']();};window[_0x4845bb(0x1b6)](_0x4845bb(0x5ed),_0x1562f4),document['addEventListener'](_0x4845bb(0x49f),_0x323985);}[_0x5a89b4(0x538)](){const _0x102f54=_0x5a89b4;var _0x357727;const _0x41e644=this['_retryCount'],_0x3a6f64=this[_0x102f54(0x162)][_0x102f54(0x287)](ee),_0x39e4a8=_0x41e644===0x0?0x0:((_0x357727=_0x3a6f64==null?void 0x0:_0x3a6f64['retryConnectingInterval'])!=null?_0x357727:Vn)*0x2**_0x41e644;this[_0x102f54(0x3c2)]=window[_0x102f54(0x22a)](()=>{const _0x5de5f8=_0x102f54;clearTimeout(this['_retryConnectingTimer']),this[_0x5de5f8(0x3c2)]=null,this['_tryEnsureSocket']();},_0x39e4a8),this[_0x102f54(0x1e5)]+=0x1;}['_onMessage'](_0x2910f2,_0x3f7ced){const _0x58015e=_0x5a89b4,{cmd:_0x76541a}=_0x3f7ced;_0x76541a===G['HELLO']&&!this[_0x58015e(0x4ce)]&&(_0x2910f2[_0x58015e(0x29c)]=_0x3f7ced[_0x58015e(0x3e4)][_0x58015e(0x29c)],this[_0x58015e(0x23b)][_0x58015e(0x52c)](_0x2910f2),this['_status$'][_0x58015e(0x52c)](se[_0x58015e(0x609)]),this[_0x58015e(0x4ce)]=!0x0,this[_0x58015e(0x5bc)]=null),_0x76541a===G[_0x58015e(0x49e)]&&this[_0x58015e(0x3ee)](),this[_0x58015e(0x2a7)]();}[_0x5a89b4(0x2a7)](){const _0x2610c3=_0x5a89b4;var _0x3b94da;this['_clearHeartbeatTimer'](),this[_0x2610c3(0x520)]=window['setTimeout'](()=>this[_0x2610c3(0x315)](),(_0x3b94da=this['_configService'][_0x2610c3(0x287)](Qt))!=null?_0x3b94da:Fn);}['_sendHeartbeat'](){const _0x550bd1=_0x5a89b4;this[_0x550bd1(0x464)][_0x550bd1(0x2c4)]({'cmd':G[_0x550bd1(0x49e)]}),this[_0x550bd1(0x5be)]();}[_0x5a89b4(0x5be)](){const _0x46f55c=_0x5a89b4;var _0x11010f;this[_0x46f55c(0x522)]=window['setTimeout'](()=>this[_0x46f55c(0x5f3)](),(_0x11010f=this[_0x46f55c(0x162)][_0x46f55c(0x287)](It))!=null?_0x11010f:en);}[_0x5a89b4(0x422)](){const _0x2f1ffa=_0x5a89b4;this[_0x2f1ffa(0x520)]!=null&&(clearTimeout(this[_0x2f1ffa(0x520)]),this[_0x2f1ffa(0x520)]=null);}['_clearTimeoutTimer'](){const _0x4c8e28=_0x5a89b4;this[_0x4c8e28(0x522)]!=null&&(clearTimeout(this[_0x4c8e28(0x522)]),this['_timeoutTimer']=null);}},exports[_0x5a89b4(0x19c)]=_i([pe(0x0,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),pe(0x1,a['Inject'](a[_0x5a89b4(0x3a3)])),pe(0x2,te[_0x5a89b4(0x38b)]),pe(0x3,a['ILogService']),pe(0x4,a[_0x5a89b4(0x569)]),pe(0x5,Et),pe(0x6,a[_0x5a89b4(0x3d5)](J['HTTPService']))],exports['CollaborationSessionService']);const Y=[];for(let s=0x0;s<0x100;++s)Y[_0x5a89b4(0x1d0)]((s+0x100)[_0x5a89b4(0x54b)](0x10)['slice'](0x1));function ui(_0x534025,_0x295c28=0x0){const _0x214e38=_0x5a89b4;return(Y[_0x534025[_0x295c28+0x0]]+Y[_0x534025[_0x295c28+0x1]]+Y[_0x534025[_0x295c28+0x2]]+Y[_0x534025[_0x295c28+0x3]]+'-'+Y[_0x534025[_0x295c28+0x4]]+Y[_0x534025[_0x295c28+0x5]]+'-'+Y[_0x534025[_0x295c28+0x6]]+Y[_0x534025[_0x295c28+0x7]]+'-'+Y[_0x534025[_0x295c28+0x8]]+Y[_0x534025[_0x295c28+0x9]]+'-'+Y[_0x534025[_0x295c28+0xa]]+Y[_0x534025[_0x295c28+0xb]]+Y[_0x534025[_0x295c28+0xc]]+Y[_0x534025[_0x295c28+0xd]]+Y[_0x534025[_0x295c28+0xe]]+Y[_0x534025[_0x295c28+0xf]])[_0x214e38(0x2d0)]();}let Je;const di=new Uint8Array(0x10);function fi(){const _0x845f30=_0x5a89b4;if(!Je){if(typeof crypto>'u'||!crypto[_0x845f30(0x25b)])throw new Error(_0x845f30(0x588));Je=crypto[_0x845f30(0x25b)][_0x845f30(0x449)](crypto);}return Je(di);}const vi=typeof crypto<'u'&&crypto[_0x5a89b4(0x1a1)]&&crypto[_0x5a89b4(0x1a1)][_0x5a89b4(0x449)](crypto),Ut={'randomUUID':vi};function Si(_0x1b1821,_0x4f8510,_0x2eeb32){const _0x488e3e=_0x5a89b4;if(Ut[_0x488e3e(0x1a1)]&&!_0x4f8510&&!_0x1b1821)return Ut[_0x488e3e(0x1a1)]();_0x1b1821=_0x1b1821||{};const _0x3d6c5a=_0x1b1821['random']||(_0x1b1821[_0x488e3e(0x418)]||fi)();return _0x3d6c5a[0x6]=_0x3d6c5a[0x6]&0xf|0x40,_0x3d6c5a[0x8]=_0x3d6c5a[0x8]&0x3f|0x80,ui(_0x3d6c5a);}var pi=Object[_0x5a89b4(0x5bf)],mi=Object['getOwnPropertyDescriptor'],gi=(_0x2d4ac4,_0x486d55,_0x4cf4e9,_0x499faa)=>{for(var _0x1d8fc8=_0x499faa>0x1?void 0x0:_0x499faa?mi(_0x486d55,_0x4cf4e9):_0x486d55,_0x357133=_0x2d4ac4['length']-0x1,_0x51f893;_0x357133>=0x0;_0x357133--)(_0x51f893=_0x2d4ac4[_0x357133])&&(_0x1d8fc8=(_0x499faa?_0x51f893(_0x486d55,_0x4cf4e9,_0x1d8fc8):_0x51f893(_0x1d8fc8))||_0x1d8fc8);return _0x499faa&&_0x1d8fc8&&pi(_0x486d55,_0x4cf4e9,_0x1d8fc8),_0x1d8fc8;},Ze=(_0x3285ff,_0x57730a)=>(_0xa9c780,_0x378d2d)=>_0x57730a(_0xa9c780,_0x378d2d,_0x3285ff);let ke=class{constructor(_0x155886,_0x4626ed,_0x9b4a09){const _0x2582f1=_0x5a89b4;this['_injector']=_0x155886,this['_transformService']=_0x4626ed,this[_0x2582f1(0x4eb)]=_0x9b4a09;}[_0x5a89b4(0x4ca)](_0x13e7ab){const _0x274397=_0x5a89b4;this[_0x274397(0x305)](_0x13e7ab),this[_0x274397(0x585)](_0x13e7ab);}[_0x5a89b4(0x30b)](_0x45ad98){const _0x3e59ce=_0x5a89b4,{unitID:_0x56477f}=_0x45ad98,_0xffaa30=this[_0x3e59ce(0x4eb)][_0x3e59ce(0x59a)](_0x56477f)[_0x3e59ce(0x4c0)](Z[_0x3e59ce(0x375)]),{redoCache:_0xe5b5f8}=_0xffaa30[_0x3e59ce(0x3c3)]();if(_0xe5b5f8['length']===0x0)return _0x45ad98;let _0x546870=a[_0x3e59ce(0x444)][_0x3e59ce(0x1c6)](_0x45ad98[_0x3e59ce(0x48a)][0x0]);for(let _0x5dfae9=0x0;_0x5dfae9<_0xe5b5f8[_0x3e59ce(0x554)];_0x5dfae9++){const _0x503f7d={'id':'doc.mutation.rich-text-editing','params':{..._0xe5b5f8[_0x5dfae9]}},_0x55482d=this['_transformService'][_0x3e59ce(0x5a8)](_0x546870,_0x503f7d,!0x1);if(p[_0x3e59ce(0x544)](_0x55482d))throw _0x55482d[_0x3e59ce(0x395)];_0x546870=_0x55482d[_0x3e59ce(0x5ff)];}return{...a['Tools']['deepClone'](_0x45ad98),'mutations':[_0x546870]};}[_0x5a89b4(0x305)](_0x569bc1){const _0x5b55fa=_0x5a89b4,{unitID:_0x135c99}=_0x569bc1,_0x3e135c=this[_0x5b55fa(0x4eb)][_0x5b55fa(0x59a)](_0x135c99)[_0x5b55fa(0x4c0)](Z[_0x5b55fa(0x375)]),{undoCache:_0x3d9537,redoCache:_0x192cf4}=_0x3e135c['getUndoRedoMutationParamsCache']();if(_0x3d9537[_0x5b55fa(0x554)]===0x0||_0x192cf4[_0x5b55fa(0x554)]===0x0)return;const _0x3a7232=[],_0x550918=[];let _0x4daf66=a[_0x5b55fa(0x444)]['deepClone'](_0x569bc1[_0x5b55fa(0x48a)][0x0]),_0x392770=a[_0x5b55fa(0x444)][_0x5b55fa(0x1c6)](_0x569bc1['mutations'][0x0]);for(let _0x4618ff=_0x3d9537[_0x5b55fa(0x554)]-0x1;_0x4618ff>=0x0;_0x4618ff--){const _0x1320f6={'id':_0x5b55fa(0x57b),'params':{..._0x3d9537[_0x4618ff]}},_0x53615a={'id':_0x5b55fa(0x57b),'params':{..._0x192cf4[_0x4618ff]}},_0x317349=this[_0x5b55fa(0x18f)][_0x5b55fa(0x5a8)](_0x4daf66,_0x1320f6,!0x1),_0x413d2f=this['_transformService'][_0x5b55fa(0x5a8)](_0x392770,_0x53615a,!0x1);if(p[_0x5b55fa(0x544)](_0x317349))throw _0x317349[_0x5b55fa(0x395)];if(p[_0x5b55fa(0x544)](_0x413d2f))throw _0x413d2f[_0x5b55fa(0x395)];_0x3a7232[_0x5b55fa(0x371)](_0x317349[_0x5b55fa(0x330)][_0x5b55fa(0x4a4)]),_0x550918[_0x5b55fa(0x371)](_0x413d2f[_0x5b55fa(0x330)]['params']),_0x4daf66=_0x317349[_0x5b55fa(0x5ff)],_0x392770=_0x413d2f[_0x5b55fa(0x5ff)];}_0x3e135c['setUndoRedoMutationParamsCache']({'undoCache':_0x3a7232,'redoCache':_0x550918});}[_0x5a89b4(0x585)](_0x2c2566){const _0x3e71df=_0x5a89b4,{unitID:_0xf4c806}=_0x2c2566,_0x1f0493=this['_renderManagerService'][_0x3e71df(0x59a)](_0xf4c806)[_0x3e71df(0x4c0)](Z[_0x3e71df(0x375)]),_0x3bbd8a=_0x1f0493['getActiveRange']();if(_0x3bbd8a==null)return;const _0x3bf323=[{'id':'doc.mutation.rich-text-editing','params':{'unitId':_0x2c2566['unitID'],'actions':null,'textRanges':[_0x3bbd8a]}}],_0x423fab=this[_0x3e71df(0x18f)]['transformMutationsWithChangeset'](_0x2c2566,_0x3bf323);if(!p['isTransformMutationsWithChangesetSuccess'](_0x423fab))throw _0x423fab[_0x3e71df(0x395)];const _0x1509b8=_0x423fab[_0x3e71df(0x330)][0x0]['params'][_0x3e71df(0x586)];Array[_0x3e71df(0x1aa)](_0x1509b8)&&_0x1509b8[_0x3e71df(0x554)]&&_0x1f0493[_0x3e71df(0x203)](_0x1509b8[0x0]);}};ke=gi([Ze(0x0,a[_0x5a89b4(0x3d5)](a['Injector'])),Ze(0x1,p[_0x5a89b4(0x3f4)]),Ze(0x2,K[_0x5a89b4(0x18b)])],ke);var Ii=Object[_0x5a89b4(0x5bf)],Ci=Object[_0x5a89b4(0x227)],Ei=(_0x3b84ab,_0x91c2b5,_0x3d0dd1,_0x49b495)=>{const _0x99fecb=_0x5a89b4;for(var _0x1df4f9=_0x49b495>0x1?void 0x0:_0x49b495?Ci(_0x91c2b5,_0x3d0dd1):_0x91c2b5,_0x1eefe1=_0x3b84ab[_0x99fecb(0x554)]-0x1,_0x3c8158;_0x1eefe1>=0x0;_0x1eefe1--)(_0x3c8158=_0x3b84ab[_0x1eefe1])&&(_0x1df4f9=(_0x49b495?_0x3c8158(_0x91c2b5,_0x3d0dd1,_0x1df4f9):_0x3c8158(_0x1df4f9))||_0x1df4f9);return _0x49b495&&_0x1df4f9&&Ii(_0x91c2b5,_0x3d0dd1,_0x1df4f9),_0x1df4f9;},Pe=(_0x201f12,_0x2e9c90)=>(_0x4e138d,_0x2e1d2a)=>_0x2e9c90(_0x4e138d,_0x2e1d2a,_0x201f12);exports['LocalCacheService']=class extends a[_0x5a89b4(0x4c8)]{constructor(_0x37f6db,_0x1c6327,_0x220ece,_0x590657,_0x1ae4cd){const _0x85e63d=_0x5a89b4;super(),I(this,_0x85e63d(0x324),new Map()),I(this,_0x85e63d(0x573),new Map()),I(this,_0x85e63d(0x3ac),!0x1),(this[_0x85e63d(0x162)]=_0x37f6db,this['_localStorageService']=_0x1c6327,this[_0x85e63d(0x404)]=_0x220ece,this[_0x85e63d(0x37c)]=_0x590657,this['_revisionService']=_0x1ae4cd,this[_0x85e63d(0x3ab)]());}[_0x5a89b4(0x218)](){const _0x1bfd93=_0x5a89b4;this[_0x1bfd93(0x3ac)]=!0x0;}[_0x5a89b4(0x2b0)](){this['_disabled']=!0x1;}[_0x5a89b4(0x1db)](){const _0x4d6903=_0x5a89b4;this['exhaustSavingTask']()[_0x4d6903(0x1c3)](()=>super[_0x4d6903(0x1db)]());}async[_0x5a89b4(0x452)](_0x5db3d0){const _0x1efadf=_0x5a89b4;return this[_0x1efadf(0x3ac)]?null:this['_localStorageService']['getItem'](Mt(_0x5db3d0));}async[_0x5a89b4(0x41b)](_0x110063,_0x214162){const _0x2e37e6=_0x5a89b4;return!!this[_0x2e37e6(0x351)][_0x2e37e6(0x465)](_0x110063,_0x214162);}[_0x5a89b4(0x261)](_0x37da5c,_0xa67b34,_0x51a857,_0x56b022){const _0xf3f0c0=_0x5a89b4,_0x56edb=this[_0xf3f0c0(0x3f8)][_0xf3f0c0(0x1d1)](_0x37da5c);this[_0xf3f0c0(0x324)][_0xf3f0c0(0x352)](_0x37da5c,{'unitID':_0x37da5c,'type':_0xa67b34,'awaitingChangeset':_0x51a857,'mutations':_0x56b022,'rev':_0x56edb}),this[_0xf3f0c0(0x573)][_0xf3f0c0(0x4df)](_0x37da5c)||this['_scheduleSaving'](_0x37da5c);}[_0x5a89b4(0x1c1)](_0x26a659){const _0x565f1f=_0x5a89b4,_0x29bccd=this[_0x565f1f(0x24e)]();_0x29bccd===0x0?this[_0x565f1f(0x16d)](_0x26a659):this[_0x565f1f(0x573)][_0x565f1f(0x352)](_0x26a659,setTimeout(()=>this[_0x565f1f(0x16d)](_0x26a659),_0x29bccd));}[_0x5a89b4(0x24e)](){const _0x1e717d=_0x5a89b4;var _0x57d579;return(_0x57d579=this['_configService'][_0x1e717d(0x287)](nn))!=null?_0x57d579:Yn;}['_saveCache'](_0xbcdf0f){const _0xe0eebe=_0x5a89b4,_0x4c73c6=this['_saveTaskMap'][_0xe0eebe(0x58d)](_0xbcdf0f);return _0x4c73c6!==void 0x0&&window[_0xe0eebe(0x3fb)](_0x4c73c6),this[_0xe0eebe(0x351)][_0xe0eebe(0x465)](Mt(_0xbcdf0f),this[_0xe0eebe(0x324)][_0xe0eebe(0x58d)](_0xbcdf0f))[_0xe0eebe(0x1c3)](()=>this['_saveTaskMap'][_0xe0eebe(0x204)](_0xbcdf0f));}async[_0x5a89b4(0x276)](){const _0x5f3da5=_0x5a89b4,_0x3bf972=[];this[_0x5f3da5(0x573)][_0x5f3da5(0x3a4)]((_0x1ac5fd,_0x3f90e7)=>{const _0x25234e=_0x5f3da5;window['clearTimeout'](_0x1ac5fd),_0x3bf972[_0x25234e(0x1d0)](this[_0x25234e(0x16d)](_0x3f90e7)[_0x25234e(0x1c3)](()=>{const _0x3eceb2=_0x25234e;this[_0x3eceb2(0x573)][_0x3eceb2(0x204)](_0x3f90e7);}));}),await Promise[_0x5f3da5(0x4b8)](_0x3bf972);}['_setupBeforeClosingHandler'](){const _0x121bd=_0x5a89b4;this[_0x121bd(0x15e)](this[_0x121bd(0x404)][_0x121bd(0x215)](()=>{const _0x548624=_0x121bd;if(this[_0x548624(0x573)][_0x548624(0x189)])return this[_0x548624(0x37c)]['t'](_0x548624(0x1e6));}));}},exports['LocalCacheService']=Ei([Pe(0x0,a[_0x5a89b4(0x569)]),Pe(0x1,a[_0x5a89b4(0x48b)]),Pe(0x2,te['IBeforeCloseService']),Pe(0x3,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x3a3)])),Pe(0x4,a['Inject'](p[_0x5a89b4(0x3d9)]))],exports[_0x5a89b4(0x4e3)]);function Mt(_0x34e8c7){const _0x507947=_0x5a89b4;return _0x507947(0x5fd)+_0x34e8c7;}var bi=Object[_0x5a89b4(0x5bf)],Ti=Object[_0x5a89b4(0x227)],Ri=(_0x1538bb,_0x28c242,_0x532023,_0x1bd919)=>{for(var _0x9fdffc=_0x1bd919>0x1?void 0x0:_0x1bd919?Ti(_0x28c242,_0x532023):_0x28c242,_0x53a0dc=_0x1538bb['length']-0x1,_0x30e7ea;_0x53a0dc>=0x0;_0x53a0dc--)(_0x30e7ea=_0x1538bb[_0x53a0dc])&&(_0x9fdffc=(_0x1bd919?_0x30e7ea(_0x28c242,_0x532023,_0x9fdffc):_0x30e7ea(_0x9fdffc))||_0x9fdffc);return _0x1bd919&&_0x9fdffc&&bi(_0x28c242,_0x532023,_0x9fdffc),_0x9fdffc;},Qe=(_0x234594,_0x56162b)=>(_0x27b23c,_0x484587)=>_0x56162b(_0x27b23c,_0x484587,_0x234594);function yi(_0x20d1eb){const _0x2a4214=_0x5a89b4,{unitID:_0x3ec73d,mutations:_0x50353f}=_0x20d1eb;return{'unitId':_0x3ec73d,'subUnitId':_0x50353f[0x0][_0x2a4214(0x4a4)][_0x2a4214(0x45e)]};}let Be=class{constructor(_0xc76f69,_0x5b77ae,_0x10efe6){const _0x21160d=_0x5a89b4;this[_0x21160d(0x274)]=_0xc76f69,this[_0x21160d(0x18f)]=_0x5b77ae,this[_0x21160d(0x165)]=_0x10efe6;}[_0x5a89b4(0x5f6)](_0x361c3b){const _0x346d63=_0x5a89b4;var _0x24a5c6,_0x1b4feb,_0x20330a,_0x131d75;const _0x540a17=this['_injector'][_0x346d63(0x58d)](B[_0x346d63(0x5c2)]),{unitId:_0x5a9b16,subUnitId:_0x1c9213}=yi(_0x361c3b),_0x205012=_0x540a17[_0x346d63(0x3bd)](_0x5a9b16)[_0x346d63(0x1e2)](),_0x570d5e=(_0x1b4feb=(_0x24a5c6=this[_0x346d63(0x165)]['getUnit'](_0x5a9b16))==null?void 0x0:_0x24a5c6[_0x346d63(0x265)]())==null?void 0x0:_0x1b4feb[_0x346d63(0x535)]();if(_0x205012['length']===0x0||!_0x5a9b16||!_0x1c9213)return;const _0x38e9da=[{'id':B['SetSelectionsOperation']['id'],'params':{'unitId':_0x5a9b16,'subUnitId':_0x570d5e,'selections':a[_0x346d63(0x444)][_0x346d63(0x1c6)](_0x205012)}}],_0x36bb19=this[_0x346d63(0x18f)][_0x346d63(0x4d1)](_0x361c3b,_0x38e9da);if(!p['isTransformMutationsWithChangesetSuccess'](_0x36bb19))throw _0x36bb19[_0x346d63(0x395)];const _0x376f90=(_0x131d75=(_0x20330a=_0x36bb19['m2Prime'][0x0])==null?void 0x0:_0x20330a['params'])==null?void 0x0:_0x131d75['selections'];if(Array[_0x346d63(0x1aa)](_0x376f90)&&_0x376f90[_0x346d63(0x554)]){if(_0x376f90[_0x346d63(0x554)]===_0x38e9da[0x0]['params'][_0x346d63(0x38d)]['length']&&_0x376f90[_0x346d63(0x424)]((_0x4d239d,_0x1c3e87)=>a[_0x346d63(0x42e)]['equals'](_0x4d239d[_0x346d63(0x462)],_0x38e9da[0x0][_0x346d63(0x4a4)][_0x346d63(0x38d)][_0x1c3e87][_0x346d63(0x462)])))return;this['_injector'][_0x346d63(0x58d)](a[_0x346d63(0x17d)])['executeCommand'](B[_0x346d63(0x417)]['id'],{'unitId':_0x5a9b16,'subUnitId':_0x570d5e,'selections':_0x376f90});}}};Be=Ri([Qe(0x0,a[_0x5a89b4(0x3d5)](a['Injector'])),Qe(0x1,p[_0x5a89b4(0x3f4)]),Qe(0x2,a[_0x5a89b4(0x21c)])],Be);const qe=a['createIdentifier'](_0x5a89b4(0x490));var hn=(_0x252bf7=>(_0x252bf7[_0x252bf7[_0x5a89b4(0x596)]=0x0]='NO_OTHER_CLIENTS_EDITING',_0x252bf7[_0x252bf7['OTHER_CLIENTS_EDITING']=0x1]=_0x5a89b4(0x4fb),_0x252bf7))(hn||{});const At=0x7530,Nt=_0x5a89b4(0x329);class Oi extends a[_0x5a89b4(0x4c8)]{constructor(){const _0x10a252=_0x5a89b4;super(),I(this,_0x10a252(0x50e),a['Tools']['generateRandomId']()),I(this,_0x10a252(0x415),new Set()),I(this,_0x10a252(0x325),new Map()),I(this,'_heartbeatTimer',null),I(this,'_clearOtherTimers',new Map()),I(this,_0x10a252(0x18c),new Map()),this['_init']();}[_0x5a89b4(0x1db)](){const _0x4f7f4b=_0x5a89b4;super[_0x4f7f4b(0x1db)](),this[_0x4f7f4b(0x463)][_0x4f7f4b(0x3a4)]((_0x47df90,_0x11fc60)=>this[_0x4f7f4b(0x548)](_0x11fc60)),this[_0x4f7f4b(0x580)]&&window[_0x4f7f4b(0x3c0)](this[_0x4f7f4b(0x580)]);}[_0x5a89b4(0x433)](_0x4211ec){const _0x52d7ca=_0x5a89b4;return this[_0x52d7ca(0x421)](_0x4211ec)['pipe'](A[_0x52d7ca(0x5a9)]());}['editingUnit'](_0x18b53b){const _0x95bc3d=_0x5a89b4;this['_selfUnitIDs'][_0x95bc3d(0x189)]===0x0&&this[_0x95bc3d(0x514)](),this[_0x95bc3d(0x415)][_0x95bc3d(0x5ba)](_0x18b53b),this[_0x95bc3d(0x474)]({'type':0x0,'memberID':this['_id'],'unitIDs':[_0x18b53b],'isForwarded':!0x1});}[_0x5a89b4(0x4a7)](_0x4b138d){const _0x1d5e79=_0x5a89b4;this[_0x1d5e79(0x415)][_0x1d5e79(0x204)](_0x4b138d),this[_0x1d5e79(0x415)]['size']===0x0&&this[_0x1d5e79(0x580)]&&window[_0x1d5e79(0x3c0)](this[_0x1d5e79(0x580)]);}[_0x5a89b4(0x1b8)](){const _0x536749=_0x5a89b4;this[_0x536749(0x15e)](a[_0x536749(0x502)](A['fromEvent'](window,_0x536749(0x40c))[_0x536749(0x3d8)](_0x58fd87=>{const _0x1f0b14=_0x536749;if(_0x58fd87[_0x1f0b14(0x163)]!==Nt||!_0x58fd87[_0x1f0b14(0x322)])return;const _0xa5850=JSON['parse'](_0x58fd87[_0x1f0b14(0x322)]);this[_0x1f0b14(0x2e6)](_0xa5850);}))),window[_0x536749(0x1b6)]('unload',()=>this[_0x536749(0x474)]({'type':0x1,'memberID':this['_id'],'unitIDs':Array[_0x536749(0x2fc)](this[_0x536749(0x415)])}));}[_0x5a89b4(0x2e6)](_0x5ab9e0){const _0x23851c=_0x5a89b4;switch(_0x5ab9e0['type']){case 0x0:this[_0x23851c(0x268)](_0x5ab9e0);break;case 0x1:this[_0x23851c(0x43c)](_0x5ab9e0);break;case 0x2:this[_0x23851c(0x511)](_0x5ab9e0);break;}}[_0x5a89b4(0x268)](_0x398a29){const _0x4e5e28=_0x5a89b4,{unitIDs:_0x62d213,memberID:_0x3f7518,isForwarded:_0x3565d8}=_0x398a29;_0x62d213['forEach'](_0x28b7a7=>{const _0x36e76b=_0x4da2;if(!_0x3565d8&&this[_0x36e76b(0x325)][_0x36e76b(0x4df)](_0x28b7a7)&&this[_0x36e76b(0x421)](_0x28b7a7)[_0x36e76b(0x52c)](0x1),!this[_0x36e76b(0x325)][_0x36e76b(0x4df)](_0x28b7a7)||!this[_0x36e76b(0x325)]['get'](_0x28b7a7)[_0x36e76b(0x4df)](_0x3f7518)){const _0x4822e5=this[_0x36e76b(0x325)]['get'](_0x28b7a7)||new Set();_0x4822e5['add'](_0x3f7518),this['_unitOnClients']['set'](_0x28b7a7,_0x4822e5),this[_0x36e76b(0x160)](_0x3f7518);}}),_0x3565d8||this[_0x4e5e28(0x474)]({'type':0x0,'memberID':this[_0x4e5e28(0x50e)],'unitIDs':[...this[_0x4e5e28(0x415)]],'isForwarded':!0x0});}[_0x5a89b4(0x160)](_0x3c2262){const _0x23c19f=_0x5a89b4;this['_removeClearOtherTimer'](_0x3c2262);const _0x5e5dfb=window[_0x23c19f(0x22a)](()=>{const _0x2a686a=_0x23c19f;this[_0x2a686a(0x325)]['forEach'](_0x1e034d=>{const _0x403d0e=_0x2a686a;_0x1e034d[_0x403d0e(0x204)](_0x3c2262);});},At*0x2);this['_clearOtherTimers'][_0x23c19f(0x352)](_0x3c2262,_0x5e5dfb);}['_removeClearOtherTimer'](_0xc680d2){const _0x20587a=_0x5a89b4;if(this['_clearOtherTimers'][_0x20587a(0x4df)](_0xc680d2)){const _0x461044=this[_0x20587a(0x463)][_0x20587a(0x58d)](_0xc680d2);_0x461044&&window[_0x20587a(0x3fb)](_0x461044),this[_0x20587a(0x463)][_0x20587a(0x352)](_0xc680d2,null);}}[_0x5a89b4(0x43c)](_0x1e5c2f){const _0x5d92a9=_0x5a89b4,{memberID:_0x4886f3,unitIDs:_0x45bbaf}=_0x1e5c2f;_0x45bbaf[_0x5d92a9(0x3a4)](_0x5b620f=>{const _0x9fcf3b=_0x5d92a9;var _0x3a8b5e;const _0x47d65f=this[_0x9fcf3b(0x325)]['get'](_0x5b620f);_0x47d65f&&(_0x47d65f['delete'](_0x4886f3),(_0x3a8b5e=this[_0x9fcf3b(0x421)](_0x5b620f))==null||_0x3a8b5e['next'](_0x47d65f[_0x9fcf3b(0x189)]===0x0?0x0:0x1));}),this[_0x5d92a9(0x548)](_0x4886f3);}[_0x5a89b4(0x511)](_0x17ba83){const _0x25fa88=_0x5a89b4;this[_0x25fa88(0x160)](_0x17ba83[_0x25fa88(0x29c)]);}['_send'](_0x18d738){const _0x11023c=_0x5a89b4;localStorage[_0x11023c(0x465)](Nt,JSON['stringify'](_0x18d738));}['_scheduleHeartbeat'](){this['_heartbeatTimer']=window['setInterval'](()=>{const _0x192630=_0x4da2;this['_send']({'type':0x2,'memberID':this[_0x192630(0x50e)]});},At);}['_ensureSubject'](_0xc93505){const _0xd91ea3=_0x5a89b4;return this[_0xd91ea3(0x18c)]['has'](_0xc93505)||this[_0xd91ea3(0x18c)][_0xd91ea3(0x352)](_0xc93505,new A[(_0xd91ea3(0x4c2))](0x0)),this[_0xd91ea3(0x18c)]['get'](_0xc93505);}}var Di=Object[_0x5a89b4(0x5bf)],wi=Object[_0x5a89b4(0x227)],Pi=(_0x2e4a61,_0x231858,_0x488c78,_0x4d0afb)=>{const _0x497259=_0x5a89b4;for(var _0x1d69ee=_0x4d0afb>0x1?void 0x0:_0x4d0afb?wi(_0x231858,_0x488c78):_0x231858,_0x5a28d7=_0x2e4a61[_0x497259(0x554)]-0x1,_0x47c8a0;_0x5a28d7>=0x0;_0x5a28d7--)(_0x47c8a0=_0x2e4a61[_0x5a28d7])&&(_0x1d69ee=(_0x4d0afb?_0x47c8a0(_0x231858,_0x488c78,_0x1d69ee):_0x47c8a0(_0x1d69ee))||_0x1d69ee);return _0x4d0afb&&_0x1d69ee&&Di(_0x231858,_0x488c78,_0x1d69ee),_0x1d69ee;},et=(_0x415c0c,_0x141d44)=>(_0x44e3d6,_0x4ad378)=>_0x141d44(_0x44e3d6,_0x4ad378,_0x415c0c);let We=class{constructor(_0x3dcdcb,_0x15f0a9,_0x1f4858){const _0x15d873=_0x5a89b4;this['_injector']=_0x3dcdcb,this[_0x15d873(0x18f)]=_0x15f0a9,this[_0x15d873(0x517)]=_0x1f4858;}['transformStateCache'](_0x1db842){const _0x2b19b2=_0x5a89b4;this[_0x2b19b2(0x1f2)](_0x1db842);}[_0x5a89b4(0x30b)](_0x6318bf){const _0x9821f8=_0x5a89b4,{unitID:_0x9c6d3a}=_0x6318bf,{collaboration:_0x1160c3}=this['_docStateChangeManagerService'][_0x9821f8(0x223)](_0x9c6d3a);if(_0x1160c3[_0x9821f8(0x554)]===0x0)return _0x6318bf;let _0x2da7a3=a[_0x9821f8(0x444)][_0x9821f8(0x1c6)](_0x6318bf['mutations'][0x0]);for(let _0x199761=0x0;_0x199761<_0x1160c3['length'];_0x199761++){const _0x7813d3={'id':_0x9821f8(0x57b),'params':{'unitId':_0x1160c3[_0x199761][_0x9821f8(0x3e9)],..._0x1160c3[_0x199761][_0x9821f8(0x33d)]}},_0x2c5c3a=this['_transformService'][_0x9821f8(0x5a8)](_0x2da7a3,_0x7813d3,!0x1);if(p[_0x9821f8(0x544)](_0x2c5c3a))throw _0x2c5c3a[_0x9821f8(0x395)];_0x2da7a3=_0x2c5c3a[_0x9821f8(0x5ff)];}return{...a[_0x9821f8(0x444)]['deepClone'](_0x6318bf),'mutations':[_0x2da7a3]};}[_0x5a89b4(0x1f2)](_0x22ce78){const _0x445149=_0x5a89b4,{unitID:_0xc27920}=_0x22ce78,{history:_0x2ea34a,collaboration:_0x579d08}=this[_0x445149(0x517)][_0x445149(0x223)](_0xc27920);if(_0x2ea34a[_0x445149(0x554)]===0x0&&_0x579d08[_0x445149(0x554)]===0x0)return;const _0x34a337=[],_0x433641=[];let _0x39014d=a[_0x445149(0x444)][_0x445149(0x1c6)](_0x22ce78[_0x445149(0x48a)][0x0]),_0x6c8828=a[_0x445149(0x444)][_0x445149(0x1c6)](_0x22ce78[_0x445149(0x48a)][0x0]);for(let _0x1c8281=_0x2ea34a[_0x445149(0x554)]-0x1;_0x1c8281>=0x0;_0x1c8281--){const _0x4b08b2={'id':_0x445149(0x57b),'params':{'unitId':_0x2ea34a[_0x1c8281]['unitId'],..._0x2ea34a[_0x1c8281]['undoState']}},_0x24046e={'id':_0x445149(0x57b),'params':{'unitId':_0x2ea34a[_0x1c8281][_0x445149(0x3e9)],..._0x2ea34a[_0x1c8281][_0x445149(0x33d)]}},_0x28d9e0=this[_0x445149(0x18f)][_0x445149(0x5a8)](_0x39014d,_0x4b08b2,!0x1),_0x36d8a5=this[_0x445149(0x18f)][_0x445149(0x5a8)](_0x6c8828,_0x24046e,!0x1);if(p[_0x445149(0x544)](_0x28d9e0))throw _0x28d9e0[_0x445149(0x395)];if(p[_0x445149(0x544)](_0x36d8a5))throw _0x36d8a5[_0x445149(0x395)];_0x34a337[_0x445149(0x371)]({..._0x2ea34a[_0x1c8281],'undoState':_0x28d9e0[_0x445149(0x330)]['params'],'redoState':_0x36d8a5['m2Prime'][_0x445149(0x4a4)]}),_0x39014d=_0x28d9e0[_0x445149(0x5ff)],_0x6c8828=_0x36d8a5[_0x445149(0x5ff)];}_0x39014d=a['Tools'][_0x445149(0x1c6)](_0x22ce78[_0x445149(0x48a)][0x0]),_0x6c8828=a[_0x445149(0x444)][_0x445149(0x1c6)](_0x22ce78[_0x445149(0x48a)][0x0]);for(let _0x199d56=_0x579d08['length']-0x1;_0x199d56>=0x0;_0x199d56--){const _0x2623d5={'id':_0x445149(0x57b),'params':{'unitId':_0x579d08[_0x199d56]['unitId'],..._0x579d08[_0x199d56][_0x445149(0x2d4)]}},_0x5e755b={'id':_0x445149(0x57b),'params':{'unitId':_0x579d08[_0x199d56][_0x445149(0x3e9)],..._0x579d08[_0x199d56][_0x445149(0x33d)]}},_0x4aa8e6=this[_0x445149(0x18f)][_0x445149(0x5a8)](_0x39014d,_0x2623d5,!0x1),_0x5b9437=this['_transformService']['transformMutation'](_0x6c8828,_0x5e755b,!0x1);if(p[_0x445149(0x544)](_0x4aa8e6))throw _0x4aa8e6['error'];if(p[_0x445149(0x544)](_0x5b9437))throw _0x5b9437[_0x445149(0x395)];_0x433641[_0x445149(0x371)]({..._0x579d08[_0x199d56],'undoState':_0x4aa8e6['m2Prime'][_0x445149(0x4a4)],'redoState':_0x5b9437['m2Prime'][_0x445149(0x4a4)]}),_0x39014d=_0x4aa8e6[_0x445149(0x5ff)],_0x6c8828=_0x5b9437[_0x445149(0x5ff)];}this[_0x445149(0x517)][_0x445149(0x2a5)](_0xc27920,{'history':_0x34a337,'collaboration':_0x433641});}};We=Pi([et(0x0,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),et(0x1,p[_0x5a89b4(0x3f4)]),et(0x2,a[_0x5a89b4(0x3d5)](Z[_0x5a89b4(0x5bd)]))],We);function _n(_0x10dadd){let _0x112ea8='';for(const _0x3a6f8f of _0x10dadd){const {startOffset:_0x2166d3,endOffset:_0x57b743,isActive:_0x5d1e21,rangeType:_0xa354da,segmentId:_0xb7a4cd,segmentPage:_0x5bec90}=_0x3a6f8f;_0x112ea8['length']&&(_0x112ea8+=','),_0x112ea8+=_0x2166d3+':'+_0x57b743+':'+(_0x5d1e21?'1':'0')+':'+_0xa354da+':'+_0xb7a4cd+':'+_0x5bec90;}return _0x112ea8;}function Ui(_0x5ae0bf){const _0x1a949b=_0x5a89b4,_0x5469bc=_0x5ae0bf['split'](','),_0x440a01=[];for(const _0x5a445f of _0x5469bc){const [_0x470071,_0x5174b1,_0x1409dc,_0x3dec78,_0x3e895d,_0x4d891d]=_0x5a445f[_0x1a949b(0x2bb)](':');_0x440a01[_0x1a949b(0x1d0)]({'startOffset':Number(_0x470071),'endOffset':Number(_0x5174b1),'collapsed':_0x470071===_0x5174b1,'isActive':_0x1409dc==='1','rangeType':_0x3dec78===a['DOC_RANGE_TYPE'][_0x1a949b(0x3b2)]?a['DOC_RANGE_TYPE']['TEXT']:a['DOC_RANGE_TYPE'][_0x1a949b(0x45f)],'segmentId':typeof _0x3e895d==_0x1a949b(0x4ad)?String(_0x3e895d):'','segmentPage':Number(_0x4d891d!=null?_0x4d891d:-0x1)});}return _0x440a01[_0x1a949b(0x18e)](_0x28c329=>_0x28c329[_0x1a949b(0x2cf)])||(_0x440a01[0x0]['isActive']=!0x0),_0x440a01;}class Tt extends a[_0x5a89b4(0x2da)]{constructor(){const _0x18498b=_0x5a89b4;super(...arguments),I(this,_0x18498b(0x304),new A[(_0x18498b(0x4c2))](null)),I(this,_0x18498b(0x2ac),this[_0x18498b(0x304)][_0x18498b(0x159)]());}[_0x5a89b4(0x284)](_0x1469ec){const _0x5ca283=_0x5a89b4,{unitID:_0x3656fc,memberID:_0x538cfa,textRanges:_0x4b8c2c}=_0x1469ec,_0x4c8f10=_n(_0x4b8c2c);if(_0x4c8f10==='')return;const _0x34a7dc={'unitID':_0x3656fc,'memberID':_0x538cfa,'selection':_0x4c8f10};this[_0x5ca283(0x304)][_0x5ca283(0x52c)](_0x34a7dc);}}var Mi=Object['defineProperty'],Ai=Object['getOwnPropertyDescriptor'],Ni=(_0x2bb5b6,_0x44982e,_0x3f42d9,_0x3a85f4)=>{const _0x223caf=_0x5a89b4;for(var _0x48088d=_0x3a85f4>0x1?void 0x0:_0x3a85f4?Ai(_0x44982e,_0x3f42d9):_0x44982e,_0x19d8ad=_0x2bb5b6[_0x223caf(0x554)]-0x1,_0x5cd929;_0x19d8ad>=0x0;_0x19d8ad--)(_0x5cd929=_0x2bb5b6[_0x19d8ad])&&(_0x48088d=(_0x3a85f4?_0x5cd929(_0x44982e,_0x3f42d9,_0x48088d):_0x5cd929(_0x48088d))||_0x48088d);return _0x3a85f4&&_0x48088d&&Mi(_0x44982e,_0x3f42d9,_0x48088d),_0x48088d;},Lt=(_0x3665e0,_0x1f2d3a)=>(_0x5448c4,_0x3f0b2a)=>_0x1f2d3a(_0x5448c4,_0x3f0b2a,_0x3665e0);let Fe=class{constructor(_0x5787a8,_0x5c5db6){const _0x1c79f8=_0x5a89b4;this['_injector']=_0x5787a8,this[_0x1c79f8(0x18f)]=_0x5c5db6;}[_0x5a89b4(0x5f6)](_0x1f7a1a){const _0x34c1cf=_0x5a89b4;var _0xd7ca49;const _0x23eb43=this['_injector'][_0x34c1cf(0x58d)](ye[_0x34c1cf(0x51e)]),_0x56171a=(_0xd7ca49=_0x23eb43[_0x34c1cf(0x24d)]())!=null?_0xd7ca49:[];if(_0x56171a[_0x34c1cf(0x554)]===0x0)return;const _0x5bf0dd=_0x1f7a1a[_0x34c1cf(0x2ea)],_0x593ebe=[{'id':_0x34c1cf(0x57b),'params':{'unitId':_0x5bf0dd,'actions':null,'textRanges':_0x56171a}}],_0x4bd55e=this[_0x34c1cf(0x18f)]['transformMutationsWithChangeset'](_0x1f7a1a,_0x593ebe);if(!p[_0x34c1cf(0x584)](_0x4bd55e))throw _0x4bd55e[_0x34c1cf(0x395)];const _0x2ef763=_0x4bd55e['m2Prime'][0x0]['params'][_0x34c1cf(0x586)];Array[_0x34c1cf(0x1aa)](_0x2ef763)&&_0x2ef763[_0x34c1cf(0x554)]&&_0x23eb43['replaceDocRanges'](_0x2ef763,{'unitId':_0x5bf0dd,'subUnitId':_0x5bf0dd},!0x1);}};Fe=Ni([Lt(0x0,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),Lt(0x1,p[_0x5a89b4(0x3f4)])],Fe);const Li=new Set([B[_0x5a89b4(0x607)]['id']]);function xt(_0x191a3b,_0x10210a,_0xd1be8,_0x393378,_0x3e053f){const _0x2eabaa=_0x5a89b4;var _0x51b974,_0x49d99c,_0x327113,_0x39d71f;const _0x2433f2=[];for(const _0x10bd41 of _0x191a3b)if(Li[_0x2eabaa(0x4df)](_0x10bd41['id'])){if(_0x2433f2['length']>0x0)break;_0x2433f2[_0x2eabaa(0x1d0)](_0x10bd41);break;}else _0x2433f2[_0x2eabaa(0x1d0)](_0x10bd41);const _0x3a63d0=(_0x49d99c=(_0x51b974=_0x3e053f[_0x2eabaa(0x249)]())==null?void 0x0:_0x51b974[_0x2eabaa(0x4f0)])!=null?_0x49d99c:'unknown',_0x546854=(_0x39d71f=(_0x327113=_0x3e053f['getCurrentUser']())==null?void 0x0:_0x327113[_0x2eabaa(0x29c)])!=null?_0x39d71f:'unknown';return{'changeset':{'unitID':_0x10210a,'type':p[_0x2eabaa(0x594)](_0xd1be8[_0x2eabaa(0x4b1)](_0x10210a)),'baseRev':_0x393378['getCurrentRevOfUnit'](_0x10210a),'revision':0x0,'userID':_0x3a63d0,'memberID':_0x546854,'mutations':_0x2433f2},'pendingMutations':_0x191a3b[_0x2eabaa(0x5b5)](_0x2433f2[_0x2eabaa(0x554)])};}function xi(_0x1ccb1f,_0x272737,_0x4c56db,_0x3b3503,_0x562bca){const _0x75e509=_0x5a89b4;var _0x1d12a0,_0x124ab8,_0x185224,_0xc15d2d;const _0x8e0a61=[_0x1ccb1f['reduce']((_0x10a0b2,_0x2246a2)=>{const _0xad3e57=_0x4da2;var _0x21cca8;const {id:_0x903056}=_0x10a0b2,{id:_0x4069bf,type:_0x2833b6}=_0x2246a2,_0x51ad88=(_0x21cca8=_0x10a0b2[_0xad3e57(0x4a4)])!=null?_0x21cca8:{'actions':null},_0x4fc0dd=_0x2246a2[_0xad3e57(0x4a4)];if(_0x903056&&_0x903056!==_0x4069bf)throw new Error('Cannot\x20assemble\x20a\x20changeset\x20from\x20multiple\x20mutations\x20of\x20different\x20types:\x20'+_0x903056+_0xad3e57(0x151)+_0x4069bf+'.');return{..._0x10a0b2,'id':_0x4069bf,'type':_0x2833b6,'params':{'unitId':_0x4fc0dd[_0xad3e57(0x3e9)],'textRanges':_0x4fc0dd[_0xad3e57(0x586)],'actions':a[_0xad3e57(0x5c7)][_0xad3e57(0x377)](_0x51ad88[_0xad3e57(0x168)],_0x4fc0dd[_0xad3e57(0x168)])}};},{})],_0x26c9e7=(_0x124ab8=(_0x1d12a0=_0x562bca['getCurrentUser']())==null?void 0x0:_0x1d12a0[_0x75e509(0x4f0)])!=null?_0x124ab8:_0x75e509(0x1a4),_0x414fe9=(_0xc15d2d=(_0x185224=_0x562bca[_0x75e509(0x249)]())==null?void 0x0:_0x185224[_0x75e509(0x29c)])!=null?_0xc15d2d:'unknown';return{'changeset':{'unitID':_0x272737,'type':p[_0x75e509(0x594)](_0x4c56db['getUnitType'](_0x272737)),'baseRev':_0x3b3503[_0x75e509(0x1d1)](_0x272737),'revision':0x0,'userID':_0x26c9e7,'memberID':_0x414fe9,'mutations':_0x8e0a61},'pendingMutations':[]};}function _0x4da2(_0x5dd07b,_0x137032){const _0x295e7c=_0x295e();return _0x4da2=function(_0x4da2f1,_0x1cd537){_0x4da2f1=_0x4da2f1-0x14c;let _0x9356a=_0x295e7c[_0x4da2f1];return _0x9356a;},_0x4da2(_0x5dd07b,_0x137032);}function un(_0x4cb40d,_0x32c5ea){const _0x357de5=_0x5a89b4,_0xadb05b=new A[(_0x357de5(0x1c9))](0x1);return setTimeout(()=>_0xadb05b['next'](_0x32c5ea),_0x4cb40d),_0xadb05b[_0x357de5(0x159)]()['pipe'](A['take'](0x1));}const ji={'id':B[_0x5a89b4(0x5b2)]['id'],'type':a[_0x5a89b4(0x3ba)][_0x5a89b4(0x56f)],'params':{}};var $i=Object[_0x5a89b4(0x5bf)],Hi=Object[_0x5a89b4(0x227)],Ce=(_0x33482a,_0x272ed9,_0x2083c5,_0x569418)=>{const _0x5b47b9=_0x5a89b4;for(var _0x133d46=_0x569418>0x1?void 0x0:_0x569418?Hi(_0x272ed9,_0x2083c5):_0x272ed9,_0x3692cb=_0x33482a[_0x5b47b9(0x554)]-0x1,_0x5efc68;_0x3692cb>=0x0;_0x3692cb--)(_0x5efc68=_0x33482a[_0x3692cb])&&(_0x133d46=(_0x569418?_0x5efc68(_0x272ed9,_0x2083c5,_0x133d46):_0x5efc68(_0x133d46))||_0x133d46);return _0x569418&&_0x133d46&&$i(_0x272ed9,_0x2083c5,_0x133d46),_0x133d46;},N=(_0x57c762,_0x3cf055)=>(_0x2ff7b6,_0x62f09c)=>_0x3cf055(_0x2ff7b6,_0x62f09c,_0x57c762),q=(_0x432c36=>(_0x432c36[_0x5a89b4(0x23e)]='not_collab',_0x432c36[_0x5a89b4(0x2f2)]=_0x5a89b4(0x57f),_0x432c36['PENDING']=_0x5a89b4(0x2a4),_0x432c36[_0x5a89b4(0x53a)]=_0x5a89b4(0x4f2),_0x432c36[_0x5a89b4(0x4c1)]=_0x5a89b4(0x31a),_0x432c36[_0x5a89b4(0x3c1)]=_0x5a89b4(0x467),_0x432c36[_0x5a89b4(0x188)]='conflict',_0x432c36['OFFLINE']=_0x5a89b4(0x5d9),_0x432c36))(q||{});const dn=0xea60;class Ee{constructor(_0x35116f,_0x2e7f8c,_0x94eb92,_0x5617ca,_0x14d574,_0x27aa31,_0x183231,_0x242537,_0x3906ea){const _0x1b7538=_0x5a89b4;I(this,'_awaitingChangeset',null),I(this,_0x1b7538(0x58c),[]),(this[_0x1b7538(0x2ea)]=_0x35116f,this[_0x1b7538(0x235)]=_0x2e7f8c,this[_0x1b7538(0x3df)]=_0x14d574,this[_0x1b7538(0x5da)]=_0x27aa31,this['_undoRedoService']=_0x183231,this[_0x1b7538(0x3f8)]=_0x242537,this[_0x1b7538(0x470)]=_0x3906ea,this[_0x1b7538(0x3eb)]=_0x94eb92,this[_0x1b7538(0x58c)]=_0x5617ca);}['_checkMissing'](_0x2d19d5){const _0x49a1a2=_0x5a89b4,_0x5c2ea7=this[_0x49a1a2(0x3f8)][_0x49a1a2(0x1d1)](this['unitID']);return _0x2d19d5[_0x49a1a2(0x5c0)]>_0x5c2ea7+0x1?(this[_0x49a1a2(0x3df)][_0x49a1a2(0x335)]({'from':_0x5c2ea7,'to':_0x2d19d5[_0x49a1a2(0x5c0)]-0x1}),!0x0):!0x1;}[_0x5a89b4(0x341)](_0x2f292e){const _0x2a43d8=_0x5a89b4;this[_0x2a43d8(0x31b)][_0x2a43d8(0x408)](this[_0x2a43d8(0x2ea)],_0x2f292e);}[_0x5a89b4(0x34f)](_0x54cc9b){const _0xa5c7d7=_0x5a89b4;var _0x262013,_0x1ea096;(_0x1ea096=(_0x262013=this['_handler'])[_0xa5c7d7(0x1bb)])==null||_0x1ea096[_0xa5c7d7(0x35a)](_0x262013,_0x54cc9b);}[_0x5a89b4(0x236)](_0x57c647){const _0x41bf6a=_0x5a89b4;var _0x4224e1,_0x93ff27;return(_0x93ff27=(_0x4224e1=this[_0x41bf6a(0x3df)])[_0x41bf6a(0x59f)])==null?void 0x0:_0x93ff27['call'](_0x4224e1,_0x57c647);}[_0x5a89b4(0x3fe)](_0x39cbac){const _0x356a5e=_0x5a89b4;var _0x43b8e3,_0x57dd24;return(_0x57dd24=(_0x43b8e3=this[_0x356a5e(0x3df)])[_0x356a5e(0x5e7)])==null?void 0x0:_0x57dd24[_0x356a5e(0x35a)](_0x43b8e3,_0x39cbac);}['_transformRemoteChangesetByIMECache'](_0x14067a){const _0xca9d51=_0x5a89b4;var _0x2f4915,_0x70b37f,_0x271c1c;return(_0x271c1c=(_0x70b37f=(_0x2f4915=this[_0xca9d51(0x3df)])[_0xca9d51(0x560)])==null?void 0x0:_0x70b37f[_0xca9d51(0x35a)](_0x2f4915,_0x14067a))!=null?_0x271c1c:_0x14067a;}['_transformRemoteChangesetByStateCache'](_0x204267){const _0x14c984=_0x5a89b4;var _0x244188,_0x406d5a,_0x341260;return(_0x341260=(_0x406d5a=(_0x244188=this[_0x14c984(0x3df)])[_0x14c984(0x59d)])==null?void 0x0:_0x406d5a[_0x14c984(0x35a)](_0x244188,_0x204267))!=null?_0x341260:_0x204267;}[_0x5a89b4(0x4a0)](_0x3b39c5){const _0x17fca5=_0x5a89b4;var _0x38d528,_0x3259a5;if(this[_0x17fca5(0x235)]===ie[_0x17fca5(0x222)]){const {unitID:_0x3649ba,mutations:_0x2a436b,memberID:_0x546dc9}=_0x3b39c5,_0x126e61=_0x2a436b[0x0][_0x17fca5(0x4a4)][_0x17fca5(0x586)];Array[_0x17fca5(0x1aa)](_0x126e61)&&_0x126e61[_0x17fca5(0x554)]>0x0&&((_0x3259a5=(_0x38d528=this['_handler'])['onSyncEditingCollabCursor'])==null||_0x3259a5[_0x17fca5(0x35a)](_0x38d528,{'unitID':_0x3649ba,'memberID':_0x546dc9,'textRanges':_0x126e61}));}}[_0x5a89b4(0x5f1)](){const _0x18856e=_0x5a89b4;this['_localCacheService']['updateOfflineData'](this[_0x18856e(0x2ea)],this[_0x18856e(0x235)],this[_0x18856e(0x3eb)],this[_0x18856e(0x58c)]);}['_getCurrentRevision'](){const _0x262092=_0x5a89b4;return this[_0x262092(0x3f8)][_0x262092(0x1d1)](this[_0x262092(0x2ea)]);}[_0x5a89b4(0x2ff)](){const _0x2ca6f1=_0x5a89b4;this['_revisionService'][_0x2ca6f1(0x519)](this['unitID']);}['_executeRemoteChangeset'](_0x4a8e96){const _0x49c912=_0x5a89b4;var _0x539a51;let _0x187af1=this['_transformRemoteChangesetByIMECache'](_0x4a8e96);_0x187af1=this[_0x49c912(0x44b)](_0x187af1);const _0x3601cd=a['sequenceExecute'](_0x187af1[_0x49c912(0x48a)],this[_0x49c912(0x5da)],{'fromCollab':!0x0});if(!_0x3601cd[_0x49c912(0x2f3)])throw _0x3601cd[_0x49c912(0x395)]instanceof Error?_0x3601cd[_0x49c912(0x395)]:new Error((_0x539a51=_0x3601cd[_0x49c912(0x395)])!=null?_0x539a51:_0x49c912(0x5ec));this[_0x49c912(0x236)](_0x187af1),this[_0x49c912(0x3fe)](_0x187af1),this[_0x49c912(0x341)](_0x4a8e96),this[_0x49c912(0x34f)](_0x187af1),this[_0x49c912(0x4a0)](_0x187af1),this[_0x49c912(0x2ff)]();}}let Oe=class extends Ee{constructor(_0x3de5ba,_0x1ff052,_0x45534b,_0x26a973,_0x1efa33,_0x19459a,_0x408943,_0x5e1ec3,_0x2248ae,_0x49a662){const _0x3644c6=_0x5a89b4;super(_0x3de5ba,_0x1ff052,null,[],_0x45534b,_0x5e1ec3,_0x408943,_0x26a973,_0x1efa33),I(this,_0x3644c6(0x54c),_0x3644c6(0x57f)),(this[_0x3644c6(0x274)]=_0x19459a,this[_0x3644c6(0x52a)]=_0x2248ae,this[_0x3644c6(0x18f)]=_0x49a662);}[_0x5a89b4(0x21f)](_0x53716e){const _0x1976df=_0x5a89b4,_0x331656=this[_0x1976df(0x274)]['createInstance'](ce,this[_0x1976df(0x2ea)],this[_0x1976df(0x235)],[_0x53716e],this[_0x1976df(0x3df)]);return _0x331656[_0x1976df(0x4bb)](),_0x331656['_updateLocalCache'](),_0x331656;}[_0x5a89b4(0x537)](_0x14943e){const _0x44520d=_0x5a89b4;if(this['_checkMissing'](_0x14943e))return this[_0x44520d(0x274)][_0x44520d(0x45d)](re,this[_0x44520d(0x2ea)],this[_0x44520d(0x235)],null,[],null,[_0x14943e],this[_0x44520d(0x3df)]);try{const _0x37193b=this[_0x44520d(0x18f)][_0x44520d(0x4d1)](_0x14943e,[ji]);if(p[_0x44520d(0x584)](_0x37193b)){const {c1Prime:_0x25c4f4}=_0x37193b;return this[_0x44520d(0x4f9)](_0x25c4f4),this;}throw _0x37193b['error'];}catch(_0x55979d){return this[_0x44520d(0x52a)][_0x44520d(0x395)](_0x55979d),this[_0x44520d(0x306)](!0x1);}}[_0x5a89b4(0x306)](_0x44b261){const _0x392ccc=_0x5a89b4;return this[_0x392ccc(0x274)]['createInstance'](ve,this['unitID'],this[_0x392ccc(0x235)],null,[],this[_0x392ccc(0x3df)],_0x44b261);}[_0x5a89b4(0x174)](){const _0x360992=_0x5a89b4;throw new Error(_0x360992(0x43d));}['onRemoteRej'](){const _0x16711f=_0x5a89b4;throw new Error(_0x16711f(0x2be));}['onRemoteRetry'](){return this;}[_0x5a89b4(0x5a0)](){const _0x3d811d=_0x5a89b4;return this[_0x3d811d(0x274)][_0x3d811d(0x45d)](Se,this[_0x3d811d(0x2ea)],this[_0x3d811d(0x235)],null,[],this['_handler']);}[_0x5a89b4(0x3c4)](){return this;}['resend'](){throw new Error('[SyncedState]:\x20invalid\x20calling\x20to\x20`resend`.');}['fetchMiss'](){const _0x469e4c=_0x5a89b4,_0x37aa88=this[_0x469e4c(0x3f8)]['getCurrentRevOfUnit'](this[_0x469e4c(0x2ea)]);return this[_0x469e4c(0x3df)][_0x469e4c(0x335)]({'from':_0x37aa88,'to':0x0}),this[_0x469e4c(0x274)][_0x469e4c(0x45d)](re,this[_0x469e4c(0x2ea)],this[_0x469e4c(0x235)],null,[],null,[],this[_0x469e4c(0x3df)]);}};Oe=Ce([N(0x3,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),N(0x4,a[_0x5a89b4(0x3d5)](exports['LocalCacheService'])),N(0x5,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),N(0x6,a[_0x5a89b4(0x54d)]),N(0x7,a[_0x5a89b4(0x17d)]),N(0x8,a['ILogService']),N(0x9,p[_0x5a89b4(0x3f4)])],Oe);let ce=class extends Ee{constructor(_0x12ad34,_0x3067ac,_0x515ecf,_0xbb223d,_0x1dbce8,_0x1e8ce9,_0x17c361,_0x162af6,_0x1532d9,_0x34eafe,_0x522d85,_0x1bf045,_0x5b51ea,_0x2b7478){const _0x1235e9=_0x5a89b4;super(_0x12ad34,_0x3067ac,null,_0x515ecf,_0xbb223d,_0x34eafe,_0x2b7478,_0x1e8ce9,_0x17c361),I(this,_0x1235e9(0x54c),'pending'),I(this,_0x1235e9(0x409),null),I(this,_0x1235e9(0x547),null),(this[_0x1235e9(0x274)]=_0x1dbce8,this['_memberService']=_0x162af6,this[_0x1235e9(0x52a)]=_0x1532d9,this[_0x1235e9(0x162)]=_0x522d85,this[_0x1235e9(0x18f)]=_0x1bf045,this['_univerInstanceService']=_0x5b51ea);}[_0x5a89b4(0x21f)](_0x263665){const _0x12d8d5=_0x5a89b4;return this[_0x12d8d5(0x58c)][_0x12d8d5(0x1d0)](_0x263665),this[_0x12d8d5(0x5f1)](),this;}['onRemoteChangeset'](_0x3f27af){const _0x44fd9a=_0x5a89b4;if(this[_0x44fd9a(0x4cd)](_0x3f27af))return this['_clearScheduledTask'](),this['_injector'][_0x44fd9a(0x45d)](re,this[_0x44fd9a(0x2ea)],this['type'],null,this[_0x44fd9a(0x58c)],null,[_0x3f27af],this[_0x44fd9a(0x3df)]);try{const _0x4753e2=this[_0x44fd9a(0x18f)][_0x44fd9a(0x4d1)](_0x3f27af,this[_0x44fd9a(0x58c)]);if(p[_0x44fd9a(0x584)](_0x4753e2)){const {c1Prime:_0x1e3101,m2Prime:_0x2511c9}=_0x4753e2;this['_executeRemoteChangeset'](_0x1e3101);const _0x4cc29f=this['_injector'][_0x44fd9a(0x45d)](ce,this[_0x44fd9a(0x2ea)],this['type'],_0x2511c9,this['_handler']);return this[_0x44fd9a(0x3c5)](),_0x4cc29f[_0x44fd9a(0x4bb)](this[_0x44fd9a(0x409)]?Math[_0x44fd9a(0x51c)](0x0,new Date()[_0x44fd9a(0x2d9)]()-this[_0x44fd9a(0x409)]):this[_0x44fd9a(0x2d2)]()),_0x4cc29f;}throw _0x4753e2[_0x44fd9a(0x395)];}catch(_0x434bb3){return this[_0x44fd9a(0x52a)][_0x44fd9a(0x395)](_0x434bb3),this['_onConflict'](!0x1);}}['onRemoteAck'](){const _0x446a6a=_0x5a89b4;throw new Error(_0x446a6a(0x311));}[_0x5a89b4(0x496)](){const _0x5bf758=_0x5a89b4;throw new Error(_0x5bf758(0x220));}['onRemoteRetry'](){return this;}[_0x5a89b4(0x5a0)](){const _0x52b3d9=_0x5a89b4;return this[_0x52b3d9(0x3c5)](),this[_0x52b3d9(0x274)][_0x52b3d9(0x45d)](Se,this['unitID'],this['type'],null,this['_pendingMutations'],this[_0x52b3d9(0x3df)]);}[_0x5a89b4(0x3c4)](){return this;}['_schedule'](_0xb33274){const _0x239520=_0x5a89b4,_0x129f83=_0xb33274!=null?_0xb33274:this[_0x239520(0x2d2)]();this[_0x239520(0x409)]=new Date()[_0x239520(0x2d9)](),this[_0x239520(0x547)]=window['setTimeout'](()=>{const _0x422999=_0x239520;this[_0x422999(0x3c5)]();let _0x5f0e47=null;switch(this[_0x422999(0x235)]){case ie['UNIVER_SHEET']:{_0x5f0e47=xt(this[_0x422999(0x58c)],this[_0x422999(0x2ea)],this['_univerInstanceService'],this['_revisionService'],this[_0x422999(0x47d)]);break;}case ie[_0x422999(0x222)]:{this['_pendingMutations'][_0x422999(0x424)](_0x40b00c=>_0x40b00c['id']===ye[_0x422999(0x34b)]['id'])?_0x5f0e47=xi(this[_0x422999(0x58c)],this[_0x422999(0x2ea)],this[_0x422999(0x4b5)],this[_0x422999(0x3f8)],this[_0x422999(0x47d)]):_0x5f0e47=xt(this[_0x422999(0x58c)],this[_0x422999(0x2ea)],this[_0x422999(0x4b5)],this[_0x422999(0x3f8)],this[_0x422999(0x47d)]);break;}default:throw new Error(_0x422999(0x5d6)+this[_0x422999(0x235)]+'\x20in\x20_schedule.');}const {changeset:_0x4790d9,pendingMutations:_0x4920b7}=_0x5f0e47;this[_0x422999(0x3df)][_0x422999(0x1ae)](_0x4790d9);const _0x5103d9=_0x4920b7[_0x422999(0x554)]?this[_0x422999(0x274)][_0x422999(0x45d)](le,this[_0x422999(0x2ea)],this[_0x422999(0x235)],_0x4790d9,_0x4920b7,this[_0x422999(0x3df)],void 0x0):this[_0x422999(0x274)][_0x422999(0x45d)](fe,this[_0x422999(0x2ea)],this[_0x422999(0x235)],_0x4790d9,this[_0x422999(0x3df)]);_0x5103d9[_0x422999(0x5f1)](),this[_0x422999(0x3df)][_0x422999(0x453)](this,_0x5103d9);},_0x129f83);}[_0x5a89b4(0x2d2)](){const _0x2c2a1b=_0x5a89b4;var _0x5cc7d3;const _0x5356e9=this[_0x2c2a1b(0x162)][_0x2c2a1b(0x287)](ee);return(_0x5cc7d3=_0x5356e9==null?void 0x0:_0x5356e9[_0x2c2a1b(0x240)])!=null?_0x5cc7d3:kn;}[_0x5a89b4(0x32f)](){throw new Error('[PendingState]:\x20invalid\x20calling\x20to\x20`resend`.');}[_0x5a89b4(0x3c5)](){const _0x4f3bd5=_0x5a89b4;this[_0x4f3bd5(0x547)]!=null&&(clearTimeout(this[_0x4f3bd5(0x547)]),this['_sendingTimer']=null);}[_0x5a89b4(0x306)](_0x49bc00){const _0x52b044=_0x5a89b4;return this[_0x52b044(0x3c5)](),this[_0x52b044(0x274)][_0x52b044(0x45d)](ve,this[_0x52b044(0x2ea)],this[_0x52b044(0x235)],null,this[_0x52b044(0x58c)],this['_handler'],_0x49bc00);}};ce=Ce([N(0x4,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),N(0x5,a['Inject'](p[_0x5a89b4(0x3d9)])),N(0x6,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),N(0x7,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x5ac)])),N(0x8,a[_0x5a89b4(0x3dd)]),N(0x9,a[_0x5a89b4(0x17d)]),N(0xa,a['IConfigService']),N(0xb,p[_0x5a89b4(0x3f4)]),N(0xc,a[_0x5a89b4(0x21c)]),N(0xd,a[_0x5a89b4(0x54d)])],ce);let fe=class extends Ee{constructor(_0x1fbeff,_0xa8ed18,_0x636765,_0x30cd8c,_0x33d05f,_0x462f1e,_0x14d004,_0x33c4dd,_0x3ca504,_0x23c375,_0x56f867){const _0x4335f1=_0x5a89b4;super(_0x1fbeff,_0xa8ed18,_0x636765,[],_0x30cd8c,_0x33c4dd,_0x56f867,_0x462f1e,_0x14d004),I(this,_0x4335f1(0x54c),_0x4335f1(0x4f2)),I(this,_0x4335f1(0x5b1),0x0),I(this,'_resendTimer'),I(this,_0x4335f1(0x574)),(this[_0x4335f1(0x274)]=_0x33d05f,this[_0x4335f1(0x52a)]=_0x3ca504,this[_0x4335f1(0x18f)]=_0x23c375);}[_0x5a89b4(0x21f)](_0x53125c){const _0x25667c=_0x5a89b4;this[_0x25667c(0x3c5)]();const _0x388c97=this[_0x25667c(0x274)]['createInstance'](le,this['unitID'],this[_0x25667c(0x235)],this['_awaitingChangeset'],[_0x53125c],this['_handler'],this[_0x25667c(0x5e9)]);return _0x388c97[_0x25667c(0x5f1)](),_0x388c97;}[_0x5a89b4(0x537)](_0x192a37){const _0x6a38d4=_0x5a89b4;if(this[_0x6a38d4(0x4cd)](_0x192a37))return this['_clearScheduledTask'](),this['_injector'][_0x6a38d4(0x45d)](re,this[_0x6a38d4(0x2ea)],this[_0x6a38d4(0x235)],this['_awaitingChangeset'],[],null,[_0x192a37],this['_handler']);try{const _0x2b43c4=this['_transformService']['transformChangesets']([_0x192a37],[this[_0x6a38d4(0x3eb)]],!0x1);if(p[_0x6a38d4(0x394)](_0x2b43c4)){const {c1Prime:_0x37c71f,c2Prime:_0x152d78}=_0x2b43c4;this[_0x6a38d4(0x4f9)](_0x37c71f[0x0]),_0x152d78[0x0]['baseRev']=this['_getCurrentRevision'](),this['_clearScheduledTask']();const _0x6b33f8=this['_injector'][_0x6a38d4(0x45d)](fe,this[_0x6a38d4(0x2ea)],this[_0x6a38d4(0x235)],_0x152d78[0x0],this[_0x6a38d4(0x3df)]);return _0x6b33f8['_updateLocalCache'](),_0x6b33f8;}return this[_0x6a38d4(0x306)](!0x1);}catch(_0x50ee48){return this[_0x6a38d4(0x52a)][_0x6a38d4(0x395)](_0x50ee48),this[_0x6a38d4(0x306)](!0x1);}}['onRemoteAck'](_0x278f7e){const _0x4119f0=_0x5a89b4;this['_clearScheduledTask']();const _0x1ecc18=this['_revisionService']['getCurrentRevOfUnit'](this['unitID']);if(_0x278f7e[_0x4119f0(0x5c0)]<_0x1ecc18-0x1)return this;if(this[_0x4119f0(0x4cd)](_0x278f7e))return this[_0x4119f0(0x274)][_0x4119f0(0x45d)](re,this[_0x4119f0(0x2ea)],this['type'],null,[],this['_awaitingChangeset'],[],this[_0x4119f0(0x3df)]);this[_0x4119f0(0x2ff)]();const _0x1279c0=this[_0x4119f0(0x274)]['createInstance'](Oe,this[_0x4119f0(0x2ea)],this[_0x4119f0(0x235)],this[_0x4119f0(0x3df)]);return _0x1279c0[_0x4119f0(0x5f1)](),_0x1279c0;}[_0x5a89b4(0x496)](_0x414da7){const _0xa5fef5=_0x5a89b4;return this['_onConflict'](!!(_0x414da7!=null&&_0x414da7[_0xa5fef5(0x26d)]));}[_0x5a89b4(0x348)](_0x700c73){const _0x4bff25=_0x5a89b4;return this[_0x4bff25(0x5b1)]>dn?this['toggleOffline']():(this[_0x4bff25(0x5e9)]=un(this[_0x4bff25(0x5b1)],{'timeout':this['_resendTimeout'],'reqId':_0x700c73[_0x4bff25(0x1fe)]}),this['_sender']=this['_resendTimer'][_0x4bff25(0x3d8)](({reqId:_0x553157,timeout:_0x3a75b8})=>{this['_resendWithTimeout'](_0x553157,_0x3a75b8);}),this);}['toggleOffline'](){const _0xd3454d=_0x5a89b4;return this['_clearScheduledTask'](),this[_0xd3454d(0x274)][_0xd3454d(0x45d)](Se,this[_0xd3454d(0x2ea)],this[_0xd3454d(0x235)],this[_0xd3454d(0x3eb)],[],this[_0xd3454d(0x3df)]);}[_0x5a89b4(0x3c4)](){return this;}['resend'](){const _0x34d6ff=_0x5a89b4;this['_handler'][_0x34d6ff(0x1ae)](this[_0x34d6ff(0x3eb)]);}[_0x5a89b4(0x306)](_0x107f10){const _0x427d13=_0x5a89b4;return this[_0x427d13(0x3c5)](),this[_0x427d13(0x274)][_0x427d13(0x45d)](ve,this['unitID'],this[_0x427d13(0x235)],this[_0x427d13(0x3eb)],[],this['_handler'],_0x107f10);}[_0x5a89b4(0x53d)](_0x1d08c6,_0x1c14e3){const _0x4cbb43=_0x5a89b4;var _0x59d9b9;_0x1d08c6===((_0x59d9b9=this[_0x4cbb43(0x3eb)])==null?void 0x0:_0x59d9b9[_0x4cbb43(0x1fe)])&&(this[_0x4cbb43(0x32f)](),this[_0x4cbb43(0x5b1)]=_0x1c14e3===0x0?0x3e8:_0x1c14e3*0x2);}[_0x5a89b4(0x3c5)](){const _0x92f387=_0x5a89b4;var _0x50da62;(_0x50da62=this[_0x92f387(0x574)])==null||_0x50da62[_0x92f387(0x2c2)](),this['_resendTimeout']=0x0;}};fe=Ce([N(0x4,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),N(0x5,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),N(0x6,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),N(0x7,a[_0x5a89b4(0x17d)]),N(0x8,a[_0x5a89b4(0x3dd)]),N(0x9,p[_0x5a89b4(0x3f4)]),N(0xa,a[_0x5a89b4(0x54d)])],fe);let le=class extends Ee{constructor(_0x3d37f9,_0x38d352,_0x5eaf18,_0x2d899b,_0x4674b1,_0x49e31a,_0x575745,_0x2034a4,_0x511b8a,_0x3926c4,_0x2d9d71,_0x5f572c,_0x100d41){const _0x333227=_0x5a89b4;super(_0x3d37f9,_0x38d352,_0x5eaf18,_0x2d899b,_0x4674b1,_0x3926c4,_0x100d41,_0x2034a4,_0x511b8a),I(this,_0x333227(0x54c),_0x333227(0x31a)),I(this,_0x333227(0x5b1),0x0),I(this,_0x333227(0x5e9)),I(this,_0x333227(0x574)),(this['_injector']=_0x575745,this[_0x333227(0x52a)]=_0x2d9d71,this[_0x333227(0x18f)]=_0x5f572c,_0x49e31a&&(this[_0x333227(0x5e9)]=_0x49e31a,this[_0x333227(0x574)]=this[_0x333227(0x5e9)][_0x333227(0x3d8)](({reqId:_0x21b2b1,timeout:_0x7eff13})=>{const _0xd93e58=_0x333227;this[_0xd93e58(0x53d)](_0x21b2b1,_0x7eff13);})));}[_0x5a89b4(0x21f)](_0x335f33){const _0x2244ee=_0x5a89b4;return this['_pendingMutations'][_0x2244ee(0x1d0)](_0x335f33),this;}[_0x5a89b4(0x537)](_0x169597){const _0x1cee8b=_0x5a89b4;if(this[_0x1cee8b(0x4cd)](_0x169597))return this['_clearScheduledTask'](),this[_0x1cee8b(0x274)][_0x1cee8b(0x45d)](re,this[_0x1cee8b(0x2ea)],this['type'],this[_0x1cee8b(0x3eb)],this['_pendingMutations'],null,[_0x169597],this[_0x1cee8b(0x3df)]);try{const _0x4575bc=this[_0x1cee8b(0x18f)]['transformChangesets']([_0x169597],[this['_awaitingChangeset']],!0x1);if(p[_0x1cee8b(0x394)](_0x4575bc)){const {c1Prime:_0x584033,c2Prime:_0x49e3f4}=_0x4575bc,_0x2412df=this[_0x1cee8b(0x18f)][_0x1cee8b(0x4d1)](_0x584033[0x0],this['_pendingMutations']);if(p[_0x1cee8b(0x584)](_0x2412df)){const {c1Prime:_0x5be9bc,m2Prime:_0x119e08}=_0x2412df;return this['_executeRemoteChangeset'](_0x5be9bc),_0x49e3f4[0x0][_0x1cee8b(0x47a)]=this[_0x1cee8b(0x512)](),this[_0x1cee8b(0x3c5)](),this['_injector'][_0x1cee8b(0x45d)](le,this[_0x1cee8b(0x2ea)],this[_0x1cee8b(0x235)],_0x49e3f4[0x0],_0x119e08,this[_0x1cee8b(0x3df)],void 0x0);}throw _0x2412df[_0x1cee8b(0x395)];}throw _0x4575bc[_0x1cee8b(0x395)];}catch(_0x210bdf){return this[_0x1cee8b(0x52a)]['error'](_0x210bdf),this[_0x1cee8b(0x306)](!0x1);}}[_0x5a89b4(0x174)](_0x554f06){const _0x44b8bd=_0x5a89b4;if(this['_clearScheduledTask'](),this['_checkMissing'](_0x554f06))return this[_0x44b8bd(0x274)][_0x44b8bd(0x45d)](re,this[_0x44b8bd(0x2ea)],this[_0x44b8bd(0x235)],null,this[_0x44b8bd(0x58c)],this[_0x44b8bd(0x3eb)],[],this['_handler']);this[_0x44b8bd(0x2ff)]();const _0x52f8fc=this[_0x44b8bd(0x274)][_0x44b8bd(0x45d)](ce,this[_0x44b8bd(0x2ea)],this[_0x44b8bd(0x235)],this[_0x44b8bd(0x58c)],this[_0x44b8bd(0x3df)]);return _0x52f8fc[_0x44b8bd(0x4bb)](),_0x52f8fc[_0x44b8bd(0x5f1)](),_0x52f8fc;}['onRemoteRej'](_0x1286cd){const _0xf55f0d=_0x5a89b4;return this[_0xf55f0d(0x306)](!!(_0x1286cd!=null&&_0x1286cd[_0xf55f0d(0x26d)]));}[_0x5a89b4(0x348)](_0x432cf8){const _0x288fe8=_0x5a89b4;return this[_0x288fe8(0x5b1)]>dn?this[_0x288fe8(0x5a0)]():(this[_0x288fe8(0x5e9)]=un(this['_resendTimeout'],{'timeout':this[_0x288fe8(0x5b1)],'reqId':_0x432cf8['reqId']}),this[_0x288fe8(0x574)]=this[_0x288fe8(0x5e9)][_0x288fe8(0x3d8)](({reqId:_0x437942,timeout:_0xd0f434})=>{const _0x4892c2=_0x288fe8;this[_0x4892c2(0x53d)](_0x437942,_0xd0f434);}),this);}[_0x5a89b4(0x5a0)](){const _0x2da8ac=_0x5a89b4;return this[_0x2da8ac(0x3c5)](),this[_0x2da8ac(0x274)][_0x2da8ac(0x45d)](Se,this['unitID'],this['type'],this[_0x2da8ac(0x3eb)],this[_0x2da8ac(0x58c)],this[_0x2da8ac(0x3df)]);}[_0x5a89b4(0x3c4)](){return this;}[_0x5a89b4(0x32f)](){const _0x43a684=_0x5a89b4;this[_0x43a684(0x3df)][_0x43a684(0x1ae)](this[_0x43a684(0x3eb)]);}[_0x5a89b4(0x306)](_0x437b9b){const _0x51a359=_0x5a89b4;return this[_0x51a359(0x3c5)](),this[_0x51a359(0x274)][_0x51a359(0x45d)](ve,this[_0x51a359(0x2ea)],this[_0x51a359(0x235)],null,this[_0x51a359(0x58c)],this['_handler'],_0x437b9b);}[_0x5a89b4(0x53d)](_0x419763,_0x467667){const _0x506dc8=_0x5a89b4;var _0x5e125d;_0x419763===((_0x5e125d=this[_0x506dc8(0x3eb)])==null?void 0x0:_0x5e125d[_0x506dc8(0x1fe)])&&(this['resend'](),this[_0x506dc8(0x5b1)]=_0x467667===0x0?0x3e8:_0x467667*0x2);}[_0x5a89b4(0x3c5)](){const _0x56eba8=_0x5a89b4;var _0x13bf60;(_0x13bf60=this[_0x56eba8(0x574)])==null||_0x13bf60[_0x56eba8(0x2c2)](),this[_0x56eba8(0x5b1)]=0x0;}};le=Ce([N(0x6,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),N(0x7,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),N(0x8,a['Inject'](exports[_0x5a89b4(0x4e3)])),N(0x9,a['ICommandService']),N(0xa,a['ILogService']),N(0xb,p[_0x5a89b4(0x3f4)]),N(0xc,a[_0x5a89b4(0x54d)])],le);let ve=class extends Ee{constructor(_0x200441,_0x95d64a,_0x1a9a43,_0x5bcf4c,_0x40d92d,_0x8c7d88=!0x1,_0x5317aa,_0x14c51c,_0x8817f5,_0x116f8b,_0x2b8412,_0x1d734e,_0x33f043){const _0x5534d5=_0x5a89b4;super(_0x200441,_0x95d64a,_0x1a9a43,_0x5bcf4c,_0x40d92d,_0x14c51c,_0x8817f5,_0x2b8412,_0x116f8b),I(this,_0x5534d5(0x54c),'conflict'),(this[_0x5534d5(0x1b4)]=_0x8c7d88,this[_0x5534d5(0x56c)]=_0x5317aa,this[_0x5534d5(0x37c)]=_0x1d734e,this[_0x5534d5(0x285)]=_0x33f043,this[_0x5534d5(0x190)](),this[_0x5534d5(0x363)](),this['_disableEditing']());}[_0x5a89b4(0x21f)](){return this;}[_0x5a89b4(0x537)](){return this;}[_0x5a89b4(0x174)](){return this;}[_0x5a89b4(0x496)](){return this;}['onRemoteRetry'](){return this;}[_0x5a89b4(0x5a0)](){return this;}[_0x5a89b4(0x3c4)](){return this;}[_0x5a89b4(0x32f)](){const _0x3a1f32=_0x5a89b4;throw new Error(_0x3a1f32(0x2c8));}[_0x5a89b4(0x363)](){const _0x3a6620=_0x5a89b4;this[_0x3a6620(0x470)][_0x3a6620(0x261)](this[_0x3a6620(0x2ea)],this[_0x3a6620(0x235)],null,[]);}[_0x5a89b4(0x190)](){const _0x185049=_0x5a89b4;this[_0x185049(0x1b4)]?this[_0x185049(0x285)][_0x185049(0x2ad)]({'title':this[_0x185049(0x37c)]['t'](_0x185049(0x2e4)),'content':this[_0x185049(0x37c)]['t'](_0x185049(0x405)),'type':_0x185049(0x395),'duration':0x0}):this['_notificationService']['show']({'title':this[_0x185049(0x37c)]['t'](_0x185049(0x181)),'content':this[_0x185049(0x37c)]['t'](_0x185049(0x32e)),'type':'error','duration':0x0});}[_0x5a89b4(0x3b3)](){const _0x5e16f4=_0x5a89b4;this[_0x5e16f4(0x56c)][_0x5e16f4(0x313)](new B[(_0x5e16f4(0x170))](this[_0x5e16f4(0x2ea)])['id'],!0x1);}};ve=Ce([N(0x6,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x2b4)])),N(0x7,a[_0x5a89b4(0x17d)]),N(0x8,a[_0x5a89b4(0x54d)]),N(0x9,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),N(0xa,a[_0x5a89b4(0x3d5)](p['RevisionService'])),N(0xb,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x3a3)])),N(0xc,te[_0x5a89b4(0x55b)])],ve);let Se=class extends Ee{constructor(_0x58d58e,_0x2d4e1d,_0x22bfad,_0x4ce3ff,_0x2a4b3c,_0x37aaad,_0x1afec6,_0x137a99,_0x3035e3,_0x169e1f){const _0x997143=_0x5a89b4;super(_0x58d58e,_0x2d4e1d,_0x22bfad,_0x4ce3ff,_0x2a4b3c,_0x3035e3,_0x169e1f,_0x1afec6,_0x137a99),I(this,_0x997143(0x54c),_0x997143(0x5d9)),this[_0x997143(0x274)]=_0x37aaad;}[_0x5a89b4(0x21f)](_0x373ce9){const _0x529983=_0x5a89b4;return this['_pendingMutations'][_0x529983(0x1d0)](_0x373ce9),this['_updateLocalCache'](),this;}[_0x5a89b4(0x537)](_0x18d1e3){const _0x160dd3=_0x5a89b4;throw new Error(_0x160dd3(0x1ff));}[_0x5a89b4(0x174)](){const _0x2c8cfb=_0x5a89b4;throw new Error(_0x2c8cfb(0x27a));}['onRemoteRej'](){throw new Error('[OfflineState]:\x20received\x20rejection.');}['onRemoteRetry'](){return this;}[_0x5a89b4(0x5a0)](){return this;}[_0x5a89b4(0x3c4)](){const _0x23e86e=_0x5a89b4,{_injector:_0x286a92,_pendingMutations:_0x27b634,_awaitingChangeset:_0x328695,unitID:_0x3de187,_handler:_0x430235,type:_0xce79a6}=this,_0x18e9ed=fn(_0x286a92,_0x3de187,_0xce79a6,_0x328695,_0x27b634,_0x430235);return _0x18e9ed instanceof ce?_0x18e9ed[_0x23e86e(0x4bb)]():(_0x18e9ed instanceof le||_0x18e9ed instanceof fe)&&_0x18e9ed[_0x23e86e(0x32f)](),_0x18e9ed;}[_0x5a89b4(0x32f)](){const _0x1747ce=_0x5a89b4;throw new Error(_0x1747ce(0x252));}};Se=Ce([N(0x5,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),N(0x6,a['Inject'](p['RevisionService'])),N(0x7,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),N(0x8,a[_0x5a89b4(0x17d)]),N(0x9,a['IUndoRedoService'])],Se);function _0x295e(){const _0x4b95ba=['roomMembers','transformMutation','distinctUntilChanged','registerRefRange','getDeserializedSheetBlock','MemberService','sigBytes','triggerDblclick','TEXT_RANGE_LAYER_INDEX','resize','_resendTimeout','EmptyMutation','No\x20remote\x20instance\x20service\x20injected.\x20May\x20not\x20syncing\x20edits\x20to\x20the\x20web\x20worker.','commentUpdateEvent','slice','clone','ALREADY_EXISTS','LOCAL_CACHE_INTERVAL_KEY','_entities','add','_setupSubUnitSync','_candidateSocket','DocStateChangeManagerService','_waitForHeartbeatResponse','defineProperty','revision','MoveRangeCommandId','SheetsSelectionsService','removeParam','_online','mapTo','concat','JSONX','_getSnapshotAPIPrefix','image/bmp','_onUserLeave','_socketMessageSubscription','unitId\x20is\x20not\x20found','Unknown\x20user','_append','ciphertext','objects','rxjs','Subject','for','_labelPosition','clear','[PendingState]:\x20unhandled\x20univer\x20type:\x20','_startDocCollabCursor','JOIN_ROOM_NOT_ALLOWED','offline','_commandService','11GiDYZS','black','collaboration.closeRoom','initWorkbookPermissionChange','getUnitId','sessionStatus$','_getAnchorBounding','_hideTimer','_key','name','location','#FFF','onTransformState','_config','_resendTimer','UUID','CollaborationStatusDisplay','[CollaborationState]:\x20apply\x20error!','online','tag','JOIN','SnapshotService','_updateLocalCache','SEND_CHANGESET_TIMEOUT','_onConnectionFailed','awaitingChangeset','_initMergeInterceptor','transformSelections','__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED','DesktopCollaborationStatusDisplayController','authzUrl','currentTheme$','getValue','selection','unit-cache-','onTransformChange$','m1Prime','_onCursorDelete','c1Prime','changesets','CBC','reconnect','sheetId','...','InsertSheetMutation','_parse','ONLINE','_color','$super','gold400','csShouldRetryEvent','useRef','_updateStatus','collaboration-client.config','eventID','uni.network.url-service','\x20-\x20','bold\x2013px\x20Source\x20Han\x20Sans\x20CN','_anchorDot','{fileID}','onload','SHA1','UNRECOGNIZED','_onCombEvent','asObservable','LOGIN_URL_KEY','contains','_submitChangeset','HmacMD5','disposeWithMe','_createSocketURL','_scheduleClearOtherTimer','HEADER_MENU','_configService','key','currentColor','_instanceService','RETRY_CONNECTING_MAX_COUNT_KEY','create','actions','deleteCollaborator','@univerjs/design','SetTextSelectionsOperation','startColumn','_saveCache','endColumn','getResourcesRequest','WorkbookEditablePermission','saveImage','@univerjs/engine-render','registerOnClose','onRemoteAck','exports','_data','SessionStatus','status$','json','getFocusedUnit','children','min','ICommandService','updatePermissionObjEvent','ws://127.0.0.1:8000/universer-api/comb/connect','LIVESHARE_REQUEST_HOST','conflict.title','getSheetObject','close$','_getRedoStack','AuthzIoHttpService','[UniverCollaborationClientPlugin]','[FetchMissState]','CONFLICT','size','capture','IRenderManagerService','_unitStatus','duration','some','_transformService','_showConflictNotification','_scheduleCollaborationTimeoutTimer','format','@univerjs/drawing','_transitionLocked','_getLoginPath','serializeRangeWithSheet','_onRecvEvent','_fetchMissChangesets','runRefRangeMutations','POST','[CollaborationSession]','CollaborationSessionService','/universer-api/snapshot/','_docSyncEditingCollabCursorService','parseProtocolChangeset','finalize','randomUUID','__creator','url(#off-line-single_clip0_910_343)','unknown','use','_docTransformSelectionsService','fillRule','_assignedColors','_collaborationPaused','isArray','editing\x20status\x20changed\x20to','_createHandler','pad','onSendChangeset','UniverInstanceType','complete','url(#on-line-single_clip0_910_349)','getTypeOfUnitAdded$','blue400','_isPermissionRej','_event$','addEventListener','getCollabCursors$','_init','_removeCollabCursors','_tryEnsureSocket','onTransformSelections','FETCH_MISSING','react.element','getAncestorScale','roomMembers$','copyFileMeta','_scheduleSaving','message$','then','_http','objectID','deepClone','subunit','ref','ReplaySubject','Rect','_listenToOfflineEvent','_type','MessageType','state$','HEARTBEAT_TIMEOUT_KEY','push','getCurrentRevOfUnit','signUrlServerUrl','IImageIoService','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','DataLoaderController','CipherParams','Native\x20crypto\x20module\x20could\x20not\x20be\x20used\x20to\x20get\x20secure\x20random\x20number.','react','entries','_handleHover','dispose','/block/','getVpScrollXYInfoByPosToVp','[FetchingMissState]:\x20not\x20expected\x20to\x20receive\x20ack\x20when\x20`this._awaitingChangeset`\x20is\x20null!','collaboration-session-retry','UNIVER_COLLABORATION_CLIENT_PLUGIN','InsertRangeMoveRightCommandId','getCurrentSelections','requestParams','SnapshotServerOverHTTPService','_retryCount','collaboration-client.offline-data-not-saved','join','@univerjs-pro/collaboration','src','iterations','Malformed\x20UTF-8\x20data','_docSkeleton','/allowed','splice','_createInitialStateImpl','toStringTag','_unlockTransition','_transformHistoryAndStateStack','LocalUndoRedoService','backgroundColor','univerjs-icon\x20univerjs-icon-','_prevBlock','CollaborationController','image/jpg','createSocket','font','values','DeleteRangeMoveLeftCommandId','ImageSourceType','reqId','[OfflineState]:\x20received\x20changeset.','ivSize','createCollaborator','reject','setActiveRange','delete','function','uploadFileServerUrl','_render','setShapeProps','merge','_keySchedule','MD5','RegularPolygon','0\x200\x2017\x2016','_applyRemoteChangeset','_getScale','debug','skeleton','objectActions','Utf8','cursorInfo$','registerBeforeClose','AES','Injector','disableLocalCache','_onRefRangeChange','_hash','getMember','IUniverInstanceService','bottom','YUUMI_URL_COL_OUT_OF_RANGE','appendMutation','[PendingState]:\x20received\x20rejection.','substring','UNIVER_DOC','getStateCache','_docSkeletonManagerService','PERMISSION_DENIED','_queuedRemoteChangesets','getOwnPropertyDescriptor','SetDocZoomRatioOperation','_draw','setTimeout','decrypt','append','putCollaborators','UNIVER_UNKNOWN','_unitID','_getSheetObject','438BoKbTv','CHANGESET_REVISION_CONFILICT','NEW_CHANGESETS','cursorInfo','type','_transformIMECache','fetchMissingChangesets','executeCommand','_name','_startCollaboration','_socket$','sheets','[CollaborationSessionService]:\x20socket\x20error','NOT_COLLAB','DEFAULT_FILE_NAME','sendChangesetTimeout','lib','Cipher','_sheetTransformSelectionsService','CollaborationSession','LICENSE_MAX_MEMBERS_PER_UNIT_EXCEEDED','UniverCollaborationClientPlugin','collab-client.tooltip.reconnect','handleInsertRangeMoveDown','getCurrentUser','ThemeService','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','/fetchmissing?from=','getDocRanges','_getSaveTimeout','_initResize','activeSheet$','Decryptor','[OfflineState]:\x20invalid\x20calling\x20to\x20`resend`.','image/jpeg','/universer-api/user/session-ticket','univer-online-status-title','dispose$','\x22.\x20Please\x20configure\x20the\x20dynamicRequireTargets\x20or/and\x20ignoreDynamicRequires\x20option\x20of\x20@rollup/plugin-commonjs\x20appropriately\x20for\x20this\x20require\x20call\x20to\x20work.','PENDING','_initStatusComponent','collabStatus.syncing','getRandomValues','UNIVER_PROJECT','_onRemoteRetry','shouldCloseConn','addObject','onlineStatus','updateOfflineData','getUnitOnRev','findNodePositionByCharIndex','_onOffline','getActiveSheet','JOINING','url(#$1','_handleJoinEvent','onPointerEnter$','list','COLORS','collab-text-range-','isPermissionRej','_remoteChangesetQueue','LIVESHARE_FETCH_OPERATIONS','_getSessionTicket','_createInitialState','map','_loadDoc','_injector','_clearRedo','exhaustSavingTask','&to=','enableSingleActiveInstanceLock','charCodeAt','[OfflineState]:\x20received\x20acknowledgement.','_getUndoStack','No\x20unitID\x20or\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','urlChange$','UnitSnapshot','Hex','ITelemetryService','_toggleOffline','Base64','purple300','syncEditingCollabCursor','_notificationService','OffLineSingle','getConfig','getUnhiddenWorksheets','OFFLINE','LOCAL_CACHE_INTERVAL','22655310TXGeWp','combineLatest','Base','init','_scene','defIds','_onUserJoin','getOffsetConfig','_compressMutationService','HTTPService','COLLAB_SUBMIT_CHANGESET_URL','LICENSE_DISTRO_REJECTED','LICENSE_EXPORT_SIZE_EXCEEDED','crypto','jsxs','_doReset','IDLE','memberID','_state$','@univerjs/sheets','height','USERS_ENTER','onCommandExecuted','method','clipPath','pending','setStateCache','useCallback','_rescheduleHeartbeat','@univerjs/rpc','_onCursorUpdate','salt','getAllMembers','collabCursorState$','show','UPDATE_CURSOR','propertyIsEnumerable','enableLocalCache','_DEC_XFORM_MODE','DeleteRangeMoveUpCommandId','isEditing','IPermissionService','25852ztBaYX','react.fragment','docStateChange$','This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!','apply','\x0aAfter:\x20','split','LIVESHARE_OPERATION','endRow','[SyncedState]:\x20received\x20rejection.','touchDependencies','_process','_snapshotServerService','unsubscribe','ImageUploadStatusType','send','COMPLETION_FINISHED','session.will-retry','createIdentifier','[ConflictState]:\x20invalid\x20calling\x20to\x20`resend`.','round','sid','image/png','_entityInit$','SheetSkeletonManagerService','_decreaseWaiting','isActive','toLowerCase','colorChannel1','_getSendChangesetTimeout','collaboration_new_changeset','undoState','encode','rev','flatMap','CommentService','getTime','RxDisposable','width','CollaborationEntity','COMPRESS_MUTATION_SEND','COLLAB_WEB_SOCKET_URL_KEY','_initCloseConn','_initRequestHeader','HMAC','_getSignURL','PERMISSION_REJ','permission.title','UniverIcon','_handleEvent','NoPadding','algo','takeUntil','unitID','collabStatus.offline','_minBufferSize','_urlService','_transformStack','mergeOverrideWithDependencies','8507997IXylyg','addObjects','SYNCED','result','resolve','IUIPartsService','SNAPSHOT_URL_KEY','TOO_MANY_REQUESTS','session.connection-failed','lineTo','getOwnPropertySymbols','_session','from','getTypeOfUnitDisposed$','searchParams','_incrementRevisionNumber','_redoStacks','_themeService','defs','filter','_collabCursorState$','_transformUndoRedoStack','_onConflict','Warning','VIEW_MAIN','_ENC_XFORM_MODE','_registerDependencies','transformRemoteChangeset','getSheetBlock','_range','cmd','getUniverSheetInstance','collaboratorID','[PendingState]:\x20received\x20acknowledgement.','substr','updatePermissionPoint','_onJoinRoomEvent','_sendHeartbeat','padding','SEND_CHANGESET_TIMEOUT_KEY','on-line-single_clip0_910_349','MergeInterceptorFactory','awaiting_with_pending','_undoRedoService','resourceIDs','_context','_substituteUndoStack','override','_updateSubUnitFromURLParams','IBeforeCloseService','newValue','code','_cachedData','_unitOnClients','_onConnectionOpen','objectType','Shape','ACTIVE_UNIT_EVENT_CHANNEL','enc','_keyPriorReset','__Key__','origin','conflict.content','resend','m2Prime','mixIn','/-/object/list','getCollabEntity','assignAColorForMemberID','onMissingChangesets','handleIRemoveCol','moveTo','switchMap','fromCharCode','useDependency','_socketService','_clearUndo','redoState','object','SNAPSHOT_HAS_BEEN_REMOVED','UPDATE_PERMISSION_OBJ','_transformUndoredo','YUUMI_SUBSCRIPTION_NOT_FOUND','Univer','_cursors','refreshPermission','svg','SNAPSHOT_SERVER_URL_KEY','onRemoteRetry','responseType','HEARTBEAT_TIMEOUT','RichTextEditingMutation','none','EXCHANGE_SIGN_URL_SERVER_URL_KEY','_createHelper','_transformSelections','YUUMI_UNABLE_LOAD_URL','_localStorageService','set','_updateLocalCursor','_change$','APPLY_REJECT','_drawAnchor','YUUMI_RATE_OVER_LIMIT','@univerjs/docs-ui','className','call','_shapes','readAsDataURL','@univerjs/core','RefRangeService','rgba(255,\x20255,\x20255,\x200.01)','FromArray','_startSheetCollabCursor','[CollaborationEntity]:\x20cannot\x20apply\x20missing\x20results\x20on\x20other\x20states!','_clearLocalCache','update','getInterceptPoints','createDecryptor','measureText','WebSocketService','VIEWPORT_KEY','_eventUnsubscribe','[CollaborationEntity]:\x20initial\x20state\x20has\x20been\x20created\x20before.\x20You\x20should\x20not\x20call\x20\x22init\x22\x20twice.','SheetCollabCursorShape','sheetID','_nDataBytes','sin','univer-online','unshift','handleMoveRange','getCoordByCell','univer-offline','DocIMEInputManagerService','trim','compose','onMouseMove','_httpService','onRendered','_xformMode','_localeService','transformChangesets','414zPNnOp','_initCommandExecutedListener','_sessions','collabStatus.conflict','onReady','history','getLatestCsReqIdBySid','getSheetBySheetId','_status$','fillText','headers','@univerjs/engine-formula','now','IMessageService','handleDeleteRangeMoveLeft','selections','INVALID_ARGUMENT','post','image/gif','replaceState','drawWith','Error\x20on\x20receiving\x20event','isTransformChangesetsSuccess','error','collabStatus.fetchMiss','/collaborator','fetching\x20missing\x20changesets\x20from\x20','div','_lockTransition','routeKey','unit','byteOffset','setAlpha','_shouldReportTelemetry','Module','fromCollab','ISnapshotServerService','LocaleService','forEach','/universer-api/snapshot','ticket','_nRounds','_collaborationSessionService','INGEST','socketService','_setupBeforeClosingHandler','_disabled','SHOULD_CLOSE_CONN','default','prototype','LIVESHARE_TERMINATE','Hasher','TEXT','_disableEditing','useObservable','setConfig','_syncEditingCollabCursorService','_iKey','PasswordBasedCipher','session','CommandType','b64DecodeUnicode','clamp','getWorkbookSelections','APPLY_PERMISSION_DENIED','cfg','clearInterval','FETCH_MISS','_retryConnectingTimer','getUndoRedoMutationParamsCache','toggleOnline','_clearScheduledTask','/-/object/-/batch_allowed','text','LIVESHARE_NEW_HOST','execute','off-line-single_clip0_910_343','sessionStatus','getSkeleton','shareReplay','_initStatusListener','getParam','_initDependencies','APPLY_REVISION_CONFILICT','batchAllowed','onSyncEditingCollabCursor','DocSkeletonManagerService','Inject','_updateURLWithCurrentState','_state','subscribe','RevisionService','WordArray','_getMergeRange','_getAPIPrefixPath','ILogService','_onFetchMissResult','_handler','jsx','startTime','red300','_clearCollaborationTimeoutTimer','data','INTERNAL_ERROR','_collaborationController','hostname','buffer','unitId','connectInjector','_awaitingChangeset','Unknown\x20type\x20in\x20URL.\x20Will\x20not\x20load\x20files\x20from\x20remote\x20address.','updateMember','_clearTimeoutTimer','take','blockSize','encryptBlock','registerRenderModule','[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.','ITransformService','action','_HTTPService','_anchor','_revisionService','color','getRangePointData','clearTimeout','idSuffix','SheetPermissionInitController','_transformStateCache','createEncryptor','deserializeToCombResponse','assign','parse','registerHTTPInterceptor','_beforeCloseService','permission.content','words','/unit/','transformUndoRedo','_scheduleTimestamp','_doCryptBlock','ceil','storage','FAIL','_map','downloadEndpointUrl','change$','floor','Error','8491072OxLpym','_members','_selfUnitIDs','onCommentUpdate','SetSelectionsOperation','rng','listRoles','ENSURE_SNAPSHOT_EXECUTION','saveOfflineData','Encryptor','_roomMembers$','_exhaustRemoteChangesetQueue','_commentUpdate$','find','_ensureSubject','_clearHeartbeatTimer','UNIVER_SLIDE','every','_drawRectRange','SNAPSHOT_INVALID_SNAPSHOT','_hover','18moangf','@univerjs/sheets-ui','pushState','reduce','interceptor','SUBMIT_CHANGESET','Rectangle','registerComponent','handleDeleteRangeMoveUp','hasOwnProperty','_docTransformStateCacheService','getUnitStatus$','_toggleOnline','CollaborationStatus','UNDEFINED','hasher','extend','connection\x20error','[CollaborationEntity]','_collabSessionService','_handleLeaveEvent','[SyncedState]:\x20received\x20acknowledgement.','IContextService','visibilityState','0\x200\x2016\x2016','_onRemoteChangeset','_startTelemetryCollaborationNewChangeset','_reverseMap','Tools','[DataLoaderController]','includes','M0\x200H16V16H0z','_initUnitPermissionChange','bind','_messageService','_transformRemoteChangesetByStateCache','_createSocket','collab-text-anchor-','state','CollaborationEvent','_hovered','CompressMutationService','loadOfflineData','onStateChange','BlockCipherMode','/resources','stringify','_docTransformIMECacheService','_uiPartsService','_sheetSkeletonManagerService','CHANGESET_ACK','CHANGESET_SHOULD_RETRY','MSG_FOR_ERROR','createInstance','subUnitId','RECT','_getAPIPrefix','_onRemoteRejected','range','_clearOtherTimers','_socket','setItem','isTransformMutationsWithChangesetFailure','fetch_missing','deserializeRangeWithSheet','href','DocCollaborationEntity','COMPRESS_MUTATION_APPLY','ICollaborationSocketService','updateCollaborator','Undefined','subscribeEvent','_localCacheService','you\x20should\x20override\x20\x22IUndoRedoService\x22\x20provided\x20in\x20\x22core\x22\x20package!','_joinRoom','indexOf','_send','setShowComponents','msCrypto','row','url','UNIVER_SHEET','baseRev','transformStack\x20failed!','byteLength','_memberService','/role','_invKeySchedule','ImageIoService','_removeRoom','serializeCombRequest','Plugin','ERROR_IMAGE','symbol','save','HmacSHA1','patch','localeService','mutations','ILocalStorageService','_hasher','CollaborationSocketService','workbook','_substituteRedoStack','univer-pro.collaboration-client.single-active-unit-service','body','socket\x20close','loginUrlKey','liveShareOperation','_iv','onRemoteRej','updateCursorEvent','originalMeta','OpenSSL','HELLO','_createHmacHelper','icon','fillStyle','HEARTBEAT','visibilitychange','_syncEditingCollabCursor','charAt','CHANGESET_REJ','path','params','getImage','1em','disposeUnit','/universer-api/file/{fileID}/sign-url','auth.needGotoLoginAlert','Pkcs7','onPointerMove$','_replayCachedMutations','string','LICENSE_MAX_UNITS_EXCEEDED','_throwTelemetryCollaborationNewChangeset','ThresholdInterceptorFactory','getUnitType','current','DOC_RANGE_TYPE','hidden','_univerInstanceService','collabWebSocketUrl','RemoveRowCommandId','all','_singleActiveUnitService','open$','_schedule','abs','defaultProps','_cursor','[CollaborationSessionService]','with','AWAITING_WITH_PENDING','BehaviorSubject','setParam','arc','getColor','getCurrentUnitForType','univer-pro.collaboration-client-socket-service','Disposable','_collaborationTimeoutTimer','transformIMECache','PSEUDO_FETCH_MISSING_RESULT','EvpKDF','_checkMissing','_socketReady','error$','_stopTelemetryCollaborationNewChangeset','transformMutationsWithChangeset','evenodd','_changesetSessionId','fetchThroughInterceptors','_updateCollabCursors','/object/','_roomMembers','IRemoteInstanceService','univer-online-status-icon','HEARTBEAT_INTERVAL_KEY','saveChangeset','_cipher','xlink:href','displayName','has','/rev/','ERROR_IMAGE_TYPE','_changesetReqId','LocalCacheService','_ws','replace','&assign=','TRANSFORM_CHANGE_OBSERVABLE_TYPE','CONNECTOR_DATA_TOO_LARGE','transformByState','collabSubmitChangesetUrl','_renderManagerService','collab-rect-range-','attrs','stopTime','getViewport','userID','forwardRef','awaiting','closeSession','HEARTBEAT_INTERVAL','COMMENT_UPDATE','_userManagerService','startsWith','compute','_executeRemoteChangeset','USERS_LEAVE','OTHER_CLIENTS_EDITING','getCellPositionByOffset','_drawTextRange','[CollaborationUndoRedoService]','RECV','_cursorInfo$','readInt32LE','toDisposable','mode','close','OnLineSingle','requireSession','FileId','enableAuthServer','members','generateRandomId','_waitCount','kdf','handleIRemoveRow','_id','liveShareNewHost','RETRY_CONNECTING_MAX_COUNT','_handleHeartbeatEvent','_getCurrentRevision','debounceTime','_scheduleHeartbeat','_backgroundColor','UNKNOWN_CMD','_docStateChangeManagerService','keySize','incrementRevOfUnit','EffectRefRangId','SheetCollaborationEntity','max','onStarting','DocSelectionManagerService','getMergeData','_sendHeartbeatTimer','UnitEmbedded','_timeoutTimer','DisposableCollection','_onLocalMutation','startRow','catch','makeDirty','HTTPRequest','reset','_logService','_telemetryService','next','_collabCursorController','fetchMiss','event$','debounce','addImageSourceCache','/universer-api/oidc/authpage','NodePositionConvertToRectRange','_cursorShapes','getSheetId','saveSheetBlock','onRemoteChangeset','_tryReconnect','_textBubble','AWAITING','focused$','_refreshCollabCursors','_resendWithTimeout','collaboration.single-unit.warning','beginPath','labelPosition','LICENSE_IMPORT_SIZE_EXCEEDED','SUCCUSS','InsertRangeMoveDownCommandId','isTransformMutationFailure','univer-online-status','[FetchingMissState]:\x20invalid\x20calling\x20to\x20`resend`.','_sendingTimer','_removeClearOtherTimer','5526sxHDPQ','IURLService','toString','status','IUndoRedoService','UserManagerService','_doFinalize','handleInsertRow','HttpImport','_getUploadFileURL','top','length','_sessionStatus$','fromEventSubject','\x0aCurrent:\x20','verdancy600','WebURLService','_initEventListeners','INotificationService','SetWorksheetActivateCommand','_getDownloadEndpointURL','APPLY_DUPLICATED','HttpExport','onTransformRemoteChangesetByIMECache','_loadSheet','setCurrentUser','_oKey','pipe','__esModule','BASE64','_refRangeService','random','IConfigService','_mode','1446389YZXaNr','_permissionService','_replaceFileID','AUTHZ_URL_KEY','MUTATION','textEncoder','/universer-api/stream/file/upload','7891770kjMqxi','_saveTaskMap','_sender','target','isInternalEditorID','_lastPointer','getMemberID','restore','_colorAssignService','doc.mutation.rich-text-editing','delay','column','registerDependencies','synced','_heartbeatTimer','#fff','_acknowledgedAwaitingChangeset','onPointerLeave$','isTransformMutationsWithChangesetSuccess','_transformPreviousActiveRange','textRanges','Optional','crypto.getRandomValues()\x20not\x20supported.\x20See\x20https://github.com/uuidjs/uuid#getrandomvalues-not-supported','ColorKit','_commentService','_telemetryInfo','_pendingMutations','get','csAckEvent','_imageSourceCache','randomBytes','fill','hide','_colorIndex','mapDocumentTypeToUniverType','infoRsp','NO_OTHER_CLIENTS_EDITING','_updateState','@univerjs/ui','put','getRenderById','throttleTime','encrypt','onTransformRemoteChangesetByStateCache','ranges','onTransformIME','toggleOffline','onlyLocal','createElement','_registerRenderDependencies','LEAVE','removeMember','getImageSourceCache'];_0x295e=function(){return _0x4b95ba;};return _0x295e();}let re=class extends Ee{constructor(_0x4b95da,_0x16b345,_0x41c181,_0x2fac89,_0x2a8edf,_0x10660e,_0x4ee305,_0x1f7869,_0x236616,_0x3905ef,_0xf12d66,_0x3d9b38,_0x253b49,_0x302d3d){const _0x356ea5=_0x5a89b4;super(_0x4b95da,_0x16b345,_0x41c181,_0x2fac89,_0x4ee305,_0x3d9b38,_0x253b49,_0x236616,_0x3905ef),I(this,'status',_0x356ea5(0x467)),(this[_0x356ea5(0x582)]=_0x2a8edf,this[_0x356ea5(0x226)]=_0x10660e,this['_injector']=_0x1f7869,this[_0x356ea5(0x52a)]=_0xf12d66,this[_0x356ea5(0x18f)]=_0x302d3d);}['onMissedChangesetFetched'](_0x586ef1){const _0x557569=_0x5a89b4;try{const _0x377623=[..._0x586ef1,...this[_0x557569(0x226)]],_0x4bb27c=[this[_0x557569(0x3eb)]||this['_acknowledgedAwaitingChangeset']][_0x557569(0x303)](_0x75e752=>!!_0x75e752);let _0x38ab1e,_0x1686a7;if(_0x4bb27c['length']){const _0x13d066=this[_0x557569(0x18f)][_0x557569(0x37d)](_0x377623,_0x4bb27c,!0x1);if(!p['isTransformChangesetsSuccess'](_0x13d066))throw _0x13d066[_0x557569(0x395)];_0x38ab1e=_0x13d066['c1Prime'],_0x1686a7=_0x13d066['c2Prime'];}else _0x38ab1e=_0x377623,_0x1686a7=[];let _0x2a4531=this[_0x557569(0x58c)];_0x38ab1e[_0x557569(0x3a4)](_0x42408f=>{const _0x4f4548=_0x557569;let _0x2fa52b;if(_0x2a4531['length']){const _0x9d6fe0=this[_0x4f4548(0x18f)][_0x4f4548(0x4d1)](_0x42408f,_0x2a4531);if(!p[_0x4f4548(0x584)](_0x9d6fe0))throw _0x9d6fe0[_0x4f4548(0x395)];_0x2fa52b=_0x9d6fe0[_0x4f4548(0x601)],_0x2a4531=_0x9d6fe0[_0x4f4548(0x330)];}else _0x2fa52b=_0x42408f;this[_0x4f4548(0x4f9)](_0x2fa52b);}),this[_0x557569(0x582)]&&this['_incrementRevisionNumber'](),this[_0x557569(0x3eb)]&&_0x1686a7[_0x557569(0x554)]&&(_0x1686a7[0x0]['baseRev']=this['_getCurrentRevision']());let _0x3a690d;if(this[_0x557569(0x3eb)]&&_0x2a4531[_0x557569(0x554)]!==0x0)_0x3a690d=this['_injector'][_0x557569(0x45d)](le,this[_0x557569(0x2ea)],this[_0x557569(0x235)],_0x1686a7[0x0],_0x2a4531,this[_0x557569(0x3df)],void 0x0);else{if(this[_0x557569(0x3eb)]&&_0x2a4531[_0x557569(0x554)]===0x0)_0x1686a7[0x0]['baseRev']=this[_0x557569(0x512)](),_0x3a690d=this[_0x557569(0x274)][_0x557569(0x45d)](fe,this[_0x557569(0x2ea)],this[_0x557569(0x235)],_0x1686a7[0x0],this[_0x557569(0x3df)]);else{if(_0x2a4531[_0x557569(0x554)]!==0x0){const _0x2917ea=this['_injector'][_0x557569(0x45d)](ce,this[_0x557569(0x2ea)],this[_0x557569(0x235)],_0x2a4531,this['_handler']);_0x2917ea[_0x557569(0x4bb)](),_0x3a690d=_0x2917ea;}else _0x3a690d=this['_injector'][_0x557569(0x45d)](Oe,this[_0x557569(0x2ea)],this[_0x557569(0x235)],this[_0x557569(0x3df)]);}}return _0x3a690d[_0x557569(0x5f1)](),_0x3a690d;}catch(_0x2f897e){return this[_0x557569(0x52a)][_0x557569(0x395)](_0x557569(0x187),'failed\x20to\x20apply\x20missed\x20changesets!',_0x2f897e),this['_injector']['createInstance'](ve,this[_0x557569(0x2ea)],this[_0x557569(0x235)],this[_0x557569(0x3eb)],this[_0x557569(0x58c)],this['_handler'],!0x1);}}[_0x5a89b4(0x32f)](){const _0x54bc93=_0x5a89b4;throw new Error(_0x54bc93(0x546));}[_0x5a89b4(0x21f)](_0x32d2dd){const _0x3a4b91=_0x5a89b4;return this[_0x3a4b91(0x58c)][_0x3a4b91(0x1d0)](_0x32d2dd),this;}[_0x5a89b4(0x537)](_0x2b6e49){const _0x199b82=_0x5a89b4;return this[_0x199b82(0x226)][_0x199b82(0x1d0)](_0x2b6e49),this;}[_0x5a89b4(0x174)](_0x17eca9){const _0x3f72e2=_0x5a89b4;if(this[_0x3f72e2(0x3eb)])return this[_0x3f72e2(0x582)]=this[_0x3f72e2(0x3eb)],this['_awaitingChangeset']=null,this;throw new Error(_0x3f72e2(0x1de));}[_0x5a89b4(0x496)](_0x5ccab4){const _0x3a1940=_0x5a89b4;return this[_0x3a1940(0x306)](!!(_0x5ccab4!=null&&_0x5ccab4['isPermissionRej']));}[_0x5a89b4(0x348)](){return this;}[_0x5a89b4(0x5a0)](){const _0x3865a8=_0x5a89b4;return this[_0x3865a8(0x274)][_0x3865a8(0x45d)](Se,this[_0x3865a8(0x2ea)],this[_0x3865a8(0x235)],this[_0x3865a8(0x3eb)],this[_0x3865a8(0x58c)],this[_0x3865a8(0x3df)]);}[_0x5a89b4(0x3c4)](){return this;}[_0x5a89b4(0x306)](_0x3ee4ae){const _0x5ea957=_0x5a89b4;return this[_0x5ea957(0x274)][_0x5ea957(0x45d)](ve,this[_0x5ea957(0x2ea)],this['type'],this[_0x5ea957(0x3eb)],this[_0x5ea957(0x58c)],this['_handler'],_0x3ee4ae);}};re=Ce([N(0x7,a[_0x5a89b4(0x3d5)](a['Injector'])),N(0x8,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),N(0x9,a['Inject'](exports[_0x5a89b4(0x4e3)])),N(0xa,a[_0x5a89b4(0x3dd)]),N(0xb,a[_0x5a89b4(0x17d)]),N(0xc,a[_0x5a89b4(0x54d)]),N(0xd,p[_0x5a89b4(0x3f4)])],re);function fn(_0x55ebf7,_0x25b729,_0x89cb4c,_0x195259,_0x20e475,_0x426ed8){const _0x225a6c=_0x5a89b4;return _0x195259&&_0x20e475['length']?_0x55ebf7[_0x225a6c(0x45d)](le,_0x25b729,_0x89cb4c,_0x195259,_0x20e475,_0x426ed8,void 0x0):_0x195259?_0x55ebf7[_0x225a6c(0x45d)](fe,_0x25b729,_0x89cb4c,_0x195259,_0x426ed8):_0x20e475[_0x225a6c(0x554)]?_0x55ebf7[_0x225a6c(0x45d)](ce,_0x25b729,_0x89cb4c,_0x20e475,_0x426ed8):_0x55ebf7[_0x225a6c(0x45d)](Oe,_0x25b729,_0x89cb4c,_0x426ed8);}var ki=Object[_0x5a89b4(0x5bf)],Bi=Object[_0x5a89b4(0x227)],Rt=(_0x216cc3,_0x51a74f,_0x16ec49,_0x3b84a1)=>{const _0x2e342b=_0x5a89b4;for(var _0x4421f=_0x3b84a1>0x1?void 0x0:_0x3b84a1?Bi(_0x51a74f,_0x16ec49):_0x51a74f,_0x594b85=_0x216cc3[_0x2e342b(0x554)]-0x1,_0x5bb0b8;_0x594b85>=0x0;_0x594b85--)(_0x5bb0b8=_0x216cc3[_0x594b85])&&(_0x4421f=(_0x3b84a1?_0x5bb0b8(_0x51a74f,_0x16ec49,_0x4421f):_0x5bb0b8(_0x4421f))||_0x4421f);return _0x3b84a1&&_0x4421f&&ki(_0x51a74f,_0x16ec49,_0x4421f),_0x4421f;},H=(_0x19c035,_0x1f67ef)=>(_0x451082,_0x3541b5)=>_0x1f67ef(_0x451082,_0x3541b5,_0x19c035);exports[_0x5a89b4(0x2dc)]=class extends a[_0x5a89b4(0x2da)]{constructor(_0x329104,_0x5586d0,_0x43f8b3,_0x5a8955,_0x18c8c7,_0x3fde62,_0x65a90,_0xca2671,_0x4b2a97,_0x341240,_0x413637,_0x4e1761,_0x2201cb){const _0x1c8d99=_0x5a89b4;super(),I(this,'_state$',new A[(_0x1c8d99(0x4c2))](null)),I(this,_0x1c8d99(0x1ce),this['_state$'][_0x1c8d99(0x159)]()),I(this,_0x1c8d99(0x3d7)),I(this,'_collaborationPaused',!0x1),I(this,'_changesetSessionId',''),I(this,_0x1c8d99(0x4e2),0x0),I(this,_0x1c8d99(0x178),this['state$'][_0x1c8d99(0x564)](A[_0x1c8d99(0x272)](_0x5f137f=>_0x5f137f?_0x5f137f[_0x1c8d99(0x54c)]:q[_0x1c8d99(0x289)]),A[_0x1c8d99(0x3cd)](0x1))),I(this,_0x1c8d99(0x194),!0x1),I(this,_0x1c8d99(0x26e),[]),(this[_0x1c8d99(0x2ea)]=_0x329104,this[_0x1c8d99(0x3b9)]=_0x5586d0,this[_0x1c8d99(0x1cc)]=_0x43f8b3,this[_0x1c8d99(0x274)]=_0x5a8955,this['_localCacheService']=_0x18c8c7,this[_0x1c8d99(0x293)]=_0x3fde62,this['_localeService']=_0x65a90,this[_0x1c8d99(0x3f8)]=_0xca2671,this[_0x1c8d99(0x52a)]=_0x4b2a97,this[_0x1c8d99(0x5da)]=_0x341240,this[_0x1c8d99(0x44a)]=_0x413637,this[_0x1c8d99(0x56c)]=_0x4e1761,this[_0x1c8d99(0x4b9)]=_0x2201cb);}get[_0x5a89b4(0x44e)](){return this['_state'];}async[_0x5a89b4(0x28e)](){const _0x33021d=_0x5a89b4;if(this['state'])throw new Error(_0x33021d(0x36b));await this[_0x33021d(0x1b8)]();}['pauseCollaboration'](){const _0x21024a=_0x5a89b4;return this[_0x21024a(0x1a9)]=!0x0,a[_0x21024a(0x502)](()=>{const _0x1f786b=_0x21024a;this[_0x1f786b(0x1a9)]=!0x1,this[_0x1f786b(0x41e)]();});}[_0x5a89b4(0x597)](_0x58c81c){const _0x8e8339=_0x5a89b4;this[_0x8e8339(0x3d7)]=_0x58c81c,this[_0x8e8339(0x29d)]['next'](_0x58c81c);}async['_init'](){const _0x3e2e91=_0x5a89b4;var _0x4eaccf;this['_updateState'](await this[_0x3e2e91(0x271)]()),this[_0x3e2e91(0x4b9)]&&((_0x4eaccf=this['_singleActiveUnitService'])==null||_0x4eaccf['editingUnit'](this['unitID']),this[_0x3e2e91(0x15e)](this[_0x3e2e91(0x4b9)][_0x3e2e91(0x433)](this[_0x3e2e91(0x2ea)])[_0x3e2e91(0x3d8)](_0x3e6304=>{const _0x16dd37=_0x3e2e91;this['_logService'][_0x16dd37(0x210)](_0x16dd37(0x43a),_0x16dd37(0x1ab),_0x3e6304),_0x3e6304===hn['OTHER_CLIENTS_EDITING']?(this['_messageService'][_0x16dd37(0x2ad)]({'content':this[_0x16dd37(0x37c)]['t'](_0x16dd37(0x53e)),'type':Ie[_0x16dd37(0x1cd)][_0x16dd37(0x307)]}),this['_permissionService'][_0x16dd37(0x313)](new B[(_0x16dd37(0x170))](this[_0x16dd37(0x2ea)])['id'],!0x1),this['_permissionService'][_0x16dd37(0x475)](!0x1)):(this['_permissionService']['updatePermissionPoint'](new B[(_0x16dd37(0x170))](this[_0x16dd37(0x2ea)])['id'],!0x0),this[_0x16dd37(0x56c)][_0x16dd37(0x475)](!0x0));})));let _0x107063=!0x1;return this['disposeWithMe'](this[_0x3e2e91(0x3b9)][_0x3e2e91(0x5e0)][_0x3e2e91(0x3d8)](_0x5d8536=>{const _0x55c676=_0x3e2e91;_0x5d8536===se[_0x55c676(0x609)]?this[_0x55c676(0x434)](_0x107063):_0x5d8536===se[_0x55c676(0x289)]&&(_0x107063=!0x0,this['_toggleOffline']());})),this['disposeWithMe'](this[_0x3e2e91(0x3b9)]['event$']['subscribe'](_0x435f28=>{const _0x5d36cb=_0x3e2e91;try{switch(_0x435f28[_0x5d36cb(0x14f)]){case p[_0x5d36cb(0x44f)][_0x5d36cb(0x233)]:{this[_0x5d36cb(0x441)](p[_0x5d36cb(0x19f)](_0x435f28[_0x5d36cb(0x3e4)]));break;}case p[_0x5d36cb(0x44f)][_0x5d36cb(0x45a)]:{this['_onRemoteACK'](_0x435f28[_0x5d36cb(0x3e4)]);break;}case p[_0x5d36cb(0x44f)][_0x5d36cb(0x4a2)]:{this[_0x5d36cb(0x461)]();break;}case p[_0x5d36cb(0x44f)][_0x5d36cb(0x45b)]:{this['_onRemoteRetry'](_0x435f28['data']);break;}case p[_0x5d36cb(0x44f)][_0x5d36cb(0x4cb)]:{this[_0x5d36cb(0x3de)](_0x435f28['data']['changesets'][_0x5d36cb(0x272)](_0x22b646=>p[_0x5d36cb(0x19f)](_0x22b646)));break;}case p[_0x5d36cb(0x44f)][_0x5d36cb(0x2e3)]:this[_0x5d36cb(0x461)]({'isPermissionRej':!0x0});}}catch(_0x5ab7aa){throw console['error'](_0x5d36cb(0x393),_0x5ab7aa),_0x5ab7aa;}})),this[_0x3e2e91(0x3d7)];}['_unlockTransition'](){this['_transitionLocked']=!0x1;}[_0x5a89b4(0x39a)](){const _0x2d776a=_0x5a89b4;if(this[_0x2d776a(0x194)])throw new Error(_0x2d776a(0x3f3));this[_0x2d776a(0x194)]=!0x0;}[_0x5a89b4(0x524)](_0x40e1c4){const _0x56ec78=_0x5a89b4;this[_0x56ec78(0x39a)](),this['_updateState'](this[_0x56ec78(0x3d7)][_0x56ec78(0x21f)](_0x40e1c4)),this['_unlockTransition']();}[_0x5a89b4(0x441)](_0x3c49f9){const _0x550741=_0x5a89b4;if(!(_0x3c49f9[_0x550741(0x5c0)]<=this['_revisionService'][_0x550741(0x1d1)](this[_0x550741(0x2ea)]))){if(this['_collaborationPaused']){this[_0x550741(0x26e)][_0x550741(0x1d0)](_0x3c49f9);return;}this['_applyRemoteChangeset'](_0x3c49f9);}}[_0x5a89b4(0x41e)](){const _0x328801=_0x5a89b4;this['_remoteChangesetQueue'][_0x328801(0x3a4)](_0x3afe6=>this[_0x328801(0x20e)](_0x3afe6)),this['_remoteChangesetQueue']=[];}[_0x5a89b4(0x20e)](_0x224e21){const _0x1dd460=_0x5a89b4,_0x5bb155=this[_0x1dd460(0x293)][_0x1dd460(0x42c)]['fetchThroughInterceptors'](this['_compressMutationService'][_0x1dd460(0x42c)]['getInterceptPoints']()[_0x1dd460(0x46b)])(_0x224e21[_0x1dd460(0x48a)],null)||_0x224e21['mutations'],_0x5e7ca4={..._0x224e21,'mutations':_0x5bb155};this[_0x1dd460(0x39a)](),this[_0x1dd460(0x597)](this[_0x1dd460(0x3d7)][_0x1dd460(0x537)](_0x5e7ca4)),this[_0x1dd460(0x1f1)]();}['_onRemoteACK'](_0x281d1e){const _0x286a6b=_0x5a89b4;this['_lockTransition'](),this[_0x286a6b(0x597)](this[_0x286a6b(0x3d7)][_0x286a6b(0x174)](_0x281d1e)),this[_0x286a6b(0x1f1)]();}[_0x5a89b4(0x461)](_0x3f4282){const _0x56727c=_0x5a89b4;this['_lockTransition'](),this['_updateState'](this[_0x56727c(0x3d7)][_0x56727c(0x496)](_0x3f4282)),this[_0x56727c(0x1f1)]();}[_0x5a89b4(0x25d)](_0x401ba8){const _0x381c5b=_0x5a89b4;this['_lockTransition'](),this[_0x381c5b(0x597)](this[_0x381c5b(0x3d7)][_0x381c5b(0x348)](_0x401ba8)),this['_unlockTransition']();}[_0x5a89b4(0x3de)](_0x26b725){const _0x30b7d8=_0x5a89b4;if(!(this[_0x30b7d8(0x3d7)]instanceof re))throw new TypeError(_0x30b7d8(0x362));const _0x52e9c2=_0x26b725['map'](_0x34d55f=>{const _0xea2df2=_0x30b7d8,_0xc4f401=this['_compressMutationService'][_0xea2df2(0x42c)]['fetchThroughInterceptors'](this['_compressMutationService'][_0xea2df2(0x42c)][_0xea2df2(0x365)]()['COMPRESS_MUTATION_APPLY'])(_0x34d55f[_0xea2df2(0x48a)],null)||_0x34d55f['mutations'];return{..._0x34d55f,'mutations':_0xc4f401};});this[_0x30b7d8(0x39a)](),this['_updateState'](this[_0x30b7d8(0x3d7)]['onMissedChangesetFetched'](_0x52e9c2)),this[_0x30b7d8(0x1f1)]();}['_toggleOffline'](){const _0x3bc85d=_0x5a89b4;this[_0x3bc85d(0x39a)](),this['_updateState'](this[_0x3bc85d(0x3d7)][_0x3bc85d(0x5a0)]()),this[_0x3bc85d(0x1f1)]();}[_0x5a89b4(0x434)](_0x2b97c9=!0x1){const _0x3c3a1a=_0x5a89b4;this['_lockTransition'](),this[_0x3c3a1a(0x597)](this[_0x3c3a1a(0x3d7)][_0x3c3a1a(0x3c4)]()),this[_0x3c3a1a(0x1f1)]();const _0x43bc6b=this[_0x3c3a1a(0x3d7)];_0x2b97c9&&_0x43bc6b instanceof Oe&&(this['_lockTransition'](),this[_0x3c3a1a(0x597)](_0x43bc6b[_0x3c3a1a(0x52e)]()),this[_0x3c3a1a(0x1f1)]());}async[_0x5a89b4(0x271)](){return new Promise(_0x525e9e=>{const _0x5bcb71=_0x4da2;this['session']['sessionStatus$'][_0x5bcb71(0x564)](A['take'](0x1))[_0x5bcb71(0x3d8)](async _0x37dd34=>{const _0x20a319=_0x5bcb71;_0x525e9e(await this['_createInitialStateImpl'](_0x37dd34===se[_0x20a319(0x609)]));});});}[_0x5a89b4(0x1ac)](){const _0x311387=_0x5a89b4,_0x5ca865=this[_0x311387(0x2ea)];return{'onStateChange':(_0x5e7d6e,_0x2a8723)=>{const _0x40f9e8=_0x311387;if(_0x5e7d6e!==this[_0x40f9e8(0x3d7)])throw new Error('[CollaborationEntity]:\x20invalid\x20state\x20transition!\x20State\x20transferred\x20from\x20is\x20not\x20the\x20current\x20state.\x0aBefore:\x20'+_0x5e7d6e['status']+_0x40f9e8(0x2ba)+_0x2a8723['status']+_0x40f9e8(0x557)+this[_0x40f9e8(0x3d7)][_0x40f9e8(0x54c)]);this[_0x40f9e8(0x597)](_0x2a8723);},'onSendChangeset':_0x37ab2f=>{const _0x21d973=_0x311387;_0x37ab2f['sid']||(_0x37ab2f['sid']=this[_0x21d973(0x4d3)],_0x37ab2f['reqId']=++this[_0x21d973(0x4e2)]);const _0x21f1c3={'eventID':p[_0x21d973(0x44f)][_0x21d973(0x42d)],'data':{'unitID':_0x37ab2f[_0x21d973(0x2ea)],'unitType':this[_0x21d973(0x1cc)],'changeset':_0x37ab2f,'memberID':this[_0x21d973(0x3b9)][_0x21d973(0x578)]()}};this[_0x21d973(0x3b9)][_0x21d973(0x2c4)](_0x21f1c3,this['unitID']);},'onMissingChangesets':({from:_0x1af8c9,to:_0x59b558})=>{const _0x4c0d12=_0x311387;this[_0x4c0d12(0x52a)]['debug'](_0x4c0d12(0x43a),_0x4c0d12(0x398)+_0x1af8c9+'\x20to\x20'+_0x59b558);const _0x5a6b1f={'eventID':p[_0x4c0d12(0x44f)][_0x4c0d12(0x1bc)],'data':{'unitID':_0x5ca865,'unitType':this[_0x4c0d12(0x1cc)],'from':_0x1af8c9,'to':_0x59b558}};this[_0x4c0d12(0x3b9)][_0x4c0d12(0x2c4)](_0x5a6b1f,this[_0x4c0d12(0x2ea)]);}};}async[_0x5a89b4(0x1ef)](_0xa12207){const _0x5b4f83=_0x5a89b4;var _0x38d789,_0x2b02d1;const _0x420e72=await this[_0x5b4f83(0x470)]['loadOfflineData'](this[_0x5b4f83(0x2ea)]),_0x473cbd=(_0x38d789=_0x420e72==null?void 0x0:_0x420e72['mutations'])!=null?_0x38d789:[],_0x3376a8=(_0x2b02d1=_0x420e72==null?void 0x0:_0x420e72[_0x5b4f83(0x5f4)])!=null?_0x2b02d1:null,_0x20e8d1=!!(_0x3376a8!=null&&_0x3376a8[_0x5b4f83(0x2ca)])&&!!(_0x3376a8!=null&&_0x3376a8[_0x5b4f83(0x1fe)]);this[_0x5b4f83(0x4d3)]=_0x20e8d1?_0x3376a8[_0x5b4f83(0x2ca)]:Si(),this[_0x5b4f83(0x4e2)]=_0x20e8d1?_0x3376a8[_0x5b4f83(0x1fe)]:0x0;const _0x534245=this[_0x5b4f83(0x2ea)];try{this[_0x5b4f83(0x4ac)](_0x3376a8,_0x473cbd);}catch(_0x440b12){this[_0x5b4f83(0x52a)][_0x5b4f83(0x395)](_0x440b12);}const _0x267640=this[_0x5b4f83(0x1ac)]();if(_0xa12207){const _0x3e7142=fn(this[_0x5b4f83(0x274)],_0x534245,this[_0x5b4f83(0x1cc)],_0x3376a8,_0x473cbd,_0x267640);return _0x3e7142 instanceof ce?_0x3e7142['_schedule']():(_0x3e7142 instanceof le||_0x3e7142 instanceof fe)&&_0x3e7142[_0x5b4f83(0x32f)](),_0x3e7142;}return this[_0x5b4f83(0x274)]['createInstance'](Se,_0x534245,this[_0x5b4f83(0x1cc)],_0x3376a8,_0x473cbd,_0x267640);}['_replayCachedMutations'](_0x1a92ed,_0x21b208){const _0x24d7cb=_0x5a89b4;var _0x285720,_0x3d8836;const _0x84024c=this[_0x24d7cb(0x293)][_0x24d7cb(0x42c)][_0x24d7cb(0x4d4)](this[_0x24d7cb(0x293)][_0x24d7cb(0x42c)][_0x24d7cb(0x365)]()[_0x24d7cb(0x46b)]);(_0x285720=_0x84024c((_0x1a92ed==null?void 0x0:_0x1a92ed[_0x24d7cb(0x48a)])||[],null))==null||_0x285720['forEach'](_0x5e2542=>this[_0x24d7cb(0x5da)][_0x24d7cb(0x238)](_0x5e2542['id'],_0x5e2542[_0x24d7cb(0x4a4)])),(_0x3d8836=_0x84024c(_0x21b208||[],null))==null||_0x3d8836[_0x24d7cb(0x3a4)](_0x24a70e=>this[_0x24d7cb(0x5da)][_0x24d7cb(0x238)](_0x24a70e['id'],_0x24a70e['params']));}},exports[_0x5a89b4(0x2dc)]=Rt([H(0x3,a['Inject'](a['Injector'])),H(0x4,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),H(0x5,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x451)])),H(0x6,a[_0x5a89b4(0x3d5)](a['LocaleService'])),H(0x7,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),H(0x8,a['ILogService']),H(0x9,a[_0x5a89b4(0x17d)]),H(0xa,te['IMessageService']),H(0xb,a[_0x5a89b4(0x2b4)]),H(0xc,a[_0x5a89b4(0x587)](qe))],exports[_0x5a89b4(0x2dc)]),exports[_0x5a89b4(0x46a)]=class extends exports[_0x5a89b4(0x2dc)]{constructor(_0x2722ee,_0x27336e,_0x23a4b4,_0x3f1ff7,_0x26bd27,_0x29f2ec,_0x13e6a5,_0x3d4836,_0x83a0fc,_0x3ff2c2,_0x3047e1,_0x53d5e8,_0x42e2b9,_0x52d8f9,_0x10b340,_0x3359b2,_0x31551f,_0x47d002){const _0x5c6102=_0x5a89b4;super(_0x2722ee,_0x23a4b4,_0x27336e,_0x3f1ff7,_0x26bd27,_0x29f2ec,_0x13e6a5,_0x3d4836,_0x52d8f9,_0x10b340,_0x3359b2,_0x31551f,_0x47d002),this[_0x5c6102(0x2ea)]=_0x2722ee,this[_0x5c6102(0x235)]=_0x27336e,this[_0x5c6102(0x517)]=_0x83a0fc,this[_0x5c6102(0x457)]=_0x3ff2c2,this[_0x5c6102(0x432)]=_0x3047e1,this[_0x5c6102(0x1a6)]=_0x53d5e8,this[_0x5c6102(0x19e)]=_0x42e2b9;}['_createHandler'](){const _0x3435e1=_0x5a89b4,_0xc6f4d0=super[_0x3435e1(0x1ac)]();return _0xc6f4d0[_0x3435e1(0x59f)]=_0x28b6ec=>this['_docTransformIMECacheService'][_0x3435e1(0x4ca)](_0x28b6ec),_0xc6f4d0[_0x3435e1(0x5e7)]=_0x4592a2=>this[_0x3435e1(0x432)]['transformStateCache'](_0x4592a2),_0xc6f4d0[_0x3435e1(0x1bb)]=_0x29f4c3=>this[_0x3435e1(0x1a6)][_0x3435e1(0x5f6)](_0x29f4c3),_0xc6f4d0[_0x3435e1(0x3d3)]=_0x4b0058=>this[_0x3435e1(0x19e)][_0x3435e1(0x284)](_0x4b0058),_0xc6f4d0[_0x3435e1(0x560)]=_0x46d801=>this[_0x3435e1(0x457)][_0x3435e1(0x30b)](_0x46d801),_0xc6f4d0[_0x3435e1(0x59d)]=_0x26f698=>this[_0x3435e1(0x432)]['transformRemoteChangeset'](_0x26f698),_0xc6f4d0;}async[_0x5a89b4(0x1b8)](){const _0x4e0046=_0x5a89b4,_0x5518d3=await super[_0x4e0046(0x1b8)]();return this[_0x4e0046(0x517)][_0x4e0046(0x2b7)][_0x4e0046(0x564)](A[_0x4e0046(0x2e9)](this[_0x4e0046(0x256)]))['subscribe'](_0x62ebe4=>{const _0x5f7913=_0x4e0046;if(_0x62ebe4==null)return;const {unitId:_0x286b4c,redoState:_0xee3788,commandId:_0x1afcc3}=_0x62ebe4;if(_0x286b4c!==this[_0x5f7913(0x2ea)])return;const _0x3bdba3={'id':_0x1afcc3,'type':a['CommandType'][_0x5f7913(0x56f)],'params':{'unitId':_0x286b4c,'actions':_0xee3788[_0x5f7913(0x168)],'textRanges':null}};this[_0x5f7913(0x524)](_0x3bdba3);}),_0x5518d3;}},exports['DocCollaborationEntity']=Rt([H(0x3,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),H(0x4,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),H(0x5,a['Inject'](p[_0x5a89b4(0x451)])),H(0x6,a['Inject'](a[_0x5a89b4(0x3a3)])),H(0x7,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),H(0x8,a['Inject'](Z[_0x5a89b4(0x5bd)])),H(0x9,a[_0x5a89b4(0x3d5)](ke)),H(0xa,a[_0x5a89b4(0x3d5)](We)),H(0xb,a[_0x5a89b4(0x3d5)](Fe)),H(0xc,a[_0x5a89b4(0x3d5)](Tt)),H(0xd,a[_0x5a89b4(0x3dd)]),H(0xe,a['ICommandService']),H(0xf,te[_0x5a89b4(0x38b)]),H(0x10,a['IPermissionService']),H(0x11,a['Optional'](qe))],exports['DocCollaborationEntity']),exports[_0x5a89b4(0x51b)]=class extends exports[_0x5a89b4(0x2dc)]{constructor(_0x37bc05,_0x5d7f68,_0x537d30,_0x50d92a,_0x22f708,_0x5f5137,_0x4af306,_0x4a35aa,_0x11249a,_0x273d6d,_0x57520c,_0x5d3230,_0x191368,_0x8a160){const _0x5e6193=_0x5a89b4;super(_0x37bc05,_0x537d30,_0x5d7f68,_0x50d92a,_0x22f708,_0x5f5137,_0x4af306,_0x4a35aa,_0x273d6d,_0x57520c,_0x5d3230,_0x191368,_0x8a160),this[_0x5e6193(0x2ea)]=_0x37bc05,this[_0x5e6193(0x235)]=_0x5d7f68,this[_0x5e6193(0x243)]=_0x11249a;}[_0x5a89b4(0x1ac)](){const _0x540e46=_0x5a89b4,_0x4a1f47=super[_0x540e46(0x1ac)]();return _0x4a1f47['onTransformSelections']=_0x3aa66d=>this['_sheetTransformSelectionsService']['transformSelections'](_0x3aa66d),_0x4a1f47;}async[_0x5a89b4(0x1b8)](){const _0x12b3d1=_0x5a89b4,_0x420988=await super[_0x12b3d1(0x1b8)]();return this[_0x12b3d1(0x15e)](this[_0x12b3d1(0x5da)]['onCommandExecuted']((_0x4be516,_0x571d00)=>{const _0x5b71d8=_0x12b3d1;if(_0x4be516['type']!==a[_0x5b71d8(0x3ba)][_0x5b71d8(0x56f)]||_0x571d00!=null&&_0x571d00[_0x5b71d8(0x3a1)]||_0x571d00!=null&&_0x571d00[_0x5b71d8(0x5a1)])return;const _0x3f83be=_0x4be516[_0x5b71d8(0x4a4)];if((_0x3f83be==null?void 0x0:_0x3f83be[_0x5b71d8(0x3e9)])!==this[_0x5b71d8(0x2ea)])return;const _0x3a27a9=_0x4be516,_0x29cfc8=this[_0x5b71d8(0x293)]['interceptor']['fetchThroughInterceptors'](this[_0x5b71d8(0x293)][_0x5b71d8(0x42c)][_0x5b71d8(0x365)]()[_0x5b71d8(0x2dd)])([_0x3a27a9],null)||[_0x3a27a9];this['_onLocalMutation'](_0x29cfc8[0x0]);})),_0x420988;}},exports['SheetCollaborationEntity']=Rt([H(0x3,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),H(0x4,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x4e3)])),H(0x5,a['Inject'](p[_0x5a89b4(0x451)])),H(0x6,a['Inject'](a[_0x5a89b4(0x3a3)])),H(0x7,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x3d9)])),H(0x8,a[_0x5a89b4(0x3d5)](Be)),H(0x9,a[_0x5a89b4(0x3dd)]),H(0xa,a[_0x5a89b4(0x17d)]),H(0xb,te['IMessageService']),H(0xc,a[_0x5a89b4(0x2b4)]),H(0xd,a[_0x5a89b4(0x587)](qe))],exports[_0x5a89b4(0x51b)]);var Wi=Object[_0x5a89b4(0x5bf)],Fi=Object[_0x5a89b4(0x227)],Vi=(_0x44c186,_0x342f3f,_0x16c946,_0x5151e5)=>{const _0x566c6b=_0x5a89b4;for(var _0x3a9d8d=_0x5151e5>0x1?void 0x0:_0x5151e5?Fi(_0x342f3f,_0x16c946):_0x342f3f,_0x18c700=_0x44c186[_0x566c6b(0x554)]-0x1,_0x218be2;_0x18c700>=0x0;_0x18c700--)(_0x218be2=_0x44c186[_0x18c700])&&(_0x3a9d8d=(_0x5151e5?_0x218be2(_0x342f3f,_0x16c946,_0x3a9d8d):_0x218be2(_0x3a9d8d))||_0x3a9d8d);return _0x5151e5&&_0x3a9d8d&&Wi(_0x342f3f,_0x16c946,_0x3a9d8d),_0x3a9d8d;},tt=(_0x581744,_0xb55548)=>(_0x1f6d32,_0x549ce1)=>_0xb55548(_0x1f6d32,_0x549ce1,_0x581744);exports['CollaborationController']=class extends a[_0x5a89b4(0x2da)]{constructor(_0x2feada,_0x4eaa5d,_0x424725){const _0x143f42=_0x5a89b4;super(),I(this,_0x143f42(0x5b9),new Map()),I(this,_0x143f42(0x2cc),new A[(_0x143f42(0x5d2))]()),(this[_0x143f42(0x274)]=_0x2feada,this['_collabSessionService']=_0x4eaa5d,this[_0x143f42(0x4b5)]=_0x424725,this[_0x143f42(0x1b8)]());}[_0x5a89b4(0x1db)](){const _0x4efd98=_0x5a89b4;super[_0x4efd98(0x1db)](),this[_0x4efd98(0x5b9)]['forEach'](_0x3b6d15=>_0x3b6d15[_0x4efd98(0x1db)]()),this[_0x4efd98(0x5b9)][_0x4efd98(0x5d5)]();}[_0x5a89b4(0x333)](_0x578de7){const _0x4e44e5=_0x5a89b4;var _0x288bd2;return(_0x288bd2=this[_0x4e44e5(0x5b9)][_0x4e44e5(0x58d)](_0x578de7))!=null?_0x288bd2:null;}['getCollabEntity$'](_0x263abf){const _0x38be4a=_0x5a89b4,_0x194a29=this[_0x38be4a(0x333)](_0x263abf);return _0x194a29?A['of'](_0x194a29):this[_0x38be4a(0x2cc)][_0x38be4a(0x564)](V[_0x38be4a(0x303)](_0x43cc0c=>_0x43cc0c[_0x38be4a(0x2ea)]===_0x263abf));}[_0x5a89b4(0x1b8)](){const _0x1e1e51=_0x5a89b4;this['_univerInstanceService']['getTypeOfUnitAdded$'](a[_0x1e1e51(0x1af)][_0x1e1e51(0x479)])[_0x1e1e51(0x564)](A[_0x1e1e51(0x2e9)](this[_0x1e1e51(0x256)]),V[_0x1e1e51(0x57c)](0x10))[_0x1e1e51(0x3d8)](async _0x14a15e=>{const _0x214ab5=_0x1e1e51,_0x1ad69d=_0x14a15e[_0x214ab5(0x5df)](),_0x4182e1=await this[_0x214ab5(0x23a)](_0x1ad69d,ie[_0x214ab5(0x479)]);this[_0x214ab5(0x5b9)][_0x214ab5(0x352)](_0x1ad69d,_0x4182e1);}),this[_0x1e1e51(0x4b5)][_0x1e1e51(0x1b2)](a[_0x1e1e51(0x1af)][_0x1e1e51(0x222)])[_0x1e1e51(0x564)](A[_0x1e1e51(0x2e9)](this['dispose$']),V[_0x1e1e51(0x57c)](0x10))[_0x1e1e51(0x564)](V[_0x1e1e51(0x303)](_0x29c81a=>!_0x29c81a['getUnitId']()[_0x1e1e51(0x4f7)]('__')))[_0x1e1e51(0x3d8)](async _0x539638=>{const _0x2281be=_0x1e1e51,_0x5f1403=_0x539638['getUnitId'](),_0x50146c=await this[_0x2281be(0x23a)](_0x5f1403,ie[_0x2281be(0x222)]);this['_entities']['set'](_0x5f1403,_0x50146c);}),A[_0x1e1e51(0x209)](this[_0x1e1e51(0x4b5)][_0x1e1e51(0x2fd)](a['UniverInstanceType'][_0x1e1e51(0x479)]),this[_0x1e1e51(0x4b5)][_0x1e1e51(0x2fd)](a[_0x1e1e51(0x1af)][_0x1e1e51(0x222)]))[_0x1e1e51(0x564)](A[_0x1e1e51(0x2e9)](this[_0x1e1e51(0x256)]))['subscribe'](_0x36adb6=>{const _0x318841=_0x1e1e51,_0x87c800=_0x36adb6[_0x318841(0x5df)](),_0x12a439=this['_entities'][_0x318841(0x58d)](_0x87c800);_0x12a439&&(_0x12a439[_0x318841(0x1db)](),this[_0x318841(0x5b9)][_0x318841(0x204)](_0x87c800));});}async[_0x5a89b4(0x23a)](_0x4ab26a,_0x270473){const _0x3c65b5=_0x5a89b4,_0x15c71a=await this[_0x3c65b5(0x43b)][_0x3c65b5(0x506)](_0x4ab26a),_0x2d4758=this[_0x3c65b5(0x274)][_0x3c65b5(0x45d)](this['_getCtorByUniverType'](_0x270473),_0x4ab26a,_0x270473,_0x15c71a);return await _0x2d4758[_0x3c65b5(0x28e)](),this[_0x3c65b5(0x2cc)][_0x3c65b5(0x52c)](_0x2d4758),_0x2d4758;}['_getCtorByUniverType'](_0x2cbdec){const _0x3c7889=_0x5a89b4;switch(_0x2cbdec){case ie[_0x3c7889(0x222)]:return exports['DocCollaborationEntity'];case ie[_0x3c7889(0x479)]:return exports[_0x3c7889(0x51b)];default:throw new Error('[CollaborationController]:\x20invalid\x20univer\x20type:\x20'+_0x2cbdec);}}},exports['CollaborationController']=Vi([tt(0x0,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),tt(0x1,a['Inject'](exports['CollaborationSessionService'])),tt(0x2,a[_0x5a89b4(0x21c)])],exports[_0x5a89b4(0x1f7)]);const jt=[_0x5a89b4(0x283),'jiqing500',_0x5a89b4(0x558),_0x5a89b4(0x3e2),_0x5a89b4(0x1b3),_0x5a89b4(0x60c)];class yt extends a[_0x5a89b4(0x4c8)]{constructor(){const _0xeb62bc=_0x5a89b4;super(...arguments),I(this,_0xeb62bc(0x1a8),new Map()),I(this,_0xeb62bc(0x593),0x0);}[_0x5a89b4(0x334)](_0x399816){const _0x4b4e99=_0x5a89b4;if(this[_0x4b4e99(0x1a8)][_0x4b4e99(0x4df)](_0x399816))return this[_0x4b4e99(0x1a8)][_0x4b4e99(0x58d)](_0x399816);const _0x56c3bb=jt[this['_colorIndex']];return this[_0x4b4e99(0x593)]=(this['_colorIndex']+0x1)%jt[_0x4b4e99(0x554)],this[_0x4b4e99(0x1a8)][_0x4b4e99(0x352)](_0x399816,_0x56c3bb),_0x56c3bb;}}var Gi=Object[_0x5a89b4(0x5bf)],Yi=Object[_0x5a89b4(0x227)],Ki=(_0x461316,_0x57c21b,_0x22973d,_0x502e61)=>{const _0x492e82=_0x5a89b4;for(var _0x141ce2=_0x502e61>0x1?void 0x0:_0x502e61?Yi(_0x57c21b,_0x22973d):_0x57c21b,_0xd817a8=_0x461316[_0x492e82(0x554)]-0x1,_0x1f471c;_0xd817a8>=0x0;_0xd817a8--)(_0x1f471c=_0x461316[_0xd817a8])&&(_0x141ce2=(_0x502e61?_0x1f471c(_0x57c21b,_0x22973d,_0x141ce2):_0x1f471c(_0x141ce2))||_0x141ce2);return _0x502e61&&_0x141ce2&&Gi(_0x57c21b,_0x22973d,_0x141ce2),_0x141ce2;},me=(_0x29129b,_0x219238)=>(_0x44a2b0,_0x1d2ae9)=>_0x219238(_0x44a2b0,_0x1d2ae9,_0x29129b);const qi=0x12c,zi=0x64;let vt=class extends a[_0x5a89b4(0x2da)]{constructor(_0xc7e671,_0x19ec0f,_0x5c0d46,_0x52193c,_0x4d62d0,_0x4461c0,_0x16a9ef,_0x83b69,_0x199809){const _0x5888cc=_0x5a89b4;super(),I(this,_0x5888cc(0x5c4),!0x1),I(this,'_init',!0x1),I(this,_0x5888cc(0x500),new A[(_0x5888cc(0x4c2))](new Map())),I(this,'cursorInfo$',this[_0x5888cc(0x500)][_0x5888cc(0x159)]()),I(this,_0x5888cc(0x41d),new A[(_0x5888cc(0x4c2))]([])),I(this,_0x5888cc(0x1bf),this[_0x5888cc(0x41d)][_0x5888cc(0x564)](A[_0x5888cc(0x513)](qi))),I(this,'_updateLocalCursor',a[_0x5888cc(0x530)](_0x49ed66=>{const _0x4fb5a7=_0x5888cc,_0x40f7cf={'eventID':p['CollaborationEvent'][_0x4fb5a7(0x2ae)],'data':{'unitID':this['unitID'],'memberID':this['_session'][_0x4fb5a7(0x578)](),'selection':_n(_0x49ed66)}};this['_session'][_0x4fb5a7(0x2c4)](_0x40f7cf,this[_0x4fb5a7(0x2ea)]);},zi)),(this['unitID']=_0xc7e671,this[_0x5888cc(0x2fb)]=_0x19ec0f,this[_0x5888cc(0x274)]=_0x5c0d46,this[_0x5888cc(0x57a)]=_0x52193c,this[_0x5888cc(0x47d)]=_0x4d62d0,this['_syncEditingCollabCursorService']=_0x4461c0,this[_0x5888cc(0x18f)]=_0x16a9ef,this['_univerInstanceService']=_0x83b69,this[_0x5888cc(0x5da)]=_0x199809);}get[_0x5a89b4(0x234)](){const _0x5effb0=_0x5a89b4;return this[_0x5effb0(0x500)][_0x5effb0(0x5fb)]();}get[_0x5a89b4(0x5a7)](){const _0x2819dc=_0x5a89b4;return this[_0x2819dc(0x41d)][_0x2819dc(0x5fb)]();}[_0x5a89b4(0x1db)](){const _0x3d973e=_0x5a89b4;super['dispose'](),this[_0x3d973e(0x500)][_0x3d973e(0x52c)](new Map()),this[_0x3d973e(0x500)][_0x3d973e(0x1b0)](),this[_0x3d973e(0x41d)]['next']([]),this['_roomMembers$'][_0x3d973e(0x1b0)]();}[_0x5a89b4(0x28e)](){const _0x2e77b2=_0x5a89b4;this['_init']||(this[_0x2e77b2(0x1b8)]=!0x0,this[_0x2e77b2(0x2fb)][_0x2e77b2(0x5e0)][_0x2e77b2(0x564)](A['takeUntil'](this[_0x2e77b2(0x256)]))['subscribe'](_0x4f0736=>{const _0x4caa80=_0x2e77b2;_0x4f0736===se[_0x4caa80(0x609)]?this[_0x4caa80(0x434)]():this[_0x4caa80(0x281)]();}),this[_0x2e77b2(0x2fb)][_0x2e77b2(0x52f)][_0x2e77b2(0x564)](A[_0x2e77b2(0x2e9)](this[_0x2e77b2(0x256)]))['subscribe'](_0x1e0d37=>{const _0x1595d9=_0x2e77b2,_0x2da080=_0x1e0d37['eventID'];_0x2da080===p[_0x1595d9(0x44f)]['UPDATE_CURSOR']&&this['_onCursorUpdate'](_0x1e0d37),_0x2da080===p[_0x1595d9(0x44f)][_0x1595d9(0x4fa)]&&this[_0x1595d9(0x600)](_0x1e0d37);}),this['disposeWithMe'](this[_0x2e77b2(0x5da)][_0x2e77b2(0x2a1)](_0x20ee75=>{const _0x5efda2=_0x2e77b2,_0x3616a9=_0x20ee75[_0x5efda2(0x4a4)];_0x3616a9!=null&&this[_0x5efda2(0x5c4)]&&_0x20ee75['id']===ye[_0x5efda2(0x16b)]['id']&&_0x3616a9[_0x5efda2(0x3e9)]===this[_0x5efda2(0x2ea)]&&_0x3616a9[_0x5efda2(0x2b3)]===!0x1&&_0x3616a9[_0x5efda2(0x59e)]['length']>0x0&&this['_updateLocalCursor'](_0x3616a9['ranges']);})),this[_0x2e77b2(0x3b6)]['collabCursorState$'][_0x2e77b2(0x564)](A['takeUntil'](this[_0x2e77b2(0x256)]))[_0x2e77b2(0x3d8)](_0x1412e3=>{const _0x53426c=_0x2e77b2;if((_0x1412e3==null?void 0x0:_0x1412e3[_0x53426c(0x2ea)])!==this[_0x53426c(0x2ea)])return;const _0x30b3e3={'eventID':p[_0x53426c(0x44f)][_0x53426c(0x2ae)],'data':_0x1412e3};this[_0x53426c(0x2a9)](_0x30b3e3);}),this[_0x2e77b2(0x15e)](this['_commandService'][_0x2e77b2(0x2a1)](_0x35f69c=>{const _0x1ef4b4=_0x2e77b2;if(_0x35f69c[_0x1ef4b4(0x4a4)]==null)return;const _0x2caca5=_0x35f69c[_0x1ef4b4(0x4a4)];if(_0x35f69c['id']!==ye[_0x1ef4b4(0x34b)]['id']||_0x2caca5['unitId']!==this[_0x1ef4b4(0x2ea)])return;const _0x312317={'id':'doc.mutation.rich-text-editing','params':_0x2caca5},_0x121966=this[_0x1ef4b4(0x234)];for(const [_0x1f44a2,_0x465703]of _0x121966){const _0x4ea56f={'id':_0x1ef4b4(0x57b),'params':{'unitId':this[_0x1ef4b4(0x2ea)],'actions':null,'textRanges':_0x465703[_0x1ef4b4(0x59e)]}},_0x740688=this[_0x1ef4b4(0x18f)][_0x1ef4b4(0x5a8)](_0x312317,_0x4ea56f,!0x1);if(p['isTransformMutationFailure'](_0x740688))throw _0x740688[_0x1ef4b4(0x395)];_0x121966['set'](_0x1f44a2,{..._0x465703,'ranges':_0x740688[_0x1ef4b4(0x330)][_0x1ef4b4(0x4a4)][_0x1ef4b4(0x586)]});}queueMicrotask(()=>{this['_cursorInfo$']['next'](_0x121966);});})));}[_0x5a89b4(0x2a9)](_0x49eb8c){const _0x126a83=_0x5a89b4;var _0xef29d8,_0x1fdccc;const {memberID:_0x2d5734,selection:_0x497309}=_0x49eb8c[_0x126a83(0x3e4)],_0x3cf995=Ui(_0x497309),_0x4a33f4=(_0x1fdccc=(_0xef29d8=this['_memberService'][_0x126a83(0x21b)](this[_0x126a83(0x2ea)],_0x2d5734))==null?void 0x0:_0xef29d8[_0x126a83(0x5e4)])!=null?_0x1fdccc:_0x126a83(0x5cd),_0x2e02a5={'color':this['_colorAssignService'][_0x126a83(0x334)](_0x2d5734),'name':_0x4a33f4,'ranges':_0x3cf995},_0x332d93=this[_0x126a83(0x234)];_0x332d93[_0x126a83(0x352)](_0x2d5734,_0x2e02a5),this[_0x126a83(0x500)]['next'](_0x332d93);}[_0x5a89b4(0x600)](_0x4b5459){const _0x167b35=_0x5a89b4,{memberID:_0x5895cc}=_0x4b5459[_0x167b35(0x3e4)],_0x555563=this['cursorInfo'];_0x555563[_0x167b35(0x204)](_0x5895cc),this[_0x167b35(0x500)][_0x167b35(0x52c)](_0x555563);}[_0x5a89b4(0x434)](){const _0x3bdd5f=_0x5a89b4;var _0x325d41;if(this[_0x3bdd5f(0x5c4)]=!0x0,((_0x325d41=this[_0x3bdd5f(0x4b5)][_0x3bdd5f(0x17a)]())==null?void 0x0:_0x325d41[_0x3bdd5f(0x5df)]())!==this[_0x3bdd5f(0x2ea)])return;const _0x577999=this[_0x3bdd5f(0x274)]['get'](ye[_0x3bdd5f(0x51e)])[_0x3bdd5f(0x24d)]();Array[_0x3bdd5f(0x1aa)](_0x577999)&&_0x577999[_0x3bdd5f(0x554)]>0x0&&this['_updateLocalCursor'](_0x577999);}[_0x5a89b4(0x281)](){const _0xe4ef11=_0x5a89b4;this[_0xe4ef11(0x5c4)]=!0x1;}};vt=Ki([me(0x2,a['Inject'](a[_0x5a89b4(0x217)])),me(0x3,a[_0x5a89b4(0x3d5)](yt)),me(0x4,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x5ac)])),me(0x5,a[_0x5a89b4(0x3d5)](Tt)),me(0x6,p[_0x5a89b4(0x3f4)]),me(0x7,a[_0x5a89b4(0x21c)]),me(0x8,a['ICommandService'])],vt);var Xi=Object['defineProperty'],Ji=Object[_0x5a89b4(0x227)],Zi=(_0x1a9df5,_0x327cb8,_0x18090e,_0x2f2ce7)=>{const _0x54054b=_0x5a89b4;for(var _0x33e7fd=_0x2f2ce7>0x1?void 0x0:_0x2f2ce7?Ji(_0x327cb8,_0x18090e):_0x327cb8,_0x5396a5=_0x1a9df5[_0x54054b(0x554)]-0x1,_0x568321;_0x5396a5>=0x0;_0x5396a5--)(_0x568321=_0x1a9df5[_0x5396a5])&&(_0x33e7fd=(_0x2f2ce7?_0x568321(_0x327cb8,_0x18090e,_0x33e7fd):_0x568321(_0x33e7fd))||_0x33e7fd);return _0x2f2ce7&&_0x33e7fd&&Xi(_0x327cb8,_0x18090e,_0x33e7fd),_0x33e7fd;},be=(_0xe0cf8e,_0x2d8137)=>(_0x4bbf02,_0x16453c)=>_0x2d8137(_0x4bbf02,_0x16453c,_0xe0cf8e);const Qi=0x12c,es=0x64,ts=()=>{let _0x3d5edb=[],_0x4dc2bf=!0x1;return _0x2bb67b=>{const _0x3ae625=_0x4da2;_0x3d5edb[_0x3ae625(0x1d0)](_0x2bb67b),_0x4dc2bf||(_0x4dc2bf=!0x0,setTimeout(()=>{_0x3d5edb['forEach'](_0x31d34b=>_0x31d34b()),_0x3d5edb=[],_0x4dc2bf=!0x1;}));};};let St=class extends a[_0x5a89b4(0x2da)]{constructor(_0x3e2f70,_0x5d58ea,_0x2d78cb,_0x3de0e3,_0x320e18,_0x2c2538,_0x36c28b,_0x1921d8){const _0x303043=_0x5a89b4;super(),I(this,_0x303043(0x5c4),!0x1),I(this,'_init',!0x1),I(this,_0x303043(0x500),new A[(_0x303043(0x4c2))](new Map())),I(this,_0x303043(0x214),this[_0x303043(0x500)][_0x303043(0x159)]()),I(this,_0x303043(0x41d),new A[(_0x303043(0x4c2))]([])),I(this,_0x303043(0x1bf),this[_0x303043(0x41d)][_0x303043(0x564)](A['debounceTime'](Qi))),I(this,'_updateLocalCursor',a[_0x303043(0x530)]((_0x5751ae,_0x4a270f)=>{const _0x497811=_0x303043,_0xb37ad2={'eventID':p[_0x497811(0x44f)][_0x497811(0x2ae)],'data':{'unitID':this['unitID'],'memberID':this[_0x497811(0x2fb)][_0x497811(0x578)](),'selection':wt[_0x497811(0x196)](_0x5751ae,_0x4a270f[_0x497811(0x462)])}};this[_0x497811(0x2fb)][_0x497811(0x2c4)](_0xb37ad2,this[_0x497811(0x2ea)]);},es)),(this['unitID']=_0x3e2f70,this[_0x303043(0x2fb)]=_0x5d58ea,this[_0x303043(0x274)]=_0x2d78cb,this[_0x303043(0x57a)]=_0x3de0e3,this[_0x303043(0x47d)]=_0x320e18,this[_0x303043(0x4b5)]=_0x2c2538,this[_0x303043(0x5da)]=_0x36c28b,this[_0x303043(0x567)]=_0x1921d8);}get['cursorInfo'](){return this['_cursorInfo$']['getValue']();}get[_0x5a89b4(0x5a7)](){const _0x578bd4=_0x5a89b4;return this[_0x578bd4(0x41d)]['getValue']();}[_0x5a89b4(0x1db)](){const _0x129269=_0x5a89b4;super['dispose'](),this[_0x129269(0x500)][_0x129269(0x52c)](new Map()),this[_0x129269(0x500)]['complete'](),this['_roomMembers$']['next']([]),this[_0x129269(0x41d)][_0x129269(0x1b0)]();}[_0x5a89b4(0x28e)](){const _0x506dc6=_0x5a89b4;this[_0x506dc6(0x1b8)]||(this[_0x506dc6(0x1b8)]=!0x0,this[_0x506dc6(0x2fb)][_0x506dc6(0x5e0)]['pipe'](A[_0x506dc6(0x2e9)](this['dispose$']))[_0x506dc6(0x3d8)](_0x4c644e=>{const _0x3b3842=_0x506dc6;_0x4c644e===se[_0x3b3842(0x609)]?this['_toggleOnline']():this[_0x3b3842(0x281)]();}),this['_session'][_0x506dc6(0x52f)]['pipe'](A[_0x506dc6(0x2e9)](this[_0x506dc6(0x256)]))[_0x506dc6(0x3d8)](_0x2a6f61=>{const _0x45bc94=_0x506dc6,_0x5daaf0=_0x2a6f61[_0x45bc94(0x14f)];_0x5daaf0===p[_0x45bc94(0x44f)][_0x45bc94(0x2ae)]&&this[_0x45bc94(0x2a9)](_0x2a6f61),_0x5daaf0===p[_0x45bc94(0x44f)][_0x45bc94(0x4fa)]&&this[_0x45bc94(0x600)](_0x2a6f61);}),this[_0x506dc6(0x219)](),this[_0x506dc6(0x15e)](this[_0x506dc6(0x5da)][_0x506dc6(0x2a1)](_0x5f543e=>{const _0xee7a5e=_0x506dc6;if(this[_0xee7a5e(0x5c4)]&&_0x5f543e['id']===B[_0xee7a5e(0x417)]['id']&&_0x5f543e['params'][_0xee7a5e(0x3e9)]===this[_0xee7a5e(0x2ea)]){const _0x3c44d8=_0x5f543e[_0xee7a5e(0x4a4)];this[_0xee7a5e(0x353)](_0x3c44d8[_0xee7a5e(0x45e)],_0x3c44d8['selections'][0x0]);}})));}[_0x5a89b4(0x2a9)](_0x4e4441){const _0x52ab6a=_0x5a89b4;var _0x4b78c2,_0x5ebdfa;const {memberID:_0x1e0b02,selection:_0x1cd072}=_0x4e4441[_0x52ab6a(0x3e4)],{sheetName:_0x16e773,range:_0x2c432e}=wt[_0x52ab6a(0x468)](_0x1cd072),_0x8f20f5={'name':(_0x5ebdfa=(_0x4b78c2=this[_0x52ab6a(0x47d)][_0x52ab6a(0x21b)](this[_0x52ab6a(0x2ea)],_0x1e0b02))==null?void 0x0:_0x4b78c2[_0x52ab6a(0x5e4)])!=null?_0x5ebdfa:'Unknown\x20user','range':this[_0x52ab6a(0x3db)](_0x16e773,_0x2c432e),'sheetID':_0x16e773,'color':this['_colorAssignService'][_0x52ab6a(0x334)](_0x1e0b02),'selection':_0x1cd072},_0x399857=this[_0x52ab6a(0x234)];_0x399857['set'](_0x1e0b02,_0x8f20f5),this[_0x52ab6a(0x500)]['next'](_0x399857);}[_0x5a89b4(0x600)](_0x3b1d72){const _0x1808ae=_0x5a89b4,{memberID:_0xe3b27d}=_0x3b1d72['data'],_0x2acb9d=this[_0x1808ae(0x234)];_0x2acb9d['delete'](_0xe3b27d),this['_cursorInfo$'][_0x1808ae(0x52c)](_0x2acb9d);}[_0x5a89b4(0x3db)](_0x39ba17,_0x3dead3){const _0x9e617d=_0x5a89b4;var _0x51747b,_0x3118fd;const _0x430cbc=(_0x3118fd=(_0x51747b=this[_0x9e617d(0x4b5)][_0x9e617d(0x30f)](this['unitID']))==null?void 0x0:_0x51747b[_0x9e617d(0x385)](_0x39ba17))==null?void 0x0:_0x3118fd[_0x9e617d(0x51f)]();return(_0x430cbc==null?void 0x0:_0x430cbc['find'](_0x35d633=>a[_0x9e617d(0x42e)][_0x9e617d(0x15b)](_0x35d633,_0x3dead3)))||_0x3dead3;}[_0x5a89b4(0x219)](){const _0x4d7903=_0x5a89b4,_0x55dd3d=new a[(_0x4d7903(0x523))](),_0x58f0a6=ts(),_0x1a07d2=()=>{const _0x79cc9d=_0x4d7903;_0x55dd3d[_0x79cc9d(0x1db)]();const _0x3c316f=(_0x4514c5,_0x5a0a92,_0xf4a534,_0x2e8d01)=>{const _0x9e9b49=_0x79cc9d;let _0x586fff=[];switch(_0x4514c5['id']){case B['EffectRefRangId'][_0x9e9b49(0x1fc)]:{_0x586fff=B[_0x9e9b49(0x38c)](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)][_0x9e9b49(0x2b2)]:{_0x586fff=B[_0x9e9b49(0x430)](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)]['InsertColCommandId']:{_0x586fff=B['handleInsertCol'](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)][_0x9e9b49(0x543)]:{_0x586fff=B[_0x9e9b49(0x248)](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)][_0x9e9b49(0x1e1)]:{_0x586fff=B['handleInsertRangeMoveRight'](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)]['InsertRowCommandId']:{_0x586fff=B[_0x9e9b49(0x550)](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)][_0x9e9b49(0x5c1)]:{_0x586fff=B[_0x9e9b49(0x372)](_0x4514c5,_0x2e8d01);break;}case B['EffectRefRangId']['RemoveColCommandId']:{_0x586fff=B[_0x9e9b49(0x336)](_0x4514c5,_0x2e8d01);break;}case B[_0x9e9b49(0x51a)][_0x9e9b49(0x4b7)]:{_0x586fff=B[_0x9e9b49(0x50d)](_0x4514c5,_0x2e8d01);break;}}const _0x2c41b5=B[_0x9e9b49(0x199)](_0x586fff,_0x2e8d01),_0x392185=this[_0x9e9b49(0x234)][_0x9e9b49(0x58d)](_0x5a0a92);if(_0x392185&&_0x2c41b5){const _0x3b277f={..._0x392185,'range':_0x2c41b5};this[_0x9e9b49(0x234)][_0x9e9b49(0x352)](_0x5a0a92,_0x3b277f),_0x58f0a6(()=>{const _0x218281=_0x9e9b49,_0x764056=this[_0x218281(0x567)][_0x218281(0x5aa)](_0x2c41b5,_0x4ba44f=>(_0x764056['dispose'](),_0x3c316f(_0x4ba44f,_0x5a0a92,_0xf4a534,_0x2c41b5)));_0x55dd3d[_0x218281(0x5ba)](_0x764056);});}return{'redos':[],'undos':[]};};this[_0x79cc9d(0x234)][_0x79cc9d(0x3a4)]((_0x353512,_0x4d1a83)=>{const _0x37d2f3=_0x79cc9d,{range:_0xb7d9e3,sheetID:_0x22c6c0}=_0x353512,_0x4e6872=this[_0x37d2f3(0x567)][_0x37d2f3(0x5aa)](_0xb7d9e3,_0x47d1f6=>(_0x4e6872['dispose'](),_0x3c316f(_0x47d1f6,_0x4d1a83,_0x22c6c0,_0xb7d9e3)));_0x55dd3d[_0x37d2f3(0x5ba)](_0x4e6872);});};this[_0x4d7903(0x15e)](a['toDisposable'](this['_cursorInfo$'][_0x4d7903(0x3d8)](()=>{_0x1a07d2();})));}[_0x5a89b4(0x434)](){const _0x3deab3=_0x5a89b4;var _0x4dce60,_0x58dc34;if(this[_0x3deab3(0x5c4)]=!0x0,((_0x4dce60=this[_0x3deab3(0x4b5)][_0x3deab3(0x17a)]())==null?void 0x0:_0x4dce60['getUnitId']())!==this['unitID'])return;const _0x3bcc8d=(_0x58dc34=this[_0x3deab3(0x274)][_0x3deab3(0x58d)](B['SheetsSelectionsService'])['getCurrentSelections']())==null?void 0x0:_0x58dc34[0x0],_0x95c4fb=this[_0x3deab3(0x4b5)][_0x3deab3(0x4c6)](a[_0x3deab3(0x1af)]['UNIVER_SHEET'])['getActiveSheet']();_0x3bcc8d&&_0x95c4fb&&this[_0x3deab3(0x353)](_0x95c4fb[_0x3deab3(0x535)](),_0x3bcc8d);}[_0x5a89b4(0x281)](){this['_online']=!0x1;}};St=Zi([be(0x2,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x217)])),be(0x3,a[_0x5a89b4(0x3d5)](yt)),be(0x4,a['Inject'](exports['MemberService'])),be(0x5,a[_0x5a89b4(0x21c)]),be(0x6,a[_0x5a89b4(0x17d)]),be(0x7,a[_0x5a89b4(0x3d5)](B[_0x5a89b4(0x35e)]))],St);var ns=Object['defineProperty'],is=Object['getOwnPropertyDescriptor'],ss=(_0x3f0bab,_0x36e4c6,_0x77af38,_0x5a9f56)=>{const _0x572260=_0x5a89b4;for(var _0x39ca33=_0x5a9f56>0x1?void 0x0:_0x5a9f56?is(_0x36e4c6,_0x77af38):_0x36e4c6,_0xb15290=_0x3f0bab[_0x572260(0x554)]-0x1,_0x4310d8;_0xb15290>=0x0;_0xb15290--)(_0x4310d8=_0x3f0bab[_0xb15290])&&(_0x39ca33=(_0x5a9f56?_0x4310d8(_0x36e4c6,_0x77af38,_0x39ca33):_0x4310d8(_0x39ca33))||_0x39ca33);return _0x5a9f56&&_0x39ca33&&ns(_0x36e4c6,_0x77af38,_0x39ca33),_0x39ca33;},nt=(_0x2cfb81,_0x517fbb)=>(_0x275235,_0x4a19c4)=>_0x517fbb(_0x275235,_0x4a19c4,_0x2cfb81);let De=class extends a[_0x5a89b4(0x2da)]{constructor(_0x4cd95f,_0x32a085,_0xda7dfc){const _0x57ef06=_0x5a89b4;super(),I(this,_0x57ef06(0x5b9),new Map()),I(this,_0x57ef06(0x2cc),new A[(_0x57ef06(0x5d2))]()),(this[_0x57ef06(0x4b5)]=_0x4cd95f,this['_injector']=_0x32a085,this['_collabSessionService']=_0xda7dfc,this['_init']());}[_0x5a89b4(0x1db)](){const _0x5cf7d3=_0x5a89b4;super[_0x5cf7d3(0x1db)](),this[_0x5cf7d3(0x2cc)][_0x5cf7d3(0x1b0)](),this[_0x5cf7d3(0x5b9)][_0x5cf7d3(0x3a4)](_0x4d6256=>_0x4d6256[_0x5cf7d3(0x1db)]());}[_0x5a89b4(0x1b7)](_0x444312){const _0x42188b=_0x5a89b4;return this[_0x42188b(0x5b9)][_0x42188b(0x4df)](_0x444312)?this[_0x42188b(0x5b9)]['get'](_0x444312)[_0x42188b(0x214)]:this[_0x42188b(0x2cc)][_0x42188b(0x564)](A['filter'](_0x984dbe=>_0x984dbe['unitID']===_0x444312),A[_0x42188b(0x338)](_0x26caca=>_0x26caca['cursorInfo$']));}['_init'](){const _0xb38c16=_0x5a89b4;this[_0xb38c16(0x4b5)][_0xb38c16(0x1b2)](a['UniverInstanceType'][_0xb38c16(0x479)])['pipe'](A[_0xb38c16(0x2e9)](this[_0xb38c16(0x256)]))[_0xb38c16(0x3d8)](async _0x5e40a4=>{const _0x5a0522=_0xb38c16,_0x497457=_0x5e40a4[_0x5a0522(0x5df)](),_0xbd43fe=await this[_0x5a0522(0x361)](_0x497457);this[_0x5a0522(0x2cc)][_0x5a0522(0x52c)](_0xbd43fe),this['_entities'][_0x5a0522(0x352)](_0x497457,_0xbd43fe);}),this['_univerInstanceService'][_0xb38c16(0x1b2)](a[_0xb38c16(0x1af)][_0xb38c16(0x222)])['pipe'](A[_0xb38c16(0x2e9)](this[_0xb38c16(0x256)]))['pipe'](A[_0xb38c16(0x303)](_0xa6e845=>!_0xa6e845[_0xb38c16(0x5df)]()[_0xb38c16(0x4f7)]('__')))['subscribe'](async _0x43147c=>{const _0x544f25=_0xb38c16,_0x51f64c=_0x43147c[_0x544f25(0x5df)](),_0xe5c388=await this[_0x544f25(0x5d7)](_0x51f64c);this['_entityInit$'][_0x544f25(0x52c)](_0xe5c388),this[_0x544f25(0x5b9)][_0x544f25(0x352)](_0x51f64c,_0xe5c388);}),A[_0xb38c16(0x209)](this['_univerInstanceService'][_0xb38c16(0x2fd)](a[_0xb38c16(0x1af)][_0xb38c16(0x222)]),this['_univerInstanceService'][_0xb38c16(0x2fd)](a[_0xb38c16(0x1af)]['UNIVER_SHEET']))[_0xb38c16(0x564)](A[_0xb38c16(0x2e9)](this['dispose$']))[_0xb38c16(0x3d8)](_0x525090=>{const _0x536394=_0xb38c16,_0x52236c=_0x525090['getUnitId'](),_0x59810c=this['_entities'][_0x536394(0x58d)](_0x52236c);_0x59810c&&(_0x59810c['dispose'](),this[_0x536394(0x5b9)]['delete'](_0x52236c));});}async[_0x5a89b4(0x361)](_0x1fdad7){const _0x734db6=_0x5a89b4,_0x2d4cf6=await this[_0x734db6(0x43b)][_0x734db6(0x506)](_0x1fdad7),_0x5295ff=this['_injector'][_0x734db6(0x45d)](St,_0x1fdad7,_0x2d4cf6);return _0x5295ff[_0x734db6(0x28e)](),_0x5295ff;}async[_0x5a89b4(0x5d7)](_0x16fb18){const _0x505432=_0x5a89b4,_0x1e17a8=await this[_0x505432(0x43b)][_0x505432(0x506)](_0x16fb18),_0x38793a=this['_injector'][_0x505432(0x45d)](vt,_0x16fb18,_0x1e17a8);return _0x38793a[_0x505432(0x28e)](),_0x38793a;}};De=ss([nt(0x0,a[_0x5a89b4(0x21c)]),nt(0x1,a[_0x5a89b4(0x3d5)](a['Injector'])),nt(0x2,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x19c)]))],De);const Le=0x14,$t=0xc8,it=0x4,rs=0x5;function os(_0xbdb2b3,_0x73d2eb){const _0x139ba4=_0x5a89b4;let {radius:_0x5966a3,width:_0x3064a8,height:_0x252522}=_0x73d2eb;_0x5966a3=_0x5966a3!=null?_0x5966a3:0x0,_0x3064a8=_0x3064a8!=null?_0x3064a8:0x1e,_0x252522=_0x252522!=null?_0x252522:0x1e;let _0x2aaa3b=0x0,_0x58bf03=0x0,_0x56a555=0x0;_0x2aaa3b=_0x58bf03=_0x56a555=Math['min'](_0x5966a3,_0x3064a8/0x2,_0x252522/0x2),_0xbdb2b3[_0x139ba4(0x53f)](),_0xbdb2b3[_0x139ba4(0x337)](_0x2aaa3b,0x0),_0xbdb2b3[_0x139ba4(0x2f9)](_0x3064a8-_0x58bf03,0x0),_0xbdb2b3[_0x139ba4(0x4c4)](_0x3064a8-_0x58bf03,_0x58bf03,_0x58bf03,Math['PI']*0x3/0x2,0x0,!0x1),_0xbdb2b3['lineTo'](_0x3064a8,_0x252522-_0x56a555),_0xbdb2b3[_0x139ba4(0x4c4)](_0x3064a8-_0x56a555,_0x252522-_0x56a555,_0x56a555,0x0,Math['PI']/0x2,!0x1),_0xbdb2b3[_0x139ba4(0x2f9)](0x0,_0x252522),_0xbdb2b3['lineTo'](0x0,_0x2aaa3b),_0xbdb2b3[_0x139ba4(0x4c4)](_0x2aaa3b,_0x2aaa3b,_0x2aaa3b,Math['PI'],Math['PI']*0x3/0x2,!0x1),_0xbdb2b3['closePath'](),_0x73d2eb[_0x139ba4(0x591)]&&(_0xbdb2b3[_0x139ba4(0x486)](),_0xbdb2b3[_0x139ba4(0x49d)]=_0x73d2eb['fill'],_0x73d2eb[_0x139ba4(0x1a7)]===_0x139ba4(0x4d2)?_0xbdb2b3['fill'](_0x139ba4(0x4d2)):_0xbdb2b3[_0x139ba4(0x591)](),_0xbdb2b3[_0x139ba4(0x579)]());}class ze extends K[_0x5a89b4(0x328)]{constructor(_0x5b0de1,_0x54f2e7){const _0x79d40f=_0x5a89b4;super(_0x5b0de1,_0x54f2e7),I(this,_0x79d40f(0x3f9)),I(this,_0x79d40f(0x3c7)),(this[_0x79d40f(0x3f9)]=_0x54f2e7==null?void 0x0:_0x54f2e7['color'],this['text']=_0x54f2e7==null?void 0x0:_0x54f2e7['text']);}static[_0x5a89b4(0x392)](_0x8979b0,_0x5434d1){const _0x3f90bd=_0x5a89b4,{text:_0x11ce0d,color:_0xd32dab}=_0x5434d1;_0x8979b0['save'](),_0x8979b0[_0x3f90bd(0x1fa)]=_0x3f90bd(0x152);const _0x367b75=_0x8979b0[_0x3f90bd(0x367)](_0x11ce0d)[_0x3f90bd(0x2db)],_0x2b1201=Math['min'](_0x367b75+0x2*it,$t);os(_0x8979b0,{'height':Le,'radius':0x4,'width':_0x2b1201,'fill':_0xd32dab,'evented':!0x1}),_0x8979b0['fillStyle']=_0x3f90bd(0x5e6);const _0x4c9d99=it,_0x43701d=Le-rs,_0x597338=$t-0x2*it;if(_0x367b75>_0x597338){let _0x317faf='',_0xe1e13b=0x0;for(const _0x153dc1 of _0x11ce0d){const _0x291f5=_0x8979b0[_0x3f90bd(0x367)](_0x153dc1)['width'];if(_0xe1e13b+_0x291f5<=_0x597338-_0x8979b0[_0x3f90bd(0x367)](_0x3f90bd(0x606))[_0x3f90bd(0x2db)])_0x317faf+=_0x153dc1,_0xe1e13b+=_0x291f5;else{_0x317faf+=_0x3f90bd(0x606);break;}}_0x8979b0[_0x3f90bd(0x387)](_0x317faf,_0x4c9d99,_0x43701d);}else _0x8979b0[_0x3f90bd(0x387)](_0x11ce0d,_0x4c9d99,_0x43701d);_0x8979b0[_0x3f90bd(0x579)]();}[_0x5a89b4(0x229)](_0x31b237){const _0x5dd115=_0x5a89b4;ze[_0x5dd115(0x392)](_0x31b237,this);}}const st=_0x5a89b4(0x44d),as=_0x5a89b4(0x26c),cs=_0x5a89b4(0x4ec),Ue=0x6,ls=1.5,rt=0x4,hs=1.5,_s=_0x5a89b4(0x35f);class Ht{constructor(_0x4e9db0,_0x3476c1,_0x313b28,_0x28112c){const _0x4f9eec=_0x5a89b4;I(this,_0x4f9eec(0x35b),[]),I(this,'_anchor',null),I(this,_0x4f9eec(0x539),null),I(this,'_anchorDot',null),I(this,_0x4f9eec(0x5e2),null),I(this,_0x4f9eec(0x36a),null),(this[_0x4f9eec(0x4be)]=_0x4e9db0,this[_0x4f9eec(0x28f)]=_0x3476c1,this[_0x4f9eec(0x1ec)]=_0x313b28,this['_document']=_0x28112c,this['_render']());}set['_hover'](_0x27b42c){const _0x272323=_0x5a89b4;_0x27b42c?(this['_anchorDot']&&this[_0x272323(0x153)][_0x272323(0x592)](),this[_0x272323(0x539)]&&this[_0x272323(0x539)][_0x272323(0x2ad)]()):(this[_0x272323(0x153)]&&this[_0x272323(0x153)][_0x272323(0x2ad)](),this[_0x272323(0x539)]&&this[_0x272323(0x539)][_0x272323(0x592)]());}[_0x5a89b4(0x1db)](){const _0x58409e=_0x5a89b4;for(const _0x5df12c of this[_0x58409e(0x35b)])_0x5df12c['dispose']();this[_0x58409e(0x539)]&&this[_0x58409e(0x539)]['dispose'](),this[_0x58409e(0x153)]&&this[_0x58409e(0x153)]['dispose'](),this[_0x58409e(0x3f7)]&&this[_0x58409e(0x3f7)][_0x58409e(0x1db)](),this[_0x58409e(0x36a)]&&this[_0x58409e(0x36a)]();}[_0x5a89b4(0x207)](){const _0x41abf5=_0x5a89b4;var _0x1fd5c6;const {_docSkeleton:_0x1a8a96,_document:_0x1eeedf}=this,{color:_0x4704c8,name:_0x3077c9,ranges:_0x2b56f0}=this[_0x41abf5(0x4be)],_0x2848fd=_0x1eeedf[_0x41abf5(0x292)](),{docsLeft:_0x4cea6f,docsTop:_0x7380d3}=_0x2848fd,_0x57f0ac=new Z['NodePositionConvertToCursor'](_0x2848fd,_0x1a8a96);for(const {startOffset:_0x46f8eb,endOffset:_0x3fadfa,rangeType:_0x2592e9,segmentId:_0x5ab2d9,segmentPage:_0x1a5b2a,collapsed:_0x3b89d3,isActive:_0x58a921}of _0x2b56f0){const _0x577af9=_0x1a8a96[_0x41abf5(0x263)](_0x46f8eb,!0x0,_0x5ab2d9,_0x1a5b2a);let _0x302d5a=_0x1a8a96['findNodePositionByCharIndex'](_0x3fadfa,!0x0,_0x5ab2d9,_0x1a5b2a);if(_0x302d5a==null&&(_0x302d5a=_0x1a8a96[_0x41abf5(0x263)](_0x3fadfa-0x1,!0x1,_0x5ab2d9,_0x1a5b2a)),_0x58a921){const {contentBoxPointGroup:_0x1f9c16}=_0x57f0ac[_0x41abf5(0x3fa)](_0x302d5a,_0x302d5a);if(_0x1f9c16[_0x41abf5(0x554)]===0x0)continue;this[_0x41abf5(0x356)](_0x4704c8,_0x1f9c16,_0x4cea6f,_0x7380d3,_0x3077c9),this[_0x41abf5(0x36a)]=this[_0x41abf5(0x1da)]();}if(_0x577af9&&_0x302d5a){if(_0x2592e9===a[_0x41abf5(0x4b3)][_0x41abf5(0x45f)]){const _0x243c24=new Z[(_0x41abf5(0x533))](_0x2848fd,_0x1a8a96),{pointGroup:_0x471eb8}=(_0x1fd5c6=_0x243c24['getRangePointData'](_0x577af9,_0x302d5a))!=null?_0x1fd5c6:{};if(_0x471eb8==null||_0x471eb8[_0x41abf5(0x554)]===0x0)continue;this[_0x41abf5(0x425)](_0x4704c8,_0x471eb8,_0x4cea6f,_0x7380d3);}else{if(!_0x3b89d3){const {borderBoxPointGroup:_0x206bb3}=_0x57f0ac[_0x41abf5(0x3fa)](_0x577af9,_0x302d5a);if(_0x206bb3[_0x41abf5(0x554)]===0x0)continue;this[_0x41abf5(0x4fd)](_0x4704c8,_0x206bb3,_0x4cea6f,_0x7380d3);}}}}}[_0x5a89b4(0x356)](_0x333594,_0x364334,_0x257155,_0x22ad8f,_0x1ea57b){const _0xff40c7=_0x5a89b4,_0x541659=this[_0xff40c7(0x5e1)](_0x364334),{left:_0x11cdad,top:_0x40b1d1,height:_0x20284c}=_0x541659,_0x45a03f=this['_getScale'](),_0x237fe0=hs/_0x45a03f,_0x30b9bf=new K['Rect'](st+a[_0xff40c7(0x444)]['generateRandomId'](Ue),{'left':_0x11cdad+_0x257155-_0x237fe0,'top':_0x40b1d1+_0x22ad8f,'height':_0x20284c,'width':ls,'fill':_0x333594||K['getColor'](a[_0xff40c7(0x26b)][_0xff40c7(0x5dc)],0x0),'strokeWidth':_0x237fe0,'stroke':_s,'evented':!0x0});this[_0xff40c7(0x3f7)]=_0x30b9bf,this[_0xff40c7(0x28f)][_0xff40c7(0x25f)](_0x30b9bf,Z[_0xff40c7(0x5af)]);const _0x177d3a=new K[(_0xff40c7(0x1ca))](st+a[_0xff40c7(0x444)][_0xff40c7(0x50a)](Ue),{'left':_0x11cdad+_0x257155-_0x237fe0,'top':_0x40b1d1+_0x22ad8f-rt/0x2,'height':rt,'width':rt,'fill':_0x333594||K[_0xff40c7(0x4c5)](a[_0xff40c7(0x26b)][_0xff40c7(0x5dc)],0x0),'strokeWidth':0x0,'stroke':_0x333594||K[_0xff40c7(0x4c5)](a[_0xff40c7(0x26b)]['black'],0x0),'evented':!0x1});this[_0xff40c7(0x153)]=_0x177d3a,this[_0xff40c7(0x28f)][_0xff40c7(0x25f)](_0x177d3a,Z[_0xff40c7(0x5af)]);const _0x7aaaac=new ze(st+a[_0xff40c7(0x444)][_0xff40c7(0x50a)](Ue),{'left':_0x11cdad+_0x257155-_0x237fe0,'top':_0x40b1d1+_0x22ad8f-Le,'text':_0x1ea57b,'color':_0x333594});this[_0xff40c7(0x539)]=_0x7aaaac,this['_scene'][_0xff40c7(0x25f)](_0x7aaaac,Z[_0xff40c7(0x5af)]),this[_0xff40c7(0x427)]=!0x1;}[_0x5a89b4(0x1da)](){const _0x5ad37c=_0x5a89b4,_0x4c71bb=this[_0x5ad37c(0x3f7)][_0x5ad37c(0x269)][_0x5ad37c(0x46f)](()=>{const _0x49c385=_0x5ad37c;this[_0x49c385(0x427)]=!0x0;}),_0x732dbd=this[_0x5ad37c(0x3f7)][_0x5ad37c(0x583)][_0x5ad37c(0x46f)](()=>{const _0x5d307e=_0x5ad37c;this[_0x5d307e(0x5e2)]&&clearTimeout(this[_0x5d307e(0x5e2)]),this[_0x5d307e(0x5e2)]=setTimeout(()=>{const _0x2cb204=_0x5d307e;this[_0x2cb204(0x427)]=!0x1;},0x7d0);});return()=>{const _0x2c7ff7=_0x5ad37c;_0x4c71bb[_0x2c7ff7(0x2c2)](),_0x732dbd[_0x2c7ff7(0x2c2)]();};}[_0x5a89b4(0x4fd)](_0x96110a,_0x3912be,_0x72cf16,_0x29b61b){const _0x52e7c4=_0x5a89b4,_0x26ae23=new a['ColorKit'](_0x96110a)[_0x52e7c4(0x39e)](0.2)['toRgbString'](),_0x4057f8=new K[(_0x52e7c4(0x20c))](as+a['Tools']['generateRandomId'](Ue),{'pointsGroup':_0x3912be,'fill':_0x26ae23||K[_0x52e7c4(0x4c5)](a[_0x52e7c4(0x26b)]['black'],0.2),'left':_0x72cf16,'top':_0x29b61b,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x52e7c4(0x35b)][_0x52e7c4(0x1d0)](_0x4057f8),this[_0x52e7c4(0x28f)][_0x52e7c4(0x25f)](_0x4057f8,Z[_0x52e7c4(0x5af)]);}[_0x5a89b4(0x425)](_0x3e7582,_0x256b41,_0x4cdd9b,_0x5776c3){const _0x392025=_0x5a89b4,_0x3067fd=new a[(_0x392025(0x589))](_0x3e7582)[_0x392025(0x39e)](0.2)['toRgbString'](),_0x58b2b0=new K['RegularPolygon'](cs+a[_0x392025(0x444)][_0x392025(0x50a)](Ue),{'pointsGroup':_0x256b41,'fill':_0x3067fd||K['getColor'](a[_0x392025(0x26b)][_0x392025(0x5dc)],0.2),'left':_0x4cdd9b,'top':_0x5776c3,'evented':!0x1,'debounceParentDirty':!0x1});this[_0x392025(0x35b)][_0x392025(0x1d0)](_0x58b2b0),this['_scene']['addObject'](_0x58b2b0,Z['TEXT_RANGE_LAYER_INDEX']);}[_0x5a89b4(0x5e1)](_0x184c24){const _0x562f08=_0x184c24[0x0],_0x42d2aa=_0x562f08[0x0],_0x178f39=_0x562f08[0x2],{x:_0x5e3a43,y:_0x51fc71}=_0x42d2aa,{x:_0x2a6348,y:_0x192cbb}=_0x178f39;return{'left':_0x5e3a43,'top':_0x51fc71,'width':_0x2a6348-_0x5e3a43,'height':_0x192cbb-_0x51fc71};}[_0x5a89b4(0x20f)](){const {scaleX:_0x1ad4e1,scaleY:_0x3b3954}=this['_scene']['getAncestorScale']();return Math['max'](_0x1ad4e1,_0x3b3954);}}var us=Object[_0x5a89b4(0x5bf)],ds=Object[_0x5a89b4(0x227)],fs=(_0x4c30ae,_0x201f4c,_0x143903,_0x54ef14)=>{for(var _0x5ab44e=_0x54ef14>0x1?void 0x0:_0x54ef14?ds(_0x201f4c,_0x143903):_0x201f4c,_0x1bd99a=_0x4c30ae['length']-0x1,_0x90fa64;_0x1bd99a>=0x0;_0x1bd99a--)(_0x90fa64=_0x4c30ae[_0x1bd99a])&&(_0x5ab44e=(_0x54ef14?_0x90fa64(_0x201f4c,_0x143903,_0x5ab44e):_0x90fa64(_0x5ab44e))||_0x5ab44e);return _0x54ef14&&_0x5ab44e&&us(_0x201f4c,_0x143903,_0x5ab44e),_0x5ab44e;},je=(_0x2408b6,_0x332741)=>(_0x3b29a1,_0x122f91)=>_0x332741(_0x3b29a1,_0x122f91,_0x2408b6);let pt=class extends a[_0x5a89b4(0x2da)]{constructor(_0x2d2d36,_0x2f48b6,_0x5b6128,_0x564605,_0x5cbf25){const _0x41d9f5=_0x5a89b4;super(),I(this,_0x41d9f5(0x534),[]),I(this,_0x41d9f5(0x344),[]),(this[_0x41d9f5(0x31d)]=_0x2d2d36,this['_docSkeletonManagerService']=_0x2f48b6,this[_0x41d9f5(0x52d)]=_0x5b6128,this[_0x41d9f5(0x5da)]=_0x564605,this[_0x41d9f5(0x301)]=_0x5cbf25,this[_0x41d9f5(0x1b8)]());}[_0x5a89b4(0x1b8)](){const _0x1d81bd=_0x5a89b4,_0x204bd6=this[_0x1d81bd(0x31d)][_0x1d81bd(0x3e9)],_0x2bb7e3=this[_0x1d81bd(0x224)];this[_0x1d81bd(0x15e)](A[_0x1d81bd(0x28c)]([this[_0x1d81bd(0x52d)][_0x1d81bd(0x1b7)](_0x204bd6),this[_0x1d81bd(0x301)][_0x1d81bd(0x5fa)]])[_0x1d81bd(0x564)](V[_0x1d81bd(0x272)](([_0x4d78a8,_0x2d39cd])=>({'skeleton':_0x2bb7e3[_0x1d81bd(0x3cc)](),'cursors':[..._0x4d78a8[_0x1d81bd(0x1fb)]()][_0x1d81bd(0x2d7)](_0x3902b1=>({..._0x3902b1,'color':_0x2d39cd[_0x3902b1[_0x1d81bd(0x3f9)]]}))})))['subscribe'](_0x4d7fc0=>{const _0x1d3732=_0x1d81bd;if(this['_removeCollabCursors'](),_0x4d7fc0){const {skeleton:_0x312e8a,cursors:_0x146bed}=_0x4d7fc0;this[_0x1d3732(0x4d5)](_0x312e8a,_0x146bed);}})),this[_0x1d81bd(0x24f)](),this[_0x1d81bd(0x37f)]();}[_0x5a89b4(0x4d5)](_0x42af7d,_0x3d3cc5){const _0x5812b2=_0x5a89b4,{scene:_0x3c069c,mainComponent:_0xb9792}=this['_context'],_0x328b71=_0x3d3cc5['map'](_0x381e3b=>new Ht(_0x381e3b,_0x3c069c,_0x42af7d,_0xb9792));this[_0x5812b2(0x534)]=_0x328b71,this['_cursors']=_0x3d3cc5;}[_0x5a89b4(0x53c)](){const _0x2001f2=_0x5a89b4;this[_0x2001f2(0x1b9)]();const {scene:_0x198999,mainComponent:_0x1abaa0}=this[_0x2001f2(0x31d)],_0x1676e3=this[_0x2001f2(0x224)][_0x2001f2(0x3cc)](),_0x1a1340=this[_0x2001f2(0x344)]['map'](_0x1e001d=>new Ht(_0x1e001d,_0x198999,_0x1676e3,_0x1abaa0));this[_0x2001f2(0x534)]=_0x1a1340;}[_0x5a89b4(0x1b9)](){const _0x30a015=_0x5a89b4;this[_0x30a015(0x534)][_0x30a015(0x3a4)](_0x3c81d9=>_0x3c81d9['dispose']()),this[_0x30a015(0x534)]=[];}[_0x5a89b4(0x37f)](){const _0x10c2d4=_0x5a89b4,_0x1deb0e=[Z[_0x10c2d4(0x228)]['id']];this[_0x10c2d4(0x15e)](this[_0x10c2d4(0x5da)]['onCommandExecuted'](_0x33114a=>{const _0x5200fd=_0x10c2d4;_0x1deb0e['includes'](_0x33114a['id'])&&_0x33114a[_0x5200fd(0x4a4)][_0x5200fd(0x3e9)]===this[_0x5200fd(0x31d)][_0x5200fd(0x3e9)]&&this[_0x5200fd(0x53c)]();}));}[_0x5a89b4(0x24f)](){const _0x53a0ad=_0x5a89b4;this[_0x53a0ad(0x15e)](a[_0x53a0ad(0x556)](this[_0x53a0ad(0x31d)]['engine'][_0x53a0ad(0x5fe)])[_0x53a0ad(0x564)](V[_0x53a0ad(0x303)](_0x3b81ae=>_0x3b81ae['type']===K[_0x53a0ad(0x4e7)][_0x53a0ad(0x5b0)]),V[_0x53a0ad(0x59b)](0x10))['subscribe'](()=>{this['_refreshCollabCursors']();}));}};pt=fs([je(0x1,a[_0x5a89b4(0x3d5)](ye[_0x5a89b4(0x3d4)])),je(0x2,a[_0x5a89b4(0x3d5)](De)),je(0x3,a['ICommandService']),je(0x4,a[_0x5a89b4(0x3d5)](a['ThemeService']))],pt);const vs=0x1,Ss=1.5;class vn extends K[_0x5a89b4(0x328)]{constructor(_0xeac080,_0x4d9d06){const _0x1be3c4=_0x5a89b4;super(_0xeac080,_0x4d9d06),I(this,_0x1be3c4(0x60a)),I(this,'_hovered',!0x1),I(this,'_range'),I(this,_0x1be3c4(0x239),''),I(this,_0x1be3c4(0x5d4),_0x1be3c4(0x553)),I(this,_0x1be3c4(0x515)),(_0x4d9d06&&this[_0x1be3c4(0x208)](_0x4d9d06),this[_0x1be3c4(0x269)]['subscribeEvent'](()=>this[_0x1be3c4(0x208)]({'hovered':!0x0})),this[_0x1be3c4(0x583)][_0x1be3c4(0x46f)](()=>this[_0x1be3c4(0x208)]({'hovered':!0x1})));}[_0x5a89b4(0x208)](_0x42f48d){const _0x236109=_0x5a89b4;var _0x527cf8,_0x472cda,_0x3ffe01,_0x2d26b4,_0x595bb4,_0x2c36ce;this['_color']=(_0x527cf8=_0x42f48d[_0x236109(0x3f9)])!=null?_0x527cf8:this[_0x236109(0x60a)],this['_hovered']=(_0x472cda=_0x42f48d['hovered'])!=null?_0x472cda:this[_0x236109(0x450)],this[_0x236109(0x30d)]=(_0x3ffe01=_0x42f48d['range'])!=null?_0x3ffe01:this[_0x236109(0x30d)],this['_name']=(_0x2d26b4=_0x42f48d[_0x236109(0x5e4)])!=null?_0x2d26b4:this[_0x236109(0x239)],this[_0x236109(0x5d4)]=(_0x595bb4=_0x42f48d[_0x236109(0x540)])!=null?_0x595bb4:this['_labelPosition'],this[_0x236109(0x515)]=(_0x2c36ce=_0x42f48d[_0x236109(0x1f4)])!=null?_0x2c36ce:this['_backgroundColor'],this[_0x236109(0x4e9)]({'width':_0x42f48d[_0x236109(0x2db)],'height':_0x42f48d['height']});}['onMouseMove'](_0x254ec9){const _0x1e017e=_0x5a89b4,{row:_0x337e05,column:_0x224c44}=_0x254ec9;if(_0x337e05>=this[_0x1e017e(0x30d)][_0x1e017e(0x525)]&&_0x337e05<=this['_range'][_0x1e017e(0x2bd)]&&_0x224c44>=this[_0x1e017e(0x30d)][_0x1e017e(0x16c)]&&_0x224c44<=this[_0x1e017e(0x30d)][_0x1e017e(0x16e)]){this['setShapeProps']({'hovered':!0x0});return;}this[_0x1e017e(0x208)]({'hovered':!0x1});}[_0x5a89b4(0x5ae)](_0x43f64f){return!0x1;}[_0x5a89b4(0x229)](_0x26e209){const _0x2810a8=_0x5a89b4;K['Rect'][_0x2810a8(0x392)](_0x26e209,{'width':this[_0x2810a8(0x2db)],'height':this[_0x2810a8(0x29f)],'strokeWidth':Ss,'stroke':this[_0x2810a8(0x60a)],'evented':!0x1,'fill':this[_0x2810a8(0x515)]}),this[_0x2810a8(0x450)]&&(_0x26e209[_0x2810a8(0x486)](),_0x26e209['transform'](0x1,0x0,0x0,0x1,this[_0x2810a8(0x2db)],this[_0x2810a8(0x5d4)]===_0x2810a8(0x21d)?0x0:-Le),ze[_0x2810a8(0x392)](_0x26e209,{'text':this[_0x2810a8(0x239)],'color':this['_color']}),_0x26e209[_0x2810a8(0x579)]());}}var ps=Object[_0x5a89b4(0x5bf)],ms=Object[_0x5a89b4(0x227)],gs=(_0x46088a,_0x28197e,_0x132a1a,_0x23f076)=>{const _0x33761d=_0x5a89b4;for(var _0x4f34f9=_0x23f076>0x1?void 0x0:_0x23f076?ms(_0x28197e,_0x132a1a):_0x28197e,_0x1cbd72=_0x46088a[_0x33761d(0x554)]-0x1,_0x433e10;_0x1cbd72>=0x0;_0x1cbd72--)(_0x433e10=_0x46088a[_0x1cbd72])&&(_0x4f34f9=(_0x23f076?_0x433e10(_0x28197e,_0x132a1a,_0x4f34f9):_0x433e10(_0x4f34f9))||_0x4f34f9);return _0x23f076&&_0x4f34f9&&ps(_0x28197e,_0x132a1a,_0x4f34f9),_0x4f34f9;},ot=(_0x233413,_0x2cf269)=>(_0x3d6ce7,_0x3e4364)=>_0x2cf269(_0x3d6ce7,_0x3e4364,_0x233413);const Is=0x1389;let mt=class extends a[_0x5a89b4(0x2da)]{constructor(_0x378b36,_0x5befc0,_0x465ffe,_0x17f63e){const _0x3429be=_0x5a89b4;super(),I(this,_0x3429be(0x344),new Set()),I(this,'_lastPointer',null),(this[_0x3429be(0x31d)]=_0x378b36,this[_0x3429be(0x459)]=_0x5befc0,this[_0x3429be(0x52d)]=_0x465ffe,this[_0x3429be(0x301)]=_0x17f63e,this[_0x3429be(0x1b8)]());}[_0x5a89b4(0x1b8)](){const _0x5c5344=_0x5a89b4;this[_0x5c5344(0x459)]['currentSkeleton$']['pipe'](V[_0x5c5344(0x2e9)](this[_0x5c5344(0x256)]),V[_0x5c5344(0x338)](_0x185f42=>{const _0x3c6a1c=_0x5c5344;if(_0x185f42){const _0x50753a=_0x185f42[_0x3c6a1c(0x605)];return A['combineLatest'](this[_0x3c6a1c(0x52d)][_0x3c6a1c(0x1b7)](this[_0x3c6a1c(0x31d)][_0x3c6a1c(0x3e9)]),this[_0x3c6a1c(0x301)][_0x3c6a1c(0x5fa)])[_0x3c6a1c(0x564)](V[_0x3c6a1c(0x272)](([_0x1cff4a,_0xfb6ddf])=>{const _0x31bc92=_0x3c6a1c,_0x2d57c3=new Map();return _0x1cff4a[_0x31bc92(0x3a4)]((_0x19d900,_0x276a47)=>{const _0x35a477=_0x31bc92;if(_0x19d900[_0x35a477(0x36d)]===_0x50753a){const _0x2ba643={..._0x19d900};_0x2ba643['color']=_0xfb6ddf[_0x19d900[_0x35a477(0x3f9)]],_0x2d57c3['set'](_0x276a47,_0x2ba643);}}),{'skeleton':_0x185f42,'cursors':_0x2d57c3};}));}return A['of']({'skeleton':null,'cursors':new Map()});}))['subscribe'](({skeleton:_0x199025,cursors:_0x5bf7a0})=>{const _0x1b174a=_0x5c5344;this[_0x1b174a(0x1b9)](),_0x199025&&this['_updateCollabCursors'](_0x199025,_0x5bf7a0);}),this[_0x5c5344(0x459)]['currentSkeleton$'][_0x5c5344(0x3d8)](_0x183e8a=>{const _0x1440e9=_0x5c5344;if(_0x183e8a==null)return;const {skeleton:_0x4297e2}=_0x183e8a,{scene:_0x4d665c}=this[_0x1440e9(0x31d)];_0x4d665c[_0x1440e9(0x4ab)][_0x1440e9(0x46f)](a[_0x1440e9(0x530)](_0xc5eb49=>{const _0x512157=_0x1440e9;var _0x587869,_0x3b3eaa;const {offsetX:_0x4e4929,offsetY:_0x281959}=_0xc5eb49,{x:_0x3c3706,y:_0x50d378}=_0x4d665c['getRelativeToViewportCoord'](K['Vector2']['FromArray']([_0x4e4929,_0x281959])),{scaleX:_0x415641,scaleY:_0x5caca4}=_0x4d665c[_0x512157(0x1be)](),_0x2889cc=_0x4d665c[_0x512157(0x4ef)](Re[_0x512157(0x369)][_0x512157(0x308)]),_0x56cdab=_0x4d665c[_0x512157(0x1dd)](K['Vector2'][_0x512157(0x360)]([_0x3c3706,_0x50d378]),_0x2889cc),_0xa6d37=_0x4297e2[_0x512157(0x4fc)](_0x4e4929,_0x281959,_0x415641,_0x5caca4,_0x56cdab);((_0x587869=this[_0x512157(0x577)])==null?void 0x0:_0x587869[_0x512157(0x57d)])===_0xa6d37[_0x512157(0x57d)]&&((_0x3b3eaa=this[_0x512157(0x577)])==null?void 0x0:_0x3b3eaa[_0x512157(0x477)])===_0xa6d37[_0x512157(0x477)]||this[_0x512157(0x344)]['forEach'](_0x77f91a=>{const _0xc3ab84=_0x512157;_0x77f91a[_0xc3ab84(0x378)](_0xa6d37);});},0x64));});}[_0x5a89b4(0x4d5)](_0x4e7557,_0x3b2d23){const _0x421c9b=_0x5a89b4;var _0x5eb896;const _0x1e2820=(_0x5eb896=this['_sheetSkeletonManagerService']['getCurrent']())==null?void 0x0:_0x5eb896[_0x421c9b(0x211)];if(!_0x1e2820)return;const _0x42b78d=this['_getSheetObject']();if(!_0x42b78d)return;this['_cursors']['forEach'](_0x499504=>{const _0x45b95d=_0x421c9b;_0x499504[_0x45b95d(0x527)]();});const {scene:_0x5b19b8}=_0x42b78d,_0x32c3b7=Cs(Array[_0x421c9b(0x2fc)](_0x3b2d23['values']()))[_0x421c9b(0x272)](_0x14f5e5=>{const _0x3fe998=_0x421c9b,{color:_0x4b3711,range:_0x431e77,name:_0x333506,selection:_0x7ac756,sheetID:_0x2dc10e}=_0x14f5e5,{startColumn:_0x455945,startRow:_0x5c16d3,endColumn:_0x12a7da,endRow:_0xd8b62f}=_0x431e77,_0x16c38d=Re[_0x3fe998(0x373)](_0x5c16d3,_0x455945,_0x5b19b8,_0x1e2820),_0x3a010b=Re['getCoordByCell'](_0xd8b62f,_0x12a7da,_0x5b19b8,_0x1e2820),{columnHeaderHeightAndMarginTop:_0x1a21d7}=_0x1e2820,{startX:_0x516677,startY:_0x50a217}=_0x16c38d,{endX:_0xfd92f5,endY:_0x45dc9d}=_0x3a010b,_0x3f065e=_0xfd92f5-_0x516677,_0x3e5906=_0x45dc9d-_0x50a217,_0xd5c5ed={'labelPosition':_0x50a217-_0x1a21d7>=Le?'top':_0x3fe998(0x21d),'sheetID':_0x2dc10e,'range':_0x431e77,'color':_0x4b3711,'name':_0x333506,'selection':_0x7ac756,'left':_0x516677,'top':_0x50a217,'width':_0x3f065e,'height':_0x3e5906,'evented':!0x1,'zIndex':Is};return new vn(_0x333506,_0xd5c5ed);});_0x5b19b8[_0x421c9b(0x2f1)](_0x32c3b7,vs),this[_0x421c9b(0x344)]=new Set(_0x32c3b7);}[_0x5a89b4(0x1b9)](){const _0x8fa59b=_0x5a89b4;var _0x5fa19b;(_0x5fa19b=this['_cursors'])==null||_0x5fa19b['forEach'](_0x294125=>_0x294125[_0x8fa59b(0x1db)]());}[_0x5a89b4(0x230)](){const _0x459c6f=_0x5a89b4;return Re[_0x459c6f(0x182)](this[_0x459c6f(0x31d)]['unit'],this[_0x459c6f(0x31d)]);}};mt=gs([ot(0x1,a['Inject'](Re[_0x5a89b4(0x2cd)])),ot(0x2,a[_0x5a89b4(0x3d5)](De)),ot(0x3,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x24a)]))],mt);function Cs(_0x29bf60){const _0x2d13de=_0x5a89b4,_0xf73348=new Map();return _0x29bf60[_0x2d13de(0x3a4)](_0xdbb6fd=>{const _0x1735b4=_0x2d13de;if(_0xf73348[_0x1735b4(0x4df)](_0xdbb6fd[_0x1735b4(0x5fc)])){const _0x35d991=_0xf73348[_0x1735b4(0x58d)](_0xdbb6fd[_0x1735b4(0x5fc)]);_0x35d991[_0x1735b4(0x5e4)]+=',\x20'+_0xdbb6fd[_0x1735b4(0x5e4)];}else _0xf73348[_0x1735b4(0x352)](_0xdbb6fd[_0x1735b4(0x5fc)],_0xdbb6fd);}),Array['from'](_0xf73348[_0x2d13de(0x1fb)]());}var X=typeof globalThis<'u'?globalThis:typeof window<'u'?window:typeof global<'u'?global:typeof self<'u'?self:{};function xe(_0x4c7531){const _0x29722b=_0x5a89b4;return _0x4c7531&&_0x4c7531[_0x29722b(0x565)]&&Object[_0x29722b(0x3af)][_0x29722b(0x431)][_0x29722b(0x35a)](_0x4c7531,'default')?_0x4c7531[_0x29722b(0x3ae)]:_0x4c7531;}var Sn={'exports':{}},Xe={},Es=ae,bs=Symbol[_0x5a89b4(0x5d3)](_0x5a89b4(0x1bd)),Ts=Symbol['for'](_0x5a89b4(0x2b6)),Rs=Object[_0x5a89b4(0x3af)]['hasOwnProperty'],ys=Es[_0x5a89b4(0x5f7)]['ReactCurrentOwner'],Os={'key':!0x0,'ref':!0x0,'__self':!0x0,'__source':!0x0};function pn(_0x200820,_0x3c2d37,_0x5bb5e1){const _0x135626=_0x5a89b4;var _0x3f5f30,_0x474749={},_0x2ddca5=null,_0x1d3632=null;_0x5bb5e1!==void 0x0&&(_0x2ddca5=''+_0x5bb5e1),_0x3c2d37['key']!==void 0x0&&(_0x2ddca5=''+_0x3c2d37['key']),_0x3c2d37[_0x135626(0x1c8)]!==void 0x0&&(_0x1d3632=_0x3c2d37['ref']);for(_0x3f5f30 in _0x3c2d37)Rs[_0x135626(0x35a)](_0x3c2d37,_0x3f5f30)&&!Os[_0x135626(0x431)](_0x3f5f30)&&(_0x474749[_0x3f5f30]=_0x3c2d37[_0x3f5f30]);if(_0x200820&&_0x200820[_0x135626(0x4bd)]){for(_0x3f5f30 in(_0x3c2d37=_0x200820['defaultProps'],_0x3c2d37))_0x474749[_0x3f5f30]===void 0x0&&(_0x474749[_0x3f5f30]=_0x3c2d37[_0x3f5f30]);}return{'$$typeof':bs,'type':_0x200820,'key':_0x2ddca5,'ref':_0x1d3632,'props':_0x474749,'_owner':ys[_0x135626(0x4b2)]};}Xe['Fragment']=Ts,Xe[_0x5a89b4(0x3e0)]=pn,Xe[_0x5a89b4(0x299)]=pn,Sn[_0x5a89b4(0x175)]=Xe;var ge=Sn['exports'],Q=function(){const _0x4434c6=_0x5a89b4;return Q=Object['assign']||function(_0x563f0f){const _0x9a1b51=_0x4da2;for(var _0x2a418e,_0x32eb5e=0x1,_0x398edf=arguments[_0x9a1b51(0x554)];_0x32eb5e<_0x398edf;_0x32eb5e++){_0x2a418e=arguments[_0x32eb5e];for(var _0x328d52 in _0x2a418e)Object[_0x9a1b51(0x3af)][_0x9a1b51(0x431)][_0x9a1b51(0x35a)](_0x2a418e,_0x328d52)&&(_0x563f0f[_0x328d52]=_0x2a418e[_0x328d52]);}return _0x563f0f;},Q[_0x4434c6(0x2b9)](this,arguments);},Ds=function(_0x3ba546,_0x3ea1a7){const _0x50f4f3=_0x5a89b4;var _0x335d9d={};for(var _0x3b7749 in _0x3ba546)Object['prototype'][_0x50f4f3(0x431)][_0x50f4f3(0x35a)](_0x3ba546,_0x3b7749)&&_0x3ea1a7[_0x50f4f3(0x473)](_0x3b7749)<0x0&&(_0x335d9d[_0x3b7749]=_0x3ba546[_0x3b7749]);if(_0x3ba546!=null&&typeof Object[_0x50f4f3(0x2fa)]==_0x50f4f3(0x205)){for(var _0x1e8b57=0x0,_0x3b7749=Object['getOwnPropertySymbols'](_0x3ba546);_0x1e8b57<_0x3b7749['length'];_0x1e8b57++)_0x3ea1a7['indexOf'](_0x3b7749[_0x1e8b57])<0x0&&Object['prototype'][_0x50f4f3(0x2af)]['call'](_0x3ba546,_0x3b7749[_0x1e8b57])&&(_0x335d9d[_0x3b7749[_0x1e8b57]]=_0x3ba546[_0x3b7749[_0x1e8b57]]);}return _0x335d9d;},Ot=ae[_0x5a89b4(0x4f1)](function(_0x2b57fc,_0x1bd232){const _0x1eb794=_0x5a89b4;var _0x1f89c2=_0x2b57fc[_0x1eb794(0x49c)],_0x379a3f=_0x2b57fc['id'],_0x5a935d=_0x2b57fc[_0x1eb794(0x359)],_0x46c988=_0x2b57fc[_0x1eb794(0x438)],_0x24229b=Ds(_0x2b57fc,['icon','id',_0x1eb794(0x359),_0x1eb794(0x438)]),_0x5b9841=_0x1eb794(0x1f5)[_0x1eb794(0x5c6)](_0x379a3f,'\x20')[_0x1eb794(0x5c6)](_0x5a935d||'')[_0x1eb794(0x376)](),_0x3bf1e2=ae[_0x1eb794(0x14c)]('_'[_0x1eb794(0x5c6)](Us()));return mn(_0x1f89c2,''['concat'](_0x379a3f),{'defIds':_0x1f89c2['defIds'],'idSuffix':_0x3bf1e2['current']},Q({'ref':_0x1bd232,'className':_0x5b9841},_0x24229b),_0x46c988);});function mn(_0x2df67b,_0x47b8e0,_0x350aec,_0x390ae2,_0x410c0a){const _0x45aca3=_0x5a89b4;return ae[_0x45aca3(0x5a2)](_0x2df67b[_0x45aca3(0x5ee)],Q(Q({'key':_0x47b8e0},ws(_0x2df67b,_0x350aec,_0x410c0a)),_0x390ae2),(Ps(_0x2df67b,_0x350aec)['children']||[])[_0x45aca3(0x272)](function(_0x2a4d79,_0x10a517){const _0x5a6d1b=_0x45aca3;return mn(_0x2a4d79,''['concat'](_0x47b8e0,'-')[_0x5a6d1b(0x5c6)](_0x2df67b[_0x5a6d1b(0x5ee)],'-')[_0x5a6d1b(0x5c6)](_0x10a517),_0x350aec,void 0x0,_0x410c0a);}));}function ws(_0xe40a20,_0x3d94d5,_0x48ca6b){const _0x1319d8=_0x5a89b4;var _0x58d861=Q({},_0xe40a20[_0x1319d8(0x4ed)]);_0x48ca6b!=null&&_0x48ca6b['colorChannel1']&&_0x58d861[_0x1319d8(0x591)]===_0x1319d8(0x2d1)&&(_0x58d861['fill']=_0x48ca6b[_0x1319d8(0x2d1)]);var _0x532f63=_0x3d94d5[_0x1319d8(0x290)];return!_0x532f63||_0x532f63['length']===0x0||(_0xe40a20[_0x1319d8(0x5ee)]===_0x1319d8(0x1a5)&&_0x58d861[_0x1319d8(0x4dd)]&&(_0x58d861['xlink:href']=_0x58d861[_0x1319d8(0x4dd)]+_0x3d94d5['idSuffix']),Object[_0x1319d8(0x1d9)](_0x58d861)[_0x1319d8(0x3a4)](function(_0xa04ee4){const _0x38efad=_0x1319d8;var _0x360953=_0xa04ee4[0x0],_0x5e752d=_0xa04ee4[0x1];typeof _0x5e752d==_0x38efad(0x4ad)&&(_0x58d861[_0x360953]=_0x5e752d[_0x38efad(0x4e5)](/url\(#(.*)\)/,_0x38efad(0x267)[_0x38efad(0x5c6)](_0x3d94d5[_0x38efad(0x3fc)],')')));})),_0x58d861;}function Ps(_0x321462,_0x2940ba){const _0x228d3c=_0x5a89b4;var _0x2025a1,_0xe56826=_0x2940ba[_0x228d3c(0x290)];return!_0xe56826||_0xe56826[_0x228d3c(0x554)]===0x0?_0x321462:_0x321462['tag']===_0x228d3c(0x302)&&(!((_0x2025a1=_0x321462[_0x228d3c(0x17b)])===null||_0x2025a1===void 0x0)&&_0x2025a1['length'])?Q(Q({},_0x321462),{'children':_0x321462[_0x228d3c(0x17b)][_0x228d3c(0x272)](function(_0x1a662c){const _0x4e6739=_0x228d3c;return typeof _0x1a662c[_0x4e6739(0x4ed)]['id']==_0x4e6739(0x4ad)&&_0xe56826&&_0xe56826[_0x4e6739(0x473)](_0x1a662c['attrs']['id'])>-0x1?Q(Q({},_0x1a662c),{'attrs':Q(Q({},_0x1a662c[_0x4e6739(0x4ed)]),{'id':_0x1a662c[_0x4e6739(0x4ed)]['id']+_0x2940ba[_0x4e6739(0x3fc)]})}):_0x1a662c;})}):_0x321462;}function Us(){const _0x44938e=_0x5a89b4;return Math[_0x44938e(0x568)]()['toString'](0x24)[_0x44938e(0x221)](0x2,0x8);}Ot['displayName']=_0x5a89b4(0x2e5);var Ms={'tag':_0x5a89b4(0x346),'attrs':{'fill':_0x5a89b4(0x34c),'viewBox':_0x5a89b4(0x440),'width':_0x5a89b4(0x4a6),'height':'1em'},'children':[{'tag':'g','attrs':{'clipPath':_0x5a89b4(0x1a3)},'children':[{'tag':_0x5a89b4(0x4a3),'attrs':{'stroke':_0x5a89b4(0x164),'d':_0x5a89b4(0x24b),'strokeLinecap':_0x5a89b4(0x2c9),'strokeLinejoin':_0x5a89b4(0x2c9),'strokeWidth':1.2}}]},{'tag':_0x5a89b4(0x302),'attrs':{},'children':[{'tag':_0x5a89b4(0x2a3),'attrs':{'id':_0x5a89b4(0x3ca)},'children':[{'tag':_0x5a89b4(0x4a3),'attrs':{'fill':_0x5a89b4(0x581),'d':_0x5a89b4(0x447)}}]}]}],'defIds':[_0x5a89b4(0x3ca)]},gn=ae[_0x5a89b4(0x4f1)](function(_0x2256cc,_0x4ee681){const _0x4d180d=_0x5a89b4;return ae[_0x4d180d(0x5a2)](Ot,Object['assign']({},_0x2256cc,{'id':'off-line-single','ref':_0x4ee681,'icon':Ms}));});gn[_0x5a89b4(0x4de)]=_0x5a89b4(0x286);var As={'tag':_0x5a89b4(0x346),'attrs':{'fill':_0x5a89b4(0x34c),'viewBox':_0x5a89b4(0x20d),'width':_0x5a89b4(0x4a6),'height':_0x5a89b4(0x4a6)},'children':[{'tag':'g','attrs':{'clipPath':_0x5a89b4(0x1b1)},'children':[{'tag':_0x5a89b4(0x4a3),'attrs':{'stroke':_0x5a89b4(0x164),'d':_0x5a89b4(0x1d4),'strokeLinecap':_0x5a89b4(0x2c9),'strokeLinejoin':_0x5a89b4(0x2c9),'strokeWidth':1.2}}]},{'tag':_0x5a89b4(0x302),'attrs':{},'children':[{'tag':_0x5a89b4(0x2a3),'attrs':{'id':_0x5a89b4(0x318)},'children':[{'tag':_0x5a89b4(0x4a3),'attrs':{'fill':'#fff','d':_0x5a89b4(0x447),'transform':'translate(.97)'}}]}]}],'defIds':['on-line-single_clip0_910_349']},In=ae[_0x5a89b4(0x4f1)](function(_0xc31c63,_0x40cc62){const _0x4962d4=_0x5a89b4;return ae[_0x4962d4(0x5a2)](Ot,Object[_0x4962d4(0x401)]({},_0xc31c63,{'id':'on-line-single','ref':_0x40cc62,'icon':As}));});In['displayName']=_0x5a89b4(0x505);function Cn(_0x25c7a2){const _0x4da8d6=_0x5a89b4;var _0x15624c,_0x15d8d1,_0x3a7a59='';if(typeof _0x25c7a2==_0x4da8d6(0x4ad)||typeof _0x25c7a2=='number')_0x3a7a59+=_0x25c7a2;else{if(typeof _0x25c7a2==_0x4da8d6(0x33e)){if(Array[_0x4da8d6(0x1aa)](_0x25c7a2)){var _0x553d78=_0x25c7a2[_0x4da8d6(0x554)];for(_0x15624c=0x0;_0x15624c<_0x553d78;_0x15624c++)_0x25c7a2[_0x15624c]&&(_0x15d8d1=Cn(_0x25c7a2[_0x15624c]))&&(_0x3a7a59&&(_0x3a7a59+='\x20'),_0x3a7a59+=_0x15d8d1);}else{for(_0x15d8d1 in _0x25c7a2)_0x25c7a2[_0x15d8d1]&&(_0x3a7a59&&(_0x3a7a59+='\x20'),_0x3a7a59+=_0x15d8d1);}}}return _0x3a7a59;}function Ns(){for(var _0x9b23d9,_0x570fb8,_0x433844=0x0,_0x1dc625='',_0x515f09=arguments['length'];_0x433844<_0x515f09;_0x433844++)(_0x9b23d9=arguments[_0x433844])&&(_0x570fb8=Cn(_0x9b23d9))&&(_0x1dc625&&(_0x1dc625+='\x20'),_0x1dc625+=_0x570fb8);return _0x1dc625;}const Ls=_0x5a89b4(0x4d9),xs=_0x5a89b4(0x255),js=_0x5a89b4(0x545),$s=_0x5a89b4(0x370),Hs=_0x5a89b4(0x374),Me={'onlineStatusIcon':Ls,'onlineStatusTitle':xs,'onlineStatus':js,'online':$s,'offline':Hs};function ks(_0x40d032){const _0x37ccb3=_0x5a89b4;switch(_0x40d032){case q['OFFLINE']:return _0x37ccb3(0x2eb);case q['CONFLICT']:return _0x37ccb3(0x381);case q[_0x37ccb3(0x3c1)]:return _0x37ccb3(0x396);case q[_0x37ccb3(0x23e)]:return'collabStatus.notCollab';case q[_0x37ccb3(0x53a)]:case q['AWAITING_WITH_PENDING']:return _0x37ccb3(0x25a);case q['SYNCED']:case q[_0x37ccb3(0x258)]:return'collabStatus.synced';}}function En(_0x13749d){const _0x25760c=_0x5a89b4,{status$:_0x2ceb49}=_0x13749d,_0x4d1b32=te[_0x25760c(0x3b4)](_0x2ceb49,q['NOT_COLLAB']),_0x5eb37b=a[_0x25760c(0x33a)](a[_0x25760c(0x3a3)]),_0x25557d=a[_0x25760c(0x33a)](exports[_0x25760c(0x19c)]),_0x13972d=_0x4d1b32!==q[_0x25760c(0x289)],_0x423208=_0x5eb37b['t'](ks(_0x4d1b32)),_0x12d1c8=Ns(Me[_0x25760c(0x260)],{[Me['online']]:_0x13972d,[Me[_0x25760c(0x5d9)]]:!_0x13972d}),_0x20dfcd=_0x13972d?ge[_0x25760c(0x3e0)](In,{}):ge[_0x25760c(0x3e0)](gn,{}),_0x38b5a9=ae[_0x25760c(0x2a6)](()=>{const _0x5bca93=_0x25760c;_0x13972d||_0x25557d[_0x5bca93(0x604)]();},[_0x13972d,_0x25557d]);function _0x71c8c2(){const _0x3e9a9b=_0x25760c;return ge[_0x3e9a9b(0x299)]('div',{'className':_0x12d1c8,'onClick':_0x38b5a9,'children':[ge[_0x3e9a9b(0x3e0)](_0x3e9a9b(0x399),{'className':Me['onlineStatusIcon'],'children':_0x20dfcd}),ge[_0x3e9a9b(0x3e0)](_0x3e9a9b(0x399),{'className':Me['onlineStatusTitle'],'children':_0x423208})]});}return _0x13972d?_0x71c8c2():ge[_0x25760c(0x3e0)](Ie['Tooltip'],{'title':_0x5eb37b['t'](_0x25760c(0x247)),'children':_0x71c8c2()});}var Bs=Object[_0x5a89b4(0x5bf)],Ws=Object[_0x5a89b4(0x227)],Fs=(_0x4aab63,_0x313337,_0x1cdcec,_0x423469)=>{const _0x4b19dc=_0x5a89b4;for(var _0x50f6a7=_0x423469>0x1?void 0x0:_0x423469?Ws(_0x313337,_0x1cdcec):_0x313337,_0x30a14f=_0x4aab63[_0x4b19dc(0x554)]-0x1,_0x2dfe5f;_0x30a14f>=0x0;_0x30a14f--)(_0x2dfe5f=_0x4aab63[_0x30a14f])&&(_0x50f6a7=(_0x423469?_0x2dfe5f(_0x313337,_0x1cdcec,_0x50f6a7):_0x2dfe5f(_0x50f6a7))||_0x50f6a7);return _0x423469&&_0x50f6a7&&Bs(_0x313337,_0x1cdcec,_0x50f6a7),_0x50f6a7;},$e=(_0x46e44e,_0x7bcf78)=>(_0x53f24a,_0x3cbadf)=>_0x7bcf78(_0x53f24a,_0x3cbadf,_0x46e44e);exports[_0x5a89b4(0x5f8)]=class extends a['Disposable']{constructor(_0x508ba0,_0xb07a20,_0x3c1f77,_0x3c50b9){const _0x1091f8=_0x5a89b4;super(),I(this,'_status$',new A[(_0x1091f8(0x4c2))](q[_0x1091f8(0x23e)])),(this[_0x1091f8(0x4b5)]=_0x508ba0,this['_uiPartsService']=_0xb07a20,this[_0x1091f8(0x274)]=_0x3c1f77,this[_0x1091f8(0x3e6)]=_0x3c50b9,this[_0x1091f8(0x259)](),this[_0x1091f8(0x3ce)]());}['_initStatusListener'](){const _0x1c231e=_0x5a89b4;this['disposeWithMe'](this[_0x1c231e(0x4b5)][_0x1c231e(0x53b)][_0x1c231e(0x564)](A[_0x1c231e(0x338)](()=>{const _0x13aae9=_0x1c231e,_0x147599=this[_0x13aae9(0x4b5)][_0x13aae9(0x17a)]();return _0x147599?this['_collaborationController']['getCollabEntity$'](_0x147599[_0x13aae9(0x5df)]()):A['of'](null);}),A[_0x1c231e(0x338)](_0x5b944f=>_0x5b944f?_0x5b944f[_0x1c231e(0x178)]:A['of'](q[_0x1c231e(0x23e)])))[_0x1c231e(0x3d8)](_0x440e17=>{const _0x42d8ba=_0x1c231e;this[_0x42d8ba(0x386)][_0x42d8ba(0x52c)](_0x440e17);}));}[_0x5a89b4(0x259)](){const _0x3f1743=_0x5a89b4;this[_0x3f1743(0x15e)](this[_0x3f1743(0x458)][_0x3f1743(0x42f)](te['BuiltInUIPart'][_0x3f1743(0x161)],()=>a[_0x3f1743(0x3ea)](Vs({'status$':this[_0x3f1743(0x386)][_0x3f1743(0x159)]()}),this['_injector'])));}},exports[_0x5a89b4(0x5f8)]=Fs([$e(0x0,a[_0x5a89b4(0x21c)]),$e(0x1,te[_0x5a89b4(0x2f5)]),$e(0x2,a[_0x5a89b4(0x3d5)](a['Injector'])),$e(0x3,a[_0x5a89b4(0x3d5)](exports[_0x5a89b4(0x1f7)]))],exports[_0x5a89b4(0x5f8)]);function Vs(_0x416ee5){const {status$:_0x50c740}=_0x416ee5;return function(){return ge['jsx'](En,{'status$':_0x50c740});};}const Dt=a[_0x5a89b4(0x2c7)](_0x5a89b4(0x150));var Gs=Object['defineProperty'],Ys=Object[_0x5a89b4(0x227)],Ks=(_0x57c1e8,_0x2ca021,_0xf6c9fa,_0x4023c3)=>{const _0x26c9e0=_0x5a89b4;for(var _0x3bc251=_0x4023c3>0x1?void 0x0:_0x4023c3?Ys(_0x2ca021,_0xf6c9fa):_0x2ca021,_0x5f4727=_0x57c1e8[_0x26c9e0(0x554)]-0x1,_0x55837d;_0x5f4727>=0x0;_0x5f4727--)(_0x55837d=_0x57c1e8[_0x5f4727])&&(_0x3bc251=(_0x4023c3?_0x55837d(_0x2ca021,_0xf6c9fa,_0x3bc251):_0x55837d(_0x3bc251))||_0x3bc251);return _0x4023c3&&_0x3bc251&&Gs(_0x2ca021,_0xf6c9fa,_0x3bc251),_0x3bc251;},Te=(_0x50795f,_0x451052)=>(_0x53caa2,_0x652855)=>_0x451052(_0x53caa2,_0x652855,_0x50795f);exports[_0x5a89b4(0x1d5)]=class extends a[_0x5a89b4(0x2da)]{constructor(_0x11cdd2,_0x107fea,_0x52daac,_0x278a53,_0x2e4e82,_0x92a599){const _0x3c867a=_0x5a89b4;super(),this[_0x3c867a(0x2ed)]=_0x11cdd2,this[_0x3c867a(0x52a)]=_0x107fea,this[_0x3c867a(0x5da)]=_0x52daac,this[_0x3c867a(0x470)]=_0x278a53,this['_snapshotService']=_0x2e4e82,_0x92a599?_0x92a599==null||_0x92a599['whenReady']()[_0x3c867a(0x1c3)](()=>this[_0x3c867a(0x1b8)]()):(this[_0x3c867a(0x52a)]['debug']('[DataLoaderController]',_0x3c867a(0x5b3)),this[_0x3c867a(0x1b8)]());}async['_init'](){const _0x1fde10=_0x5a89b4,_0x22185b=this[_0x1fde10(0x2ed)][_0x1fde10(0x3cf)](_0x1fde10(0x39c)),_0x559c8e=this[_0x1fde10(0x2ed)][_0x1fde10(0x3cf)](_0x1fde10(0x235));if(!_0x22185b||!_0x559c8e){this[_0x1fde10(0x52a)][_0x1fde10(0x210)](_0x1fde10(0x445),_0x1fde10(0x27c));return;}switch(Number(_0x559c8e)){case ie[_0x1fde10(0x479)]:{const _0x5c06b6=await this[_0x1fde10(0x561)](_0x22185b);this['_setupSubUnitSync'](_0x5c06b6);break;}case ie[_0x1fde10(0x222)]:{await this[_0x1fde10(0x273)](_0x22185b);break;}default:{this[_0x1fde10(0x52a)]['error'](_0x1fde10(0x445),_0x1fde10(0x3ec));break;}}}async[_0x5a89b4(0x5bb)](_0x222a6b){const _0x84d48b=_0x5a89b4;await this['_updateSubUnitFromURLParams'](_0x222a6b),_0x222a6b[_0x84d48b(0x250)][_0x84d48b(0x564)](A[_0x84d48b(0x2e9)](this[_0x84d48b(0x256)]))['subscribe'](_0x18b684=>{const _0x414d18=_0x84d48b;_0x18b684&&this[_0x414d18(0x3d6)](_0x18b684);}),this['_urlService'][_0x84d48b(0x27d)][_0x84d48b(0x564)](A[_0x84d48b(0x2e9)](this['dispose$']))[_0x84d48b(0x3d8)](()=>this[_0x84d48b(0x320)](_0x222a6b));}[_0x5a89b4(0x3d6)](_0x3491dc,_0x3b7454=!0x1){const _0x4b3a08=_0x5a89b4,_0xd21185=this['_urlService'][_0x4b3a08(0x3cf)](_0x4b3a08(0x1c7));_0x3491dc[_0x4b3a08(0x535)]()!==_0xd21185&&this['_urlService'][_0x4b3a08(0x4c3)](_0x4b3a08(0x1c7),_0x3491dc[_0x4b3a08(0x535)](),_0x3b7454);}async[_0x5a89b4(0x320)](_0x5ea866){const _0x539590=_0x5a89b4;var _0x397273;const _0x2038f8=this[_0x539590(0x2ed)][_0x539590(0x3cf)](_0x539590(0x1c7));if(!_0x2038f8||!_0x5ea866[_0x539590(0x385)](_0x2038f8)){const _0x287b35=_0x5ea866[_0x539590(0x288)]()[0x0],_0x447a7c=_0x5ea866[_0x539590(0x385)](_0x287b35);if(!_0x447a7c)return;this[_0x539590(0x3d6)](_0x447a7c,!0x0),await this['_commandService'][_0x539590(0x238)](B[_0x539590(0x55c)]['id'],{'unitId':_0x5ea866[_0x539590(0x5df)](),'subUnitId':_0x287b35});return;}((_0x397273=_0x5ea866['getActiveSheet']())==null?void 0x0:_0x397273[_0x539590(0x535)]())!==_0x2038f8&&await this[_0x539590(0x5da)][_0x539590(0x238)](B[_0x539590(0x55c)]['id'],{'unitId':_0x5ea866[_0x539590(0x5df)](),'subUnitId':_0x2038f8});}async[_0x5a89b4(0x561)](_0x1570de){const _0x1d022e=_0x5a89b4;let _0x93dbdb=0x0;const _0x19a2d1=await this[_0x1d022e(0x470)][_0x1d022e(0x452)](_0x1570de);return _0x19a2d1&&(_0x19a2d1[_0x1d022e(0x5f4)]||_0x19a2d1[_0x1d022e(0x48a)][_0x1d022e(0x554)]!==0x0)&&(_0x93dbdb=_0x19a2d1['rev']),_0x93dbdb===0x0&&this[_0x1d022e(0x52a)][_0x1d022e(0x210)](_0x1d022e(0x445),'fetching\x20the\x20latest\x20document\x20from\x20the\x20server.'),this['_snapshotService']['loadSheet'](_0x1570de,_0x93dbdb);}async[_0x5a89b4(0x273)](_0x28c556){const _0x165086=_0x5a89b4;let _0x57f2d5=0x0;const _0x46e42e=await this[_0x165086(0x470)]['loadOfflineData'](_0x28c556);return _0x46e42e&&(_0x46e42e['awaitingChangeset']||_0x46e42e[_0x165086(0x48a)][_0x165086(0x554)]!==0x0)&&(_0x57f2d5=_0x46e42e[_0x165086(0x2d6)]),_0x57f2d5===0x0&&this[_0x165086(0x52a)][_0x165086(0x210)]('[DataLoaderController]','fetching\x20the\x20latest\x20document\x20from\x20the\x20server.'),this['_snapshotService']['loadDoc'](_0x28c556,_0x57f2d5);}},exports[_0x5a89b4(0x1d5)]=Ks([Te(0x0,Dt),Te(0x1,a[_0x5a89b4(0x3dd)]),Te(0x2,a[_0x5a89b4(0x17d)]),Te(0x3,a['Inject'](exports['LocalCacheService'])),Te(0x4,a[_0x5a89b4(0x3d5)](p[_0x5a89b4(0x5f0)])),Te(0x5,a['Optional'](jn[_0x5a89b4(0x4d8)]))],exports[_0x5a89b4(0x1d5)]);var qs=Object['defineProperty'],zs=Object[_0x5a89b4(0x227)],Xs=(_0x2a9347,_0x4b66de,_0x26f9ed,_0x48e7f5)=>{const _0x4e1aef=_0x5a89b4;for(var _0x31c9db=_0x48e7f5>0x1?void 0x0:_0x48e7f5?zs(_0x4b66de,_0x26f9ed):_0x4b66de,_0xc3d4d7=_0x2a9347[_0x4e1aef(0x554)]-0x1,_0x4ac008;_0xc3d4d7>=0x0;_0xc3d4d7--)(_0x4ac008=_0x2a9347[_0xc3d4d7])&&(_0x31c9db=(_0x48e7f5?_0x4ac008(_0x4b66de,_0x26f9ed,_0x31c9db):_0x4ac008(_0x31c9db))||_0x31c9db);return _0x48e7f5&&_0x31c9db&&qs(_0x4b66de,_0x26f9ed,_0x31c9db),_0x31c9db;},kt=(_0x4ce5ee,_0x334a66)=>(_0x1e6f0b,_0x1c1139)=>_0x334a66(_0x1e6f0b,_0x1c1139,_0x4ce5ee);const Js=_0x5a89b4(0x23f),Zs=_0x5a89b4(0x343);let Ve=class extends a[_0x5a89b4(0x4c8)]{constructor(_0x51496a,_0xa7c86b){const _0x5b8e95=_0x5a89b4;super(),this[_0x5b8e95(0x4b5)]=_0x51496a,this[_0x5b8e95(0x162)]=_0xa7c86b,this[_0x5b8e95(0x1b8)]();}[_0x5a89b4(0x1b8)](){const _0x26aa1a=_0x5a89b4;this[_0x26aa1a(0x15e)](this[_0x26aa1a(0x4b5)][_0x26aa1a(0x53b)][_0x26aa1a(0x3d8)](()=>{const _0x32c80b=_0x26aa1a;var _0x40a2b6;const _0x194853=this[_0x32c80b(0x4b5)][_0x32c80b(0x17a)]();let _0x3a741e=(_0x40a2b6=this['_configService'][_0x32c80b(0x287)](Js))!=null?_0x40a2b6:Zs;_0x194853 instanceof a['Workbook']&&(_0x3a741e=_0x194853[_0x32c80b(0x5e4)]),document['title']=_0x3a741e;}));}};Ve=Xs([kt(0x0,a[_0x5a89b4(0x21c)]),kt(0x1,a[_0x5a89b4(0x569)])],Ve);var Qs=Object[_0x5a89b4(0x5bf)],er=Object['getOwnPropertyDescriptor'],tr=(_0x3b938c,_0x449aa7,_0x28b74f,_0x4d5b24)=>{const _0x52457b=_0x5a89b4;for(var _0x2e92d5=_0x4d5b24>0x1?void 0x0:_0x4d5b24?er(_0x449aa7,_0x28b74f):_0x449aa7,_0x462316=_0x3b938c[_0x52457b(0x554)]-0x1,_0x51ce47;_0x462316>=0x0;_0x462316--)(_0x51ce47=_0x3b938c[_0x462316])&&(_0x2e92d5=(_0x4d5b24?_0x51ce47(_0x449aa7,_0x28b74f,_0x2e92d5):_0x51ce47(_0x2e92d5))||_0x2e92d5);return _0x4d5b24&&_0x2e92d5&&Qs(_0x449aa7,_0x28b74f,_0x2e92d5),_0x2e92d5;},at=(_0x1692ff,_0x58755e)=>(_0x1328b1,_0x23e435)=>_0x58755e(_0x1328b1,_0x23e435,_0x1692ff);let Ge=class{constructor(_0x3c6531,_0x30e88f,_0x4a5c88){const _0x1a6197=_0x5a89b4;this[_0x1a6197(0x162)]=_0x3c6531,this[_0x1a6197(0x379)]=_0x30e88f,this[_0x1a6197(0x489)]=_0x4a5c88,this[_0x1a6197(0x28e)]();}[_0x5a89b4(0x28e)](){const _0x502d53=_0x5a89b4;this[_0x502d53(0x379)][_0x502d53(0x403)]({'priority':0x1,'interceptor':(_0x326d45,_0x463c3f)=>_0x463c3f(_0x326d45)[_0x502d53(0x564)](A['concatMap'](async _0x16c54f=>{const _0x444afe=_0x502d53,_0x1ba859=_0x16c54f;if(_0x1ba859[_0x444afe(0x54c)]===0x191&&window['confirm'](this[_0x444afe(0x489)]['t'](_0x444afe(0x4a9)))){const _0x1a74bf=window['encodeURIComponent'](window['location']['href']);window[_0x444afe(0x5e5)]['href']=this[_0x444afe(0x195)]()+'?url='+_0x1a74bf;}return _0x1ba859;}))});}[_0x5a89b4(0x195)](){const _0x5709c4=_0x5a89b4;var _0x5f26c9,_0x4c8120;const _0x1ca8ae=this[_0x5709c4(0x162)][_0x5709c4(0x287)](rn),_0x104226=this['_configService'][_0x5709c4(0x287)](ee);return(_0x4c8120=(_0x5f26c9=_0x104226==null?void 0x0:_0x104226[_0x5709c4(0x493)])!=null?_0x5f26c9:_0x1ca8ae)!=null?_0x4c8120:qn;}};Ge=tr([at(0x0,a['IConfigService']),at(0x1,a[_0x5a89b4(0x3d5)](J[_0x5a89b4(0x294)])),at(0x2,a[_0x5a89b4(0x3d5)](a[_0x5a89b4(0x3a3)]))],Ge);var nr=Object[_0x5a89b4(0x5bf)],ir=Object[_0x5a89b4(0x227)],sr=(_0x5db5e1,_0x2c4e6e,_0x5efa3d,_0x2d1047)=>{const _0xbaab8=_0x5a89b4;for(var _0x380607=_0x2d1047>0x1?void 0x0:_0x2d1047?ir(_0x2c4e6e,_0x5efa3d):_0x2c4e6e,_0x12288d=_0x5db5e1[_0xbaab8(0x554)]-0x1,_0x419df0;_0x12288d>=0x0;_0x12288d--)(_0x419df0=_0x5db5e1[_0x12288d])&&(_0x380607=(_0x2d1047?_0x419df0(_0x2c4e6e,_0x5efa3d,_0x380607):_0x419df0(_0x380607))||_0x380607);return _0x2d1047&&_0x380607&&nr(_0x2c4e6e,_0x5efa3d,_0x380607),_0x380607;},Bt=(_0x432124,_0x4325d1)=>(_0x5517e8,_0x33d490)=>_0x4325d1(_0x5517e8,_0x33d490,_0x432124);const bn=_0x5a89b4(0x56e),rr='/universer-api/authz';exports['AuthzIoHttpService']=class extends a[_0x5a89b4(0x4c8)]{constructor(_0x16494c,_0x4cbde9){const _0x186d9e=_0x5a89b4;super(),this[_0x186d9e(0x3f6)]=_0x16494c,this[_0x186d9e(0x162)]=_0x4cbde9,this[_0x186d9e(0x5f5)]();}[_0x5a89b4(0x5f5)](){const _0x218052=_0x5a89b4,_0x5ca434=this;this['disposeWithMe'](this['_HTTPService'][_0x218052(0x403)]({'priority':0x3e7,'interceptor':J[_0x218052(0x319)]({'isMatch'(_0x1fc880){const _0x32a2fd=_0x218052;var _0x3353b9;if(_0x1fc880[_0x32a2fd(0x2a2)]==='POST'&&((_0x3353b9=_0x1fc880['requestParams'])!=null&&_0x3353b9[_0x32a2fd(0x491)])){const {objectID:_0xc3059a,objectType:_0x18220c}=_0x1fc880[_0x32a2fd(0x1e3)]['body']||{};if(!_0xc3059a||_0x18220c===void 0x0)return!0x1;const _0x504442=_0x5ca434[_0x32a2fd(0x3dc)]()+'/'+_0x18220c+'/object/'+_0xc3059a+_0x32a2fd(0x1ed);if(_0x1fc880['url']===_0x504442)return!0x0;}return!0x1;},'getParamsFromRequest'(_0x14755b){const _0xb8a318=_0x218052;var _0xbcafc;return(_0xbcafc=_0x14755b[_0xb8a318(0x1e3)])==null?void 0x0:_0xbcafc[_0xb8a318(0x491)];},'mergeParamsToRequest'(_0x5d2492,_0x51111c){const _0x44498d=_0x218052,_0x448155=_0x5ca434['_getAPIPrefixPath']()+_0x44498d(0x3c6),_0x365597=_0x5d2492[_0x44498d(0x42b)]((_0x22cc29,_0x3c59a4)=>{const {unitID:_0x2fcccc,objectID:_0x37bf77,objectType:_0x204eb0,actions:_0x4f9440}=_0x3c59a4;return _0x22cc29[_0x2fcccc]||(_0x22cc29[_0x2fcccc]={}),_0x22cc29[_0x2fcccc][_0x37bf77]||(_0x22cc29[_0x2fcccc][_0x37bf77]={'objectID':_0x37bf77,'objectType':_0x204eb0,'actions':[]}),_0x22cc29[_0x2fcccc][_0x37bf77]['actions']['push'](..._0x4f9440),_0x22cc29;},{}),_0x56f619=[];for(const _0x58df5a in _0x365597)for(const _0x40d055 in _0x365597[_0x58df5a]){const {actions:_0x29d6de,objectType:_0x5672af}=_0x365597[_0x58df5a][_0x40d055],_0x44c701=[...new Set(_0x29d6de)];_0x56f619[_0x44498d(0x1d0)]({'unitID':_0x58df5a,'objectID':_0x40d055,'objectType':_0x5672af,'actions':_0x44c701});}return new J[(_0x44498d(0x528))](_0x44498d(0x19a),_0x448155,{'headers':_0x51111c[_0x44498d(0x388)],'withCredentials':_0x51111c['withCredentials'],'responseType':_0x51111c[_0x44498d(0x349)],'body':{'requests':_0x56f619}});}},{'distributeResult'(_0x4fbe51,_0x261b7f){const _0x3786ec=_0x218052,{objectActions:_0x73cdcc}=_0x4fbe51;return _0x261b7f[_0x3786ec(0x272)](_0x3452bc=>{const _0x55dee7=_0x3786ec,{unitID:_0x327960,objectID:_0x397d2d,actions:_0x1a0a2e}=_0x3452bc,_0x35caad=_0x73cdcc[_0x55dee7(0x420)](_0xdb6617=>_0xdb6617[_0x55dee7(0x2ea)]===_0x327960&&_0xdb6617[_0x55dee7(0x1c5)]===_0x397d2d),_0x50f859=_0x1a0a2e[_0x55dee7(0x272)](_0x2eaff8=>_0x35caad==null?void 0x0:_0x35caad[_0x55dee7(0x168)][_0x55dee7(0x420)](_0x20111d=>_0x20111d[_0x55dee7(0x3f5)]===_0x2eaff8))[_0x55dee7(0x303)](_0x15ce80=>!!_0x15ce80);return{'config':_0x3452bc,'result':{'actions':_0x50f859,'error':_0x4fbe51[_0x55dee7(0x395)]}};});}})}));}['_getAPIPrefixPath'](){const _0x212535=_0x5a89b4;var _0x3ef5f4,_0x4df8a3;const _0x4bf809=this['_configService']['getConfig'](bn),_0x1b8145=this[_0x212535(0x162)]['getConfig'](ee);return(_0x4df8a3=(_0x3ef5f4=_0x1b8145==null?void 0x0:_0x1b8145[_0x212535(0x5f9)])!=null?_0x3ef5f4:_0x4bf809)!=null?_0x4df8a3:rr;}async[_0x5a89b4(0x167)](_0x2ef5ff){const _0x5ac152=_0x5a89b4,_0x1ac645=this[_0x5ac152(0x3dc)]()+'/'+_0x2ef5ff[_0x5ac152(0x327)]+'/object';return(await this[_0x5ac152(0x3f6)][_0x5ac152(0x38f)](_0x1ac645,{'body':_0x2ef5ff}))[_0x5ac152(0x491)][_0x5ac152(0x1c5)]||'';}async[_0x5a89b4(0x26a)](_0x4ad174){const _0x129da4=_0x5a89b4,_0x16d30a=this[_0x129da4(0x3dc)]()+_0x129da4(0x332);return(await this[_0x129da4(0x3f6)][_0x129da4(0x38f)](_0x16d30a,{'body':_0x4ad174}))[_0x129da4(0x491)][_0x129da4(0x5d0)];}async[_0x5a89b4(0x364)](_0x5d6b28){const _0x5d0b34=_0x5a89b4,_0x1b5835=this[_0x5d0b34(0x3dc)]()+'/'+_0x5d6b28['objectType']+_0x5d0b34(0x4d6)+_0x5d6b28[_0x5d0b34(0x1c5)];await this['_HTTPService'][_0x5d0b34(0x599)](_0x1b5835,{'body':_0x5d6b28});}async['allowed'](_0x321b88){const _0x2e03cc=_0x5a89b4,_0x18ef3c=this[_0x2e03cc(0x3dc)]()+'/'+_0x321b88[_0x2e03cc(0x327)]+'/object/'+_0x321b88[_0x2e03cc(0x1c5)]+_0x2e03cc(0x1ed);return(await this[_0x2e03cc(0x3f6)][_0x2e03cc(0x38f)](_0x18ef3c,{'body':_0x321b88}))[_0x2e03cc(0x491)]['actions'];}async[_0x5a89b4(0x3d2)](_0x2ea961){const _0x10a76c=_0x5a89b4,_0x4286d0=this['_getAPIPrefixPath']()+_0x10a76c(0x3c6);return(await this['_HTTPService']['post'](_0x4286d0,{'body':{'requests':_0x2ea961}}))[_0x10a76c(0x491)][_0x10a76c(0x212)];}async[_0x5a89b4(0x419)](_0x2e8b94){const _0x137c02=_0x5a89b4,_0x40b1a6=this[_0x137c02(0x3dc)]()+'/'+_0x2e8b94['objectType']+_0x137c02(0x47e),_0x26fd2f=await this[_0x137c02(0x3f6)]['post'](_0x40b1a6,{'body':_0x2e8b94});return{'roles':_0x26fd2f[_0x137c02(0x491)]['roles'],'actions':_0x26fd2f[_0x137c02(0x491)][_0x137c02(0x168)]};}async[_0x5a89b4(0x169)](_0xaa141b){const _0x417c4a=_0x5a89b4,_0x33498e=this['_getAPIPrefixPath']()+'/collaborator';await this[_0x417c4a(0x3f6)]['delete'](_0x33498e,{'params':{'collaboratorID':_0xaa141b[_0x417c4a(0x310)],'objectID':_0xaa141b[_0x417c4a(0x1c5)],'unitID':_0xaa141b[_0x417c4a(0x2ea)]}});}async[_0x5a89b4(0x46d)](_0x12ddeb){const _0xc02977=_0x5a89b4,_0x3bc563=this[_0xc02977(0x3dc)]()+'/collaborator';await this[_0xc02977(0x3f6)][_0xc02977(0x488)](_0x3bc563,{'body':_0x12ddeb});}async[_0x5a89b4(0x201)](_0x59f374){const _0x2541cf=_0x5a89b4,_0x575f20=this[_0x2541cf(0x3dc)]()+_0x2541cf(0x397);await this['_HTTPService'][_0x2541cf(0x38f)](_0x575f20,{'body':_0x59f374});}async['listCollaborators'](_0x1343d8){const _0x21cd12=_0x5a89b4,_0x3d38ee=this['_getAPIPrefixPath']()+_0x21cd12(0x397);return(await this['_HTTPService'][_0x21cd12(0x58d)](_0x3d38ee,{'params':{'objectID':_0x1343d8[_0x21cd12(0x1c5)],'unitID':_0x1343d8[_0x21cd12(0x2ea)]}}))[_0x21cd12(0x491)]['collaborators'];}async[_0x5a89b4(0x22d)](_0x5aada2){const _0x3f2932=_0x5a89b4,_0x469943=this[_0x3f2932(0x3dc)]()+_0x3f2932(0x397);await this[_0x3f2932(0x3f6)][_0x3f2932(0x599)](_0x469943,{'body':_0x5aada2});}},exports['AuthzIoHttpService']=sr([Bt(0x0,a[_0x5a89b4(0x3d5)](J[_0x5a89b4(0x294)])),Bt(0x1,a['Inject'](a['IConfigService']))],exports[_0x5a89b4(0x185)]);var Tn={'exports':{}};function or(_0x105dcd){const _0x584c00=_0x5a89b4;throw new Error('Could\x20not\x20dynamically\x20require\x20\x22'+_0x105dcd+_0x584c00(0x257));}var ct={'exports':{}},Wt;function oe(){return Wt||(Wt=0x1,function(_0x1fb39e,_0x5118bb){(function(_0xe8b257,_0x1dacc3){const _0xe944e8=_0x4da2;_0x1fb39e[_0xe944e8(0x175)]=_0x1dacc3();}(X,function(){var _0x4238fb=_0x4238fb||function(_0x4ea1b4,_0x2e6a55){const _0x42f405=_0x4da2;var _0x4ab44e;if(typeof window<'u'&&window[_0x42f405(0x298)]&&(_0x4ab44e=window[_0x42f405(0x298)]),typeof self<'u'&&self[_0x42f405(0x298)]&&(_0x4ab44e=self[_0x42f405(0x298)]),typeof globalThis<'u'&&globalThis[_0x42f405(0x298)]&&(_0x4ab44e=globalThis[_0x42f405(0x298)]),!_0x4ab44e&&typeof window<'u'&&window[_0x42f405(0x476)]&&(_0x4ab44e=window[_0x42f405(0x476)]),!_0x4ab44e&&typeof X<'u'&&X[_0x42f405(0x298)]&&(_0x4ab44e=X[_0x42f405(0x298)]),!_0x4ab44e&&typeof or==_0x42f405(0x205))try{_0x4ab44e=require(_0x42f405(0x298));}catch{}var _0x24a152=function(){const _0xcc1e24=_0x42f405;if(_0x4ab44e){if(typeof _0x4ab44e[_0xcc1e24(0x25b)]==_0xcc1e24(0x205))try{return _0x4ab44e['getRandomValues'](new Uint32Array(0x1))[0x0];}catch{}if(typeof _0x4ab44e[_0xcc1e24(0x590)]==_0xcc1e24(0x205))try{return _0x4ab44e[_0xcc1e24(0x590)](0x4)[_0xcc1e24(0x501)]();}catch{}}throw new Error(_0xcc1e24(0x1d7));},_0xcb5cfb=Object['create']||(function(){function _0x2408f6(){}return function(_0x4d4d27){const _0x57db4e=_0x4da2;var _0x383011;return _0x2408f6[_0x57db4e(0x3af)]=_0x4d4d27,_0x383011=new _0x2408f6(),_0x2408f6['prototype']=null,_0x383011;};}()),_0x4622d0={},_0x297a1d=_0x4622d0['lib']={},_0x28320e=_0x297a1d[_0x42f405(0x28d)]=(function(){return{'extend':function(_0x3b65ff){const _0x4a6054=_0x4da2;var _0x394e18=_0xcb5cfb(this);return _0x3b65ff&&_0x394e18[_0x4a6054(0x331)](_0x3b65ff),(!_0x394e18[_0x4a6054(0x431)](_0x4a6054(0x28e))||this[_0x4a6054(0x28e)]===_0x394e18[_0x4a6054(0x28e)])&&(_0x394e18[_0x4a6054(0x28e)]=function(){const _0x291eb2=_0x4a6054;_0x394e18[_0x291eb2(0x60b)][_0x291eb2(0x28e)][_0x291eb2(0x2b9)](this,arguments);}),_0x394e18['init'][_0x4a6054(0x3af)]=_0x394e18,_0x394e18[_0x4a6054(0x60b)]=this,_0x394e18;},'create':function(){const _0x4c20de=_0x4da2;var _0x100f88=this['extend']();return _0x100f88[_0x4c20de(0x28e)][_0x4c20de(0x2b9)](_0x100f88,arguments),_0x100f88;},'init':function(){},'mixIn':function(_0x1009df){const _0x16bfde=_0x4da2;for(var _0x344904 in _0x1009df)_0x1009df['hasOwnProperty'](_0x344904)&&(this[_0x344904]=_0x1009df[_0x344904]);_0x1009df['hasOwnProperty']('toString')&&(this[_0x16bfde(0x54b)]=_0x1009df[_0x16bfde(0x54b)]);},'clone':function(){const _0x53af65=_0x4da2;return this[_0x53af65(0x28e)][_0x53af65(0x3af)]['extend'](this);}};}()),_0x44454b=_0x297a1d[_0x42f405(0x3da)]=_0x28320e['extend']({'init':function(_0x15ebd5,_0x2bdc0b){const _0x2f939f=_0x42f405;_0x15ebd5=this[_0x2f939f(0x406)]=_0x15ebd5||[],_0x2bdc0b!=_0x2e6a55?this[_0x2f939f(0x5ad)]=_0x2bdc0b:this[_0x2f939f(0x5ad)]=_0x15ebd5[_0x2f939f(0x554)]*0x4;},'toString':function(_0x7139b8){const _0x1346c1=_0x42f405;return(_0x7139b8||_0x389a31)[_0x1346c1(0x456)](this);},'concat':function(_0x610742){const _0x172752=_0x42f405;var _0x5cb68b=this['words'],_0x5964c2=_0x610742['words'],_0x1f98ad=this[_0x172752(0x5ad)],_0x3c0178=_0x610742['sigBytes'];if(this[_0x172752(0x3bc)](),_0x1f98ad%0x4)for(var _0x22ccbe=0x0;_0x22ccbe<_0x3c0178;_0x22ccbe++){var _0x391761=_0x5964c2[_0x22ccbe>>>0x2]>>>0x18-_0x22ccbe%0x4*0x8&0xff;_0x5cb68b[_0x1f98ad+_0x22ccbe>>>0x2]|=_0x391761<<0x18-(_0x1f98ad+_0x22ccbe)%0x4*0x8;}else{for(var _0x30e202=0x0;_0x30e202<_0x3c0178;_0x30e202+=0x4)_0x5cb68b[_0x1f98ad+_0x30e202>>>0x2]=_0x5964c2[_0x30e202>>>0x2];}return this[_0x172752(0x5ad)]+=_0x3c0178,this;},'clamp':function(){const _0x263567=_0x42f405;var _0x2dcdff=this['words'],_0x243d50=this[_0x263567(0x5ad)];_0x2dcdff[_0x243d50>>>0x2]&=0xffffffff<<0x20-_0x243d50%0x4*0x8,_0x2dcdff['length']=_0x4ea1b4[_0x263567(0x40b)](_0x243d50/0x4);},'clone':function(){const _0x48ca82=_0x42f405;var _0x1c35fe=_0x28320e['clone'][_0x48ca82(0x35a)](this);return _0x1c35fe['words']=this[_0x48ca82(0x406)]['slice'](0x0),_0x1c35fe;},'random':function(_0x570499){const _0x468043=_0x42f405;for(var _0x3fc447=[],_0x27a0b3=0x0;_0x27a0b3<_0x570499;_0x27a0b3+=0x4)_0x3fc447[_0x468043(0x1d0)](_0x24a152());return new _0x44454b[(_0x468043(0x28e))](_0x3fc447,_0x570499);}}),_0x306f69=_0x4622d0[_0x42f405(0x32a)]={},_0x389a31=_0x306f69[_0x42f405(0x27f)]={'stringify':function(_0x559ff1){const _0x248e5f=_0x42f405;for(var _0x49ee50=_0x559ff1[_0x248e5f(0x406)],_0x534187=_0x559ff1['sigBytes'],_0x222fd0=[],_0x1ba56a=0x0;_0x1ba56a<_0x534187;_0x1ba56a++){var _0x5194b=_0x49ee50[_0x1ba56a>>>0x2]>>>0x18-_0x1ba56a%0x4*0x8&0xff;_0x222fd0[_0x248e5f(0x1d0)]((_0x5194b>>>0x4)[_0x248e5f(0x54b)](0x10)),_0x222fd0[_0x248e5f(0x1d0)]((_0x5194b&0xf)['toString'](0x10));}return _0x222fd0[_0x248e5f(0x1e7)]('');},'parse':function(_0x1c7de8){const _0x2aa6b9=_0x42f405;for(var _0x34f705=_0x1c7de8[_0x2aa6b9(0x554)],_0x19efe6=[],_0x57231a=0x0;_0x57231a<_0x34f705;_0x57231a+=0x2)_0x19efe6[_0x57231a>>>0x3]|=parseInt(_0x1c7de8[_0x2aa6b9(0x312)](_0x57231a,0x2),0x10)<<0x18-_0x57231a%0x8*0x4;return new _0x44454b[(_0x2aa6b9(0x28e))](_0x19efe6,_0x34f705/0x2);}},_0x4ba78e=_0x306f69['Latin1']={'stringify':function(_0x119ba5){const _0x3c8284=_0x42f405;for(var _0x308489=_0x119ba5['words'],_0x5c4883=_0x119ba5[_0x3c8284(0x5ad)],_0x316320=[],_0x4ed772=0x0;_0x4ed772<_0x5c4883;_0x4ed772++){var _0x3a2b8c=_0x308489[_0x4ed772>>>0x2]>>>0x18-_0x4ed772%0x4*0x8&0xff;_0x316320[_0x3c8284(0x1d0)](String[_0x3c8284(0x339)](_0x3a2b8c));}return _0x316320['join']('');},'parse':function(_0xecfc2f){const _0xcf2041=_0x42f405;for(var _0x351bfb=_0xecfc2f[_0xcf2041(0x554)],_0x428005=[],_0x3ab686=0x0;_0x3ab686<_0x351bfb;_0x3ab686++)_0x428005[_0x3ab686>>>0x2]|=(_0xecfc2f[_0xcf2041(0x279)](_0x3ab686)&0xff)<<0x18-_0x3ab686%0x4*0x8;return new _0x44454b[(_0xcf2041(0x28e))](_0x428005,_0x351bfb);}},_0x5ccd6e=_0x306f69[_0x42f405(0x213)]={'stringify':function(_0x2786ed){const _0x2ee3c3=_0x42f405;try{return decodeURIComponent(escape(_0x4ba78e['stringify'](_0x2786ed)));}catch{throw new Error(_0x2ee3c3(0x1eb));}},'parse':function(_0x5b9039){const _0x3218a1=_0x42f405;return _0x4ba78e[_0x3218a1(0x402)](unescape(encodeURIComponent(_0x5b9039)));}},_0x565922=_0x297a1d['BufferedBlockAlgorithm']=_0x28320e[_0x42f405(0x438)]({'reset':function(){const _0xcd9d03=_0x42f405;this[_0xcd9d03(0x176)]=new _0x44454b[(_0xcd9d03(0x28e))](),this[_0xcd9d03(0x36e)]=0x0;},'_append':function(_0x240369){const _0x4cb0af=_0x42f405;typeof _0x240369==_0x4cb0af(0x4ad)&&(_0x240369=_0x5ccd6e['parse'](_0x240369)),this[_0x4cb0af(0x176)]['concat'](_0x240369),this[_0x4cb0af(0x36e)]+=_0x240369['sigBytes'];},'_process':function(_0x49a1fc){const _0x1930c2=_0x42f405;var _0x50cfaa,_0x39b0ee=this['_data'],_0x4c793b=_0x39b0ee[_0x1930c2(0x406)],_0x3c2a33=_0x39b0ee[_0x1930c2(0x5ad)],_0x56f138=this[_0x1930c2(0x3f0)],_0x3ad7f7=_0x56f138*0x4,_0x57831d=_0x3c2a33/_0x3ad7f7;_0x49a1fc?_0x57831d=_0x4ea1b4[_0x1930c2(0x40b)](_0x57831d):_0x57831d=_0x4ea1b4['max']((_0x57831d|0x0)-this[_0x1930c2(0x2ec)],0x0);var _0x3f790a=_0x57831d*_0x56f138,_0x5d8a5b=_0x4ea1b4[_0x1930c2(0x17c)](_0x3f790a*0x4,_0x3c2a33);if(_0x3f790a){for(var _0x1742af=0x0;_0x1742af<_0x3f790a;_0x1742af+=_0x56f138)this['_doProcessBlock'](_0x4c793b,_0x1742af);_0x50cfaa=_0x4c793b['splice'](0x0,_0x3f790a),_0x39b0ee['sigBytes']-=_0x5d8a5b;}return new _0x44454b[(_0x1930c2(0x28e))](_0x50cfaa,_0x5d8a5b);},'clone':function(){const _0x183300=_0x42f405;var _0x1f07aa=_0x28320e[_0x183300(0x5b6)][_0x183300(0x35a)](this);return _0x1f07aa['_data']=this[_0x183300(0x176)][_0x183300(0x5b6)](),_0x1f07aa;},'_minBufferSize':0x0});_0x297a1d['Hasher']=_0x565922[_0x42f405(0x438)]({'cfg':_0x28320e[_0x42f405(0x438)](),'init':function(_0x577177){const _0x2faae1=_0x42f405;this['cfg']=this[_0x2faae1(0x3bf)][_0x2faae1(0x438)](_0x577177),this[_0x2faae1(0x529)]();},'reset':function(){const _0x4de2d9=_0x42f405;_0x565922[_0x4de2d9(0x529)][_0x4de2d9(0x35a)](this),this['_doReset']();},'update':function(_0x5686d5){const _0x1ce443=_0x42f405;return this[_0x1ce443(0x5ce)](_0x5686d5),this[_0x1ce443(0x2c0)](),this;},'finalize':function(_0x3c95dd){const _0x5c8159=_0x42f405;_0x3c95dd&&this[_0x5c8159(0x5ce)](_0x3c95dd);var _0x2cec05=this[_0x5c8159(0x54f)]();return _0x2cec05;},'blockSize':0x10,'_createHelper':function(_0x32b790){return function(_0x1f2d4c,_0x463fdd){const _0x4f92f9=_0x4da2;return new _0x32b790['init'](_0x463fdd)[_0x4f92f9(0x1a0)](_0x1f2d4c);};},'_createHmacHelper':function(_0x11c496){return function(_0x305f60,_0x591bb4){const _0x5216e4=_0x4da2;return new _0x158ce4[(_0x5216e4(0x2e1))][(_0x5216e4(0x28e))](_0x11c496,_0x591bb4)[_0x5216e4(0x1a0)](_0x305f60);};}});var _0x158ce4=_0x4622d0[_0x42f405(0x2e8)]={};return _0x4622d0;}(Math);return _0x4238fb;}));}(ct)),ct['exports'];}var Rn={'exports':{}};(function(_0x34f5df,_0x4cc23e){(function(_0x25c462,_0x3b858f){const _0x400c78=_0x4da2;_0x34f5df[_0x400c78(0x175)]=_0x3b858f(oe());}(X,function(_0x7c3eba){const _0x3c1206=_0x4da2;return(function(){const _0x233175=_0x4da2;var _0x5922cf=_0x7c3eba,_0x20eee6=_0x5922cf[_0x233175(0x241)],_0xd8b718=_0x20eee6[_0x233175(0x3da)],_0x373d66=_0x5922cf[_0x233175(0x32a)];_0x373d66[_0x233175(0x282)]={'stringify':function(_0x26cd5e){const _0x4a2936=_0x233175;var _0x42ad75=_0x26cd5e[_0x4a2936(0x406)],_0x20ed9c=_0x26cd5e[_0x4a2936(0x5ad)],_0x47edd4=this[_0x4a2936(0x40e)];_0x26cd5e[_0x4a2936(0x3bc)]();for(var _0x56a9cf=[],_0x1b2e03=0x0;_0x1b2e03<_0x20ed9c;_0x1b2e03+=0x3)for(var _0x3c9195=_0x42ad75[_0x1b2e03>>>0x2]>>>0x18-_0x1b2e03%0x4*0x8&0xff,_0x347356=_0x42ad75[_0x1b2e03+0x1>>>0x2]>>>0x18-(_0x1b2e03+0x1)%0x4*0x8&0xff,_0x2ef36b=_0x42ad75[_0x1b2e03+0x2>>>0x2]>>>0x18-(_0x1b2e03+0x2)%0x4*0x8&0xff,_0x1ca1db=_0x3c9195<<0x10|_0x347356<<0x8|_0x2ef36b,_0x14849f=0x0;_0x14849f<0x4&&_0x1b2e03+_0x14849f*0.75<_0x20ed9c;_0x14849f++)_0x56a9cf['push'](_0x47edd4[_0x4a2936(0x4a1)](_0x1ca1db>>>0x6*(0x3-_0x14849f)&0x3f));var _0x3c854f=_0x47edd4['charAt'](0x40);if(_0x3c854f){for(;_0x56a9cf[_0x4a2936(0x554)]%0x4;)_0x56a9cf[_0x4a2936(0x1d0)](_0x3c854f);}return _0x56a9cf[_0x4a2936(0x1e7)]('');},'parse':function(_0x2270d6){const _0x4a2b98=_0x233175;var _0x3d9dd4=_0x2270d6[_0x4a2b98(0x554)],_0x150f14=this['_map'],_0x1d1853=this[_0x4a2b98(0x443)];if(!_0x1d1853){_0x1d1853=this[_0x4a2b98(0x443)]=[];for(var _0x46f4e5=0x0;_0x46f4e5<_0x150f14[_0x4a2b98(0x554)];_0x46f4e5++)_0x1d1853[_0x150f14[_0x4a2b98(0x279)](_0x46f4e5)]=_0x46f4e5;}var _0x4345b3=_0x150f14[_0x4a2b98(0x4a1)](0x40);if(_0x4345b3){var _0x5d7c49=_0x2270d6['indexOf'](_0x4345b3);_0x5d7c49!==-0x1&&(_0x3d9dd4=_0x5d7c49);}return _0x9863ae(_0x2270d6,_0x3d9dd4,_0x1d1853);},'_map':'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='};function _0x9863ae(_0x17fe88,_0x4b5cb5,_0xd2818c){const _0x211339=_0x233175;for(var _0x537895=[],_0x4ae821=0x0,_0x3d8bc7=0x0;_0x3d8bc7<_0x4b5cb5;_0x3d8bc7++)if(_0x3d8bc7%0x4){var _0x52d667=_0xd2818c[_0x17fe88[_0x211339(0x279)](_0x3d8bc7-0x1)]<<_0x3d8bc7%0x4*0x2,_0x3d3dc2=_0xd2818c[_0x17fe88[_0x211339(0x279)](_0x3d8bc7)]>>>0x6-_0x3d8bc7%0x4*0x2,_0x43c691=_0x52d667|_0x3d3dc2;_0x537895[_0x4ae821>>>0x2]|=_0x43c691<<0x18-_0x4ae821%0x4*0x8,_0x4ae821++;}return _0xd8b718[_0x211339(0x167)](_0x537895,_0x4ae821);}}()),_0x7c3eba[_0x3c1206(0x32a)][_0x3c1206(0x282)];}));}(Rn));var yn=Rn['exports'];const Ft=xe(yn);var lt={'exports':{}},Vt;function ar(){const _0x4edd3f=_0x5a89b4;return Vt||(Vt=0x1,function(_0x5cdbf0,_0x496e49){(function(_0x57c122,_0xb43b77){_0x5cdbf0['exports']=_0xb43b77(oe());}(X,function(_0x309557){return function(_0x2d323a){const _0x1b1c22=_0x4da2;var _0x1050bc=_0x309557,_0x5d5d72=_0x1050bc[_0x1b1c22(0x241)],_0x430f76=_0x5d5d72[_0x1b1c22(0x3da)],_0x2c702d=_0x5d5d72[_0x1b1c22(0x3b1)],_0x1b11d4=_0x1050bc[_0x1b1c22(0x2e8)],_0x4411a1=[];(function(){const _0xe22227=_0x1b1c22;for(var _0x447f06=0x0;_0x447f06<0x40;_0x447f06++)_0x4411a1[_0x447f06]=_0x2d323a[_0xe22227(0x4bc)](_0x2d323a[_0xe22227(0x36f)](_0x447f06+0x1))*0x100000000|0x0;}());var _0x1df17a=_0x1b11d4[_0x1b1c22(0x20b)]=_0x2c702d['extend']({'_doReset':function(){const _0x1c3959=_0x1b1c22;this[_0x1c3959(0x21a)]=new _0x430f76['init']([0x67452301,0xefcdab89,0x98badcfe,0x10325476]);},'_doProcessBlock':function(_0x3f6033,_0x524a17){const _0x47a03c=_0x1b1c22;for(var _0x33e35d=0x0;_0x33e35d<0x10;_0x33e35d++){var _0x395df8=_0x524a17+_0x33e35d,_0x5e3464=_0x3f6033[_0x395df8];_0x3f6033[_0x395df8]=(_0x5e3464<<0x8|_0x5e3464>>>0x18)&0xff00ff|(_0x5e3464<<0x18|_0x5e3464>>>0x8)&0xff00ff00;}var _0x203019=this[_0x47a03c(0x21a)][_0x47a03c(0x406)],_0xc27ccd=_0x3f6033[_0x524a17+0x0],_0x15bf29=_0x3f6033[_0x524a17+0x1],_0x3e32f4=_0x3f6033[_0x524a17+0x2],_0xdc6680=_0x3f6033[_0x524a17+0x3],_0x36b965=_0x3f6033[_0x524a17+0x4],_0x4d1505=_0x3f6033[_0x524a17+0x5],_0xfb7fe9=_0x3f6033[_0x524a17+0x6],_0x5551b8=_0x3f6033[_0x524a17+0x7],_0x219a30=_0x3f6033[_0x524a17+0x8],_0x2ba7c6=_0x3f6033[_0x524a17+0x9],_0x53e5bc=_0x3f6033[_0x524a17+0xa],_0x279ccd=_0x3f6033[_0x524a17+0xb],_0x1157ff=_0x3f6033[_0x524a17+0xc],_0x19218e=_0x3f6033[_0x524a17+0xd],_0x3b504d=_0x3f6033[_0x524a17+0xe],_0x5b4aea=_0x3f6033[_0x524a17+0xf],_0x51885a=_0x203019[0x0],_0x1bcfab=_0x203019[0x1],_0x32534e=_0x203019[0x2],_0x4cb1f2=_0x203019[0x3];_0x51885a=_0x2a34f5(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0xc27ccd,0x7,_0x4411a1[0x0]),_0x4cb1f2=_0x2a34f5(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x15bf29,0xc,_0x4411a1[0x1]),_0x32534e=_0x2a34f5(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x3e32f4,0x11,_0x4411a1[0x2]),_0x1bcfab=_0x2a34f5(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0xdc6680,0x16,_0x4411a1[0x3]),_0x51885a=_0x2a34f5(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x36b965,0x7,_0x4411a1[0x4]),_0x4cb1f2=_0x2a34f5(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x4d1505,0xc,_0x4411a1[0x5]),_0x32534e=_0x2a34f5(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0xfb7fe9,0x11,_0x4411a1[0x6]),_0x1bcfab=_0x2a34f5(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x5551b8,0x16,_0x4411a1[0x7]),_0x51885a=_0x2a34f5(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x219a30,0x7,_0x4411a1[0x8]),_0x4cb1f2=_0x2a34f5(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x2ba7c6,0xc,_0x4411a1[0x9]),_0x32534e=_0x2a34f5(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x53e5bc,0x11,_0x4411a1[0xa]),_0x1bcfab=_0x2a34f5(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x279ccd,0x16,_0x4411a1[0xb]),_0x51885a=_0x2a34f5(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x1157ff,0x7,_0x4411a1[0xc]),_0x4cb1f2=_0x2a34f5(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x19218e,0xc,_0x4411a1[0xd]),_0x32534e=_0x2a34f5(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x3b504d,0x11,_0x4411a1[0xe]),_0x1bcfab=_0x2a34f5(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x5b4aea,0x16,_0x4411a1[0xf]),_0x51885a=_0x5c49fa(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x15bf29,0x5,_0x4411a1[0x10]),_0x4cb1f2=_0x5c49fa(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0xfb7fe9,0x9,_0x4411a1[0x11]),_0x32534e=_0x5c49fa(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x279ccd,0xe,_0x4411a1[0x12]),_0x1bcfab=_0x5c49fa(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0xc27ccd,0x14,_0x4411a1[0x13]),_0x51885a=_0x5c49fa(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x4d1505,0x5,_0x4411a1[0x14]),_0x4cb1f2=_0x5c49fa(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x53e5bc,0x9,_0x4411a1[0x15]),_0x32534e=_0x5c49fa(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x5b4aea,0xe,_0x4411a1[0x16]),_0x1bcfab=_0x5c49fa(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x36b965,0x14,_0x4411a1[0x17]),_0x51885a=_0x5c49fa(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x2ba7c6,0x5,_0x4411a1[0x18]),_0x4cb1f2=_0x5c49fa(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x3b504d,0x9,_0x4411a1[0x19]),_0x32534e=_0x5c49fa(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0xdc6680,0xe,_0x4411a1[0x1a]),_0x1bcfab=_0x5c49fa(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x219a30,0x14,_0x4411a1[0x1b]),_0x51885a=_0x5c49fa(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x19218e,0x5,_0x4411a1[0x1c]),_0x4cb1f2=_0x5c49fa(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x3e32f4,0x9,_0x4411a1[0x1d]),_0x32534e=_0x5c49fa(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x5551b8,0xe,_0x4411a1[0x1e]),_0x1bcfab=_0x5c49fa(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x1157ff,0x14,_0x4411a1[0x1f]),_0x51885a=_0x48a6d6(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x4d1505,0x4,_0x4411a1[0x20]),_0x4cb1f2=_0x48a6d6(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x219a30,0xb,_0x4411a1[0x21]),_0x32534e=_0x48a6d6(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x279ccd,0x10,_0x4411a1[0x22]),_0x1bcfab=_0x48a6d6(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x3b504d,0x17,_0x4411a1[0x23]),_0x51885a=_0x48a6d6(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x15bf29,0x4,_0x4411a1[0x24]),_0x4cb1f2=_0x48a6d6(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x36b965,0xb,_0x4411a1[0x25]),_0x32534e=_0x48a6d6(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x5551b8,0x10,_0x4411a1[0x26]),_0x1bcfab=_0x48a6d6(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x53e5bc,0x17,_0x4411a1[0x27]),_0x51885a=_0x48a6d6(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x19218e,0x4,_0x4411a1[0x28]),_0x4cb1f2=_0x48a6d6(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0xc27ccd,0xb,_0x4411a1[0x29]),_0x32534e=_0x48a6d6(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0xdc6680,0x10,_0x4411a1[0x2a]),_0x1bcfab=_0x48a6d6(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0xfb7fe9,0x17,_0x4411a1[0x2b]),_0x51885a=_0x48a6d6(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x2ba7c6,0x4,_0x4411a1[0x2c]),_0x4cb1f2=_0x48a6d6(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x1157ff,0xb,_0x4411a1[0x2d]),_0x32534e=_0x48a6d6(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x5b4aea,0x10,_0x4411a1[0x2e]),_0x1bcfab=_0x48a6d6(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x3e32f4,0x17,_0x4411a1[0x2f]),_0x51885a=_0x4fa3cf(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0xc27ccd,0x6,_0x4411a1[0x30]),_0x4cb1f2=_0x4fa3cf(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x5551b8,0xa,_0x4411a1[0x31]),_0x32534e=_0x4fa3cf(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x3b504d,0xf,_0x4411a1[0x32]),_0x1bcfab=_0x4fa3cf(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x4d1505,0x15,_0x4411a1[0x33]),_0x51885a=_0x4fa3cf(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x1157ff,0x6,_0x4411a1[0x34]),_0x4cb1f2=_0x4fa3cf(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0xdc6680,0xa,_0x4411a1[0x35]),_0x32534e=_0x4fa3cf(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x53e5bc,0xf,_0x4411a1[0x36]),_0x1bcfab=_0x4fa3cf(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x15bf29,0x15,_0x4411a1[0x37]),_0x51885a=_0x4fa3cf(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x219a30,0x6,_0x4411a1[0x38]),_0x4cb1f2=_0x4fa3cf(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x5b4aea,0xa,_0x4411a1[0x39]),_0x32534e=_0x4fa3cf(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0xfb7fe9,0xf,_0x4411a1[0x3a]),_0x1bcfab=_0x4fa3cf(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x19218e,0x15,_0x4411a1[0x3b]),_0x51885a=_0x4fa3cf(_0x51885a,_0x1bcfab,_0x32534e,_0x4cb1f2,_0x36b965,0x6,_0x4411a1[0x3c]),_0x4cb1f2=_0x4fa3cf(_0x4cb1f2,_0x51885a,_0x1bcfab,_0x32534e,_0x279ccd,0xa,_0x4411a1[0x3d]),_0x32534e=_0x4fa3cf(_0x32534e,_0x4cb1f2,_0x51885a,_0x1bcfab,_0x3e32f4,0xf,_0x4411a1[0x3e]),_0x1bcfab=_0x4fa3cf(_0x1bcfab,_0x32534e,_0x4cb1f2,_0x51885a,_0x2ba7c6,0x15,_0x4411a1[0x3f]),_0x203019[0x0]=_0x203019[0x0]+_0x51885a|0x0,_0x203019[0x1]=_0x203019[0x1]+_0x1bcfab|0x0,_0x203019[0x2]=_0x203019[0x2]+_0x32534e|0x0,_0x203019[0x3]=_0x203019[0x3]+_0x4cb1f2|0x0;},'_doFinalize':function(){const _0x1e74da=_0x1b1c22;var _0x241016=this[_0x1e74da(0x176)],_0x35720f=_0x241016[_0x1e74da(0x406)],_0x5be135=this[_0x1e74da(0x36e)]*0x8,_0x112bb2=_0x241016[_0x1e74da(0x5ad)]*0x8;_0x35720f[_0x112bb2>>>0x5]|=0x80<<0x18-_0x112bb2%0x20;var _0x46e672=_0x2d323a[_0x1e74da(0x411)](_0x5be135/0x100000000),_0x2c8daa=_0x5be135;_0x35720f[(_0x112bb2+0x40>>>0x9<<0x4)+0xf]=(_0x46e672<<0x8|_0x46e672>>>0x18)&0xff00ff|(_0x46e672<<0x18|_0x46e672>>>0x8)&0xff00ff00,_0x35720f[(_0x112bb2+0x40>>>0x9<<0x4)+0xe]=(_0x2c8daa<<0x8|_0x2c8daa>>>0x18)&0xff00ff|(_0x2c8daa<<0x18|_0x2c8daa>>>0x8)&0xff00ff00,_0x241016[_0x1e74da(0x5ad)]=(_0x35720f['length']+0x1)*0x4,this[_0x1e74da(0x2c0)]();for(var _0x4d77b2=this[_0x1e74da(0x21a)],_0x30e502=_0x4d77b2['words'],_0x56a755=0x0;_0x56a755<0x4;_0x56a755++){var _0x4727b1=_0x30e502[_0x56a755];_0x30e502[_0x56a755]=(_0x4727b1<<0x8|_0x4727b1>>>0x18)&0xff00ff|(_0x4727b1<<0x18|_0x4727b1>>>0x8)&0xff00ff00;}return _0x4d77b2;},'clone':function(){const _0x202656=_0x1b1c22;var _0x3e47eb=_0x2c702d['clone']['call'](this);return _0x3e47eb['_hash']=this[_0x202656(0x21a)][_0x202656(0x5b6)](),_0x3e47eb;}});function _0x2a34f5(_0x31c1f4,_0x3ac772,_0x142462,_0x13694c,_0x2c1efd,_0x4d5b9d,_0x4f7938){var _0x159aa2=_0x31c1f4+(_0x3ac772&_0x142462|~_0x3ac772&_0x13694c)+_0x2c1efd+_0x4f7938;return(_0x159aa2<<_0x4d5b9d|_0x159aa2>>>0x20-_0x4d5b9d)+_0x3ac772;}function _0x5c49fa(_0x1c4ae7,_0x429e94,_0x571411,_0x2f32e9,_0x55af48,_0x30414a,_0x3fb0aa){var _0x2022c0=_0x1c4ae7+(_0x429e94&_0x2f32e9|_0x571411&~_0x2f32e9)+_0x55af48+_0x3fb0aa;return(_0x2022c0<<_0x30414a|_0x2022c0>>>0x20-_0x30414a)+_0x429e94;}function _0x48a6d6(_0x111a22,_0x2814c9,_0xe386d,_0x320bbe,_0x3267e1,_0x35b137,_0x27a215){var _0x118421=_0x111a22+(_0x2814c9^_0xe386d^_0x320bbe)+_0x3267e1+_0x27a215;return(_0x118421<<_0x35b137|_0x118421>>>0x20-_0x35b137)+_0x2814c9;}function _0x4fa3cf(_0x3965dc,_0x62e44f,_0x3fb95d,_0x2ae973,_0x2a11c2,_0xcb5b76,_0x215b21){var _0x387ea6=_0x3965dc+(_0x3fb95d^(_0x62e44f|~_0x2ae973))+_0x2a11c2+_0x215b21;return(_0x387ea6<<_0xcb5b76|_0x387ea6>>>0x20-_0xcb5b76)+_0x62e44f;}_0x1050bc[_0x1b1c22(0x20b)]=_0x2c702d[_0x1b1c22(0x34e)](_0x1df17a),_0x1050bc[_0x1b1c22(0x15d)]=_0x2c702d[_0x1b1c22(0x49b)](_0x1df17a);}(Math),_0x309557['MD5'];}));}(lt)),lt[_0x4edd3f(0x175)];}var ht={'exports':{}},_t={'exports':{}},Gt;function cr(){const _0x403364=_0x5a89b4;return Gt||(Gt=0x1,function(_0x44175d,_0x14483c){(function(_0x3611e9,_0x5b1b23){const _0x486c74=_0x4da2;_0x44175d[_0x486c74(0x175)]=_0x5b1b23(oe());}(X,function(_0x4f4465){const _0x508e1a=_0x4da2;return(function(){const _0x2f624b=_0x4da2;var _0x4bb3f8=_0x4f4465,_0x12120c=_0x4bb3f8[_0x2f624b(0x241)],_0x49fe05=_0x12120c[_0x2f624b(0x3da)],_0x4741bb=_0x12120c[_0x2f624b(0x3b1)],_0x544238=_0x4bb3f8[_0x2f624b(0x2e8)],_0x3e9e5e=[],_0x43640f=_0x544238[_0x2f624b(0x156)]=_0x4741bb[_0x2f624b(0x438)]({'_doReset':function(){const _0x77f2b5=_0x2f624b;this[_0x77f2b5(0x21a)]=new _0x49fe05[(_0x77f2b5(0x28e))]([0x67452301,0xefcdab89,0x98badcfe,0x10325476,0xc3d2e1f0]);},'_doProcessBlock':function(_0x2524a2,_0x1a8f39){const _0x3fa00c=_0x2f624b;for(var _0x101764=this[_0x3fa00c(0x21a)][_0x3fa00c(0x406)],_0x429f46=_0x101764[0x0],_0x3857b1=_0x101764[0x1],_0x1cbb4d=_0x101764[0x2],_0x5eebf5=_0x101764[0x3],_0x321bfb=_0x101764[0x4],_0xe1d8ad=0x0;_0xe1d8ad<0x50;_0xe1d8ad++){if(_0xe1d8ad<0x10)_0x3e9e5e[_0xe1d8ad]=_0x2524a2[_0x1a8f39+_0xe1d8ad]|0x0;else{var _0x3fc6e1=_0x3e9e5e[_0xe1d8ad-0x3]^_0x3e9e5e[_0xe1d8ad-0x8]^_0x3e9e5e[_0xe1d8ad-0xe]^_0x3e9e5e[_0xe1d8ad-0x10];_0x3e9e5e[_0xe1d8ad]=_0x3fc6e1<<0x1|_0x3fc6e1>>>0x1f;}var _0x4caf74=(_0x429f46<<0x5|_0x429f46>>>0x1b)+_0x321bfb+_0x3e9e5e[_0xe1d8ad];_0xe1d8ad<0x14?_0x4caf74+=(_0x3857b1&_0x1cbb4d|~_0x3857b1&_0x5eebf5)+0x5a827999:_0xe1d8ad<0x28?_0x4caf74+=(_0x3857b1^_0x1cbb4d^_0x5eebf5)+0x6ed9eba1:_0xe1d8ad<0x3c?_0x4caf74+=(_0x3857b1&_0x1cbb4d|_0x3857b1&_0x5eebf5|_0x1cbb4d&_0x5eebf5)-0x70e44324:_0x4caf74+=(_0x3857b1^_0x1cbb4d^_0x5eebf5)-0x359d3e2a,_0x321bfb=_0x5eebf5,_0x5eebf5=_0x1cbb4d,_0x1cbb4d=_0x3857b1<<0x1e|_0x3857b1>>>0x2,_0x3857b1=_0x429f46,_0x429f46=_0x4caf74;}_0x101764[0x0]=_0x101764[0x0]+_0x429f46|0x0,_0x101764[0x1]=_0x101764[0x1]+_0x3857b1|0x0,_0x101764[0x2]=_0x101764[0x2]+_0x1cbb4d|0x0,_0x101764[0x3]=_0x101764[0x3]+_0x5eebf5|0x0,_0x101764[0x4]=_0x101764[0x4]+_0x321bfb|0x0;},'_doFinalize':function(){const _0x1066b9=_0x2f624b;var _0x2d2610=this[_0x1066b9(0x176)],_0xcd30eb=_0x2d2610[_0x1066b9(0x406)],_0x2c2f00=this[_0x1066b9(0x36e)]*0x8,_0x23caa2=_0x2d2610[_0x1066b9(0x5ad)]*0x8;return _0xcd30eb[_0x23caa2>>>0x5]|=0x80<<0x18-_0x23caa2%0x20,_0xcd30eb[(_0x23caa2+0x40>>>0x9<<0x4)+0xe]=Math[_0x1066b9(0x411)](_0x2c2f00/0x100000000),_0xcd30eb[(_0x23caa2+0x40>>>0x9<<0x4)+0xf]=_0x2c2f00,_0x2d2610[_0x1066b9(0x5ad)]=_0xcd30eb[_0x1066b9(0x554)]*0x4,this[_0x1066b9(0x2c0)](),this[_0x1066b9(0x21a)];},'clone':function(){const _0x4dd40f=_0x2f624b;var _0x892f6=_0x4741bb['clone'][_0x4dd40f(0x35a)](this);return _0x892f6['_hash']=this[_0x4dd40f(0x21a)][_0x4dd40f(0x5b6)](),_0x892f6;}});_0x4bb3f8['SHA1']=_0x4741bb['_createHelper'](_0x43640f),_0x4bb3f8[_0x2f624b(0x487)]=_0x4741bb[_0x2f624b(0x49b)](_0x43640f);}()),_0x4f4465[_0x508e1a(0x156)];}));}(_t)),_t[_0x403364(0x175)];}var ut={'exports':{}},Yt;function lr(){return Yt||(Yt=0x1,function(_0x3db94a,_0x317ff7){(function(_0x30f33f,_0x263fd6){const _0x2b5c4e=_0x4da2;_0x3db94a[_0x2b5c4e(0x175)]=_0x263fd6(oe());}(X,function(_0x20a22b){(function(){const _0x322fde=_0x4da2;var _0x33cd2e=_0x20a22b,_0x38ea52=_0x33cd2e[_0x322fde(0x241)],_0xb79a5b=_0x38ea52[_0x322fde(0x28d)],_0x51811b=_0x33cd2e[_0x322fde(0x32a)],_0x1559dc=_0x51811b[_0x322fde(0x213)],_0x424ed0=_0x33cd2e['algo'];_0x424ed0[_0x322fde(0x2e1)]=_0xb79a5b[_0x322fde(0x438)]({'init':function(_0x2592cb,_0x5222da){const _0x5ecff7=_0x322fde;_0x2592cb=this[_0x5ecff7(0x48c)]=new _0x2592cb[(_0x5ecff7(0x28e))](),typeof _0x5222da==_0x5ecff7(0x4ad)&&(_0x5222da=_0x1559dc[_0x5ecff7(0x402)](_0x5222da));var _0x194d29=_0x2592cb[_0x5ecff7(0x3f0)],_0x2cf900=_0x194d29*0x4;_0x5222da[_0x5ecff7(0x5ad)]>_0x2cf900&&(_0x5222da=_0x2592cb[_0x5ecff7(0x1a0)](_0x5222da)),_0x5222da[_0x5ecff7(0x3bc)]();for(var _0x1ee4b3=this[_0x5ecff7(0x563)]=_0x5222da[_0x5ecff7(0x5b6)](),_0x16dc96=this[_0x5ecff7(0x3b7)]=_0x5222da['clone'](),_0x519847=_0x1ee4b3[_0x5ecff7(0x406)],_0x9860c2=_0x16dc96[_0x5ecff7(0x406)],_0x32445c=0x0;_0x32445c<_0x194d29;_0x32445c++)_0x519847[_0x32445c]^=0x5c5c5c5c,_0x9860c2[_0x32445c]^=0x36363636;_0x1ee4b3['sigBytes']=_0x16dc96['sigBytes']=_0x2cf900,this[_0x5ecff7(0x529)]();},'reset':function(){const _0x54a131=_0x322fde;var _0x46c615=this['_hasher'];_0x46c615['reset'](),_0x46c615['update'](this[_0x54a131(0x3b7)]);},'update':function(_0x433588){const _0x155ecd=_0x322fde;return this[_0x155ecd(0x48c)][_0x155ecd(0x364)](_0x433588),this;},'finalize':function(_0x4a99dd){const _0x5c516c=_0x322fde;var _0x1ce27f=this['_hasher'],_0x9fb776=_0x1ce27f[_0x5c516c(0x1a0)](_0x4a99dd);_0x1ce27f[_0x5c516c(0x529)]();var _0x2a285e=_0x1ce27f[_0x5c516c(0x1a0)](this['_oKey'][_0x5c516c(0x5b6)]()[_0x5c516c(0x5c6)](_0x9fb776));return _0x2a285e;}});}());}));}(ut)),ut['exports'];}var Kt;function On(){return Kt||(Kt=0x1,function(_0x170ea4,_0x14fa01){(function(_0x2c2f02,_0x540fab,_0x26545b){const _0x4117eb=_0x4da2;_0x170ea4[_0x4117eb(0x175)]=_0x540fab(oe(),cr(),lr());}(X,function(_0x3d299b){const _0x2425b0=_0x4da2;return(function(){const _0x3ce7f6=_0x4da2;var _0x3627a8=_0x3d299b,_0x233ef0=_0x3627a8[_0x3ce7f6(0x241)],_0x58dd25=_0x233ef0['Base'],_0x9d6029=_0x233ef0[_0x3ce7f6(0x3da)],_0x3f4f9a=_0x3627a8['algo'],_0x2c2d54=_0x3f4f9a[_0x3ce7f6(0x20b)],_0x2f7689=_0x3f4f9a['EvpKDF']=_0x58dd25['extend']({'cfg':_0x58dd25[_0x3ce7f6(0x438)]({'keySize':0x80/0x20,'hasher':_0x2c2d54,'iterations':0x1}),'init':function(_0x17915f){const _0x1dbe00=_0x3ce7f6;this[_0x1dbe00(0x3bf)]=this[_0x1dbe00(0x3bf)][_0x1dbe00(0x438)](_0x17915f);},'compute':function(_0xae84fe,_0x584e68){const _0x50fc64=_0x3ce7f6;for(var _0x3cc540,_0x354b01=this[_0x50fc64(0x3bf)],_0x1621f9=_0x354b01['hasher'][_0x50fc64(0x167)](),_0x20ba0a=_0x9d6029[_0x50fc64(0x167)](),_0x4c2983=_0x20ba0a[_0x50fc64(0x406)],_0x51b131=_0x354b01[_0x50fc64(0x518)],_0x54aa5b=_0x354b01[_0x50fc64(0x1ea)];_0x4c2983[_0x50fc64(0x554)]<_0x51b131;){_0x3cc540&&_0x1621f9[_0x50fc64(0x364)](_0x3cc540),_0x3cc540=_0x1621f9[_0x50fc64(0x364)](_0xae84fe)[_0x50fc64(0x1a0)](_0x584e68),_0x1621f9['reset']();for(var _0x1ecbbf=0x1;_0x1ecbbf<_0x54aa5b;_0x1ecbbf++)_0x3cc540=_0x1621f9[_0x50fc64(0x1a0)](_0x3cc540),_0x1621f9['reset']();_0x20ba0a['concat'](_0x3cc540);}return _0x20ba0a[_0x50fc64(0x5ad)]=_0x51b131*0x4,_0x20ba0a;}});_0x3627a8['EvpKDF']=function(_0x106182,_0x25742b,_0x5a7cea){const _0x517454=_0x3ce7f6;return _0x2f7689[_0x517454(0x167)](_0x5a7cea)[_0x517454(0x4f8)](_0x106182,_0x25742b);};}()),_0x3d299b[_0x2425b0(0x4cc)];}));}(ht)),ht['exports'];}var dt={'exports':{}},qt;function Dn(){const _0x5c6c14=_0x5a89b4;return qt||(qt=0x1,function(_0x35b837,_0x2d4f19){(function(_0x339fd4,_0x50e7e3,_0x3b9ae6){const _0x386e78=_0x4da2;_0x35b837[_0x386e78(0x175)]=_0x50e7e3(oe(),On());}(X,function(_0x581f54){const _0x4a96fd=_0x4da2;_0x581f54['lib'][_0x4a96fd(0x242)]||function(_0x4b2160){const _0x32f9f5=_0x4a96fd;var _0x108ff2=_0x581f54,_0x430658=_0x108ff2[_0x32f9f5(0x241)],_0x3cccf3=_0x430658[_0x32f9f5(0x28d)],_0x4b86e1=_0x430658['WordArray'],_0x468f7f=_0x430658['BufferedBlockAlgorithm'],_0x27b063=_0x108ff2[_0x32f9f5(0x32a)];_0x27b063[_0x32f9f5(0x213)];var _0x333857=_0x27b063[_0x32f9f5(0x282)],_0x22cf21=_0x108ff2['algo'],_0x5b93c5=_0x22cf21['EvpKDF'],_0x20a5c6=_0x430658[_0x32f9f5(0x242)]=_0x468f7f['extend']({'cfg':_0x3cccf3[_0x32f9f5(0x438)](),'createEncryptor':function(_0x4db022,_0x39e891){const _0x24186d=_0x32f9f5;return this['create'](this[_0x24186d(0x309)],_0x4db022,_0x39e891);},'createDecryptor':function(_0x56c851,_0x24cf6b){const _0x462e47=_0x32f9f5;return this['create'](this[_0x462e47(0x2b1)],_0x56c851,_0x24cf6b);},'init':function(_0x3691ec,_0xfd16e8,_0x40f84c){const _0xff9ba3=_0x32f9f5;this[_0xff9ba3(0x3bf)]=this[_0xff9ba3(0x3bf)][_0xff9ba3(0x438)](_0x40f84c),this[_0xff9ba3(0x37b)]=_0x3691ec,this[_0xff9ba3(0x5e3)]=_0xfd16e8,this['reset']();},'reset':function(){const _0x109bae=_0x32f9f5;_0x468f7f[_0x109bae(0x529)][_0x109bae(0x35a)](this),this[_0x109bae(0x29a)]();},'process':function(_0x1d0955){const _0x204b29=_0x32f9f5;return this[_0x204b29(0x5ce)](_0x1d0955),this['_process']();},'finalize':function(_0x48fd2c){_0x48fd2c&&this['_append'](_0x48fd2c);var _0x33f4f9=this['_doFinalize']();return _0x33f4f9;},'keySize':0x80/0x20,'ivSize':0x80/0x20,'_ENC_XFORM_MODE':0x1,'_DEC_XFORM_MODE':0x2,'_createHelper':(function(){function _0x554671(_0x1e354b){return typeof _0x1e354b=='string'?_0x1cd1a6:_0x40e920;}return function(_0x20d43b){return{'encrypt':function(_0x46ef76,_0x8aed06,_0x56f47a){return _0x554671(_0x8aed06)['encrypt'](_0x20d43b,_0x46ef76,_0x8aed06,_0x56f47a);},'decrypt':function(_0x385689,_0x5bbdbb,_0x6d9a7e){const _0x21efac=_0x4da2;return _0x554671(_0x5bbdbb)[_0x21efac(0x22b)](_0x20d43b,_0x385689,_0x5bbdbb,_0x6d9a7e);}};};}())});_0x430658['StreamCipher']=_0x20a5c6[_0x32f9f5(0x438)]({'_doFinalize':function(){const _0x32666a=_0x32f9f5;var _0x4ad296=this[_0x32666a(0x2c0)](!0x0);return _0x4ad296;},'blockSize':0x1});var _0x165000=_0x108ff2[_0x32f9f5(0x503)]={},_0x359bf8=_0x430658[_0x32f9f5(0x454)]=_0x3cccf3[_0x32f9f5(0x438)]({'createEncryptor':function(_0x4bc403,_0x2f7734){const _0x213a15=_0x32f9f5;return this[_0x213a15(0x41c)][_0x213a15(0x167)](_0x4bc403,_0x2f7734);},'createDecryptor':function(_0x358c98,_0x583e1b){const _0x30b2e2=_0x32f9f5;return this['Decryptor'][_0x30b2e2(0x167)](_0x358c98,_0x583e1b);},'init':function(_0x50ba8b,_0x3e0d38){const _0xd1dfd0=_0x32f9f5;this[_0xd1dfd0(0x4dc)]=_0x50ba8b,this[_0xd1dfd0(0x495)]=_0x3e0d38;}}),_0x5c56f8=_0x165000[_0x32f9f5(0x603)]=(function(){const _0x83cd5b=_0x32f9f5;var _0x11c6fc=_0x359bf8[_0x83cd5b(0x438)]();_0x11c6fc[_0x83cd5b(0x41c)]=_0x11c6fc[_0x83cd5b(0x438)]({'processBlock':function(_0x5df430,_0x34013f){const _0x5578f1=_0x83cd5b;var _0x292b26=this[_0x5578f1(0x4dc)],_0x13c9be=_0x292b26[_0x5578f1(0x3f0)];_0x585b85[_0x5578f1(0x35a)](this,_0x5df430,_0x34013f,_0x13c9be),_0x292b26[_0x5578f1(0x3f1)](_0x5df430,_0x34013f),this[_0x5578f1(0x1f6)]=_0x5df430[_0x5578f1(0x5b5)](_0x34013f,_0x34013f+_0x13c9be);}}),_0x11c6fc[_0x83cd5b(0x251)]=_0x11c6fc[_0x83cd5b(0x438)]({'processBlock':function(_0x37ce64,_0x2142ae){const _0x596a13=_0x83cd5b;var _0x3af17e=this[_0x596a13(0x4dc)],_0x7531ab=_0x3af17e[_0x596a13(0x3f0)],_0x4a5fc8=_0x37ce64[_0x596a13(0x5b5)](_0x2142ae,_0x2142ae+_0x7531ab);_0x3af17e['decryptBlock'](_0x37ce64,_0x2142ae),_0x585b85[_0x596a13(0x35a)](this,_0x37ce64,_0x2142ae,_0x7531ab),this['_prevBlock']=_0x4a5fc8;}});function _0x585b85(_0x4a292a,_0x8713b3,_0x5c64bb){const _0x2857c1=_0x83cd5b;var _0x3a9b92,_0x426e2c=this[_0x2857c1(0x495)];_0x426e2c?(_0x3a9b92=_0x426e2c,this['_iv']=_0x4b2160):_0x3a9b92=this['_prevBlock'];for(var _0x2d4bdf=0x0;_0x2d4bdf<_0x5c64bb;_0x2d4bdf++)_0x4a292a[_0x8713b3+_0x2d4bdf]^=_0x3a9b92[_0x2d4bdf];}return _0x11c6fc;}()),_0x16161e=_0x108ff2[_0x32f9f5(0x1ad)]={},_0x3fcded=_0x16161e[_0x32f9f5(0x4aa)]={'pad':function(_0x373c1d,_0x4597cb){const _0x4397eb=_0x32f9f5;for(var _0x5c2196=_0x4597cb*0x4,_0x3cd6fe=_0x5c2196-_0x373c1d['sigBytes']%_0x5c2196,_0x112285=_0x3cd6fe<<0x18|_0x3cd6fe<<0x10|_0x3cd6fe<<0x8|_0x3cd6fe,_0x40238b=[],_0x21e047=0x0;_0x21e047<_0x3cd6fe;_0x21e047+=0x4)_0x40238b[_0x4397eb(0x1d0)](_0x112285);var _0x51212b=_0x4b86e1['create'](_0x40238b,_0x3cd6fe);_0x373c1d[_0x4397eb(0x5c6)](_0x51212b);},'unpad':function(_0x4873a6){const _0x3e7d89=_0x32f9f5;var _0x4403ac=_0x4873a6['words'][_0x4873a6[_0x3e7d89(0x5ad)]-0x1>>>0x2]&0xff;_0x4873a6['sigBytes']-=_0x4403ac;}};_0x430658['BlockCipher']=_0x20a5c6['extend']({'cfg':_0x20a5c6[_0x32f9f5(0x3bf)][_0x32f9f5(0x438)]({'mode':_0x5c56f8,'padding':_0x3fcded}),'reset':function(){const _0x3722c3=_0x32f9f5;var _0x469a39;_0x20a5c6[_0x3722c3(0x529)][_0x3722c3(0x35a)](this);var _0x32b7b2=this[_0x3722c3(0x3bf)],_0x2a2c69=_0x32b7b2['iv'],_0x4c11ef=_0x32b7b2[_0x3722c3(0x503)];this['_xformMode']==this[_0x3722c3(0x309)]?_0x469a39=_0x4c11ef[_0x3722c3(0x3ff)]:(_0x469a39=_0x4c11ef['createDecryptor'],this[_0x3722c3(0x2ec)]=0x1),this[_0x3722c3(0x56a)]&&this['_mode'][_0x3722c3(0x1a2)]==_0x469a39?this[_0x3722c3(0x56a)]['init'](this,_0x2a2c69&&_0x2a2c69[_0x3722c3(0x406)]):(this[_0x3722c3(0x56a)]=_0x469a39[_0x3722c3(0x35a)](_0x4c11ef,this,_0x2a2c69&&_0x2a2c69[_0x3722c3(0x406)]),this['_mode'][_0x3722c3(0x1a2)]=_0x469a39);},'_doProcessBlock':function(_0x5bc715,_0x1b8760){const _0x48f2a3=_0x32f9f5;this[_0x48f2a3(0x56a)]['processBlock'](_0x5bc715,_0x1b8760);},'_doFinalize':function(){const _0x536df1=_0x32f9f5;var _0x1e944,_0x4d6582=this[_0x536df1(0x3bf)][_0x536df1(0x316)];return this[_0x536df1(0x37b)]==this[_0x536df1(0x309)]?(_0x4d6582[_0x536df1(0x1ad)](this[_0x536df1(0x176)],this['blockSize']),_0x1e944=this['_process'](!0x0)):(_0x1e944=this[_0x536df1(0x2c0)](!0x0),_0x4d6582['unpad'](_0x1e944)),_0x1e944;},'blockSize':0x80/0x20});var _0xd3843f=_0x430658[_0x32f9f5(0x1d6)]=_0x3cccf3[_0x32f9f5(0x438)]({'init':function(_0x477698){const _0x45cc1a=_0x32f9f5;this[_0x45cc1a(0x331)](_0x477698);},'toString':function(_0xd5b4c5){const _0x56a2c1=_0x32f9f5;return(_0xd5b4c5||this['formatter'])[_0x56a2c1(0x456)](this);}}),_0x14d592=_0x108ff2[_0x32f9f5(0x192)]={},_0x1b560d=_0x14d592[_0x32f9f5(0x499)]={'stringify':function(_0x36811d){const _0x27b170=_0x32f9f5;var _0x59ee56,_0x347db0=_0x36811d[_0x27b170(0x5cf)],_0x3aed0f=_0x36811d['salt'];return _0x3aed0f?_0x59ee56=_0x4b86e1[_0x27b170(0x167)]([0x53616c74,0x65645f5f])[_0x27b170(0x5c6)](_0x3aed0f)[_0x27b170(0x5c6)](_0x347db0):_0x59ee56=_0x347db0,_0x59ee56[_0x27b170(0x54b)](_0x333857);},'parse':function(_0x1d5adf){const _0x37e6be=_0x32f9f5;var _0x30eb46,_0x5eba13=_0x333857['parse'](_0x1d5adf),_0x325eb7=_0x5eba13[_0x37e6be(0x406)];return _0x325eb7[0x0]==0x53616c74&&_0x325eb7[0x1]==0x65645f5f&&(_0x30eb46=_0x4b86e1['create'](_0x325eb7[_0x37e6be(0x5b5)](0x2,0x4)),_0x325eb7[_0x37e6be(0x1ee)](0x0,0x4),_0x5eba13[_0x37e6be(0x5ad)]-=0x10),_0xd3843f[_0x37e6be(0x167)]({'ciphertext':_0x5eba13,'salt':_0x30eb46});}},_0x40e920=_0x430658['SerializableCipher']=_0x3cccf3['extend']({'cfg':_0x3cccf3[_0x32f9f5(0x438)]({'format':_0x1b560d}),'encrypt':function(_0x57aa98,_0x501779,_0x20eb17,_0x5a4b07){const _0x1a6003=_0x32f9f5;_0x5a4b07=this['cfg'][_0x1a6003(0x438)](_0x5a4b07);var _0x24b361=_0x57aa98[_0x1a6003(0x3ff)](_0x20eb17,_0x5a4b07),_0xc82992=_0x24b361['finalize'](_0x501779),_0x4a3894=_0x24b361[_0x1a6003(0x3bf)];return _0xd3843f[_0x1a6003(0x167)]({'ciphertext':_0xc82992,'key':_0x20eb17,'iv':_0x4a3894['iv'],'algorithm':_0x57aa98,'mode':_0x4a3894['mode'],'padding':_0x4a3894[_0x1a6003(0x316)],'blockSize':_0x57aa98[_0x1a6003(0x3f0)],'formatter':_0x5a4b07[_0x1a6003(0x192)]});},'decrypt':function(_0x4f664f,_0x3139c8,_0x1c0924,_0x3b77a6){const _0x2bb2fa=_0x32f9f5;_0x3b77a6=this[_0x2bb2fa(0x3bf)][_0x2bb2fa(0x438)](_0x3b77a6),_0x3139c8=this[_0x2bb2fa(0x608)](_0x3139c8,_0x3b77a6[_0x2bb2fa(0x192)]);var _0x531604=_0x4f664f[_0x2bb2fa(0x366)](_0x1c0924,_0x3b77a6)[_0x2bb2fa(0x1a0)](_0x3139c8['ciphertext']);return _0x531604;},'_parse':function(_0x1ab96f,_0x10fcd8){const _0xd90d52=_0x32f9f5;return typeof _0x1ab96f==_0xd90d52(0x4ad)?_0x10fcd8['parse'](_0x1ab96f,this):_0x1ab96f;}}),_0x45ba89=_0x108ff2[_0x32f9f5(0x50c)]={},_0x5dc784=_0x45ba89[_0x32f9f5(0x499)]={'execute':function(_0x37b533,_0x313108,_0x272c5a,_0x5bc0a2,_0x1bd08c){const _0x5915f1=_0x32f9f5;if(_0x5bc0a2||(_0x5bc0a2=_0x4b86e1[_0x5915f1(0x568)](0x40/0x8)),_0x1bd08c)var _0x1733f4=_0x5b93c5['create']({'keySize':_0x313108+_0x272c5a,'hasher':_0x1bd08c})[_0x5915f1(0x4f8)](_0x37b533,_0x5bc0a2);else var _0x1733f4=_0x5b93c5['create']({'keySize':_0x313108+_0x272c5a})['compute'](_0x37b533,_0x5bc0a2);var _0x2da5fa=_0x4b86e1[_0x5915f1(0x167)](_0x1733f4[_0x5915f1(0x406)][_0x5915f1(0x5b5)](_0x313108),_0x272c5a*0x4);return _0x1733f4[_0x5915f1(0x5ad)]=_0x313108*0x4,_0xd3843f['create']({'key':_0x1733f4,'iv':_0x2da5fa,'salt':_0x5bc0a2});}},_0x1cd1a6=_0x430658[_0x32f9f5(0x3b8)]=_0x40e920[_0x32f9f5(0x438)]({'cfg':_0x40e920['cfg']['extend']({'kdf':_0x5dc784}),'encrypt':function(_0x48c8d4,_0x1aae82,_0x3d3a5d,_0x5b42d1){const _0x12bd9d=_0x32f9f5;_0x5b42d1=this['cfg']['extend'](_0x5b42d1);var _0x412bc3=_0x5b42d1[_0x12bd9d(0x50c)][_0x12bd9d(0x3c9)](_0x3d3a5d,_0x48c8d4[_0x12bd9d(0x518)],_0x48c8d4[_0x12bd9d(0x200)],_0x5b42d1[_0x12bd9d(0x2aa)],_0x5b42d1[_0x12bd9d(0x437)]);_0x5b42d1['iv']=_0x412bc3['iv'];var _0x280e24=_0x40e920[_0x12bd9d(0x59c)][_0x12bd9d(0x35a)](this,_0x48c8d4,_0x1aae82,_0x412bc3[_0x12bd9d(0x163)],_0x5b42d1);return _0x280e24['mixIn'](_0x412bc3),_0x280e24;},'decrypt':function(_0xe2fa5,_0x2a3338,_0x2a2e8c,_0x308e69){const _0x40fc40=_0x32f9f5;_0x308e69=this[_0x40fc40(0x3bf)][_0x40fc40(0x438)](_0x308e69),_0x2a3338=this[_0x40fc40(0x608)](_0x2a3338,_0x308e69['format']);var _0x31e2c7=_0x308e69['kdf'][_0x40fc40(0x3c9)](_0x2a2e8c,_0xe2fa5[_0x40fc40(0x518)],_0xe2fa5['ivSize'],_0x2a3338[_0x40fc40(0x2aa)],_0x308e69[_0x40fc40(0x437)]);_0x308e69['iv']=_0x31e2c7['iv'];var _0x53de6e=_0x40e920[_0x40fc40(0x22b)][_0x40fc40(0x35a)](this,_0xe2fa5,_0x2a3338,_0x31e2c7[_0x40fc40(0x163)],_0x308e69);return _0x53de6e;}});}();}));}(dt)),dt[_0x5c6c14(0x175)];}(function(_0x3b2d5c,_0x4ab93a){(function(_0x645ebb,_0x488c57,_0xb3989e){_0x3b2d5c['exports']=_0x488c57(oe(),yn,ar(),On(),Dn());}(X,function(_0x388542){return(function(){const _0x5e210b=_0x4da2;var _0x36fd0e=_0x388542,_0x5824fe=_0x36fd0e[_0x5e210b(0x241)],_0x3561f8=_0x5824fe['BlockCipher'],_0x42240a=_0x36fd0e[_0x5e210b(0x2e8)],_0x433bfc=[],_0x45f7f8=[],_0x35815b=[],_0x1f23c1=[],_0x145a14=[],_0x56b358=[],_0x20bfd1=[],_0x4852e9=[],_0x1359a6=[],_0x5bff26=[];(function(){for(var _0x15f6de=[],_0xb37998=0x0;_0xb37998<0x100;_0xb37998++)_0xb37998<0x80?_0x15f6de[_0xb37998]=_0xb37998<<0x1:_0x15f6de[_0xb37998]=_0xb37998<<0x1^0x11b;for(var _0x36547e=0x0,_0x3b70ac=0x0,_0xb37998=0x0;_0xb37998<0x100;_0xb37998++){var _0x568419=_0x3b70ac^_0x3b70ac<<0x1^_0x3b70ac<<0x2^_0x3b70ac<<0x3^_0x3b70ac<<0x4;_0x568419=_0x568419>>>0x8^_0x568419&0xff^0x63,_0x433bfc[_0x36547e]=_0x568419,_0x45f7f8[_0x568419]=_0x36547e;var _0x363b6f=_0x15f6de[_0x36547e],_0x205e41=_0x15f6de[_0x363b6f],_0x332b96=_0x15f6de[_0x205e41],_0x488308=_0x15f6de[_0x568419]*0x101^_0x568419*0x1010100;_0x35815b[_0x36547e]=_0x488308<<0x18|_0x488308>>>0x8,_0x1f23c1[_0x36547e]=_0x488308<<0x10|_0x488308>>>0x10,_0x145a14[_0x36547e]=_0x488308<<0x8|_0x488308>>>0x18,_0x56b358[_0x36547e]=_0x488308;var _0x488308=_0x332b96*0x1010101^_0x205e41*0x10001^_0x363b6f*0x101^_0x36547e*0x1010100;_0x20bfd1[_0x568419]=_0x488308<<0x18|_0x488308>>>0x8,_0x4852e9[_0x568419]=_0x488308<<0x10|_0x488308>>>0x10,_0x1359a6[_0x568419]=_0x488308<<0x8|_0x488308>>>0x18,_0x5bff26[_0x568419]=_0x488308,_0x36547e?(_0x36547e=_0x363b6f^_0x15f6de[_0x15f6de[_0x15f6de[_0x332b96^_0x363b6f]]],_0x3b70ac^=_0x15f6de[_0x15f6de[_0x3b70ac]]):_0x36547e=_0x3b70ac=0x1;}}());var _0x59f6e3=[0x0,0x1,0x2,0x4,0x8,0x10,0x20,0x40,0x80,0x1b,0x36],_0x45019e=_0x42240a[_0x5e210b(0x216)]=_0x3561f8[_0x5e210b(0x438)]({'_doReset':function(){const _0x28a50a=_0x5e210b;var _0x2ababf;if(!(this['_nRounds']&&this['_keyPriorReset']===this['_key'])){for(var _0x1d2a8a=this[_0x28a50a(0x32b)]=this['_key'],_0x50494d=_0x1d2a8a[_0x28a50a(0x406)],_0x43ea6e=_0x1d2a8a['sigBytes']/0x4,_0x2eaea0=this[_0x28a50a(0x3a7)]=_0x43ea6e+0x6,_0x3fa5de=(_0x2eaea0+0x1)*0x4,_0x689f95=this[_0x28a50a(0x20a)]=[],_0x4af362=0x0;_0x4af362<_0x3fa5de;_0x4af362++)_0x4af362<_0x43ea6e?_0x689f95[_0x4af362]=_0x50494d[_0x4af362]:(_0x2ababf=_0x689f95[_0x4af362-0x1],_0x4af362%_0x43ea6e?_0x43ea6e>0x6&&_0x4af362%_0x43ea6e==0x4&&(_0x2ababf=_0x433bfc[_0x2ababf>>>0x18]<<0x18|_0x433bfc[_0x2ababf>>>0x10&0xff]<<0x10|_0x433bfc[_0x2ababf>>>0x8&0xff]<<0x8|_0x433bfc[_0x2ababf&0xff]):(_0x2ababf=_0x2ababf<<0x8|_0x2ababf>>>0x18,_0x2ababf=_0x433bfc[_0x2ababf>>>0x18]<<0x18|_0x433bfc[_0x2ababf>>>0x10&0xff]<<0x10|_0x433bfc[_0x2ababf>>>0x8&0xff]<<0x8|_0x433bfc[_0x2ababf&0xff],_0x2ababf^=_0x59f6e3[_0x4af362/_0x43ea6e|0x0]<<0x18),_0x689f95[_0x4af362]=_0x689f95[_0x4af362-_0x43ea6e]^_0x2ababf);for(var _0x566698=this[_0x28a50a(0x47f)]=[],_0x3efa0d=0x0;_0x3efa0d<_0x3fa5de;_0x3efa0d++){var _0x4af362=_0x3fa5de-_0x3efa0d;if(_0x3efa0d%0x4)var _0x2ababf=_0x689f95[_0x4af362];else var _0x2ababf=_0x689f95[_0x4af362-0x4];_0x3efa0d<0x4||_0x4af362<=0x4?_0x566698[_0x3efa0d]=_0x2ababf:_0x566698[_0x3efa0d]=_0x20bfd1[_0x433bfc[_0x2ababf>>>0x18]]^_0x4852e9[_0x433bfc[_0x2ababf>>>0x10&0xff]]^_0x1359a6[_0x433bfc[_0x2ababf>>>0x8&0xff]]^_0x5bff26[_0x433bfc[_0x2ababf&0xff]];}}},'encryptBlock':function(_0x5ec6ff,_0x367715){const _0x5c20fe=_0x5e210b;this[_0x5c20fe(0x40a)](_0x5ec6ff,_0x367715,this[_0x5c20fe(0x20a)],_0x35815b,_0x1f23c1,_0x145a14,_0x56b358,_0x433bfc);},'decryptBlock':function(_0x3ffc21,_0x36c176){const _0x3e2972=_0x5e210b;var _0x28c95f=_0x3ffc21[_0x36c176+0x1];_0x3ffc21[_0x36c176+0x1]=_0x3ffc21[_0x36c176+0x3],_0x3ffc21[_0x36c176+0x3]=_0x28c95f,this[_0x3e2972(0x40a)](_0x3ffc21,_0x36c176,this[_0x3e2972(0x47f)],_0x20bfd1,_0x4852e9,_0x1359a6,_0x5bff26,_0x45f7f8);var _0x28c95f=_0x3ffc21[_0x36c176+0x1];_0x3ffc21[_0x36c176+0x1]=_0x3ffc21[_0x36c176+0x3],_0x3ffc21[_0x36c176+0x3]=_0x28c95f;},'_doCryptBlock':function(_0x47709e,_0x25105e,_0x595303,_0x39e7dd,_0x1b77f7,_0x54a46e,_0x225b5c,_0x765e8){const _0x5ed406=_0x5e210b;for(var _0x3890eb=this[_0x5ed406(0x3a7)],_0x588eb7=_0x47709e[_0x25105e]^_0x595303[0x0],_0x36b272=_0x47709e[_0x25105e+0x1]^_0x595303[0x1],_0x28a4b3=_0x47709e[_0x25105e+0x2]^_0x595303[0x2],_0x36d152=_0x47709e[_0x25105e+0x3]^_0x595303[0x3],_0x1f0843=0x4,_0x4aa57b=0x1;_0x4aa57b<_0x3890eb;_0x4aa57b++){var _0x1f94fd=_0x39e7dd[_0x588eb7>>>0x18]^_0x1b77f7[_0x36b272>>>0x10&0xff]^_0x54a46e[_0x28a4b3>>>0x8&0xff]^_0x225b5c[_0x36d152&0xff]^_0x595303[_0x1f0843++],_0x32b059=_0x39e7dd[_0x36b272>>>0x18]^_0x1b77f7[_0x28a4b3>>>0x10&0xff]^_0x54a46e[_0x36d152>>>0x8&0xff]^_0x225b5c[_0x588eb7&0xff]^_0x595303[_0x1f0843++],_0x1adce0=_0x39e7dd[_0x28a4b3>>>0x18]^_0x1b77f7[_0x36d152>>>0x10&0xff]^_0x54a46e[_0x588eb7>>>0x8&0xff]^_0x225b5c[_0x36b272&0xff]^_0x595303[_0x1f0843++],_0x2ba400=_0x39e7dd[_0x36d152>>>0x18]^_0x1b77f7[_0x588eb7>>>0x10&0xff]^_0x54a46e[_0x36b272>>>0x8&0xff]^_0x225b5c[_0x28a4b3&0xff]^_0x595303[_0x1f0843++];_0x588eb7=_0x1f94fd,_0x36b272=_0x32b059,_0x28a4b3=_0x1adce0,_0x36d152=_0x2ba400;}var _0x1f94fd=(_0x765e8[_0x588eb7>>>0x18]<<0x18|_0x765e8[_0x36b272>>>0x10&0xff]<<0x10|_0x765e8[_0x28a4b3>>>0x8&0xff]<<0x8|_0x765e8[_0x36d152&0xff])^_0x595303[_0x1f0843++],_0x32b059=(_0x765e8[_0x36b272>>>0x18]<<0x18|_0x765e8[_0x28a4b3>>>0x10&0xff]<<0x10|_0x765e8[_0x36d152>>>0x8&0xff]<<0x8|_0x765e8[_0x588eb7&0xff])^_0x595303[_0x1f0843++],_0x1adce0=(_0x765e8[_0x28a4b3>>>0x18]<<0x18|_0x765e8[_0x36d152>>>0x10&0xff]<<0x10|_0x765e8[_0x588eb7>>>0x8&0xff]<<0x8|_0x765e8[_0x36b272&0xff])^_0x595303[_0x1f0843++],_0x2ba400=(_0x765e8[_0x36d152>>>0x18]<<0x18|_0x765e8[_0x588eb7>>>0x10&0xff]<<0x10|_0x765e8[_0x36b272>>>0x8&0xff]<<0x8|_0x765e8[_0x28a4b3&0xff])^_0x595303[_0x1f0843++];_0x47709e[_0x25105e]=_0x1f94fd,_0x47709e[_0x25105e+0x1]=_0x32b059,_0x47709e[_0x25105e+0x2]=_0x1adce0,_0x47709e[_0x25105e+0x3]=_0x2ba400;},'keySize':0x100/0x20});_0x36fd0e[_0x5e210b(0x216)]=_0x3561f8['_createHelper'](_0x45019e);}()),_0x388542['AES'];}));}(Tn));var hr=Tn['exports'];const _r=xe(hr);var wn={'exports':{}};(function(_0x3d0b89,_0x3be040){(function(_0x334fe7,_0x4620a9){const _0x566398=_0x4da2;_0x3d0b89[_0x566398(0x175)]=_0x4620a9(oe());}(X,function(_0x583e94){return _0x583e94['enc']['Utf8'];}));}(wn));var ur=wn[_0x5a89b4(0x175)];const dr=xe(ur);var Pn={'exports':{}};(function(_0x390d99,_0x3a5cf9){(function(_0x1bb53f,_0x3e6bfa){const _0x66bfc1=_0x4da2;_0x390d99[_0x66bfc1(0x175)]=_0x3e6bfa(oe());}(X,function(_0x2c4720){const _0x584544=_0x4da2;return(function(){const _0x338286=_0x4da2;if(typeof ArrayBuffer==_0x338286(0x205)){var _0x23602a=_0x2c4720,_0x1c9618=_0x23602a[_0x338286(0x241)],_0x2f31b4=_0x1c9618[_0x338286(0x3da)],_0x11e0d1=_0x2f31b4[_0x338286(0x28e)],_0x3ff86e=_0x2f31b4[_0x338286(0x28e)]=function(_0x5e4e3b){const _0x501572=_0x338286;if(_0x5e4e3b instanceof ArrayBuffer&&(_0x5e4e3b=new Uint8Array(_0x5e4e3b)),(_0x5e4e3b instanceof Int8Array||typeof Uint8ClampedArray<'u'&&_0x5e4e3b instanceof Uint8ClampedArray||_0x5e4e3b instanceof Int16Array||_0x5e4e3b instanceof Uint16Array||_0x5e4e3b instanceof Int32Array||_0x5e4e3b instanceof Uint32Array||_0x5e4e3b instanceof Float32Array||_0x5e4e3b instanceof Float64Array)&&(_0x5e4e3b=new Uint8Array(_0x5e4e3b[_0x501572(0x3e8)],_0x5e4e3b[_0x501572(0x39d)],_0x5e4e3b[_0x501572(0x47c)])),_0x5e4e3b instanceof Uint8Array){for(var _0x521911=_0x5e4e3b[_0x501572(0x47c)],_0x2bb73f=[],_0x4e0325=0x0;_0x4e0325<_0x521911;_0x4e0325++)_0x2bb73f[_0x4e0325>>>0x2]|=_0x5e4e3b[_0x4e0325]<<0x18-_0x4e0325%0x4*0x8;_0x11e0d1['call'](this,_0x2bb73f,_0x521911);}else _0x11e0d1[_0x501572(0x2b9)](this,arguments);};_0x3ff86e[_0x338286(0x3af)]=_0x2f31b4;}}()),_0x2c4720['lib'][_0x584544(0x3da)];}));}(Pn));var fr=Pn[_0x5a89b4(0x175)];const vr=xe(fr);var Un={'exports':{}};(function(_0x63cb2d,_0x115090){(function(_0x5909b5,_0x1f7747,_0x1c91dd){const _0x1f9f14=_0x4da2;_0x63cb2d[_0x1f9f14(0x175)]=_0x1f7747(oe(),Dn());}(X,function(_0x3331cf){const _0x428d7e=_0x4da2;return _0x3331cf[_0x428d7e(0x1ad)][_0x428d7e(0x2e7)]={'pad':function(){},'unpad':function(){}},_0x3331cf[_0x428d7e(0x1ad)][_0x428d7e(0x2e7)];}));}(Un));var Sr=Un['exports'];const pr=xe(Sr);function mr(_0x3bbe5c,_0x4e7aaf){const _0x3e457c=_0x5a89b4,_0x34c9e1=_0x4e7aaf-_0x3bbe5c[_0x3e457c(0x554)]%_0x4e7aaf,_0x50d647=String[_0x3e457c(0x339)](_0x34c9e1)['repeat'](_0x34c9e1);return _0x3bbe5c+_0x50d647;}function gr(_0x336df,_0x11890b){const _0x3c5ef3=_0x5a89b4,_0x19fead=vr[_0x3c5ef3(0x568)](0x10),_0x2e0fbb=mr(_0x336df,0x10),_0x5a3a1d=_r[_0x3c5ef3(0x59c)](dr[_0x3c5ef3(0x402)](_0x2e0fbb),Ft[_0x3c5ef3(0x402)](_0x11890b),{'iv':_0x19fead,'padding':pr});return _0x19fead[_0x3c5ef3(0x5c6)](_0x5a3a1d[_0x3c5ef3(0x5cf)])['toString'](Ft);}function Ir(){const _0x581ba4=_0x5a89b4,_0x4a3c50=(typeof WorkerGlobalScope<'u'&&self instanceof WorkerGlobalScope?self:window)[_0x581ba4(0x32c)];if(_0x4a3c50){const _0x10620f={'time':Math[_0x581ba4(0x411)](Date[_0x581ba4(0x38a)]()/0x3e8),'domain':location[_0x581ba4(0x3e7)]};return gr(JSON['stringify'](_0x10620f),_0x4a3c50);}}var Cr=Object['defineProperty'],Er=Object[_0x5a89b4(0x227)],br=(_0x337f5f,_0x207d37,_0x14bded,_0x467063)=>{const _0x36f5a3=_0x5a89b4;for(var _0x36ccbd=_0x467063>0x1?void 0x0:_0x467063?Er(_0x207d37,_0x14bded):_0x207d37,_0xbd95ab=_0x337f5f[_0x36f5a3(0x554)]-0x1,_0x538cc0;_0xbd95ab>=0x0;_0xbd95ab--)(_0x538cc0=_0x337f5f[_0xbd95ab])&&(_0x36ccbd=(_0x467063?_0x538cc0(_0x207d37,_0x14bded,_0x36ccbd):_0x538cc0(_0x36ccbd))||_0x36ccbd);return _0x467063&&_0x36ccbd&&Cr(_0x207d37,_0x14bded,_0x36ccbd),_0x36ccbd;},Tr=(_0x20d1d2,_0x274d37)=>(_0x34e58,_0x54330)=>_0x274d37(_0x34e58,_0x54330,_0x20d1d2);let Ye=class{constructor(_0x394cc5){const _0x525565=_0x5a89b4;this['_httpService']=_0x394cc5,this[_0x525565(0x2e0)]();}[_0x5a89b4(0x2e0)](){const _0x63edfd=_0x5a89b4;this[_0x63edfd(0x379)]['registerHTTPInterceptor']({'interceptor':(_0x673ea0,_0x2dd24d)=>{const _0x405f48=_0x63edfd,_0x5c2c32=_0x673ea0[_0x405f48(0x388)],_0x524f10=Ir();return _0x524f10&&_0x5c2c32['set']('x-univer-host',_0x524f10),_0x2dd24d(_0x673ea0);}});}};Ye=br([Tr(0x0,a[_0x5a89b4(0x3d5)](J[_0x5a89b4(0x294)]))],Ye);var Rr=Object['defineProperty'],yr=Object[_0x5a89b4(0x227)],Or=(_0x51b06a,_0x4856fe,_0x28f275,_0x192e14)=>{const _0xccf929=_0x5a89b4;for(var _0x106784=_0x192e14>0x1?void 0x0:_0x192e14?yr(_0x4856fe,_0x28f275):_0x4856fe,_0x5f6a4d=_0x51b06a[_0xccf929(0x554)]-0x1,_0x3810cb;_0x5f6a4d>=0x0;_0x5f6a4d--)(_0x3810cb=_0x51b06a[_0x5f6a4d])&&(_0x106784=(_0x192e14?_0x3810cb(_0x4856fe,_0x28f275,_0x106784):_0x3810cb(_0x106784))||_0x106784);return _0x192e14&&_0x106784&&Rr(_0x4856fe,_0x28f275,_0x106784),_0x106784;},ft=(_0x532709,_0x330417)=>(_0x75173c,_0x9d64d)=>_0x330417(_0x75173c,_0x9d64d,_0x532709);const Dr=[_0x5a89b4(0x2cb),_0x5a89b4(0x253),_0x5a89b4(0x1f8),_0x5a89b4(0x390),_0x5a89b4(0x5c9)],wr=0x5*0x400*0x400,Pr='EXCHANGE_UPLOAD_FILE_SERVER_URL_KEY',Ur=_0x5a89b4(0x571),Mr=_0x5a89b4(0x34d),Ar=_0x5a89b4(0x4a8);exports['ImageIoService']=class{constructor(_0x1f365b,_0x362d42,_0x12be10){const _0xf26a87=_0x5a89b4;I(this,_0xf26a87(0x50b),0x0),I(this,'_change$',new A['Subject']()),I(this,_0xf26a87(0x410),this[_0xf26a87(0x354)]),I(this,_0xf26a87(0x58f),new Map()),(this['_httpService']=_0x1f365b,this[_0xf26a87(0x162)]=_0x362d42,this['_univerInstanceService']=_0x12be10);}['setWaitCount'](_0x4fc512){const _0x974623=_0x5a89b4;this[_0x974623(0x50b)]=_0x4fc512,this['_change$']['next'](_0x4fc512);}[_0x5a89b4(0x5a6)](_0x51cf13,_0x2d54b0){const _0x599407=_0x5a89b4;if(_0x2d54b0===ne[_0x599407(0x1fd)]['BASE64']){const _0x44359e=new Image();return _0x44359e[_0x599407(0x1e9)]=_0x51cf13,_0x44359e;}return this[_0x599407(0x58f)]['get'](_0x51cf13);}[_0x5a89b4(0x531)](_0x38f1f9,_0x59b369,_0x527532){const _0x174254=_0x5a89b4;_0x59b369===ne[_0x174254(0x1fd)][_0x174254(0x566)]||_0x527532==null||this[_0x174254(0x58f)][_0x174254(0x352)](_0x38f1f9,_0x527532);}async[_0x5a89b4(0x4a5)](_0x102975){const _0x4d7d13=_0x5a89b4;try{const _0xa41438=this[_0x4d7d13(0x56d)](this[_0x4d7d13(0x2e2)](),''+_0x102975),_0x4170a1=(await this[_0x4d7d13(0x379)][_0x4d7d13(0x58d)](_0xa41438))[_0x4d7d13(0x491)];if(_0x4170a1['error']&&_0x4170a1[_0x4d7d13(0x395)][_0x4d7d13(0x323)]===on['OK']){const _0x30f51a=new URL(_0x4170a1[_0x4d7d13(0x478)],this['_getDownloadEndpointURL']())['toString']();return Promise[_0x4d7d13(0x2f4)](_0x30f51a);}return Promise['reject'](_0x4170a1[_0x4d7d13(0x395)]);}catch(_0x13c9da){return Promise[_0x4d7d13(0x202)](_0x13c9da);}}async[_0x5a89b4(0x171)](_0x25b405){const _0x46abe2=_0x5a89b4;let _0x26ba85='';if(!Dr[_0x46abe2(0x446)](_0x25b405[_0x46abe2(0x235)]))return this[_0x46abe2(0x2ce)](),Promise[_0x46abe2(0x202)](new Error(ne['ImageUploadStatusType'][_0x46abe2(0x4e1)]));if(_0x25b405['size']>wr)return this[_0x46abe2(0x2ce)](),Promise[_0x46abe2(0x202)](new Error(ne[_0x46abe2(0x2c3)]['ERROR_EXCEED_SIZE']));try{const _0x5c2dad=new FormData();_0x5c2dad[_0x46abe2(0x22c)]('file',_0x25b405);const _0x512e2f=this[_0x46abe2(0x4b5)][_0x46abe2(0x17a)](),_0x351ab0=_0x512e2f==null?void 0x0:_0x512e2f[_0x46abe2(0x5df)]();if(!_0x351ab0)throw new Error(_0x46abe2(0x5cc));const _0x26260a=this[_0x46abe2(0x552)]()+'?size='+_0x25b405['size']['toString']()+'&source='+an[_0x46abe2(0x521)]+_0x46abe2(0x4e6)+encodeURIComponent(_0x351ab0),_0x245ec2=await(await fetch(_0x26260a,{'method':'POST','body':_0x5c2dad}))[_0x46abe2(0x179)]();if(typeof _0x245ec2[_0x46abe2(0x507)]!='string')return this[_0x46abe2(0x2ce)](),Promise[_0x46abe2(0x202)](new Error(ne[_0x46abe2(0x2c3)][_0x46abe2(0x484)]));_0x26ba85=_0x245ec2[_0x46abe2(0x507)];}catch{return this[_0x46abe2(0x2ce)](),Promise[_0x46abe2(0x202)](new Error(ne[_0x46abe2(0x2c3)][_0x46abe2(0x484)]));}return new Promise((_0x1d1969,_0x5f3add)=>{const _0x1c3285=_0x46abe2,_0x2eedc3=new FileReader();_0x2eedc3[_0x1c3285(0x35c)](_0x25b405),_0x2eedc3[_0x1c3285(0x155)]=_0x5904a9=>{const _0x93faca=_0x1c3285;var _0x23e0dc;const _0x22e2ee=(_0x23e0dc=_0x5904a9[_0x93faca(0x575)])==null?void 0x0:_0x23e0dc[_0x93faca(0x2f3)];if(_0x22e2ee==null){this['_decreaseWaiting'](),_0x5f3add(new Error(ne[_0x93faca(0x2c3)][_0x93faca(0x484)]));return;}const _0x24454e=a[_0x93faca(0x444)]['generateRandomId'](0x6);_0x1d1969({'imageId':_0x24454e,'imageSourceType':ne[_0x93faca(0x1fd)][_0x93faca(0x5ea)],'source':_0x26ba85,'base64Cache':_0x22e2ee,'status':ne[_0x93faca(0x2c3)][_0x93faca(0x542)]}),this['_decreaseWaiting']();};});}[_0x5a89b4(0x552)](){const _0x5ebc8a=_0x5a89b4;var _0x2aa4a4,_0x29c3bf;const _0x3027b2=this[_0x5ebc8a(0x162)][_0x5ebc8a(0x287)](Pr),_0x57add0=this[_0x5ebc8a(0x162)][_0x5ebc8a(0x287)](ee);return(_0x29c3bf=(_0x2aa4a4=_0x57add0==null?void 0x0:_0x57add0[_0x5ebc8a(0x206)])!=null?_0x2aa4a4:_0x3027b2)!=null?_0x29c3bf:Ur;}[_0x5a89b4(0x2e2)](){const _0x2850a7=_0x5a89b4;var _0x137b27,_0x1dcf67;const _0x29d1d8=this[_0x2850a7(0x162)][_0x2850a7(0x287)](Mr),_0x2bcb22=this[_0x2850a7(0x162)][_0x2850a7(0x287)](ee);return(_0x1dcf67=(_0x137b27=_0x2bcb22==null?void 0x0:_0x2bcb22[_0x2850a7(0x1d2)])!=null?_0x137b27:_0x29d1d8)!=null?_0x1dcf67:Ar;}[_0x5a89b4(0x55d)](){const _0x308efa=_0x5a89b4;var _0x46b271;const _0x58994e=this[_0x308efa(0x162)][_0x308efa(0x287)](ee);return(_0x46b271=_0x58994e==null?void 0x0:_0x58994e[_0x308efa(0x40f)])!=null?_0x46b271:location[_0x308efa(0x32d)];}[_0x5a89b4(0x56d)](_0x3c838a,_0x43f571){const _0x2e1134=_0x5a89b4;return _0x3c838a[_0x2e1134(0x4e5)](_0x2e1134(0x154),_0x43f571);}[_0x5a89b4(0x2ce)](){const _0x250aed=_0x5a89b4;this[_0x250aed(0x50b)]-=0x1,this['_change$'][_0x250aed(0x52c)](this[_0x250aed(0x50b)]);}},exports[_0x5a89b4(0x480)]=Or([ft(0x0,a['Inject'](J[_0x5a89b4(0x294)])),ft(0x1,a[_0x5a89b4(0x569)]),ft(0x2,a['Inject'](a[_0x5a89b4(0x21c)]))],exports[_0x5a89b4(0x480)]);var Nr=Object[_0x5a89b4(0x5bf)],Lr=Object[_0x5a89b4(0x227)],xr=(_0x4b91aa,_0x414474,_0x3b16e3,_0x53e14f)=>{const _0x5cb968=_0x5a89b4;for(var _0x2fd7ec=_0x53e14f>0x1?void 0x0:_0x53e14f?Lr(_0x414474,_0x3b16e3):_0x414474,_0x26e31a=_0x4b91aa[_0x5cb968(0x554)]-0x1,_0x59adb8;_0x26e31a>=0x0;_0x26e31a--)(_0x59adb8=_0x4b91aa[_0x26e31a])&&(_0x2fd7ec=(_0x53e14f?_0x59adb8(_0x414474,_0x3b16e3,_0x2fd7ec):_0x59adb8(_0x2fd7ec))||_0x2fd7ec);return _0x53e14f&&_0x2fd7ec&&Nr(_0x414474,_0x3b16e3,_0x2fd7ec),_0x2fd7ec;},Ae=(_0x26bd1e,_0x2be399)=>(_0x407259,_0xa7989a)=>_0x2be399(_0x407259,_0xa7989a,_0x26bd1e);let Ke=class extends a[_0x5a89b4(0x2da)]{constructor(_0x13adf9,_0x4ffe6c,_0x5273f7,_0x532338,_0x140a64){const _0x46e3cb=_0x5a89b4;super(),this['_injector']=_0x13adf9,this[_0x46e3cb(0x4b5)]=_0x4ffe6c,this['_permissionService']=_0x5273f7,this[_0x46e3cb(0x3a8)]=_0x532338,this['_localeService']=_0x140a64,this[_0x46e3cb(0x448)](),this['_initCloseConn']();}[_0x5a89b4(0x2df)](){const _0x12310b=_0x5a89b4,_0x13dea4=async _0x56de73=>{const _0x28bd00=_0x4da2;(await this['_collaborationSessionService']['requireSession'](_0x56de73))[_0x28bd00(0x52f)][_0x28bd00(0x564)](V['filter'](_0x2b9354=>_0x2b9354['eventID']===p[_0x28bd00(0x44f)][_0x28bd00(0x3ad)]),V['takeUntil'](this[_0x28bd00(0x256)]))[_0x28bd00(0x3d8)](_0x16c7e1=>{const _0x21194f=_0x28bd00,_0x1d992a=_0x16c7e1,{reason:_0x555d51}=_0x1d992a['data'];this[_0x21194f(0x274)][_0x21194f(0x58d)](te[_0x21194f(0x38b)])[_0x21194f(0x2ad)]({'type':Ie[_0x21194f(0x1cd)][_0x21194f(0x412)],'content':this[_0x21194f(0x37c)]['t'](_0x21194f(0x5dd))+'('+_0x555d51+')'}),this[_0x21194f(0x56c)][_0x21194f(0x313)](new B['WorkbookEditablePermission'](_0x56de73)['id'],!0x1),this[_0x21194f(0x3a8)][_0x21194f(0x4f3)](_0x56de73);});};A[_0x12310b(0x209)](this[_0x12310b(0x4b5)][_0x12310b(0x1b2)](a[_0x12310b(0x1af)][_0x12310b(0x479)]),this[_0x12310b(0x4b5)][_0x12310b(0x1b2)](a[_0x12310b(0x1af)]['UNIVER_DOC']))['pipe'](V[_0x12310b(0x272)](_0x130094=>_0x130094['getUnitId']()),V[_0x12310b(0x303)](_0x4f69ed=>!a[_0x12310b(0x576)](_0x4f69ed)),V[_0x12310b(0x2e9)](this[_0x12310b(0x256)]))[_0x12310b(0x3d8)](_0x29b2b7=>{_0x13dea4(_0x29b2b7);});}[_0x5a89b4(0x448)](){const _0x3cf817=_0x5a89b4,_0x482f9d=async _0x21d940=>{const _0x528b5a=_0x4da2;(await this['_collaborationSessionService'][_0x528b5a(0x506)](_0x21d940))['event$'][_0x528b5a(0x564)](V['filter'](_0x78703b=>_0x78703b[_0x528b5a(0x14f)]===p['CollaborationEvent'][_0x528b5a(0x340)]),V['takeUntil'](this['dispose$']))[_0x528b5a(0x3d8)](_0x44bba8=>{const _0x1868dd=_0x528b5a,_0x282654=_0x44bba8,{objectId:_0xc1bafb}=_0x282654[_0x1868dd(0x3e4)],_0x35cdfc=this[_0x1868dd(0x274)][_0x1868dd(0x58d)](Re[_0x1868dd(0x3fd)]);_0xc1bafb===_0x21d940?_0x35cdfc[_0x1868dd(0x5de)](_0x21d940):_0x35cdfc[_0x1868dd(0x345)](_0x21d940,_0xc1bafb);});};A[_0x3cf817(0x209)](this['_univerInstanceService'][_0x3cf817(0x1b2)](a[_0x3cf817(0x1af)][_0x3cf817(0x479)]),this[_0x3cf817(0x4b5)][_0x3cf817(0x1b2)](a[_0x3cf817(0x1af)][_0x3cf817(0x222)]))['pipe'](V[_0x3cf817(0x272)](_0x11337b=>_0x11337b[_0x3cf817(0x5df)]()),V[_0x3cf817(0x303)](_0x4503f=>!a[_0x3cf817(0x576)](_0x4503f)),V[_0x3cf817(0x2e9)](this[_0x3cf817(0x256)]))[_0x3cf817(0x3d8)](_0x2d1a23=>{_0x482f9d(_0x2d1a23);});}};Ke=xr([Ae(0x0,a[_0x5a89b4(0x3d5)](a['Injector'])),Ae(0x1,a[_0x5a89b4(0x21c)]),Ae(0x2,a['IPermissionService']),Ae(0x3,a['Inject'](exports[_0x5a89b4(0x19c)])),Ae(0x4,a['Inject'](a[_0x5a89b4(0x3a3)]))],Ke);var jr=Object[_0x5a89b4(0x5bf)],$r=Object[_0x5a89b4(0x227)],Hr=(_0x1fb49f,_0x16cade,_0x132aeb,_0x334677)=>{for(var _0x2c4104=_0x334677>0x1?void 0x0:_0x334677?$r(_0x16cade,_0x132aeb):_0x16cade,_0x5887c7=_0x1fb49f['length']-0x1,_0x2aa2fe;_0x5887c7>=0x0;_0x5887c7--)(_0x2aa2fe=_0x1fb49f[_0x5887c7])&&(_0x2c4104=(_0x334677?_0x2aa2fe(_0x16cade,_0x132aeb,_0x2c4104):_0x2aa2fe(_0x2c4104))||_0x2c4104);return _0x334677&&_0x2c4104&&jr(_0x16cade,_0x132aeb,_0x2c4104),_0x2c4104;},zt=(_0x113bf8,_0x51c539)=>(_0x4f5750,_0x405018)=>_0x51c539(_0x4f5750,_0x405018,_0x113bf8);exports['SnapshotServerOverHTTPService']=class{constructor(_0x504e9c,_0x2b1d8c){const _0x56b12d=_0x5a89b4;this[_0x56b12d(0x162)]=_0x504e9c,this['_httpService']=_0x2b1d8c;}async[_0x5a89b4(0x262)](_0x1c0c8d,_0x407684){const _0x3befdf=_0x5a89b4;var _0xd0ab5d;const {unitID:_0x1e8e0a,type:_0x3d4f92,revision:_0x1c4316=0x0}=_0x407684,_0x24f5d3=this[_0x3befdf(0x5c8)]()+'/'+_0x3d4f92+_0x3befdf(0x407)+_0x1e8e0a+_0x3befdf(0x4e0)+_0x1c4316,_0x3ea238=(await this[_0x3befdf(0x379)]['get'](_0x24f5d3))[_0x3befdf(0x491)],_0x417e4e=(_0xd0ab5d=_0x3ea238['snapshot'])==null?void 0x0:_0xd0ab5d[_0x3befdf(0x48e)];if(_0x417e4e){const _0x27b585=_0x417e4e==null?void 0x0:_0x417e4e['originalMeta'],_0x492442=p[_0x3befdf(0x570)][_0x3befdf(0x2d5)](p[_0x3befdf(0x3bb)](_0x27b585));_0x417e4e[_0x3befdf(0x498)]=_0x492442,Object[_0x3befdf(0x1d9)](_0x417e4e[_0x3befdf(0x23c)])[_0x3befdf(0x3a4)](([,_0x41002a])=>{const _0x3cea3e=_0x3befdf,_0x57466d=_0x41002a[_0x3cea3e(0x498)],_0x4cdc4f=p[_0x3cea3e(0x570)][_0x3cea3e(0x2d5)](p[_0x3cea3e(0x3bb)](_0x57466d));_0x41002a[_0x3cea3e(0x498)]=_0x4cdc4f;});}return _0x3ea238;}async[_0x5a89b4(0x30c)](_0x34fa8c,_0x9175c2){const _0x3a5250=_0x5a89b4,{unitID:_0x35d151,type:_0x2434d8,blockID:_0x3787ca}=_0x9175c2,_0x51f6c4=this[_0x3a5250(0x460)]()+'/'+_0x2434d8+_0x3a5250(0x407)+_0x35d151+_0x3a5250(0x1dc)+_0x3787ca;return(await this['_httpService']['get'](_0x51f6c4))[_0x3a5250(0x491)];}async[_0x5a89b4(0x5ab)](_0x252647,_0x5d21da){const _0x2b7868=_0x5a89b4,{unitID:_0x82dd71,type:_0x163503,blockID:_0x350e3c}=_0x5d21da,_0xc02413=this[_0x2b7868(0x460)]()+_0x2b7868(0x1dc)+_0x163503+_0x2b7868(0x407)+_0x82dd71+_0x2b7868(0x1dc)+_0x350e3c;return(await this['_httpService']['get'](_0xc02413))[_0x2b7868(0x491)];}async[_0x5a89b4(0x237)](_0x4e5066,_0x5eafdb){const _0x4b2ad5=_0x5a89b4,{unitID:_0x574db7,type:_0xb88146,from:_0x3dfb02,to:_0x4fc730}=_0x5eafdb,_0x354623=this['_getAPIPrefix']()+'/'+_0xb88146+'/unit/'+_0x574db7+_0x4b2ad5(0x24c)+_0x3dfb02+_0x4b2ad5(0x277)+_0x4fc730;return(await this[_0x4b2ad5(0x379)][_0x4b2ad5(0x58d)](_0x354623))[_0x4b2ad5(0x491)];}[_0x5a89b4(0x5c8)](){const _0x7513b5=_0x5a89b4;var _0x157dcd;return(_0x157dcd=this['_configService']['getConfig'](Jt))!=null?_0x157dcd:this[_0x7513b5(0x460)]();}[_0x5a89b4(0x460)](){const _0x5f0707=_0x5a89b4;var _0x366dff,_0x240314;const _0x375d36=this[_0x5f0707(0x162)][_0x5f0707(0x287)](Xt),_0x51df95=this[_0x5f0707(0x162)][_0x5f0707(0x287)](ee);return(_0x240314=(_0x366dff=_0x51df95==null?void 0x0:_0x51df95['snapshotServerUrl'])!=null?_0x366dff:_0x375d36)!=null?_0x240314:$n;}async[_0x5a89b4(0x16f)](_0x439fed,_0x2a597d){const _0x3a4bef=_0x5a89b4,_0x4fb285=_0x3a4bef(0x19d)+_0x2a597d[_0x3a4bef(0x235)]+_0x3a4bef(0x407)+_0x2a597d[_0x3a4bef(0x2ea)]+_0x3a4bef(0x455);return(await this['_httpService']['get'](_0x4fb285,{'params':{'resourceId':JSON[_0x3a4bef(0x456)](_0x2a597d[_0x3a4bef(0x31c)])}}))['body'];}['saveSnapshot'](){const _0xbca55e=_0x5a89b4;throw new Error(_0xbca55e(0x2b8));}[_0x5a89b4(0x536)](){const _0x20a047=_0x5a89b4;throw new Error(_0x20a047(0x2b8));}[_0x5a89b4(0x4db)](){throw new Error('This\x20method\x20should\x20not\x20be\x20called\x20on\x20the\x20client\x20side!');}[_0x5a89b4(0x1c0)](){const _0x1a3a2e=_0x5a89b4;throw new Error(_0x1a3a2e(0x2b8));}[_0x5a89b4(0x384)](){const _0x543a21=_0x5a89b4;throw new Error(_0x543a21(0x2b8));}},exports[_0x5a89b4(0x1e4)]=Hr([zt(0x0,a[_0x5a89b4(0x569)]),zt(0x1,a['Inject'](J[_0x5a89b4(0x294)]))],exports['SnapshotServerOverHTTPService']);var kr=Object[_0x5a89b4(0x5bf)],Br=Object[_0x5a89b4(0x227)],Wr=(_0x4c7578,_0x2d9cf0,_0x50d43f,_0x3db6cd)=>{const _0x4d3086=_0x5a89b4;for(var _0x3aa474=_0x3db6cd>0x1?void 0x0:_0x3db6cd?Br(_0x2d9cf0,_0x50d43f):_0x2d9cf0,_0x525c4d=_0x4c7578[_0x4d3086(0x554)]-0x1,_0xc65ebf;_0x525c4d>=0x0;_0x525c4d--)(_0xc65ebf=_0x4c7578[_0x525c4d])&&(_0x3aa474=(_0x3db6cd?_0xc65ebf(_0x2d9cf0,_0x50d43f,_0x3aa474):_0xc65ebf(_0x3aa474))||_0x3aa474);return _0x3db6cd&&_0x3aa474&&kr(_0x2d9cf0,_0x50d43f,_0x3aa474),_0x3aa474;},Ne=(_0x43e75a,_0x376f49)=>(_0x20d239,_0x4d43a1)=>_0x376f49(_0x20d239,_0x4d43a1,_0x43e75a);let gt=class extends a[_0x5a89b4(0x1f3)]{constructor(_0x356205,_0x391298,_0x1bb1a5,_0x168948,_0x5d5c9c){const _0x59dd4c=_0x5a89b4;super(_0x356205,_0x391298,_0x1bb1a5),this[_0x59dd4c(0x18f)]=_0x168948,this[_0x59dd4c(0x52a)]=_0x5d5c9c;}[_0x5a89b4(0x408)](_0x467dd0,_0x4fed1e){const _0x201d90=_0x5a89b4,_0x7e059e=this[_0x201d90(0x27b)](_0x467dd0);if(_0x7e059e)try{const _0x586789=this[_0x201d90(0x2ee)](_0x7e059e,_0x4fed1e);this[_0x201d90(0x31e)](_0x467dd0,_0x586789);}catch(_0x47cd1a){this['_logService'][_0x201d90(0x395)](_0x201d90(0x4fe),_0x47cd1a),this[_0x201d90(0x33c)](_0x467dd0);}const _0x4a50ac=this[_0x201d90(0x184)](_0x467dd0);if(_0x4a50ac)try{const _0x46117e=this['_transformStack'](_0x4a50ac,_0x4fed1e);this['_substituteRedoStack'](_0x467dd0,_0x46117e);}catch(_0x5c0cf6){this[_0x201d90(0x52a)][_0x201d90(0x395)](_0x5c0cf6),this['_clearRedo'](_0x467dd0);}}[_0x5a89b4(0x33c)](_0x34c840){const _0x2407a2=_0x5a89b4,_0x24c36b=this['_getUndoStack'](_0x34c840);_0x24c36b&&(_0x24c36b[_0x2407a2(0x554)]=0x0,this[_0x2407a2(0x14d)]());}[_0x5a89b4(0x275)](_0x4b5436){const _0x4c8179=_0x5a89b4,_0x311cbf=this[_0x4c8179(0x184)](_0x4b5436);_0x311cbf&&(_0x311cbf[_0x4c8179(0x554)]=0x0,this[_0x4c8179(0x14d)]());}[_0x5a89b4(0x31e)](_0x328d06,_0x26a482){const _0x3d86fb=_0x5a89b4;this['_undoStacks'][_0x3d86fb(0x352)](_0x328d06,_0x26a482),this[_0x3d86fb(0x14d)]();}[_0x5a89b4(0x48f)](_0x1e9f7e,_0x46243b){const _0x3c6ef4=_0x5a89b4;this[_0x3c6ef4(0x300)]['set'](_0x1e9f7e,_0x46243b),this[_0x3c6ef4(0x14d)]();}[_0x5a89b4(0x2ee)](_0x23365a,_0x5bf555){const _0x47705b=_0x5a89b4,_0x5099bc=[];let _0x31a67e=_0x5bf555,_0x3bec94=_0x5bf555;for(let _0x2c4a7d=_0x23365a[_0x47705b(0x554)]-0x1;_0x2c4a7d>=0x0;_0x2c4a7d--){const {unitID:_0x4043e0,undoMutations:_0xf7b098,redoMutations:_0x3c13aa}=_0x23365a[_0x2c4a7d],_0x62f113=this[_0x47705b(0x18f)][_0x47705b(0x4d1)](_0x31a67e,_0xf7b098),_0x21623e=this[_0x47705b(0x18f)][_0x47705b(0x4d1)](_0x3bec94,_0x3c13aa);if(p['isTransformMutationsWithChangesetFailure'](_0x62f113)||p[_0x47705b(0x466)](_0x21623e)){this[_0x47705b(0x52a)][_0x47705b(0x395)](_0x47705b(0x4fe),_0x47705b(0x47b),_0x62f113,_0x21623e);break;}_0x31a67e=_0x62f113['c1Prime'],_0x3bec94=_0x21623e['c1Prime'],_0x5099bc[_0x47705b(0x1d0)]({'unitID':_0x4043e0,'undoMutations':_0x62f113[_0x47705b(0x330)],'redoMutations':_0x21623e['m2Prime']});}return _0x5099bc['reverse']();}};gt=Wr([Ne(0x0,a[_0x5a89b4(0x21c)]),Ne(0x1,a[_0x5a89b4(0x17d)]),Ne(0x2,a[_0x5a89b4(0x43e)]),Ne(0x3,p[_0x5a89b4(0x3f4)]),Ne(0x4,a[_0x5a89b4(0x3dd)])],gt);class Mn extends a[_0x5a89b4(0x2da)]{constructor(){const _0x5563c9=_0x5a89b4;super(),I(this,_0x5563c9(0x27d)),this[_0x5563c9(0x27d)]=A['fromEvent'](window,'popstate')[_0x5563c9(0x564)](A[_0x5563c9(0x2e9)](this['dispose$']),A[_0x5563c9(0x3cd)](0x1),A[_0x5563c9(0x5c5)](void 0x0));}[_0x5a89b4(0x4c3)](_0x232e15,_0x11a26a,_0x5d0980=!0x1){const _0x40b703=_0x5a89b4,_0x49e103=new URL(window[_0x40b703(0x5e5)][_0x40b703(0x469)]);_0x49e103[_0x40b703(0x2fe)]['set'](_0x232e15,_0x11a26a),_0x5d0980?window[_0x40b703(0x383)][_0x40b703(0x391)]('','',_0x49e103[_0x40b703(0x54b)]()):window[_0x40b703(0x383)]['pushState']('','',_0x49e103[_0x40b703(0x54b)]());}[_0x5a89b4(0x5c3)](_0x5b6222,_0xf9d4a4=!0x1){const _0x19d6c3=_0x5a89b4,_0x2a25e9=new URL(window[_0x19d6c3(0x5e5)][_0x19d6c3(0x469)]);_0x2a25e9[_0x19d6c3(0x2fe)]['delete'](_0x5b6222),_0xf9d4a4?window[_0x19d6c3(0x383)][_0x19d6c3(0x391)]('','',_0x2a25e9['toString']()):window['history'][_0x19d6c3(0x42a)]('','',_0x2a25e9[_0x19d6c3(0x54b)]());}[_0x5a89b4(0x3cf)](_0x332bda){const _0x171ded=_0x5a89b4;var _0x5f0d03;return(_0x5f0d03=new URL(window[_0x171ded(0x5e5)][_0x171ded(0x469)])['searchParams'][_0x171ded(0x58d)](_0x332bda))!=null?_0x5f0d03:void 0x0;}}var An=Object[_0x5a89b4(0x5bf)],Fr=Object[_0x5a89b4(0x227)],Vr=(_0x456408,_0x122859,_0x2b6723)=>_0x122859 in _0x456408?An(_0x456408,_0x122859,{'enumerable':!0x0,'configurable':!0x0,'writable':!0x0,'value':_0x2b6723}):_0x456408[_0x122859]=_0x2b6723,Gr=(_0x37a185,_0x3db819,_0x1e0143,_0x1b8ad6)=>{const _0xd88812=_0x5a89b4;for(var _0x32b478=_0x1b8ad6>0x1?void 0x0:_0x1b8ad6?Fr(_0x3db819,_0x1e0143):_0x3db819,_0x1e0915=_0x37a185[_0xd88812(0x554)]-0x1,_0x35fd7a;_0x1e0915>=0x0;_0x1e0915--)(_0x35fd7a=_0x37a185[_0x1e0915])&&(_0x32b478=(_0x1b8ad6?_0x35fd7a(_0x3db819,_0x1e0143,_0x32b478):_0x35fd7a(_0x32b478))||_0x32b478);return _0x1b8ad6&&_0x32b478&&An(_0x3db819,_0x1e0143,_0x32b478),_0x32b478;},He=(_0x940afb,_0x1f4cf0)=>(_0x48bdeb,_0x23055a)=>_0x1f4cf0(_0x48bdeb,_0x23055a,_0x940afb),Yr=(_0x358a74,_0x3963c9,_0x218dd6)=>Vr(_0x358a74,_0x3963c9+'',_0x218dd6);const Kr=_0x5a89b4(0x1e0);exports['UniverCollaborationClientPlugin']=class extends a[_0x5a89b4(0x483)]{constructor(_0x4cacc3=zn,_0x2434c5,_0xf2cdb8,_0x289c9d,_0x51c7e7){const _0x2fc4ae=_0x5a89b4;super(),this['_config']=_0x4cacc3,this['_logService']=_0x2434c5,this[_0x2fc4ae(0x4eb)]=_0xf2cdb8,this[_0x2fc4ae(0x274)]=_0x289c9d,this[_0x2fc4ae(0x162)]=_0x51c7e7;const {..._0x979005}=this[_0x2fc4ae(0x5e8)];this[_0x2fc4ae(0x162)][_0x2fc4ae(0x3b5)](ee,_0x979005);}[_0x5a89b4(0x51d)](){const _0x24dc7c=_0x5a89b4;this[_0x24dc7c(0x30a)](),this[_0x24dc7c(0x3d0)]();}[_0x5a89b4(0x382)](){const _0x23a756=_0x5a89b4;a[_0x23a756(0x2bf)](this[_0x23a756(0x274)],[[Ve]]);}[_0x5a89b4(0x37a)](){const _0x581857=_0x5a89b4;this[_0x581857(0x5a3)]();}[_0x5a89b4(0x30a)](){const _0x33cf8a=_0x5a89b4;var _0x54c619,_0x5d801d,_0x1ab60e,_0x5a0309;this['_injector'][_0x33cf8a(0x4df)](a[_0x33cf8a(0x54d)])&&this[_0x33cf8a(0x52a)][_0x33cf8a(0x395)](_0x33cf8a(0x186),_0x33cf8a(0x471));const _0x5b28bb=[[a[_0x33cf8a(0x54d)],{'useClass':gt}],[exports[_0x33cf8a(0x19c)]],[yt],[Dt,{'useClass':Mn}],[exports[_0x33cf8a(0x5ac)]],[exports['LocalCacheService']],[J[_0x33cf8a(0x368)]],[Be],[Fe],[ke],[We],[Tt],[Ge],[Ye],[bt],[Ke],[Et,{'useClass':(_0x5d801d=(_0x54c619=this[_0x33cf8a(0x5e8)])==null?void 0x0:_0x54c619[_0x33cf8a(0x3aa)])!=null?_0x5d801d:exports['CollaborationSocketService']}],[p[_0x33cf8a(0x3a2)],{'useClass':exports['SnapshotServerOverHTTPService']}],[a['IAuthzIoService'],{'useClass':exports['AuthzIoHttpService']}],[ne[_0x33cf8a(0x1d3)],{'useClass':exports[_0x33cf8a(0x480)]}],[exports[_0x33cf8a(0x1f7)]],[exports[_0x33cf8a(0x1d5)]],[exports[_0x33cf8a(0x5f8)]],[Ve],[De]];(_0x1ab60e=this['_config'])!=null&&_0x1ab60e[_0x33cf8a(0x278)]&&_0x5b28bb[_0x33cf8a(0x1d0)]([qe,{'useClass':Oi}]),a[_0x33cf8a(0x57e)](this[_0x33cf8a(0x274)],a[_0x33cf8a(0x2ef)](_0x5b28bb,(_0x5a0309=this[_0x33cf8a(0x5e8)])==null?void 0x0:_0x5a0309[_0x33cf8a(0x31f)]));}[_0x5a89b4(0x5a3)](){const _0x334851=_0x5a89b4;this[_0x334851(0x15e)](this[_0x334851(0x4eb)][_0x334851(0x3f2)](a[_0x334851(0x1af)][_0x334851(0x222)],[pt])),this['disposeWithMe'](this[_0x334851(0x4eb)][_0x334851(0x3f2)](a['UniverInstanceType'][_0x334851(0x479)],[mt]));}[_0x5a89b4(0x3d0)](){const _0xc469db=_0x5a89b4;var _0x1a8841,_0x232033;this[_0xc469db(0x274)][_0xc469db(0x58d)](J['HTTPService'])[_0xc469db(0x403)]({'priority':0x14,'interceptor':J[_0xc469db(0x4b0)]({'maxParallel':0x6})}),(_0x1a8841=this[_0xc469db(0x5e8)])!=null&&_0x1a8841['enableOfflineEditing']||this['_injector']['get'](exports[_0xc469db(0x4e3)])[_0xc469db(0x218)](),(_0x232033=this['_config'])!=null&&_0x232033[_0xc469db(0x508)]&&a['touchDependencies'](this['_injector'],[[Ge]]),a[_0xc469db(0x2bf)](this[_0xc469db(0x274)],[[Ye],[De],[exports[_0xc469db(0x1d5)]],[exports[_0xc469db(0x1f7)]],[exports['DesktopCollaborationStatusDisplayController']],[Ke]]);}},Yr(exports[_0x5a89b4(0x246)],'pluginName',Kr),exports['UniverCollaborationClientPlugin']=Gr([a['DependentOn'](p['UniverCollaborationPlugin'],J['UniverNetworkPlugin']),He(0x1,a[_0x5a89b4(0x3dd)]),He(0x2,K[_0x5a89b4(0x18b)]),He(0x3,a['Inject'](a[_0x5a89b4(0x217)])),He(0x4,a[_0x5a89b4(0x569)])],exports['UniverCollaborationClientPlugin']),exports[_0x5a89b4(0x56e)]=bn,exports['COLLAB_SUBMIT_CHANGESET_URL_KEY']=sn,exports[_0x5a89b4(0x2de)]=Zt,exports[_0x5a89b4(0x435)]=q,exports[_0x5a89b4(0x5eb)]=En,exports[_0x5a89b4(0x2d8)]=bt,exports[_0x5a89b4(0x4da)]=Qt,exports[_0x5a89b4(0x1cf)]=It,exports[_0x5a89b4(0x46c)]=Et,exports[_0x5a89b4(0x54a)]=Dt,exports[_0x5a89b4(0x5b8)]=nn,exports[_0x5a89b4(0x15a)]=rn,exports[_0x5a89b4(0x166)]=tn,exports[_0x5a89b4(0x317)]=Hn,exports['SNAPSHOT_SERVER_URL_KEY']=Xt,exports[_0x5a89b4(0x2f6)]=Jt,exports[_0x5a89b4(0x177)]=se,exports[_0x5a89b4(0x36c)]=vn,exports[_0x5a89b4(0x559)]=Mn,exports[_0x5a89b4(0x400)]=cn,exports[_0x5a89b4(0x482)]=ln;
|