@univerjs-pro/collaboration-client 0.5.0-nightly.202411121606 → 0.5.0-nightly.202411141606

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';const _0x2c0d80=_0x1797;(function(_0x43d9e2,_0x46f0f7){const _0x31ea7b=_0x1797,_0x1da71f=_0x43d9e2();while(!![]){try{const _0x33b073=-parseInt(_0x31ea7b(0xad))/0x1+-parseInt(_0x31ea7b(0xb3))/0x2+parseInt(_0x31ea7b(0xa6))/0x3+parseInt(_0x31ea7b(0xb2))/0x4+parseInt(_0x31ea7b(0xa0))/0x5*(-parseInt(_0x31ea7b(0xb5))/0x6)+parseInt(_0x31ea7b(0xb0))/0x7+parseInt(_0x31ea7b(0xb1))/0x8;if(_0x33b073===_0x46f0f7)break;else _0x1da71f['push'](_0x1da71f['shift']());}catch(_0x4f02a6){_0x1da71f['push'](_0x1da71f['shift']());}}}(_0x49b8,0x2ddac));function _0x49b8(){const _0x4b0cf5=['Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','18TNaPzp','621505GiHSDo','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Edit\x20conflicts','Synced','1006986lGgaXp','Syncing\x20server\x20data...','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Authentication\x20Error','Click\x20to\x20Reconnect','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','Local\x20file','245517CgtZoK','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','1713712oAlujL','865128aWZBiV','1434520MevFBX','482018QblUWQ'];_0x49b8=function(){return _0x4b0cf5;};return _0x49b8();}const e={'collab-client':{'tooltip':{'reconnect':_0x2c0d80(0xaa)}},'collabStatus':{'fetchMiss':_0x2c0d80(0xa7),'conflict':_0x2c0d80(0xa4),'notCollab':_0x2c0d80(0xac),'synced':_0x2c0d80(0xa5),'syncing':'Syncing...','offline':_0x2c0d80(0xa8)},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x2c0d80(0xb4),'room-full':_0x2c0d80(0xae),'collaboration-timeout':_0x2c0d80(0xa2)},'conflict':{'title':'Collaboration\x20Conflict','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':_0x2c0d80(0xa9),'content':_0x2c0d80(0xa1)},'collaboration':{'single-unit':{'warning':_0x2c0d80(0xaf)},'closeRoom':_0x2c0d80(0xab)},'auth':{'needGotoLoginAlert':_0x2c0d80(0xa3)}};function _0x1797(_0x55e7fd,_0x32ed48){const _0x49b838=_0x49b8();return _0x1797=function(_0x17978b,_0x5f4640){_0x17978b=_0x17978b-0xa0;let _0x28c458=_0x49b838[_0x17978b];return _0x28c458;},_0x1797(_0x55e7fd,_0x32ed48);}module['exports']=e;
1
+ 'use strict';const _0x209e52=_0x35b5;function _0x35b5(_0x5e65f1,_0x233dd8){const _0x54a09e=_0x54a0();return _0x35b5=function(_0x35b585,_0x106f35){_0x35b585=_0x35b585-0x112;let _0x278dad=_0x54a09e[_0x35b585];return _0x278dad;},_0x35b5(_0x5e65f1,_0x233dd8);}(function(_0x58c308,_0x2c27ff){const _0x4d762e=_0x35b5,_0x7be0f=_0x58c308();while(!![]){try{const _0x516ae8=parseInt(_0x4d762e(0x120))/0x1*(parseInt(_0x4d762e(0x11c))/0x2)+parseInt(_0x4d762e(0x112))/0x3+parseInt(_0x4d762e(0x116))/0x4+parseInt(_0x4d762e(0x11b))/0x5*(parseInt(_0x4d762e(0x115))/0x6)+parseInt(_0x4d762e(0x126))/0x7+parseInt(_0x4d762e(0x11e))/0x8+-parseInt(_0x4d762e(0x113))/0x9;if(_0x516ae8===_0x2c27ff)break;else _0x7be0f['push'](_0x7be0f['shift']());}catch(_0x41d3cd){_0x7be0f['push'](_0x7be0f['shift']());}}}(_0x54a0,0xdbe92));function _0x54a0(){const _0x30d6ed=['Local\x20file','12366935zJvxXY','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','1052019glZDbh','41163831pvPjiM','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','7882818jgzFRq','6391948eeiqmY','Syncing...','Synced','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','5FIyapH','2fsVxoq','Collaboration\x20Conflict','3175984MVWGir','Syncing\x20server\x20data...','48347PpgOnK','Click\x20to\x20Reconnect','Connection\x20failed,\x20please\x20check\x20your\x20network.','Authentication\x20Error','Edit\x20conflicts'];_0x54a0=function(){return _0x30d6ed;};return _0x54a0();}const e={'collab-client':{'tooltip':{'reconnect':_0x209e52(0x121)}},'collabStatus':{'fetchMiss':_0x209e52(0x11f),'conflict':_0x209e52(0x124),'notCollab':_0x209e52(0x125),'synced':_0x209e52(0x118),'syncing':_0x209e52(0x117),'offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x209e52(0x122),'will-retry':_0x209e52(0x119),'room-full':_0x209e52(0x11a),'collaboration-timeout':'The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.'},'conflict':{'title':_0x209e52(0x11d),'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':_0x209e52(0x123),'content':_0x209e52(0x127)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x209e52(0x114)},'auth':{'needGotoLoginAlert':'Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.'}};module['exports']=e;
@@ -1 +1 @@
1
- 'use strict';function _0x4b4b(){const _0x92780e=['سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','505590GJFbDE','2212305hgGbJP','exports','14466249jcfmmE','آفلاین،\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ویرایش','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','2UDNcaz','شما\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سرور...','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','6iXrMPf','اتاق\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از\x20بازیابی\x20صفحه\x20از\x20بین\x20خواهند\x20رفت.','142051AmMhjn','795792YmOlVg','6558110IPMiRe','همگام\x20سازی','28390660kdnkbU','424ERMtyL'];_0x4b4b=function(){return _0x92780e;};return _0x4b4b();}const _0x8608c8=_0x2091;(function(_0x1b2fa3,_0x42b90d){const _0x3aaf39=_0x2091,_0x912fcf=_0x1b2fa3();while(!![]){try{const _0x1cb125=parseInt(_0x3aaf39(0x1df))/0x1+parseInt(_0x3aaf39(0x1cf))/0x2*(-parseInt(_0x3aaf39(0x1c7))/0x3)+parseInt(_0x3aaf39(0x1d8))/0x4+parseInt(_0x3aaf39(0x1d9))/0x5*(-parseInt(_0x3aaf39(0x1d4))/0x6)+-parseInt(_0x3aaf39(0x1d7))/0x7*(-parseInt(_0x3aaf39(0x1dc))/0x8)+-parseInt(_0x3aaf39(0x1c9))/0x9+parseInt(_0x3aaf39(0x1db))/0xa;if(_0x1cb125===_0x42b90d)break;else _0x912fcf['push'](_0x912fcf['shift']());}catch(_0x1301ed){_0x912fcf['push'](_0x912fcf['shift']());}}}(_0x4b4b,0xeb09b));function _0x2091(_0x1dc4e4,_0x13b2a3){const _0x4b4bef=_0x4b4b();return _0x2091=function(_0x209190,_0x615169){_0x209190=_0x209190-0x1c7;let _0x46cc4f=_0x4b4bef[_0x209190];return _0x46cc4f;},_0x2091(_0x1dc4e4,_0x13b2a3);}const o={'collab-client':{'tooltip':{'reconnect':_0x8608c8(0x1de)}},'collabStatus':{'fetchMiss':_0x8608c8(0x1d2),'conflict':_0x8608c8(0x1cd),'notCollab':_0x8608c8(0x1cc),'synced':_0x8608c8(0x1da),'syncing':'در\x20حال\x20همگام\x20سازی...','offline':_0x8608c8(0x1ca)},'session':{'connection-failed':_0x8608c8(0x1d3),'will-retry':_0x8608c8(0x1d1),'room-full':_0x8608c8(0x1d5),'collaboration-timeout':_0x8608c8(0x1dd)},'conflict':{'title':'تداخل\x20همکاری','content':_0x8608c8(0x1d6)},'permission':{'title':'خطای\x20اعتبارسنجی','content':_0x8608c8(0x1cb)},'collaboration':{'single-unit':{'warning':_0x8608c8(0x1d0)},'closeRoom':_0x8608c8(0x1ce)},'auth':{'needGotoLoginAlert':'ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.'}};module[_0x8608c8(0x1c8)]=o;
1
+ 'use strict';const _0x1d3bd9=_0x2e07;(function(_0x5ef712,_0x577ad0){const _0x25c4c4=_0x2e07,_0x345ed8=_0x5ef712();while(!![]){try{const _0x1d560a=-parseInt(_0x25c4c4(0xef))/0x1*(parseInt(_0x25c4c4(0xfc))/0x2)+-parseInt(_0x25c4c4(0x108))/0x3*(parseInt(_0x25c4c4(0xf0))/0x4)+parseInt(_0x25c4c4(0x100))/0x5+parseInt(_0x25c4c4(0x101))/0x6*(-parseInt(_0x25c4c4(0xf3))/0x7)+parseInt(_0x25c4c4(0x105))/0x8*(-parseInt(_0x25c4c4(0xfb))/0x9)+parseInt(_0x25c4c4(0x109))/0xa*(-parseInt(_0x25c4c4(0x104))/0xb)+parseInt(_0x25c4c4(0xf1))/0xc;if(_0x1d560a===_0x577ad0)break;else _0x345ed8['push'](_0x345ed8['shift']());}catch(_0x263588){_0x345ed8['push'](_0x345ed8['shift']());}}}(_0x29f5,0xc7019));function _0x2e07(_0x15227c,_0x5cd498){const _0x29f5af=_0x29f5();return _0x2e07=function(_0x2e070b,_0x566054){_0x2e070b=_0x2e070b-0xef;let _0x5ac032=_0x29f5af[_0x2e070b];return _0x5ac032;},_0x2e07(_0x15227c,_0x5cd498);}function _0x29f5(){const _0x2293f0=['در\x20حال\x20همگام\x20سازی...','تداخل\x20همکاری','556875HmOmLG','679576LlBDjv','پرونده\x20محلی','اتاق\x20همکاری\x20پر\x20است.\x20شما\x20ویرایش\x20های\x20خود\x20را\x20در\x20محلی\x20ذخیره\x20خواهید\x20کرد.','576DntbMS','10rGFSpJ','یک\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رفت.','529467peGftg','15592oDzUGo','53261820iXjJqI','ورود\x20شما\x20منقضی\x20شده\x20است،\x20برای\x20ورود\x20مجدد\x20کلیک\x20کنید،\x20برای\x20ذخیره\x20ویرایش\x20های\x20محلی\x20خود\x20کلیک\x20کنید.','28gAkIKY','شما\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شوند','برای\x20اتصال\x20مجدد\x20کلیک\x20کنید','exports','امتیازات\x20ویرایش\x20به\x20دلیل\x20بسته\x20شدن\x20اتاق\x20همکاری\x20لغو\x20شد.','117TMRSfM','4UXaRaY','اتصال\x20ناموفق\x20بود،\x20ما\x20بعداً\x20دوباره\x20تلاش\x20می\x20کنیم.','اتصال\x20ناموفق\x20بود،\x20لطفا\x20شبکه\x20خود\x20را\x20بررسی\x20کنید.','خطای\x20اعتبارسنجی','1166890XIEMCY','1341672NUYxQb'];_0x29f5=function(){return _0x2293f0;};return _0x29f5();}const o={'collab-client':{'tooltip':{'reconnect':_0x1d3bd9(0xf8)}},'collabStatus':{'fetchMiss':_0x1d3bd9(0xf5),'conflict':_0x1d3bd9(0xf6),'notCollab':_0x1d3bd9(0x106),'synced':'همگام\x20سازی','syncing':_0x1d3bd9(0x102),'offline':_0x1d3bd9(0xf7)},'session':{'connection-failed':_0x1d3bd9(0xfe),'will-retry':_0x1d3bd9(0xfd),'room-full':_0x1d3bd9(0x107),'collaboration-timeout':'سرور\x20به\x20درخواست\x20همکاری\x20شما\x20پاسخ\x20نمی\x20دهد.\x20ویرایش\x20های\x20شما\x20در\x20محلی\x20ذخیره\x20می\x20شوند.'},'conflict':{'title':_0x1d3bd9(0x103),'content':_0x1d3bd9(0x10a)},'permission':{'title':_0x1d3bd9(0xff),'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رفت.'},'collaboration':{'single-unit':{'warning':_0x1d3bd9(0xf4)},'closeRoom':_0x1d3bd9(0xfa)},'auth':{'needGotoLoginAlert':_0x1d3bd9(0xf2)}};module[_0x1d3bd9(0xf9)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x2fd68e=_0x4bad;(function(_0x1fae78,_0x14e640){const _0xbd0ff2=_0x4bad,_0x3e7316=_0x1fae78();while(!![]){try{const _0x4fc7cf=-parseInt(_0xbd0ff2(0x1a3))/0x1*(-parseInt(_0xbd0ff2(0x194))/0x2)+parseInt(_0xbd0ff2(0x1a4))/0x3+-parseInt(_0xbd0ff2(0x19b))/0x4*(-parseInt(_0xbd0ff2(0x199))/0x5)+parseInt(_0xbd0ff2(0x1a2))/0x6+parseInt(_0xbd0ff2(0x1a7))/0x7+-parseInt(_0xbd0ff2(0x19d))/0x8+-parseInt(_0xbd0ff2(0x193))/0x9*(parseInt(_0xbd0ff2(0x197))/0xa);if(_0x4fc7cf===_0x14e640)break;else _0x3e7316['push'](_0x3e7316['shift']());}catch(_0x1ea56c){_0x3e7316['push'](_0x3e7316['shift']());}}}(_0x168e,0x92a05));function _0x168e(){const _0x155ec2=['1317520GuhYYA','exports','4QzESem','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','1008912CYntNz','Click\x20to\x20Reconnect','Authentication\x20Error','Edit\x20conflicts','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','3751422nXNQfz','6qnLaTX','1991403uQgrMS','Connection\x20failed,\x20please\x20check\x20your\x20network.','Syncing\x20server\x20data...','2795345OhHrmJ','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.','36HDXSkL','377802Ajtnhz','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','5896470HqmCWB','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.'];_0x168e=function(){return _0x155ec2;};return _0x168e();}const e={'collab-client':{'tooltip':{'reconnect':_0x2fd68e(0x19e)}},'collabStatus':{'fetchMiss':_0x2fd68e(0x1a6),'conflict':_0x2fd68e(0x1a0),'notCollab':'Local\x20file','synced':'Synced','syncing':'Syncing...','offline':'Offline,\x20edits\x20would\x20be\x20save\x20on\x20local'},'session':{'connection-failed':_0x2fd68e(0x1a5),'will-retry':_0x2fd68e(0x19c),'room-full':_0x2fd68e(0x198),'collaboration-timeout':_0x2fd68e(0x195)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x2fd68e(0x192)},'permission':{'title':_0x2fd68e(0x19f),'content':_0x2fd68e(0x1a1)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x2fd68e(0x196)}},o=e;function _0x4bad(_0x45a4b5,_0x320c6d){const _0x168e84=_0x168e();return _0x4bad=function(_0x4bad60,_0x172cea){_0x4bad60=_0x4bad60-0x192;let _0x400257=_0x168e84[_0x4bad60];return _0x400257;},_0x4bad(_0x45a4b5,_0x320c6d);}module[_0x2fd68e(0x19a)]=o;
1
+ 'use strict';function _0x3070(_0x2cbecc,_0x5a8660){const _0x390230=_0x3902();return _0x3070=function(_0x3070f4,_0x83df2a){_0x3070f4=_0x3070f4-0x13d;let _0x585d50=_0x390230[_0x3070f4];return _0x585d50;},_0x3070(_0x2cbecc,_0x5a8660);}const _0x44494d=_0x3070;function _0x3902(){const _0x52bcd4=['8347031DZboQy','5yasLUZ','23724tRFaaj','6844328fEHIfc','Connection\x20failed,\x20please\x20check\x20your\x20network.','Syncing...','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','2ZdCnJX','Local\x20file','7321386SiUNsh','Edit\x20conflicts','You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','exports','Click\x20to\x20Reconnect','636319ikqQMQ','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.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','7845240fiYqgb','Collaboration\x20Conflict','18240yYBAVI','Syncing\x20server\x20data...','4818591XffBhn','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Authentication\x20Error'];_0x3902=function(){return _0x52bcd4;};return _0x3902();}(function(_0x52c89e,_0x380029){const _0x51f068=_0x3070,_0x4700e7=_0x52c89e();while(!![]){try{const _0x1d1752=-parseInt(_0x51f068(0x152))/0x1*(parseInt(_0x51f068(0x14a))/0x2)+-parseInt(_0x51f068(0x13d))/0x3+parseInt(_0x51f068(0x144))/0x4+parseInt(_0x51f068(0x142))/0x5*(-parseInt(_0x51f068(0x14c))/0x6)+-parseInt(_0x51f068(0x141))/0x7+-parseInt(_0x51f068(0x155))/0x8+parseInt(_0x51f068(0x143))/0x9*(parseInt(_0x51f068(0x157))/0xa);if(_0x1d1752===_0x380029)break;else _0x4700e7['push'](_0x4700e7['shift']());}catch(_0x239613){_0x4700e7['push'](_0x4700e7['shift']());}}}(_0x3902,0xd7a6f));const e={'collab-client':{'tooltip':{'reconnect':_0x44494d(0x151)}},'collabStatus':{'fetchMiss':_0x44494d(0x158),'conflict':_0x44494d(0x14d),'notCollab':_0x44494d(0x14b),'synced':'Synced','syncing':_0x44494d(0x146),'offline':_0x44494d(0x13f)},'session':{'connection-failed':_0x44494d(0x145),'will-retry':_0x44494d(0x148),'room-full':_0x44494d(0x149),'collaboration-timeout':_0x44494d(0x147)},'conflict':{'title':_0x44494d(0x156),'content':_0x44494d(0x153)},'permission':{'title':_0x44494d(0x140),'content':_0x44494d(0x154)},'collaboration':{'single-unit':{'warning':_0x44494d(0x14e)},'closeRoom':_0x44494d(0x14f)},'auth':{'needGotoLoginAlert':_0x44494d(0x13e)}},o=e;module[_0x44494d(0x150)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x1ccf9b=_0x31b7;function _0x31b7(_0x5e3cf3,_0x5b93f3){const _0x308986=_0x3089();return _0x31b7=function(_0x31b7b3,_0x3d7c6b){_0x31b7b3=_0x31b7b3-0x109;let _0x1ee507=_0x308986[_0x31b7b3];return _0x1ee507;},_0x31b7(_0x5e3cf3,_0x5b93f3);}(function(_0x273d2a,_0x2042a4){const _0x45fcae=_0x31b7,_0x1877c6=_0x273d2a();while(!![]){try{const _0x5ea177=-parseInt(_0x45fcae(0x11c))/0x1+parseInt(_0x45fcae(0x11b))/0x2*(parseInt(_0x45fcae(0x119))/0x3)+-parseInt(_0x45fcae(0x10a))/0x4*(-parseInt(_0x45fcae(0x121))/0x5)+-parseInt(_0x45fcae(0x11d))/0x6+-parseInt(_0x45fcae(0x110))/0x7+-parseInt(_0x45fcae(0x10f))/0x8+-parseInt(_0x45fcae(0x114))/0x9*(-parseInt(_0x45fcae(0x11f))/0xa);if(_0x5ea177===_0x2042a4)break;else _0x1877c6['push'](_0x1877c6['shift']());}catch(_0x3a60c0){_0x1877c6['push'](_0x1877c6['shift']());}}}(_0x3089,0xf0907));const e={'collab-client':{'tooltip':{'reconnect':_0x1ccf9b(0x10e)}},'collabStatus':{'fetchMiss':_0x1ccf9b(0x113),'conflict':'Edit\x20conflicts','notCollab':_0x1ccf9b(0x10c),'synced':_0x1ccf9b(0x11e),'syncing':_0x1ccf9b(0x109),'offline':_0x1ccf9b(0x115)},'session':{'connection-failed':_0x1ccf9b(0x122),'will-retry':_0x1ccf9b(0x111),'room-full':_0x1ccf9b(0x116),'collaboration-timeout':_0x1ccf9b(0x117)},'conflict':{'title':'Collaboration\x20Conflict','content':_0x1ccf9b(0x10d)},'permission':{'title':_0x1ccf9b(0x112),'content':_0x1ccf9b(0x118)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':_0x1ccf9b(0x120)},'auth':{'needGotoLoginAlert':_0x1ccf9b(0x10b)}},o=e;module[_0x1ccf9b(0x11a)]=o;function _0x3089(){const _0x2c0746=['1740144mUqGKC','6265665bZYiNd','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Authentication\x20Error','Syncing\x20server\x20data...','63pfqMAY','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','3989637HNoSsw','exports','2ywuDIS','1087335YYkMPo','881598zfKIDP','Synced','1194210GJKKus','Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.','1944010qVvCNB','Connection\x20failed,\x20please\x20check\x20your\x20network.','Syncing...','12JsqIvr','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Local\x20file','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.','Click\x20to\x20Reconnect'];_0x3089=function(){return _0x2c0746;};return _0x3089();}
1
+ 'use strict';function _0x554b(){const _0x297b89=['Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Local\x20file','Click\x20to\x20Reconnect','84uLUYJB','15524157rUZCWv','91861zMjWtm','172583AatwbW','Syncing...','1886710mFluNu','Collaboration\x20Conflict','Edit\x20conflicts','4TPtdVT','613088HrQFxC','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','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.','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.','1744788AtnRIa','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Authentication\x20Error','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','258mcsxyM','9IzrxQG','39945wXoolD','exports','Syncing\x20server\x20data...'];_0x554b=function(){return _0x297b89;};return _0x554b();}const _0x5519f4=_0x1f3f;function _0x1f3f(_0x312167,_0x318ca8){const _0x554ba6=_0x554b();return _0x1f3f=function(_0x1f3fd5,_0x31c1d8){_0x1f3fd5=_0x1f3fd5-0x1c9;let _0x291e68=_0x554ba6[_0x1f3fd5];return _0x291e68;},_0x1f3f(_0x312167,_0x318ca8);}(function(_0xf4fba7,_0x15ce8a){const _0x5a26f1=_0x1f3f,_0x2ca330=_0xf4fba7();while(!![]){try{const _0x1d7319=-parseInt(_0x5a26f1(0x1d1))/0x1*(parseInt(_0x5a26f1(0x1d6))/0x2)+-parseInt(_0x5a26f1(0x1dc))/0x3+-parseInt(_0x5a26f1(0x1ce))/0x4*(-parseInt(_0x5a26f1(0x1e2))/0x5)+-parseInt(_0x5a26f1(0x1e0))/0x6*(parseInt(_0x5a26f1(0x1d0))/0x7)+parseInt(_0x5a26f1(0x1d7))/0x8+-parseInt(_0x5a26f1(0x1e1))/0x9*(-parseInt(_0x5a26f1(0x1d3))/0xa)+parseInt(_0x5a26f1(0x1cf))/0xb;if(_0x1d7319===_0x15ce8a)break;else _0x2ca330['push'](_0x2ca330['shift']());}catch(_0x47737d){_0x2ca330['push'](_0x2ca330['shift']());}}}(_0x554b,0x56420));const e={'collab-client':{'tooltip':{'reconnect':_0x5519f4(0x1cd)}},'collabStatus':{'fetchMiss':_0x5519f4(0x1ca),'conflict':_0x5519f4(0x1d5),'notCollab':_0x5519f4(0x1cc),'synced':'Synced','syncing':_0x5519f4(0x1d2),'offline':_0x5519f4(0x1cb)},'session':{'connection-failed':'Connection\x20failed,\x20please\x20check\x20your\x20network.','will-retry':_0x5519f4(0x1da),'room-full':'Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','collaboration-timeout':_0x5519f4(0x1dd)},'conflict':{'title':_0x5519f4(0x1d4),'content':_0x5519f4(0x1d9)},'permission':{'title':_0x5519f4(0x1de),'content':_0x5519f4(0x1df)},'collaboration':{'single-unit':{'warning':_0x5519f4(0x1db)},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x5519f4(0x1d8)}},o=e;module[_0x5519f4(0x1c9)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x47eb01=_0x2029;(function(_0x360b43,_0x4cf51a){const _0x4635a4=_0x2029,_0x1f559b=_0x360b43();while(!![]){try{const _0x4a2e36=-parseInt(_0x4635a4(0x16b))/0x1*(-parseInt(_0x4635a4(0x171))/0x2)+parseInt(_0x4635a4(0x177))/0x3*(-parseInt(_0x4635a4(0x175))/0x4)+-parseInt(_0x4635a4(0x173))/0x5+-parseInt(_0x4635a4(0x167))/0x6+parseInt(_0x4635a4(0x166))/0x7*(parseInt(_0x4635a4(0x163))/0x8)+parseInt(_0x4635a4(0x16c))/0x9+parseInt(_0x4635a4(0x169))/0xa*(parseInt(_0x4635a4(0x164))/0xb);if(_0x4a2e36===_0x4cf51a)break;else _0x1f559b['push'](_0x1f559b['shift']());}catch(_0x1843e0){_0x1f559b['push'](_0x1f559b['shift']());}}}(_0x1653,0xd9865));function _0x2029(_0x122b23,_0x5ed872){const _0x16539b=_0x1653();return _0x2029=function(_0x20292c,_0x4ec794){_0x20292c=_0x20292c-0x15f;let _0x20ae7c=_0x16539b[_0x20292c];return _0x20ae7c;},_0x2029(_0x122b23,_0x5ed872);}function _0x1653(){const _0x3e3d7b=['你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。','服务器未响应,你的编辑将在本地缓存','122amjsCH','本地文件','6150520Okvehp','协同房间已满,你的编辑将在本地缓存','2564XMBUdo','保存中...','8064MAQkgM','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','已同步','编辑冲突','exports','连接失败,将在一会儿之后重试连接','8gNkJck','66bfpBnZ','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','2137163acCmmY','9684966SpcDcF','正在拉取服务端数据...','7608130QggKzx','协同冲突','3811avfYPL','3200364GHajIk','由于协同房间被关闭,编辑权限被收回。','点击重新连接'];_0x1653=function(){return _0x3e3d7b;};return _0x1653();}const o={'collab-client':{'tooltip':{'reconnect':_0x47eb01(0x16e)}},'collabStatus':{'fetchMiss':_0x47eb01(0x168),'conflict':_0x47eb01(0x160),'notCollab':_0x47eb01(0x172),'synced':_0x47eb01(0x15f),'syncing':_0x47eb01(0x176),'offline':'已离线,编辑将在本地缓存'},'session':{'connection-failed':'连接失败,请检查你的网络','will-retry':_0x47eb01(0x162),'room-full':_0x47eb01(0x174),'collaboration-timeout':_0x47eb01(0x170)},'conflict':{'title':_0x47eb01(0x16a),'content':_0x47eb01(0x178)},'permission':{'title':'权限错误','content':'你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。'},'collaboration':{'single-unit':{'warning':_0x47eb01(0x16f)},'closeRoom':_0x47eb01(0x16d)},'auth':{'needGotoLoginAlert':_0x47eb01(0x165)}};module[_0x47eb01(0x161)]=o;
1
+ 'use strict';const _0x3bb6a0=_0x428b;function _0x428b(_0x91acbb,_0x35dff5){const _0x2ebc1b=_0x2ebc();return _0x428b=function(_0x428b56,_0x2c61b0){_0x428b56=_0x428b56-0x17a;let _0x200e2b=_0x2ebc1b[_0x428b56];return _0x200e2b;},_0x428b(_0x91acbb,_0x35dff5);}function _0x2ebc(){const _0x5af2a0=['907176ZJGvYA','你的本地文档和服务器的文档存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','连接失败,请检查你的网络','正在拉取服务端数据...','600TCTRDm','153840kndfqY','你的操作和服务器的权限存在冲突。请在别处保存你的本地编辑,本地编辑将在刷新页面后丢弃。','1868607eIYgax','25445230RpRcGU','协同冲突','权限错误','你的登录已过期,点击确认重新登陆,点击取消去保存你的本地编辑。','编辑冲突','本地文件','36hFPugQ','服务器未响应,你的编辑将在本地缓存','协同房间已满,你的编辑将在本地缓存','由于协同房间被关闭,编辑权限被收回。','保存中...','已离线,编辑将在本地缓存','2mcvNRG','19692pqzdhH','3576034hJltkL','3326700FimFms','exports'];_0x2ebc=function(){return _0x5af2a0;};return _0x2ebc();}(function(_0x3bbbf2,_0x592a03){const _0x5234c6=_0x428b,_0x22194b=_0x3bbbf2();while(!![]){try{const _0x56a743=-parseInt(_0x5234c6(0x17a))/0x1+parseInt(_0x5234c6(0x189))/0x2*(parseInt(_0x5234c6(0x17c))/0x3)+-parseInt(_0x5234c6(0x18c))/0x4+-parseInt(_0x5234c6(0x192))/0x5*(parseInt(_0x5234c6(0x18a))/0x6)+-parseInt(_0x5234c6(0x18b))/0x7+parseInt(_0x5234c6(0x18e))/0x8*(-parseInt(_0x5234c6(0x183))/0x9)+parseInt(_0x5234c6(0x17d))/0xa;if(_0x56a743===_0x592a03)break;else _0x22194b['push'](_0x22194b['shift']());}catch(_0x5d96a8){_0x22194b['push'](_0x22194b['shift']());}}}(_0x2ebc,0xc9123));const o={'collab-client':{'tooltip':{'reconnect':'点击重新连接'}},'collabStatus':{'fetchMiss':_0x3bb6a0(0x191),'conflict':_0x3bb6a0(0x181),'notCollab':_0x3bb6a0(0x182),'synced':'已同步','syncing':_0x3bb6a0(0x187),'offline':_0x3bb6a0(0x188)},'session':{'connection-failed':_0x3bb6a0(0x190),'will-retry':'连接失败,将在一会儿之后重试连接','room-full':_0x3bb6a0(0x185),'collaboration-timeout':_0x3bb6a0(0x184)},'conflict':{'title':_0x3bb6a0(0x17e),'content':_0x3bb6a0(0x18f)},'permission':{'title':_0x3bb6a0(0x17f),'content':_0x3bb6a0(0x17b)},'collaboration':{'single-unit':{'warning':'你在另一个标签页打开了同一个文件。为了避免数据丢失,这个标签页的编辑行为将会被限制。'},'closeRoom':_0x3bb6a0(0x186)},'auth':{'needGotoLoginAlert':_0x3bb6a0(0x180)}};module[_0x3bb6a0(0x18d)]=o;
@@ -1 +1 @@
1
- 'use strict';const _0x1b23c0=_0x289c;(function(_0x2365b6,_0x5d7a22){const _0x185a50=_0x289c,_0x4cc8e6=_0x2365b6();while(!![]){try{const _0x3419d0=parseInt(_0x185a50(0x8b))/0x1*(-parseInt(_0x185a50(0x96))/0x2)+-parseInt(_0x185a50(0x8c))/0x3*(-parseInt(_0x185a50(0x95))/0x4)+-parseInt(_0x185a50(0x8f))/0x5+-parseInt(_0x185a50(0x93))/0x6+-parseInt(_0x185a50(0x9a))/0x7+parseInt(_0x185a50(0x97))/0x8*(-parseInt(_0x185a50(0x94))/0x9)+parseInt(_0x185a50(0x99))/0xa;if(_0x3419d0===_0x5d7a22)break;else _0x4cc8e6['push'](_0x4cc8e6['shift']());}catch(_0x4a5e46){_0x4cc8e6['push'](_0x4cc8e6['shift']());}}}(_0x1fa9,0xd9859));function _0x289c(_0x555284,_0x24ad88){const _0x1fa9f9=_0x1fa9();return _0x289c=function(_0x289c79,_0x2f3108){_0x289c79=_0x289c79-0x8a;let _0x347c86=_0x1fa9f9[_0x289c79];return _0x347c86;},_0x289c(_0x555284,_0x24ad88);}const e={'collab-client':{'tooltip':{'reconnect':_0x1b23c0(0x91)}},'collabStatus':{'fetchMiss':_0x1b23c0(0x8e),'conflict':_0x1b23c0(0x8d),'notCollab':'Local\x20file','synced':_0x1b23c0(0x9e),'syncing':'Syncing...','offline':_0x1b23c0(0x90)},'session':{'connection-failed':_0x1b23c0(0x9b),'will-retry':'Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','room-full':_0x1b23c0(0x98),'collaboration-timeout':_0x1b23c0(0x9c)},'conflict':{'title':_0x1b23c0(0x92),'content':_0x1b23c0(0x9d)},'permission':{'title':'Authentication\x20Error','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':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x1b23c0(0x8a)}},o=e;module['exports']=o;function _0x1fa9(){const _0x22a075=['8268040zXzHAH','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Click\x20to\x20Reconnect','Collaboration\x20Conflict','7510536vGWqlh','1854kPEaDA','300pWblAQ','2PJpyWT','57280zQvNBZ','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','58959520qzRwIb','10855929kTihGa','Connection\x20failed,\x20please\x20check\x20your\x20network.','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','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.','Synced','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','607037IxvmVN','61329VgObgG','Edit\x20conflicts','Syncing\x20server\x20data...'];_0x1fa9=function(){return _0x22a075;};return _0x1fa9();}
1
+ 'use strict';const _0x9bec70=_0x48a0;(function(_0x2b2876,_0x56923b){const _0x12a18f=_0x48a0,_0x5a4662=_0x2b2876();while(!![]){try{const _0x4c4b52=-parseInt(_0x12a18f(0xb6))/0x1+-parseInt(_0x12a18f(0xc4))/0x2*(-parseInt(_0x12a18f(0xaf))/0x3)+parseInt(_0x12a18f(0xbf))/0x4*(-parseInt(_0x12a18f(0xb4))/0x5)+parseInt(_0x12a18f(0xba))/0x6+-parseInt(_0x12a18f(0xb0))/0x7*(-parseInt(_0x12a18f(0xab))/0x8)+parseInt(_0x12a18f(0xb7))/0x9*(parseInt(_0x12a18f(0xc2))/0xa)+-parseInt(_0x12a18f(0xbb))/0xb*(parseInt(_0x12a18f(0xae))/0xc);if(_0x4c4b52===_0x56923b)break;else _0x5a4662['push'](_0x5a4662['shift']());}catch(_0x407d45){_0x5a4662['push'](_0x5a4662['shift']());}}}(_0x1b57,0x47320));function _0x48a0(_0x111230,_0x306faf){const _0x1b57fa=_0x1b57();return _0x48a0=function(_0x48a023,_0x580cd3){_0x48a023=_0x48a023-0xab;let _0x2e528e=_0x1b57fa[_0x48a023];return _0x2e528e;},_0x48a0(_0x111230,_0x306faf);}function _0x1b57(){const _0x4e73af=['12saMvvs','exports','Connection\x20failed,\x20please\x20check\x20your\x20network.','10qYlvdV','Your\x20actions\x20are\x20conflicting\x20with\x20the\x20server\x27s\x20permissions.\x20Please\x20save\x20your\x20local\x20edits\x20elsewhere\x20as\x20they\x20will\x20be\x20discarded\x20after\x20refreshing\x20the\x20page.','2YQDWGu','40fXOpvn','Your\x20login\x20has\x20expired,\x20click\x20OK\x20to\x20re-login,\x20click\x20Cancel\x20to\x20save\x20your\x20local\x20edits.','Edit\x20conflicts','12EgQhPt','1033887RVHlkD','530201XMbBxi','Collaboration\x20room\x20is\x20full.\x20You\x20edits\x20would\x20be\x20saved\x20locally.','Syncing...','Authentication\x20Error','265715eCInus','Local\x20file','517664JgOxYv','3398751xJiPNa','The\x20server\x20is\x20not\x20responding\x20to\x20your\x20collaboration\x20request.\x20Your\x20edits\x20would\x20be\x20saved\x20locally.','Click\x20to\x20Reconnect','1891266ENjdiu','4922335cgoNVW','Connection\x20failed,\x20we\x20retry\x20in\x20a\x20while.','Offline,\x20edits\x20would\x20be\x20save\x20on\x20local','Collaboration\x20Conflict'];_0x1b57=function(){return _0x4e73af;};return _0x1b57();}const e={'collab-client':{'tooltip':{'reconnect':_0x9bec70(0xb9)}},'collabStatus':{'fetchMiss':'Syncing\x20server\x20data...','conflict':_0x9bec70(0xad),'notCollab':_0x9bec70(0xb5),'synced':'Synced','syncing':_0x9bec70(0xb2),'offline':_0x9bec70(0xbd)},'session':{'connection-failed':_0x9bec70(0xc1),'will-retry':_0x9bec70(0xbc),'room-full':_0x9bec70(0xb1),'collaboration-timeout':_0x9bec70(0xb8)},'conflict':{'title':_0x9bec70(0xbe),'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':_0x9bec70(0xb3),'content':_0x9bec70(0xc3)},'collaboration':{'single-unit':{'warning':'You\x20opened\x20the\x20same\x20file\x20in\x20another\x20tab.\x20In\x20case\x20of\x20data\x20missing,\x20you\x20cannot\x20edit\x20on\x20this\x20tab.'},'closeRoom':'Editing\x20privileges\x20were\x20revoked\x20because\x20the\x20collaborative\x20room\x20was\x20closed.'},'auth':{'needGotoLoginAlert':_0x9bec70(0xac)}},o=e;module[_0x9bec70(0xc0)]=o;