@univerjs-pro/collaboration-client 0.5.0-nightly.202411120616 → 0.5.0-nightly.202411131606

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (84) hide show
  1. package/lib/cjs/index.js +1 -1
  2. package/lib/cjs/locale/en-US.js +1 -1
  3. package/lib/cjs/locale/fa-IR.js +1 -1
  4. package/lib/cjs/locale/ru-RU.js +1 -1
  5. package/lib/cjs/locale/vi-VN.js +1 -1
  6. package/lib/cjs/locale/zh-CN.js +1 -1
  7. package/lib/cjs/locale/zh-TW.js +1 -1
  8. package/lib/es/index.js +1 -1
  9. package/lib/es/locale/en-US.js +1 -1
  10. package/lib/es/locale/fa-IR.js +1 -1
  11. package/lib/es/locale/ru-RU.js +1 -1
  12. package/lib/es/locale/vi-VN.js +1 -1
  13. package/lib/es/locale/zh-CN.js +1 -1
  14. package/lib/es/locale/zh-TW.js +1 -1
  15. package/lib/types/config/config.d.ts +48 -0
  16. package/lib/types/controllers/collab-cursor/__tests__/doc-collab-cursor.controller.spec.d.ts +23 -0
  17. package/lib/types/controllers/collab-cursor/__tests__/serialize-text-ranges.spec.d.ts +1 -0
  18. package/lib/types/controllers/collab-cursor/__tests__/sheet-collab-cursor.controller.spec.d.ts +1 -0
  19. package/lib/types/controllers/collab-cursor/collab-cursor.controller.d.ts +22 -0
  20. package/lib/types/controllers/collab-cursor/doc-collab-cursor-entity.d.ts +38 -0
  21. package/lib/types/controllers/collab-cursor/doc-collab-cursor-render.controller.d.ts +24 -0
  22. package/lib/types/controllers/collab-cursor/serialize-text-ranges.d.ts +3 -0
  23. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-entity.d.ts +39 -0
  24. package/lib/types/controllers/collab-cursor/sheet-collab-cursor-render.controller.d.ts +21 -0
  25. package/lib/types/controllers/collab-status/collab-status.controller.d.ts +18 -0
  26. package/lib/types/controllers/collaboration/__tests__/collaboration.controller.spec.d.ts +4 -0
  27. package/lib/types/controllers/collaboration/__tests__/mock-text-selection-render-manager.service.d.ts +0 -0
  28. package/lib/types/controllers/collaboration/__tests__/mocks.d.ts +54 -0
  29. package/lib/types/controllers/collaboration/collaboration-entity.d.ts +91 -0
  30. package/lib/types/controllers/collaboration/collaboration-state.d.ts +303 -0
  31. package/lib/types/controllers/collaboration/collaboration.controller.d.ts +24 -0
  32. package/lib/types/controllers/collaboration/utils/changeset-utils.d.ts +18 -0
  33. package/lib/types/controllers/collaboration/utils/empty.d.ts +2 -0
  34. package/lib/types/controllers/config.schema.d.ts +29 -0
  35. package/lib/types/controllers/data-loader/__tests__/data-loader.controller.spec.d.ts +1 -0
  36. package/lib/types/controllers/data-loader/data-loader.controller.d.ts +22 -0
  37. package/lib/types/controllers/file-name/file-name.controller.d.ts +12 -0
  38. package/lib/types/controllers/telemetry.d.ts +11 -0
  39. package/lib/types/index.d.ts +35 -890
  40. package/lib/types/locale/en-US.d.ts +3 -0
  41. package/lib/types/locale/fa-IR.d.ts +3 -0
  42. package/lib/types/locale/ru-RU.d.ts +3 -0
  43. package/lib/types/locale/vi-VN.d.ts +3 -0
  44. package/lib/types/locale/zh-CN.d.ts +39 -0
  45. package/lib/types/locale/zh-TW.d.ts +3 -0
  46. package/lib/types/models/cursor.d.ts +30 -0
  47. package/lib/types/plugin.d.ts +18 -0
  48. package/lib/types/services/auth-server/auth-server.service.d.ts +10 -0
  49. package/lib/types/services/auth-server/authz-io-http.service.d.ts +30 -0
  50. package/lib/types/services/auth-server/domain-request.service.d.ts +6 -0
  51. package/lib/types/services/auth-server/util.d.ts +1 -0
  52. package/lib/types/services/collaboration-session/collaboration-session.d.ts +59 -0
  53. package/lib/types/services/collaboration-session/collaboration-session.service.d.ts +61 -0
  54. package/lib/types/services/color-assign/color-assign.service.d.ts +10 -0
  55. package/lib/types/services/comment/comment.service.d.ts +6 -0
  56. package/lib/types/services/image-remote/image-io.service.d.ts +34 -0
  57. package/lib/types/services/ime-cache-transform/doc-transform-ime-cache.service.d.ts +13 -0
  58. package/lib/types/services/local-cache/local-cache.service.d.ts +37 -0
  59. package/lib/types/services/member/member.service.d.ts +77 -0
  60. package/lib/types/services/permission/permission.service.d.ts +12 -0
  61. package/lib/types/services/range-selection/sheet-transform-selections.service.d.ts +13 -0
  62. package/lib/types/services/single-active-unit/single-active-unit.service.d.ts +39 -0
  63. package/lib/types/services/snapshot-server/snapshot-server.service.d.ts +21 -0
  64. package/lib/types/services/socket/collaboration-socket.service.d.ts +34 -0
  65. package/lib/types/services/socket/serialize.d.ts +3 -0
  66. package/lib/types/services/state-cache-transform/doc-transform-state-cache.service.d.ts +12 -0
  67. package/lib/types/services/sync-editing-collab-cursor/doc-sync-editing-collab-cursor.service.d.ts +13 -0
  68. package/lib/types/services/text-selection/doc-transform-selections.service.d.ts +8 -0
  69. package/lib/types/services/undoredo/collaborative-undoredo.service.d.ts +19 -0
  70. package/lib/types/services/url/url.service.d.ts +12 -0
  71. package/lib/types/services/url/web-url.service.d.ts +10 -0
  72. package/lib/types/views/components/CollabStatus.d.ts +10 -0
  73. package/lib/types/views/components/CollabStatus.stories.d.ts +8 -0
  74. package/lib/types/views/shapes/doc-collab-cursor.d.ts +27 -0
  75. package/lib/types/views/shapes/sheet-collab-cursor.shape.d.ts +27 -0
  76. package/lib/types/views/shapes/text-bubble.shape.d.ts +19 -0
  77. package/lib/umd/index.js +1 -1
  78. package/lib/umd/locale/en-US.js +1 -1
  79. package/lib/umd/locale/fa-IR.js +1 -1
  80. package/lib/umd/locale/ru-RU.js +1 -1
  81. package/lib/umd/locale/vi-VN.js +1 -1
  82. package/lib/umd/locale/zh-CN.js +1 -1
  83. package/lib/umd/locale/zh-TW.js +1 -1
  84. package/package.json +16 -16
@@ -1 +1 @@
1
- 'use strict';function _0xebeb(){const _0x3fb9eb=['Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Collaboration\x20Conflict','7246449bOqkxV','Synced','9192THUIlT','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','3521BUgNWW','92982Mcfxkk','Syncing...','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','111164yLiQpG','5iYCQmb','279292KmCydY','1414737qSNlPF','148636kAkgBQ','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Click\x20to\x20Reconnect','Syncing\x20server\x20data...','Connection\x20failed,\x20please\x20check\x20your\x20network.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Edit\x20conflicts','Local\x20file','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'];_0xebeb=function(){return _0x3fb9eb;};return _0xebeb();}const _0x4a05a8=_0x34a3;(function(_0x18bbcc,_0x395b1b){const _0x4d8af0=_0x34a3,_0x228c63=_0x18bbcc();while(!![]){try{const _0x2f5379=parseInt(_0x4d8af0(0x16a))/0x1+-parseInt(_0x4d8af0(0x17e))/0x2+parseInt(_0x4d8af0(0x169))/0x3+parseInt(_0x4d8af0(0x168))/0x4+-parseInt(_0x4d8af0(0x167))/0x5*(-parseInt(_0x4d8af0(0x17b))/0x6)+parseInt(_0x4d8af0(0x17a))/0x7*(parseInt(_0x4d8af0(0x178))/0x8)+-parseInt(_0x4d8af0(0x176))/0x9;if(_0x2f5379===_0x395b1b)break;else _0x228c63['push'](_0x228c63['shift']());}catch(_0x552d57){_0x228c63['push'](_0x228c63['shift']());}}}(_0xebeb,0x67353));function _0x34a3(_0xc8f179,_0xb16e25){const _0xebeb74=_0xebeb();return _0x34a3=function(_0x34a3ef,_0x5f49b4){_0x34a3ef=_0x34a3ef-0x167;let _0x23cefa=_0xebeb74[_0x34a3ef];return _0x23cefa;},_0x34a3(_0xc8f179,_0xb16e25);}const e={'collab-client':{'tooltip':{'reconnect':_0x4a05a8(0x16c)}},'collabStatus':{'fetchMiss':_0x4a05a8(0x16d),'conflict':_0x4a05a8(0x171),'notCollab':_0x4a05a8(0x172),'synced':_0x4a05a8(0x177),'syncing':_0x4a05a8(0x17c),'offline':_0x4a05a8(0x16f)},'session':{'connection-failed':_0x4a05a8(0x16e),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x4a05a8(0x174),'collaboration-timeout':_0x4a05a8(0x173)},'conflict':{'title':_0x4a05a8(0x175),'content':_0x4a05a8(0x179)},'permission':{'title':'Authentication\x20Error','content':_0x4a05a8(0x170)},'collaboration':{'single-unit':{'warning':_0x4a05a8(0x16b)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x4a05a8(0x17d)}};module['exports']=e;
1
+ 'use strict';const _0x30ca77=_0x68f5;(function(_0x1c4947,_0x5082ba){const _0xb07a91=_0x68f5,_0x15e599=_0x1c4947();while(!![]){try{const _0x1b44f1=parseInt(_0xb07a91(0xf4))/0x1*(parseInt(_0xb07a91(0xeb))/0x2)+parseInt(_0xb07a91(0xe1))/0x3*(-parseInt(_0xb07a91(0xf1))/0x4)+-parseInt(_0xb07a91(0xdd))/0x5+-parseInt(_0xb07a91(0xe0))/0x6*(parseInt(_0xb07a91(0xe7))/0x7)+parseInt(_0xb07a91(0xea))/0x8*(-parseInt(_0xb07a91(0xed))/0x9)+-parseInt(_0xb07a91(0xe3))/0xa+parseInt(_0xb07a91(0xe2))/0xb;if(_0x1b44f1===_0x5082ba)break;else _0x15e599['push'](_0x15e599['shift']());}catch(_0x213aea){_0x15e599['push'](_0x15e599['shift']());}}}(_0x512e,0x53991));function _0x512e(){const _0x3317cb=['Connection\x20failed,\x20please\x20check\x20your\x20network.','4xwwqoo','Syncing\x20server\x20data...','exports','339294ParxuE','Local\x20file','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','1842655VcEyva','Edit\x20conflicts','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','948zovoep','891573xWpSiA','23726197IRQLnD','4524410Ezavdr','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Click\x20to\x20Reconnect','29015LQMeyv','Synced','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','104PdTrav','2qyXdCs','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','263583XSUFYo','Authentication\x20Error','Syncing...'];_0x512e=function(){return _0x3317cb;};return _0x512e();}const e={'collab-client':{'tooltip':{'reconnect':_0x30ca77(0xe6)}},'collabStatus':{'fetchMiss':_0x30ca77(0xf2),'conflict':_0x30ca77(0xde),'notCollab':_0x30ca77(0xda),'synced':_0x30ca77(0xe8),'syncing':_0x30ca77(0xef),'offline':_0x30ca77(0xe9)},'session':{'connection-failed':_0x30ca77(0xf0),'will-retry':_0x30ca77(0xe4),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x30ca77(0xe5)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x30ca77(0xec)},'permission':{'title':_0x30ca77(0xee),'content':_0x30ca77(0xdc)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x30ca77(0xdf)},'auth':{'needGotoLoginAlert':_0x30ca77(0xdb)}};function _0x68f5(_0x15de45,_0x1717b5){const _0x512e1e=_0x512e();return _0x68f5=function(_0x68f576,_0x58209d){_0x68f576=_0x68f576-0xda;let _0x441f38=_0x512e1e[_0x68f576];return _0x441f38;},_0x68f5(_0x15de45,_0x1717b5);}module[_0x30ca77(0xf3)]=e;
@@ -1 +1 @@
1
- 'use strict';const _0x2d07fa=_0xb4fe;(function(_0x2786a0,_0x1303c7){const _0x1cab6d=_0xb4fe,_0xdd3247=_0x2786a0();while(!![]){try{const _0x5cf678=parseInt(_0x1cab6d(0xbe))/0x1+-parseInt(_0x1cab6d(0xb8))/0x2*(-parseInt(_0x1cab6d(0xaf))/0x3)+parseInt(_0x1cab6d(0xbc))/0x4*(-parseInt(_0x1cab6d(0xa7))/0x5)+-parseInt(_0x1cab6d(0xc1))/0x6+parseInt(_0x1cab6d(0xa9))/0x7*(-parseInt(_0x1cab6d(0xb5))/0x8)+-parseInt(_0x1cab6d(0xba))/0x9*(parseInt(_0x1cab6d(0xb6))/0xa)+parseInt(_0x1cab6d(0xab))/0xb;if(_0x5cf678===_0x1303c7)break;else _0xdd3247['push'](_0xdd3247['shift']());}catch(_0x33bb61){_0xdd3247['push'](_0xdd3247['shift']());}}}(_0x2e76,0x2f458));const o={'collab-client':{'tooltip':{'reconnect':_0x2d07fa(0xb1)}},'collabStatus':{'fetchMiss':'در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','conflict':_0x2d07fa(0xb2),'notCollab':_0x2d07fa(0xbf),'synced':'همگام\x20سازی','syncing':_0x2d07fa(0xbb),'offline':_0x2d07fa(0xaa)},'session':{'connection-failed':_0x2d07fa(0xad),'will-retry':_0x2d07fa(0xa8),'room-full':_0x2d07fa(0xbd),'collaboration-timeout':_0x2d07fa(0xc0)},'conflict':{'title':_0x2d07fa(0xb7),'content':_0x2d07fa(0xb9)},'permission':{'title':_0x2d07fa(0xae),'content':_0x2d07fa(0xb4)},'collaboration':{'single-unit':{'warning':_0x2d07fa(0xc2)},'closeRoom':_0x2d07fa(0xac)},'auth':{'needGotoLoginAlert':_0x2d07fa(0xb0)}};function _0xb4fe(_0x4aafad,_0x4a7770){const _0x2e76a2=_0x2e76();return _0xb4fe=function(_0xb4fefa,_0x334dab){_0xb4fefa=_0xb4fefa-0xa7;let _0x18bde8=_0x2e76a2[_0xb4fefa];return _0x18bde8;},_0xb4fe(_0x4aafad,_0x4a7770);}module[_0x2d07fa(0xb3)]=o;function _0x2e76(){const _0x2a86fc=['1385598IQYVOe','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','1732630bnVWpu','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','1905449pPjfyV','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','10578205jWMKtI','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','خطای\x20اعتبارسنجی','592743LDfgov','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','تداخل\x20ویرایش','exports','اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','8WCqtJG','1164810NpRyWu','تداخل\x20همکاری','2YyEQqO','یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','9vzbJJV','در\x20حال\x20همگام\x20سازی...','4ktgbgE','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','535Pqtoyr','پرونده\x20محلی','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.'];_0x2e76=function(){return _0x2a86fc;};return _0x2e76();}
1
+ 'use strict';function _0x339f(){const _0x1136a3=['اعمال\x20شما\x20با\x20مجوزهای\x20سرور\x20تداخل\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20در\x20جای\x20دیگر\x20ذخیره\x20کنید\x20زیرا\x20پس\x20از\x20تازه\x20سازی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','317887kyunIj','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','12kPCHxc','15225OCxiFh','در\x20حال\x20همگام\x20سازی...','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','آفلاین،\x20ویرایش\x20ها\x20در\x20محلی\x20ذخیره\x20می\x20شوند','156177FydvQv','15121608sMCtJZ','180YKfXjV','تداخل\x20ویرایش','1456124vlbeRb','4GzMOcF','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','در\x20حال\x20همگام\x20سازی\x20داده\x20های\x20سرور...','7849986DePcQj','5864GNwicl','پرونده\x20محلی','exports','شما\x20همان\x20پرونده\x20را\x20در\x20یک\x20تب\x20دیگر\x20باز\x20کرده\x20اید.\x20در\x20صورت\x20عدم\x20وجود\x20داده،\x20نمی\x20توانید\x20در\x20این\x20تب\x20ویرایش\x20کنید.','12307251fzviNC','تداخل\x20همکاری','5vjNyDd'];_0x339f=function(){return _0x1136a3;};return _0x339f();}const _0x4159fc=_0x93c3;(function(_0x52548e,_0x115eb6){const _0x3c75e2=_0x93c3,_0xa4c4f8=_0x52548e();while(!![]){try{const _0x174c2e=-parseInt(_0x3c75e2(0x10d))/0x1*(parseInt(_0x3c75e2(0x101))/0x2)+-parseInt(_0x3c75e2(0x112))/0x3*(parseInt(_0x3c75e2(0x100))/0x4)+parseInt(_0x3c75e2(0x10b))/0x5*(parseInt(_0x3c75e2(0x104))/0x6)+parseInt(_0x3c75e2(0x113))/0x7*(parseInt(_0x3c75e2(0x105))/0x8)+-parseInt(_0x3c75e2(0x117))/0x9*(-parseInt(_0x3c75e2(0xfe))/0xa)+parseInt(_0x3c75e2(0x109))/0xb+-parseInt(_0x3c75e2(0x118))/0xc;if(_0x174c2e===_0x115eb6)break;else _0xa4c4f8['push'](_0xa4c4f8['shift']());}catch(_0x27c82d){_0xa4c4f8['push'](_0xa4c4f8['shift']());}}}(_0x339f,0xefb09));function _0x93c3(_0xdff98e,_0x589cbb){const _0x339fc7=_0x339f();return _0x93c3=function(_0x93c3f4,_0x9a6c6f){_0x93c3f4=_0x93c3f4-0xfe;let _0x33bf69=_0x339fc7[_0x93c3f4];return _0x33bf69;},_0x93c3(_0xdff98e,_0x589cbb);}const o={'collab-client':{'tooltip':{'reconnect':_0x4159fc(0x110)}},'collabStatus':{'fetchMiss':_0x4159fc(0x103),'conflict':_0x4159fc(0xff),'notCollab':_0x4159fc(0x106),'synced':'همگام\x20سازی','syncing':_0x4159fc(0x114),'offline':_0x4159fc(0x116)},'session':{'connection-failed':_0x4159fc(0x10f),'will-retry':_0x4159fc(0x102),'room-full':'اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','collaboration-timeout':_0x4159fc(0x111)},'conflict':{'title':_0x4159fc(0x10a),'content':'یک\x20تداخل\x20بین\x20نسخه\x20محلی\x20شما\x20و\x20نسخه\x20در\x20سرور\x20وجود\x20دارد.\x20لطفاً\x20ویرایش\x20های\x20محلی\x20خود\x20را\x20ذخیره\x20کنید،\x20زیرا\x20آنها\x20پس\x20از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.'},'permission':{'title':'خطای\x20اعتبارسنجی','content':_0x4159fc(0x10c)},'collaboration':{'single-unit':{'warning':_0x4159fc(0x108)},'closeRoom':_0x4159fc(0x10e)},'auth':{'needGotoLoginAlert':_0x4159fc(0x115)}};module[_0x4159fc(0x107)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x4d430e=_0x11b8;(function(_0x182918,_0x210f39){const _0x12f1db=_0x11b8,_0x7d6a22=_0x182918();while(!![]){try{const _0x27a2f7=-parseInt(_0x12f1db(0x79))/0x1*(parseInt(_0x12f1db(0x72))/0x2)+-parseInt(_0x12f1db(0x77))/0x3*(parseInt(_0x12f1db(0x73))/0x4)+parseInt(_0x12f1db(0x74))/0x5+parseInt(_0x12f1db(0x83))/0x6*(parseInt(_0x12f1db(0x7b))/0x7)+-parseInt(_0x12f1db(0x7d))/0x8+-parseInt(_0x12f1db(0x86))/0x9+parseInt(_0x12f1db(0x88))/0xa;if(_0x27a2f7===_0x210f39)break;else _0x7d6a22['push'](_0x7d6a22['shift']());}catch(_0xb71467){_0x7d6a22['push'](_0x7d6a22['shift']());}}}(_0x3f5f,0xf102e));function _0x11b8(_0x4b5171,_0x21070a){const _0x3f5f32=_0x3f5f();return _0x11b8=function(_0x11b832,_0x2bfe00){_0x11b832=_0x11b832-0x72;let _0x34565e=_0x3f5f32[_0x11b832];return _0x34565e;},_0x11b8(_0x4b5171,_0x21070a);}function _0x3f5f(){const _0x424595=['Syncing...','Authentication\x20Error','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','61158IbcxoA','Edit\x20conflicts','Connection\x20failed,\x20please\x20check\x20your\x20network.','934884xQMyot','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','25648810jcwjTW','Syncing\x20server\x20data...','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','2wAsztT','16kBfkAx','781840HvMstB','Click\x20to\x20Reconnect','Synced','855303lrWcvA','exports','579533YPXmUG','Collaboration\x20Conflict','1057reQJgQ','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','11595176qnxpPF','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.'];_0x3f5f=function(){return _0x424595;};return _0x3f5f();}const e={'collab-client':{'tooltip':{'reconnect':_0x4d430e(0x75)}},'collabStatus':{'fetchMiss':_0x4d430e(0x89),'conflict':_0x4d430e(0x84),'notCollab':'Local\x20file','synced':_0x4d430e(0x76),'syncing':_0x4d430e(0x80),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x4d430e(0x85),'will-retry':_0x4d430e(0x7f),'room-full':_0x4d430e(0x7c),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0x4d430e(0x7a),'content':_0x4d430e(0x87)},'permission':{'title':_0x4d430e(0x81),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':_0x4d430e(0x7e)},'closeRoom':_0x4d430e(0x82)},'auth':{'needGotoLoginAlert':_0x4d430e(0x8a)}},o=e;module[_0x4d430e(0x78)]=o;
1
+ 'use strict';const _0x468db0=_0x48f8;(function(_0x1f6f56,_0x2d23ef){const _0x54a92c=_0x48f8,_0x375284=_0x1f6f56();while(!![]){try{const _0x1a298c=-parseInt(_0x54a92c(0x156))/0x1*(-parseInt(_0x54a92c(0x154))/0x2)+-parseInt(_0x54a92c(0x15b))/0x3+parseInt(_0x54a92c(0x166))/0x4*(-parseInt(_0x54a92c(0x14c))/0x5)+-parseInt(_0x54a92c(0x14d))/0x6+-parseInt(_0x54a92c(0x159))/0x7*(parseInt(_0x54a92c(0x15d))/0x8)+parseInt(_0x54a92c(0x152))/0x9*(parseInt(_0x54a92c(0x155))/0xa)+parseInt(_0x54a92c(0x158))/0xb;if(_0x1a298c===_0x2d23ef)break;else _0x375284['push'](_0x375284['shift']());}catch(_0x397c4e){_0x375284['push'](_0x375284['shift']());}}}(_0x292a,0xf1750));function _0x48f8(_0x5de0f0,_0x4b2d1b){const _0x292abc=_0x292a();return _0x48f8=function(_0x48f8b0,_0x51a25e){_0x48f8b0=_0x48f8b0-0x14c;let _0x409db9=_0x292abc[_0x48f8b0];return _0x409db9;},_0x48f8(_0x5de0f0,_0x4b2d1b);}function _0x292a(){const _0x2baae3=['Syncing\x20server\x20data...','951516BkYPJd','exports','12gDKkqX','130AKAAXo','81142aiVkcr','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','39279108fVYhNo','266CJRugI','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','2016492DoHsEj','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','193640VpZnzG','Authentication\x20Error','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Edit\x20conflicts','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Collaboration\x20Conflict','Synced','Click\x20to\x20Reconnect','100xxzVUV','349915bMymus','6609330JtXPUg','Local\x20file','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Connection\x20failed,\x20please\x20check\x20your\x20network.'];_0x292a=function(){return _0x2baae3;};return _0x292a();}const e={'collab-client':{'tooltip':{'reconnect':_0x468db0(0x165)}},'collabStatus':{'fetchMiss':_0x468db0(0x151),'conflict':_0x468db0(0x161),'notCollab':_0x468db0(0x14e),'synced':_0x468db0(0x164),'syncing':'Syncing...','offline':_0x468db0(0x15a)},'session':{'connection-failed':_0x468db0(0x150),'will-retry':_0x468db0(0x14f),'room-full':_0x468db0(0x160),'collaboration-timeout':_0x468db0(0x15c)},'conflict':{'title':_0x468db0(0x163),'content':_0x468db0(0x15f)},'permission':{'title':_0x468db0(0x15e),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x468db0(0x157)},'auth':{'needGotoLoginAlert':_0x468db0(0x162)}},o=e;module[_0x468db0(0x153)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x44af5f=_0x4a57;(function(_0x1b65e4,_0x206c2c){const _0x72635=_0x4a57,_0x2e7b17=_0x1b65e4();while(!![]){try{const _0x221311=-parseInt(_0x72635(0x122))/0x1*(-parseInt(_0x72635(0x10d))/0x2)+parseInt(_0x72635(0x10e))/0x3+parseInt(_0x72635(0x110))/0x4*(-parseInt(_0x72635(0x119))/0x5)+-parseInt(_0x72635(0x114))/0x6+-parseInt(_0x72635(0x121))/0x7+parseInt(_0x72635(0x117))/0x8+parseInt(_0x72635(0x10f))/0x9;if(_0x221311===_0x206c2c)break;else _0x2e7b17['push'](_0x2e7b17['shift']());}catch(_0xb35492){_0x2e7b17['push'](_0x2e7b17['shift']());}}}(_0x4210,0x39180));function _0x4210(){const _0x519251=['1708152VuDXAz','Authentication\x20Error','324150CAQnEQ','Syncing\x20server\x20data...','Edit\x20conflicts','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Syncing...','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','exports','2126061IzJgbQ','37231swKMVT','Click\x20to\x20Reconnect','Synced','2enYhPO','867144kVVdlW','5101956MRmxrg','20DMgVUa','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','1469718rXAijE','Collaboration\x20Conflict','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'];_0x4210=function(){return _0x519251;};return _0x4210();}function _0x4a57(_0x399061,_0x210afc){const _0x4210df=_0x4210();return _0x4a57=function(_0x4a5772,_0x304073){_0x4a5772=_0x4a5772-0x10b;let _0x29849a=_0x4210df[_0x4a5772];return _0x29849a;},_0x4a57(_0x399061,_0x210afc);}const e={'collab-client':{'tooltip':{'reconnect':_0x44af5f(0x10b)}},'collabStatus':{'fetchMiss':_0x44af5f(0x11a),'conflict':_0x44af5f(0x11b),'notCollab':'Local\x20file','synced':_0x44af5f(0x10c),'syncing':_0x44af5f(0x11e),'offline':_0x44af5f(0x11f)},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x44af5f(0x11d),'room-full':_0x44af5f(0x11c),'collaboration-timeout':_0x44af5f(0x112)},'conflict':{'title':_0x44af5f(0x115),'content':'There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.'},'permission':{'title':_0x44af5f(0x118),'content':'Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.'},'collaboration':{'single-unit':{'warning':_0x44af5f(0x113)},'closeRoom':_0x44af5f(0x116)},'auth':{'needGotoLoginAlert':_0x44af5f(0x111)}},o=e;module[_0x44af5f(0x120)]=o;
1
+ 'use strict';function _0x2c15(){const _0x35ec1a=['1FSWieb','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Synced','exports','4199712jNZEiD','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','873XDbXgj','Syncing\x20server\x20data...','26072qTjTRc','Syncing...','16vBIcNW','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','1206588iWkVOv','29015700fFjnPO','Authentication\x20Error','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','994495gCHfNO','7664944BMJSWW','Connection\x20failed,\x20please\x20check\x20your\x20network.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Local\x20file','3082116OflDEJ','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Collaboration\x20Conflict'];_0x2c15=function(){return _0x35ec1a;};return _0x2c15();}const _0xe6cf4d=_0x574f;function _0x574f(_0x3c376d,_0xd54ff0){const _0x2c1522=_0x2c15();return _0x574f=function(_0x574f0a,_0x176b15){_0x574f0a=_0x574f0a-0x1c7;let _0x41e9fe=_0x2c1522[_0x574f0a];return _0x41e9fe;},_0x574f(_0x3c376d,_0xd54ff0);}(function(_0x39915e,_0xad4922){const _0x541159=_0x574f,_0x38c7e2=_0x39915e();while(!![]){try{const _0x3bea6d=-parseInt(_0x541159(0x1d4))/0x1*(parseInt(_0x541159(0x1c8))/0x2)+-parseInt(_0x541159(0x1d1))/0x3+parseInt(_0x541159(0x1de))/0x4*(-parseInt(_0x541159(0x1cc))/0x5)+-parseInt(_0x541159(0x1d8))/0x6+parseInt(_0x541159(0x1cd))/0x7+parseInt(_0x541159(0x1dc))/0x8*(-parseInt(_0x541159(0x1da))/0x9)+parseInt(_0x541159(0x1c9))/0xa;if(_0x3bea6d===_0xad4922)break;else _0x38c7e2['push'](_0x38c7e2['shift']());}catch(_0x377a06){_0x38c7e2['push'](_0x38c7e2['shift']());}}}(_0x2c15,0x874f1));const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0xe6cf4d(0x1db),'conflict':'Edit\x20conflicts','notCollab':_0xe6cf4d(0x1d0),'synced':_0xe6cf4d(0x1d6),'syncing':_0xe6cf4d(0x1dd),'offline':_0xe6cf4d(0x1cb)},'session':{'connection-failed':_0xe6cf4d(0x1ce),'will-retry':_0xe6cf4d(0x1df),'room-full':_0xe6cf4d(0x1cf),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0xe6cf4d(0x1d3),'content':_0xe6cf4d(0x1d9)},'permission':{'title':_0xe6cf4d(0x1ca),'content':_0xe6cf4d(0x1d2)},'collaboration':{'single-unit':{'warning':_0xe6cf4d(0x1c7)},'closeRoom':_0xe6cf4d(0x1d5)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}},o=e;module[_0xe6cf4d(0x1d7)]=o;
@@ -1 +1 @@
1
- 'use strict';function _0x2eee(_0x1a3e7d,_0x872845){const _0x3793c3=_0x3793();return _0x2eee=function(_0x2eee85,_0x89f96){_0x2eee85=_0x2eee85-0xd6;let _0xee822c=_0x3793c3[_0x2eee85];return _0xee822c;},_0x2eee(_0x1a3e7d,_0x872845);}const _0x63be40=_0x2eee;(function(_0x2bdcdf,_0x4f64ef){const _0x913d4d=_0x2eee,_0x759e37=_0x2bdcdf();while(!![]){try{const _0x407f8d=parseInt(_0x913d4d(0xd7))/0x1*(-parseInt(_0x913d4d(0xe2))/0x2)+parseInt(_0x913d4d(0xeb))/0x3*(parseInt(_0x913d4d(0xe4))/0x4)+parseInt(_0x913d4d(0xe0))/0x5+parseInt(_0x913d4d(0xde))/0x6*(-parseInt(_0x913d4d(0xe6))/0x7)+-parseInt(_0x913d4d(0xee))/0x8+-parseInt(_0x913d4d(0xe7))/0x9+-parseInt(_0x913d4d(0xe3))/0xa*(-parseInt(_0x913d4d(0xec))/0xb);if(_0x407f8d===_0x4f64ef)break;else _0x759e37['push'](_0x759e37['shift']());}catch(_0x2b3e34){_0x759e37['push'](_0x759e37['shift']());}}}(_0x3793,0x9820b));function _0x3793(){const _0x2c57e2=['1lFuDtt','服务器未响应,你的编辑将在本地缓存','点击重新连接','正在拉取服务端数据...','协同房间已满,你的编辑将在本地缓存','编辑冲突','权限错误','240IaozEP','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','2020835ouYxWn','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','772486cIWSJL','55790FtxFxb','1568uUsIxd','协同冲突','168595DvcaoZ','3190527ynyCdw','保存中...','连接失败,将在一会儿之后重试连接','exports','4077nobZri','3597Qkwenm','连接失败,请检查你的网络','3471736bBZMRY','已同步','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','本地文件','已离线,编辑将在本地缓存'];_0x3793=function(){return _0x2c57e2;};return _0x3793();}const o={'collab-client':{'tooltip':{'reconnect':_0x63be40(0xd9)}},'collabStatus':{'fetchMiss':_0x63be40(0xda),'conflict':_0x63be40(0xdc),'notCollab':_0x63be40(0xf1),'synced':_0x63be40(0xef),'syncing':_0x63be40(0xe8),'offline':_0x63be40(0xd6)},'session':{'connection-failed':_0x63be40(0xed),'will-retry':_0x63be40(0xe9),'room-full':_0x63be40(0xdb),'collaboration-timeout':_0x63be40(0xd8)},'conflict':{'title':_0x63be40(0xe5),'content':_0x63be40(0xf0)},'permission':{'title':_0x63be40(0xdd),'content':_0x63be40(0xdf)},'collaboration':{'single-unit':{'warning':_0x63be40(0xe1)},'closeRoom':'由于协同房间被关闭,编辑权限被收回。'},'auth':{'needGotoLoginAlert':'你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。'}};module[_0x63be40(0xea)]=o;
1
+ 'use strict';const _0x38bfd9=_0x4cbd;(function(_0x77fc6e,_0x2f90ed){const _0x1cba30=_0x4cbd,_0x14feff=_0x77fc6e();while(!![]){try{const _0x1a7168=parseInt(_0x1cba30(0x199))/0x1+-parseInt(_0x1cba30(0x18e))/0x2+parseInt(_0x1cba30(0x193))/0x3*(parseInt(_0x1cba30(0x194))/0x4)+parseInt(_0x1cba30(0x1a3))/0x5+parseInt(_0x1cba30(0x19b))/0x6*(parseInt(_0x1cba30(0x1a5))/0x7)+parseInt(_0x1cba30(0x1a4))/0x8*(-parseInt(_0x1cba30(0x19c))/0x9)+-parseInt(_0x1cba30(0x18b))/0xa;if(_0x1a7168===_0x2f90ed)break;else _0x14feff['push'](_0x14feff['shift']());}catch(_0x5c5135){_0x14feff['push'](_0x14feff['shift']());}}}(_0x3152,0x30e4c));const o={'collab-client':{'tooltip':{'reconnect':_0x38bfd9(0x190)}},'collabStatus':{'fetchMiss':_0x38bfd9(0x18c),'conflict':_0x38bfd9(0x1a1),'notCollab':_0x38bfd9(0x196),'synced':_0x38bfd9(0x19a),'syncing':_0x38bfd9(0x18f),'offline':'已离线,编辑将在本地缓存'},'session':{'connection-failed':_0x38bfd9(0x1a0),'will-retry':_0x38bfd9(0x197),'room-full':'协同房间已满,你的编辑将在本地缓存','collaboration-timeout':_0x38bfd9(0x198)},'conflict':{'title':_0x38bfd9(0x1a2),'content':_0x38bfd9(0x192)},'permission':{'title':_0x38bfd9(0x18d),'content':_0x38bfd9(0x191)},'collaboration':{'single-unit':{'warning':_0x38bfd9(0x19d)},'closeRoom':_0x38bfd9(0x195)},'auth':{'needGotoLoginAlert':_0x38bfd9(0x19f)}};function _0x4cbd(_0x9165d7,_0x283844){const _0x315220=_0x3152();return _0x4cbd=function(_0x4cbda4,_0x43e88c){_0x4cbda4=_0x4cbda4-0x18b;let _0x1e1835=_0x315220[_0x4cbda4];return _0x1e1835;},_0x4cbd(_0x9165d7,_0x283844);}module[_0x38bfd9(0x19e)]=o;function _0x3152(){const _0x455e1d=['6438570gBTCYs','正在拉取服务端数据...','权限错误','44616Nqslcd','保存中...','点击重新连接','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','816027DZOmnb','4oRRdVm','由于协同房间被关闭,编辑权限被收回。','本地文件','连接失败,将在一会儿之后重试连接','服务器未响应,你的编辑将在本地缓存','227574zeCBxA','已同步','1986yIrToe','171HrNHXK','你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','exports','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','连接失败,请检查你的网络','编辑冲突','协同冲突','422955ZTVFlv','29024SkQHwe','7427JuktXR'];_0x3152=function(){return _0x455e1d;};return _0x3152();}
@@ -1 +1 @@
1
- 'use strict';const _0x55bd93=_0x17bf;function _0x17bf(_0x59ed1e,_0x4dd906){const _0x2797cc=_0x2797();return _0x17bf=function(_0x17bf8c,_0x39d1aa){_0x17bf8c=_0x17bf8c-0x153;let _0x487114=_0x2797cc[_0x17bf8c];return _0x487114;},_0x17bf(_0x59ed1e,_0x4dd906);}function _0x2797(){const _0x794e35=['Click\x20to\x20Reconnect','138495fYhqDS','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','126151WfnjzH','Edit\x20conflicts','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','770jbjoFt','Authentication\x20Error','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','8mjrpbf','Connection\x20failed,\x20please\x20check\x20your\x20network.','704QFsoeL','exports','Synced','4417980gnTRtG','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','Local\x20file','2799trMvyC','Syncing...','Collaboration\x20Conflict','Syncing\x20server\x20data...','808467MXHgdX','331464mUVzqj','7950jpHMbW'];_0x2797=function(){return _0x794e35;};return _0x2797();}(function(_0x19554d,_0x365913){const _0xcbec45=_0x17bf,_0x23114e=_0x19554d();while(!![]){try{const _0x24b46f=-parseInt(_0xcbec45(0x15c))/0x1+parseInt(_0xcbec45(0x157))/0x2+-parseInt(_0xcbec45(0x156))/0x3+parseInt(_0xcbec45(0x166))/0x4*(parseInt(_0xcbec45(0x15a))/0x5)+-parseInt(_0xcbec45(0x158))/0x6*(parseInt(_0xcbec45(0x160))/0x7)+parseInt(_0xcbec45(0x168))/0x8*(parseInt(_0xcbec45(0x16e))/0x9)+parseInt(_0xcbec45(0x16b))/0xa;if(_0x24b46f===_0x365913)break;else _0x23114e['push'](_0x23114e['shift']());}catch(_0x3a5e82){_0x23114e['push'](_0x23114e['shift']());}}}(_0x2797,0x245aa));const e={'collab-client':{'tooltip':{'reconnect':_0x55bd93(0x159)}},'collabStatus':{'fetchMiss':_0x55bd93(0x155),'conflict':_0x55bd93(0x15d),'notCollab':_0x55bd93(0x16d),'synced':_0x55bd93(0x16a),'syncing':_0x55bd93(0x153),'offline':_0x55bd93(0x163)},'session':{'connection-failed':_0x55bd93(0x167),'will-retry':_0x55bd93(0x164),'room-full':_0x55bd93(0x15f),'collaboration-timeout':_0x55bd93(0x165)},'conflict':{'title':_0x55bd93(0x154),'content':_0x55bd93(0x15e)},'permission':{'title':_0x55bd93(0x161),'content':_0x55bd93(0x16c)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x55bd93(0x162)},'auth':{'needGotoLoginAlert':_0x55bd93(0x15b)}},o=e;module[_0x55bd93(0x169)]=o;
1
+ 'use strict';function _0x5ee1(_0x560d4e,_0x3fca4e){const _0x341054=_0x3410();return _0x5ee1=function(_0x5ee122,_0xeb0197){_0x5ee122=_0x5ee122-0xcc;let _0x1a29de=_0x341054[_0x5ee122];return _0x1a29de;},_0x5ee1(_0x560d4e,_0x3fca4e);}const _0x1450ae=_0x5ee1;(function(_0x326fd9,_0x2cf31f){const _0x1a6fba=_0x5ee1,_0x7c0d8a=_0x326fd9();while(!![]){try{const _0x1b57ed=parseInt(_0x1a6fba(0xcc))/0x1+parseInt(_0x1a6fba(0xe1))/0x2+-parseInt(_0x1a6fba(0xce))/0x3*(parseInt(_0x1a6fba(0xe0))/0x4)+-parseInt(_0x1a6fba(0xd8))/0x5+-parseInt(_0x1a6fba(0xcf))/0x6*(parseInt(_0x1a6fba(0xd0))/0x7)+parseInt(_0x1a6fba(0xd5))/0x8*(-parseInt(_0x1a6fba(0xd7))/0x9)+parseInt(_0x1a6fba(0xd4))/0xa;if(_0x1b57ed===_0x2cf31f)break;else _0x7c0d8a['push'](_0x7c0d8a['shift']());}catch(_0x5ced73){_0x7c0d8a['push'](_0x7c0d8a['shift']());}}}(_0x3410,0x5f5c7));const e={'collab-client':{'tooltip':{'reconnect':'Click\x20to\x20Reconnect'}},'collabStatus':{'fetchMiss':_0x1450ae(0xe4),'conflict':_0x1450ae(0xe5),'notCollab':_0x1450ae(0xde),'synced':_0x1450ae(0xdf),'syncing':_0x1450ae(0xd1),'offline':_0x1450ae(0xcd)},'session':{'connection-failed':_0x1450ae(0xd6),'will-retry':_0x1450ae(0xdd),'room-full':_0x1450ae(0xe2),'collaboration-timeout':_0x1450ae(0xdc)},'conflict':{'title':_0x1450ae(0xdb),'content':_0x1450ae(0xd9)},'permission':{'title':'Authentication\x20Error','content':_0x1450ae(0xd3)},'collaboration':{'single-unit':{'warning':_0x1450ae(0xda)},'closeRoom':_0x1450ae(0xe6)},'auth':{'needGotoLoginAlert':_0x1450ae(0xe3)}},o=e;function _0x3410(){const _0x131152=['Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Syncing\x20server\x20data...','Edit\x20conflicts','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','574797bbolzf','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','1763193XqEHuf','428958LVogMv','63KVIEKc','Syncing...','exports','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','9828470otirKp','2671712RnyFCa','Connection\x20failed,\x20please\x20check\x20your\x20network.','9PItXBB','1643800IxoMui','There\x20is\x20a\x20conflict\x20between\x20your\x20local\x20copy\x20and\x20the\x20copy\x20on\x20the\x20server.\x20Please\x20save\x20your\x20local\x20edits,\x20because\x20they\x20will\x20be\x20lost\x20when\x20you\x20reload\x20the\x20page.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Collaboration\x20Conflict','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Local\x20file','Synced','4BhVbre','1453694rMKeXd','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.'];_0x3410=function(){return _0x131152;};return _0x3410();}module[_0x1450ae(0xd2)]=o;