@ckeditor/ckeditor5-comments 43.2.0-alpha.0 → 43.2.0-alpha.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/build/comments.js +1 -1
- package/dist/index.js +9 -9
- package/package.json +15 -15
- package/src/annotations/view/annotationcounterbuttonview.js +1 -1
- package/src/annotations/view/annotationview.js +1 -1
- package/src/annotations/view/sidebaritemview.js +1 -1
- package/src/annotations/view/sidebarview.js +1 -1
- package/src/comments/addcommentthreadcommand.js +1 -1
- package/src/comments/commentsarchiveui.js +1 -1
- package/src/comments/commentsediting.js +1 -1
- package/src/comments/commentsrepository.js +3 -3
- package/src/comments/commentsui.js +1 -1
- package/src/comments/integrations/clipboard.js +1 -1
- package/src/comments/integrations/commentsrestrictededitingmode.js +1 -1
- package/src/comments/integrations/importword.js +1 -1
- package/src/comments/ui/commenteditor/commenteditor.js +2 -2
- package/src/comments/ui/commenteditor/commenteditoruiview.js +1 -1
- package/src/comments/ui/commentthreadcontroller.js +2 -2
- package/src/comments/ui/view/basecommentthreadview.js +1 -1
- package/src/comments/ui/view/basecommentview.js +1 -1
- package/src/comments/ui/view/collapsedcommentsview.js +1 -1
- package/src/comments/ui/view/commentcontentview.js +1 -1
- package/src/comments/ui/view/commentinputview.js +1 -1
- package/src/comments/ui/view/commentsarchiveview.js +1 -1
- package/src/comments/ui/view/commentslistview.js +1 -1
- package/src/comments/ui/view/commentthreadheadercontextview.js +1 -1
- package/src/comments/ui/view/commentthreadheaderview.js +1 -1
- package/src/comments/ui/view/commentthreadinputview.js +1 -1
- package/src/comments/ui/view/commentthreadview.js +2 -2
- package/src/comments/ui/view/commentview.js +2 -2
- package/src/utils/createmutationobserver.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-comments",
|
|
3
|
-
"version": "43.2.0-alpha.
|
|
3
|
+
"version": "43.2.0-alpha.1",
|
|
4
4
|
"description": "Collaborative comments feature for CKEditor 5.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -45,20 +45,20 @@
|
|
|
45
45
|
"CHANGELOG.md"
|
|
46
46
|
],
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@ckeditor/ckeditor5-clipboard": "43.2.0-alpha.
|
|
49
|
-
"@ckeditor/ckeditor5-collaboration-core": "43.2.0-alpha.
|
|
50
|
-
"@ckeditor/ckeditor5-core": "43.2.0-alpha.
|
|
51
|
-
"@ckeditor/ckeditor5-engine": "43.2.0-alpha.
|
|
52
|
-
"@ckeditor/ckeditor5-enter": "43.2.0-alpha.
|
|
53
|
-
"@ckeditor/ckeditor5-paragraph": "43.2.0-alpha.
|
|
54
|
-
"@ckeditor/ckeditor5-select-all": "43.2.0-alpha.
|
|
55
|
-
"@ckeditor/ckeditor5-theme-lark": "43.2.0-alpha.
|
|
56
|
-
"@ckeditor/ckeditor5-typing": "43.2.0-alpha.
|
|
57
|
-
"@ckeditor/ckeditor5-ui": "43.2.0-alpha.
|
|
58
|
-
"@ckeditor/ckeditor5-undo": "43.2.0-alpha.
|
|
59
|
-
"@ckeditor/ckeditor5-utils": "43.2.0-alpha.
|
|
60
|
-
"ckeditor5": "43.2.0-alpha.
|
|
61
|
-
"ckeditor5-collaboration": "43.2.0-alpha.
|
|
48
|
+
"@ckeditor/ckeditor5-clipboard": "43.2.0-alpha.1",
|
|
49
|
+
"@ckeditor/ckeditor5-collaboration-core": "43.2.0-alpha.1",
|
|
50
|
+
"@ckeditor/ckeditor5-core": "43.2.0-alpha.1",
|
|
51
|
+
"@ckeditor/ckeditor5-engine": "43.2.0-alpha.1",
|
|
52
|
+
"@ckeditor/ckeditor5-enter": "43.2.0-alpha.1",
|
|
53
|
+
"@ckeditor/ckeditor5-paragraph": "43.2.0-alpha.1",
|
|
54
|
+
"@ckeditor/ckeditor5-select-all": "43.2.0-alpha.1",
|
|
55
|
+
"@ckeditor/ckeditor5-theme-lark": "43.2.0-alpha.1",
|
|
56
|
+
"@ckeditor/ckeditor5-typing": "43.2.0-alpha.1",
|
|
57
|
+
"@ckeditor/ckeditor5-ui": "43.2.0-alpha.1",
|
|
58
|
+
"@ckeditor/ckeditor5-undo": "43.2.0-alpha.1",
|
|
59
|
+
"@ckeditor/ckeditor5-utils": "43.2.0-alpha.1",
|
|
60
|
+
"ckeditor5": "43.2.0-alpha.1",
|
|
61
|
+
"ckeditor5-collaboration": "43.2.0-alpha.1",
|
|
62
62
|
"lodash-es": "4.17.21"
|
|
63
63
|
},
|
|
64
64
|
"types": "src/index.d.ts",
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
(function(
|
|
23
|
+
function _0x3640(){const _0x2f76ea=['children','ck-annotation-counter','9247678SZAHyw','annotationType','10iczhUA','icon','...','10IBMNnX','isDirty','8MBshqi','747423KLOmFn','1XDSXmg','setTemplate','ck-annotation-counter__badge--edit-mode','toString','span','extendTemplate','bindTemplate','1067050DqFirY','4VSkLXB','counterView','4533809GlRhlb','add','_badge','ck-annotation-counter__badge--','number','13344696XIgdYr','bind','set','272406cVGivB','ck-annotation-counter__badge','8082324AFbIga'];_0x3640=function(){return _0x2f76ea;};return _0x3640();}function _0x5c58(_0x13c886,_0x257936){const _0x3640a8=_0x3640();return _0x5c58=function(_0x5c5881,_0x1941b2){_0x5c5881=_0x5c5881-0xb9;let _0x4204c8=_0x3640a8[_0x5c5881];return _0x4204c8;},_0x5c58(_0x13c886,_0x257936);}(function(_0x3bd02b,_0x461f04){const _0xc2beec=_0x5c58,_0x5e0a1f=_0x3bd02b();while(!![]){try{const _0x237a8b=parseInt(_0xc2beec(0xd3))/0x1*(parseInt(_0xc2beec(0xba))/0x2)+-parseInt(_0xc2beec(0xd2))/0x3*(parseInt(_0xc2beec(0xbb))/0x4)+-parseInt(_0xc2beec(0xcc))/0x5*(parseInt(_0xc2beec(0xc5))/0x6)+parseInt(_0xc2beec(0xbd))/0x7+-parseInt(_0xc2beec(0xd1))/0x8*(-parseInt(_0xc2beec(0xc2))/0x9)+parseInt(_0xc2beec(0xcf))/0xa*(-parseInt(_0xc2beec(0xca))/0xb)+-parseInt(_0xc2beec(0xc7))/0xc;if(_0x237a8b===_0x461f04)break;else _0x5e0a1f['push'](_0x5e0a1f['shift']());}catch(_0x1ea4f3){_0x5e0a1f['push'](_0x5e0a1f['shift']());}}}(_0x3640,0xc5b3c));import{ButtonView as _0x2f0be6,View as _0x44e853}from'ckeditor5/src/ui.js';import _0x3a7abb from'../../../theme/icons/add-comment.svg';export default class L extends _0x2f0be6{constructor(_0x554dd4){const _0x781f7e=_0x5c58;super(_0x554dd4);const _0x587bdd=this[_0x781f7e(0xb9)];this[_0x781f7e(0xc4)](_0x781f7e(0xd0),!0x1),this[_0x781f7e(0xc4)](_0x781f7e(0xc1),0x0),this[_0x781f7e(0xc3)](_0x781f7e(0xbf))['to'](this,_0x781f7e(0xd0),this,_0x781f7e(0xc1),(_0x401856,_0x4dd49d)=>_0x401856?_0x781f7e(0xce):_0x4dd49d[_0x781f7e(0xd6)]()),this[_0x781f7e(0xc4)](_0x781f7e(0xcb),''),this[_0x781f7e(0xcd)]=_0x3a7abb,this[_0x781f7e(0xd8)]({'attributes':{'class':[_0x781f7e(0xc9)]}}),this[_0x781f7e(0xbc)]=new _0x44e853(),this[_0x781f7e(0xbc)][_0x781f7e(0xd4)]({'tag':_0x781f7e(0xd7),'attributes':{'class':[_0x781f7e(0xc6),_0x587bdd['to'](_0x781f7e(0xcb),_0x123ccc=>_0x781f7e(0xc0)+_0x123ccc),_0x587bdd['if'](_0x781f7e(0xd0),_0x781f7e(0xd5))]},'children':[{'text':_0x587bdd['to'](_0x781f7e(0xbf))}]}),this[_0x781f7e(0xc8)][_0x781f7e(0xbe)](this[_0x781f7e(0xbc)]);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x1b6729=_0x2cbf;(function(_0x1ffa64,_0x653e1b){const _0x3c73dd=_0x2cbf,_0x109b36=_0x1ffa64();while(!![]){try{const _0x34e2e0=-parseInt(_0x3c73dd(0x138))/0x1*(-parseInt(_0x3c73dd(0x159))/0x2)+parseInt(_0x3c73dd(0x148))/0x3+parseInt(_0x3c73dd(0x160))/0x4+parseInt(_0x3c73dd(0x154))/0x5*(parseInt(_0x3c73dd(0x13e))/0x6)+parseInt(_0x3c73dd(0x143))/0x7+parseInt(_0x3c73dd(0x13f))/0x8+-parseInt(_0x3c73dd(0x15e))/0x9*(parseInt(_0x3c73dd(0x15d))/0xa);if(_0x34e2e0===_0x653e1b)break;else _0x109b36['push'](_0x109b36['shift']());}catch(_0x1bad64){_0x109b36['push'](_0x109b36['shift']());}}}(_0x33d7,0x2834c));import{View as _0x27f988}from'ckeditor5/src/ui.js';import{FocusTracker as _0x279a84,KeystrokeHandler as _0x4db34d,uid as _0x1948cb}from'ckeditor5/src/utils.js';function _0x2cbf(_0x5b86f3,_0x2891fd){const _0x33d7eb=_0x33d7();return _0x2cbf=function(_0x2cbfcf,_0x1ec7d7){_0x2cbfcf=_0x2cbfcf-0x135;let _0x4d4521=_0x33d7eb[_0x2cbfcf];return _0x4d4521;},_0x2cbf(_0x5b86f3,_0x2891fd);}import _0x55826d from'../../utils/createmutationobserver.js';function _0x33d7(){const _0x48d36f=['18dhvhAP','first','162324pkKfqp','delegate','element','height','add','clientHeight','listenTo','27UIQdml','clear','render','arrowdown','length','content','11982fQwkes','333664WFRmxJ','set','fire','destroy','529837yBRApq','createCollection','setTemplate','keystrokes','arrowup','812355FerwFM','ck-annotation-wrapper','mainView','_mutationObserver','div','presentation','targetRect','detach','_updateHeight','Esc','isDirty','focusTracker','370NaNZiG','ck-annotation-wrapper--active','bindTemplate','focus','ck-rounded-corners','13898MPAeMu','type','attach','isActive','2997410IzmvUf'];_0x33d7=function(){return _0x48d36f;};return _0x33d7();}import'../../../theme/annotation.css';export default class T extends _0x27f988{constructor(_0x51f205,_0x128895){const _0x5e09db=_0x2cbf;super(_0x51f205),this['id']=_0x1948cb(),this[_0x5e09db(0x153)]=new _0x279a84(),this[_0x5e09db(0x146)]=new _0x4db34d(),this[_0x5e09db(0x146)][_0x5e09db(0x140)](_0x5e09db(0x151),(_0x34c6ef,_0xb285bf)=>this[_0x5e09db(0x141)](_0x5e09db(0x151),_0xb285bf)),this[_0x5e09db(0x140)](_0x5e09db(0x14e),{'top':0x0,'right':0x0,'bottom':0x0,'left':0x0}),this[_0x5e09db(0x140)](_0x5e09db(0x163),0x0),this[_0x5e09db(0x140)](_0x5e09db(0x15c),!0x1),this[_0x5e09db(0x140)](_0x5e09db(0x152),!0x1),this[_0x5e09db(0x140)](_0x5e09db(0x13c),0x0),this[_0x5e09db(0x140)](_0x5e09db(0x15a),''),this[_0x5e09db(0x14b)]=_0x55826d(()=>this[_0x5e09db(0x150)]()),this[_0x5e09db(0x13d)]=this[_0x5e09db(0x144)](),this[_0x5e09db(0x13d)][_0x5e09db(0x161)](_0x5e09db(0x147),_0x5e09db(0x13b))['to'](this),this[_0x5e09db(0x13d)][_0x5e09db(0x135)](_0x128895),this[_0x5e09db(0x14a)]=_0x128895;const _0x765aa8=this[_0x5e09db(0x156)];this[_0x5e09db(0x145)]({'tag':_0x5e09db(0x14c),'attributes':{'class':['ck',_0x5e09db(0x149),_0x5e09db(0x158),_0x765aa8['if'](_0x5e09db(0x15c),_0x5e09db(0x155))],'role':_0x5e09db(0x14d)},'children':this[_0x5e09db(0x13d)]});}[_0x1b6729(0x13a)](){const _0x4530ab=_0x1b6729;super[_0x4530ab(0x13a)](),this[_0x4530ab(0x153)][_0x4530ab(0x135)](this[_0x4530ab(0x162)]),this[_0x4530ab(0x146)][_0x4530ab(0x137)](this[_0x4530ab(0x162)]),this[_0x4530ab(0x14b)][_0x4530ab(0x15b)](this[_0x4530ab(0x162)]);}[_0x1b6729(0x142)](){const _0x256453=_0x1b6729;this[_0x256453(0x13d)][_0x256453(0x139)](),this[_0x256453(0x146)][_0x256453(0x142)](),this[_0x256453(0x153)][_0x256453(0x142)](),this[_0x256453(0x14b)][_0x256453(0x14f)](),super[_0x256453(0x142)]();}[_0x1b6729(0x157)](){const _0x5afbb0=_0x1b6729;this[_0x5afbb0(0x13d)][_0x5afbb0(0x15f)]&&this[_0x5afbb0(0x13d)][_0x5afbb0(0x15f)][_0x5afbb0(0x157)]();}[_0x1b6729(0x150)](){const _0x167e83=_0x1b6729,_0x4f7c2e=this[_0x167e83(0x162)][_0x167e83(0x136)];_0x4f7c2e&&(this[_0x167e83(0x163)]=_0x4f7c2e);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0xf0c9e0=_0x3e1b;(function(_0x3a5f74,_0x1af072){const _0x47e8e8=_0x3e1b,_0x549675=_0x3a5f74();while(!![]){try{const _0x5a566a=-parseInt(_0x47e8e8(0x101))/0x1+-parseInt(_0x47e8e8(0x10c))/0x2+parseInt(_0x47e8e8(0x10b))/0x3*(parseInt(_0x47e8e8(0x11a))/0x4)+-parseInt(_0x47e8e8(0x111))/0x5*(-parseInt(_0x47e8e8(0x109))/0x6)+-parseInt(_0x47e8e8(0x11b))/0x7+-parseInt(_0x47e8e8(0x113))/0x8*(parseInt(_0x47e8e8(0xfa))/0x9)+parseInt(_0x47e8e8(0xff))/0xa;if(_0x5a566a===_0x1af072)break;else _0x549675['push'](_0x549675['shift']());}catch(_0x4f2a8b){_0x549675['push'](_0x549675['shift']());}}}(_0x48b9,0x5be04));import{View as _0xf7528f}from'ckeditor5/src/ui.js';function _0x3e1b(_0x1b5b91,_0x108a19){const _0x48b92a=_0x48b9();return _0x3e1b=function(_0x3e1b5d,_0x1c881b){_0x3e1b5d=_0x3e1b5d-0xf9;let _0x5a003b=_0x48b92a[_0x3e1b5d];return _0x5a003b;},_0x3e1b(_0x1b5b91,_0x108a19);}import{toUnit as _0x514657}from'ckeditor5/src/utils.js';import _0x28624c from'../../utils/createmutationobserver.js';function _0x48b9(){const _0x28932f=['78309GkkWHU','height','content','bind','detach','3900880fAtmgm','updateHeight','629884gpwsQP','isAnimationDisabled','bindTemplate','arrowdown','createCollection','presentation','_targetTop','ck-sidebar-item','6318BZQEsG','arrowup','15117tGntvT','108460fyMcBO','attach','element','setTemplate','_mutationObserver','2435oNzZqx','clear','56ArGdgK','render','top','first','clientHeight','delegate','destroy','428KhBcOJ','2245089PNmoZS','focus','set','div','ck-sidebar-item--no-animation','bottom'];_0x48b9=function(){return _0x28932f;};return _0x48b9();}const qt=_0x514657('px');export default class H extends _0xf7528f{constructor(_0x227d16){const _0x581ff4=_0x3e1b;super(_0x227d16),this[_0x581ff4(0x11d)](_0x581ff4(0x115),0x0),this[_0x581ff4(0x11d)](_0x581ff4(0xfb),0x0),this[_0x581ff4(0xfd)](_0x581ff4(0xf9))['to'](this,_0x581ff4(0x115),this,_0x581ff4(0xfb),(_0x51429e,_0x448ddf)=>_0x51429e+_0x448ddf),this[_0x581ff4(0x11d)](_0x581ff4(0x102),!0x1),this[_0x581ff4(0x110)]=_0x28624c(()=>this[_0x581ff4(0x100)]()),this[_0x581ff4(0x107)]=null,this[_0x581ff4(0xfc)]=this[_0x581ff4(0x105)](),this[_0x581ff4(0xfc)][_0x581ff4(0x118)](_0x581ff4(0x10a),_0x581ff4(0x104))['to'](this);const _0x301d79=this[_0x581ff4(0x103)];this[_0x581ff4(0x10f)]({'tag':_0x581ff4(0x11e),'attributes':{'class':[_0x581ff4(0x108),_0x301d79['to'](_0x581ff4(0x102),_0x472eae=>_0x472eae?_0x581ff4(0x11f):'')],'style':{'top':_0x301d79['to'](_0x581ff4(0x115),_0x2693fd=>qt(_0x2693fd))},'role':_0x581ff4(0x106)},'children':this[_0x581ff4(0xfc)]});}[_0xf0c9e0(0x114)](){const _0x2b745b=_0xf0c9e0;super[_0x2b745b(0x114)](),this[_0x2b745b(0x110)][_0x2b745b(0x10d)](this[_0x2b745b(0x10e)]);}[_0xf0c9e0(0x11c)](){const _0x48f06d=_0xf0c9e0;this[_0x48f06d(0xfc)][_0x48f06d(0x116)]&&this[_0x48f06d(0xfc)][_0x48f06d(0x116)][_0x48f06d(0x11c)]();}[_0xf0c9e0(0x100)](){const _0x2e9161=_0xf0c9e0,_0x3cd2d1=this[_0x2e9161(0x10e)][_0x2e9161(0x117)];_0x3cd2d1&&(this[_0x2e9161(0xfb)]=_0x3cd2d1);}[_0xf0c9e0(0x119)](){const _0x12dabd=_0xf0c9e0;this[_0x12dabd(0xfc)][_0x12dabd(0x112)](),this[_0x12dabd(0x110)][_0x12dabd(0xfe)](),super[_0x12dabd(0x119)]();}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
function _0x43da(){const _0xfe7d05=['render','focusables','Annotations\x20sidebar','removed','focusNext','bindTemplate','2437rxwfsE','focusCycler','_setupKeyboardNavigation','7BZGTPV','change:top','listenTo','8teRKYZ','class','top','delegate','_updateItemPositionInFocusables','remove','3190842dfKJJa','2050686fjISCJ','arrowup','5520642YGJAqR','focusFirst','focus','13hnNlqf','createCollection','298WCngTs','uiLanguageDirection','div','17022156JlVaVU','ck-sidebar','list','focusTracker','936916MCAuKd','arrowdown','added','forEach','ck-reset','20dbCYZV','focusPrevious','setTemplate','number','getIndex','change','length','Annotations\x20list','add','2426765iPSjam','source','set','application','element','9LNPMJs','minHeight'];_0x43da=function(){return _0xfe7d05;};return _0x43da();}function _0x3005(_0x33f961,_0x3ba35a){const _0x43da74=_0x43da();return _0x3005=function(_0x30057f,_0xaadb41){_0x30057f=_0x30057f-0x1d9;let _0x3133f0=_0x43da74[_0x30057f];return _0x3133f0;},_0x3005(_0x33f961,_0x3ba35a);}const _0x1c83f5=_0x3005;(function(_0x1825c1,_0x16da2e){const _0x4bd071=_0x3005,_0x45704b=_0x1825c1();while(!![]){try{const _0x463f5a=parseInt(_0x4bd071(0x1ee))/0x1*(-parseInt(_0x4bd071(0x202))/0x2)+-parseInt(_0x4bd071(0x1e6))/0x3*(-parseInt(_0x4bd071(0x209))/0x4)+parseInt(_0x4bd071(0x1e1))/0x5+-parseInt(_0x4bd071(0x1fd))/0x6*(parseInt(_0x4bd071(0x1f1))/0x7)+parseInt(_0x4bd071(0x1f4))/0x8*(-parseInt(_0x4bd071(0x1fa))/0x9)+-parseInt(_0x4bd071(0x20e))/0xa*(parseInt(_0x4bd071(0x1fb))/0xb)+-parseInt(_0x4bd071(0x205))/0xc*(-parseInt(_0x4bd071(0x200))/0xd);if(_0x463f5a===_0x16da2e)break;else _0x45704b['push'](_0x45704b['shift']());}catch(_0x509c8f){_0x45704b['push'](_0x45704b['shift']());}}}(_0x43da,0x917e7));import{View as _0x2dea82,FocusCycler as _0x5c723f}from'ckeditor5/src/ui.js';import{FocusTracker as _0x4018ad,toUnit as _0x539145}from'ckeditor5/src/utils.js';import{getTranslation as _0x23bd98}from'../../utils/common-translations.js';import'../../../theme/sidebar.css';const qt=_0x539145('px');export default class V extends _0x2dea82{constructor(_0x41916e){const _0x23b94b=_0x3005;super(_0x41916e);const _0x39daf6=this[_0x23b94b(0x1ed)];this[_0x23b94b(0x1e3)](_0x23b94b(0x1e7),0x0),this[_0x23b94b(0x1e3)](_0x23b94b(0x1f5),''),this[_0x23b94b(0x207)]=this[_0x23b94b(0x201)](),this[_0x23b94b(0x1e9)]=this[_0x23b94b(0x201)](),this[_0x23b94b(0x207)][_0x23b94b(0x1f7)](_0x23b94b(0x1fc),_0x23b94b(0x20a))['to'](this),this[_0x23b94b(0x208)]=new _0x4018ad(),this[_0x23b94b(0x1ef)]=new _0x5c723f({'focusables':this[_0x23b94b(0x1e9)],'focusTracker':this[_0x23b94b(0x208)]}),this[_0x23b94b(0x1da)]({'tag':_0x23b94b(0x204),'attributes':{'class':['ck',_0x23b94b(0x206),_0x23b94b(0x20d),_0x39daf6['to'](_0x23b94b(0x1f5))],'style':{'minHeight':_0x39daf6['to'](_0x23b94b(0x1e7),_0x4acf50=>_0x23b94b(0x1db)==typeof _0x4acf50?qt(_0x4acf50+0xa):null)},'dir':_0x41916e[_0x23b94b(0x203)],'role':_0x23b94b(0x1e4),'aria-label':_0x23bd98(_0x41916e,_0x23b94b(0x1ea)),'tabindex':0x0},'children':[{'tag':_0x23b94b(0x204),'attributes':{'role':_0x23b94b(0x207),'aria-label':_0x23bd98(_0x41916e,_0x23b94b(0x1df))},'children':this[_0x23b94b(0x207)]}]});}[_0x1c83f5(0x1e8)](){const _0x2d80a5=_0x1c83f5;super[_0x2d80a5(0x1e8)](),this[_0x2d80a5(0x1f0)]();}[_0x1c83f5(0x1ff)](){const _0x366908=_0x1c83f5;this[_0x366908(0x1ef)][_0x366908(0x1fe)]();}[_0x1c83f5(0x1f0)](){const _0x3ed43b=_0x1c83f5;this[_0x3ed43b(0x207)][_0x3ed43b(0x1f7)](_0x3ed43b(0x1f2))['to'](this),this['on'](_0x3ed43b(0x1f2),_0x51b000=>{const _0x196523=_0x3ed43b;this[_0x196523(0x1f8)](_0x51b000[_0x196523(0x1e2)]);}),this[_0x3ed43b(0x207)][_0x3ed43b(0x20c)](_0x5d0751=>{const _0x3cb1d7=_0x3ed43b;this[_0x3cb1d7(0x208)][_0x3cb1d7(0x1e0)](_0x5d0751[_0x3cb1d7(0x1e5)]),this[_0x3cb1d7(0x1f8)](_0x5d0751);}),this[_0x3ed43b(0x207)]['on'](_0x3ed43b(0x1dd),(_0x127a27,_0x3c6bbb)=>{const _0x407238=_0x3ed43b;for(const _0x127882 of _0x3c6bbb[_0x407238(0x1eb)])this[_0x407238(0x208)][_0x407238(0x1f9)](_0x127882[_0x407238(0x1e5)]),this[_0x407238(0x1e9)][_0x407238(0x1f9)](_0x127882);for(const _0x53f2c9 of _0x3c6bbb[_0x407238(0x20b)])this[_0x407238(0x208)][_0x407238(0x1e0)](_0x53f2c9[_0x407238(0x1e5)]),this[_0x407238(0x1f8)](_0x53f2c9);}),this['on'](_0x3ed43b(0x1fc),()=>{const _0x27d632=_0x3ed43b;this[_0x27d632(0x1ef)][_0x27d632(0x1d9)]();}),this['on'](_0x3ed43b(0x20a),()=>{const _0x2921a0=_0x3ed43b;this[_0x2921a0(0x1ef)][_0x2921a0(0x1ec)]();}),this[_0x3ed43b(0x1f3)](this[_0x3ed43b(0x1e5)],_0x3ed43b(0x1ff),()=>{const _0xa12fa=_0x3ed43b;this[_0xa12fa(0x1ff)]();});}[_0x1c83f5(0x1f8)](_0x4a68a3){const _0x3265b6=_0x1c83f5,_0x36da27=this[_0x3265b6(0x1e9)][_0x3265b6(0x1dc)](_0x4a68a3);let _0x76a213,_0x2dd00a;for(const _0x588a02 of this[_0x3265b6(0x1e9)])if(_0x4a68a3[_0x3265b6(0x1f6)]<_0x588a02[_0x3265b6(0x1f6)]){_0x76a213=_0x588a02;break;}if(_0x2dd00a=_0x76a213?this[_0x3265b6(0x1e9)][_0x3265b6(0x1dc)](_0x76a213):this[_0x3265b6(0x1e9)][_0x3265b6(0x1de)],-0x1!==_0x36da27){if(_0x36da27===_0x2dd00a-0x1)return;this[_0x3265b6(0x1e9)][_0x3265b6(0x1f9)](_0x4a68a3),_0x2dd00a=_0x76a213?this[_0x3265b6(0x1e9)][_0x3265b6(0x1dc)](_0x76a213):this[_0x3265b6(0x1e9)][_0x3265b6(0x1de)];}this[_0x3265b6(0x1e9)][_0x3265b6(0x1e0)](_0x4a68a3,_0x2dd00a);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const
|
|
23
|
+
const _0x356dfe=_0x57b5;(function(_0x45a025,_0x5c3997){const _0x228c1d=_0x57b5,_0x5ee342=_0x45a025();while(!![]){try{const _0x1eb1a1=-parseInt(_0x228c1d(0x17c))/0x1*(-parseInt(_0x228c1d(0x178))/0x2)+parseInt(_0x228c1d(0x17b))/0x3+parseInt(_0x228c1d(0x186))/0x4+-parseInt(_0x228c1d(0x18d))/0x5*(-parseInt(_0x228c1d(0x16a))/0x6)+parseInt(_0x228c1d(0x182))/0x7+parseInt(_0x228c1d(0x173))/0x8+-parseInt(_0x228c1d(0x179))/0x9;if(_0x1eb1a1===_0x5c3997)break;else _0x5ee342['push'](_0x5ee342['shift']());}catch(_0x3bafa6){_0x5ee342['push'](_0x5ee342['shift']());}}}(_0x4a19,0xe98e9));import{Command as _0x21437a}from'ckeditor5/src/core.js';function _0x57b5(_0x2112d8,_0x4c1c1d){const _0x4a1981=_0x4a19();return _0x57b5=function(_0x57b510,_0x234cc4){_0x57b510=_0x57b510-0x169;let _0x16187d=_0x4a1981[_0x57b510];return _0x16187d;},_0x57b5(_0x2112d8,_0x4c1c1d);}import{uid as _0x30bee6}from'ckeditor5/src/utils.js';function _0x4a19(){const _0x4e63d2=['start','getLastMatchingPosition','addMarker','5308eEqfUp','46799451UqIefl','$textProxy','2260605OZYbZn','132eqABSK','selection','schema','end','change','tableCell','11185097mzHdCv','_trimToContent','comment:','model','2340112gjNlfK','createRange','getRanges','substr','editor','document','isEnabled','5485tvrbgo','push','8886tGKSuU','isObject','refresh','getItems','_hasContent','_itemIsContent','element','item','backward','9961352sYDXlc','execute'];_0x4a19=function(){return _0x4e63d2;};return _0x4a19();}export default class J extends _0x21437a{[_0x356dfe(0x16c)](){const _0x566290=_0x356dfe,_0x48b3a0=this[_0x566290(0x18a)][_0x566290(0x185)][_0x566290(0x18b)][_0x566290(0x17d)];for(const _0x191843 of _0x48b3a0[_0x566290(0x188)]())if(this[_0x566290(0x16e)](_0x191843))return void(this[_0x566290(0x18c)]=!0x0);this[_0x566290(0x18c)]=!0x1;}[_0x356dfe(0x174)]({threadId:_0x3219a1=_0x30bee6()}={}){const _0x577097=_0x356dfe,_0x5e12c9=this[_0x577097(0x18a)][_0x577097(0x185)],_0x961d77=[];for(const _0x237e36 of _0x5e12c9[_0x577097(0x18b)][_0x577097(0x17d)][_0x577097(0x188)]())this[_0x577097(0x16e)](_0x237e36)&&_0x961d77[_0x577097(0x169)](this[_0x577097(0x183)](_0x237e36));_0x5e12c9[_0x577097(0x180)](_0x5984bf=>{const _0x589839=_0x577097;for(const _0x6632e9 of _0x961d77){const _0x1efa40=_0x30bee6()[_0x589839(0x189)](0x1,0x5),_0xb2c22e=_0x589839(0x184)+_0x3219a1+':'+_0x1efa40;_0x5984bf[_0x589839(0x177)](_0xb2c22e,{'range':_0x6632e9,'usingOperation':!0x1,'affectsData':!0x1});}});}[_0x356dfe(0x16e)](_0x231c1b){const _0x3a8ccf=_0x356dfe;for(const _0x3014c8 of _0x231c1b[_0x3a8ccf(0x16d)]())if(this[_0x3a8ccf(0x16f)](_0x3014c8))return!0x0;return!0x1;}[_0x356dfe(0x16f)](_0x2ddef5){const _0x377d50=_0x356dfe;return _0x2ddef5['is'](_0x377d50(0x17a))||this[_0x377d50(0x18a)][_0x377d50(0x185)][_0x377d50(0x17e)][_0x377d50(0x16b)](_0x2ddef5)&&!_0x2ddef5['is'](_0x377d50(0x170),_0x377d50(0x181));}[_0x356dfe(0x183)](_0x2141d3){const _0x12e13c=_0x356dfe,_0x35d25c=_0x238f5b=>!this[_0x12e13c(0x16f)](_0x238f5b[_0x12e13c(0x171)]),_0x1525bc=_0x2141d3[_0x12e13c(0x175)][_0x12e13c(0x176)](_0x35d25c),_0x19ba0b=_0x2141d3[_0x12e13c(0x17f)][_0x12e13c(0x176)](_0x35d25c,{'direction':_0x12e13c(0x172)});return this[_0x12e13c(0x18a)][_0x12e13c(0x185)][_0x12e13c(0x187)](_0x1525bc,_0x19ba0b);}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
function
|
|
23
|
+
const _0x58b57d=_0x2cc5;(function(_0x25cd2d,_0x1c5d86){const _0x54f01e=_0x2cc5,_0x3a668c=_0x25cd2d();while(!![]){try{const _0x1f766f=parseInt(_0x54f01e(0xb8))/0x1*(parseInt(_0x54f01e(0xba))/0x2)+parseInt(_0x54f01e(0x81))/0x3*(parseInt(_0x54f01e(0x7a))/0x4)+-parseInt(_0x54f01e(0xb5))/0x5+parseInt(_0x54f01e(0xa8))/0x6*(-parseInt(_0x54f01e(0x9d))/0x7)+-parseInt(_0x54f01e(0xb0))/0x8+parseInt(_0x54f01e(0xac))/0x9*(parseInt(_0x54f01e(0x9e))/0xa)+parseInt(_0x54f01e(0xbc))/0xb;if(_0x1f766f===_0x1c5d86)break;else _0x3a668c['push'](_0x3a668c['shift']());}catch(_0x1c416c){_0x3a668c['push'](_0x3a668c['shift']());}}}(_0x4279,0x89005));import'../../theme/commentsarchive.css';import{Plugin as _0x4aa2f7}from'ckeditor5/src/core.js';function _0x2cc5(_0x56c1c5,_0x291df5){const _0x427987=_0x4279();return _0x2cc5=function(_0x2cc598,_0x38e411){_0x2cc598=_0x2cc598-0x7a;let _0x53ed86=_0x427987[_0x2cc598];return _0x53ed86;},_0x2cc5(_0x56c1c5,_0x291df5);}function _0x4279(){const _0x275804=['3501472rlWjUY','EDITOR_TOP_SIDE','_toggleDialog','bind','_pendingThreads','3314285JyiFPH','isVisible','hide','621HLNVyV','add','1234cGktJe','annotationViews','7126625hUxBEC','editor','config','set','filter','_hideDialogOnAnnotationEscape','12hoZGtk','isEnabled','escape','remove','stop','length','collection','668841IMDgHu','Annotations','find','splice','requires','has','source','push','COMMENTS_ARCHIVE','_calculatePosition','pluginName','archivedAt','get','_createCommentsArchiveButton','locale','collaboration.channelId','innerView','tooltip','commentsArchiveView','componentFactory','CommentsArchiveUI','CommentsRepository','listenTo','archivedThreads','show','stopListening','channelId','menuitemcheckbox','3233713YTpggw','40MpPFBe','focusableElements','isOpen','menuBar:commentsArchive','_visibleAnnotations','execute','_threadToController','Dialog','indexOf','init','6yiVbPv','commentsArchive','isOn','findIndex','953514wpAIrT','view','plugins','getByInnerView'];_0x4279=function(){return _0x275804;};return _0x4279();}import{ViewCollection as _0x236139,MenuBarMenuListItemButtonView as _0x3ff668,ButtonView as _0x51c48e,Dialog as _0x315d9c,DialogViewPosition as _0x188d17}from'ckeditor5/src/ui.js';import _0x48dafb from'../../theme/icons/comments-archive.svg';import{getTranslation as _0x56dbe8}from'../utils/common-translations.js';import _0x5e1a27 from'./ui/view/commentsarchiveview.js';import _0x4b8fbc from'./commentsarchive.js';export default class a extends _0x4aa2f7{static get[_0x58b57d(0x8b)](){const _0x507be7=_0x58b57d;return _0x507be7(0x95);}static get[_0x58b57d(0x85)](){return[_0x4b8fbc,_0x315d9c];}constructor(_0x45a644){const _0x3ca748=_0x58b57d;super(_0x45a644),this[_0x3ca748(0xc1)]=_0x5c4f2d=>{const _0x416787=_0x3ca748,_0x100b22=_0x5c4f2d[_0x416787(0x87)];if(!this[_0x416787(0xbb)][_0x416787(0x86)](_0x100b22[_0x416787(0xad)]))return;const _0x2ff6f4=this[_0x416787(0xbd)][_0x416787(0xae)][_0x416787(0x8d)](_0x416787(0xa5));_0x2ff6f4[_0x416787(0xa0)]&&_0x416787(0xa9)===_0x2ff6f4['id']&&(_0x2ff6f4[_0x416787(0xb7)](),_0x5c4f2d[_0x416787(0x7e)]());},this[_0x3ca748(0xbb)]=new _0x236139(),this[_0x3ca748(0xb4)]=[];}[_0x58b57d(0xa7)](){const _0x396d6a=_0x58b57d,_0xab5bdd=this[_0x396d6a(0xbd)],_0xd2f8a9=this[_0x396d6a(0xc1)][_0x396d6a(0xb3)](this);_0xab5bdd['ui'][_0x396d6a(0x94)][_0x396d6a(0xb9)](_0x396d6a(0xa9),()=>this[_0x396d6a(0x8e)](_0x51c48e,!0x0)),_0xab5bdd['ui'][_0x396d6a(0x94)][_0x396d6a(0xb9)](_0x396d6a(0xa1),()=>{const _0x421978=_0x396d6a,_0x3c0056=this[_0x421978(0x8e)](_0x3ff668);return _0x3c0056[_0x421978(0xbf)]({'role':_0x421978(0x9c)}),_0x3c0056;});const _0x1293bf=_0xab5bdd[_0x396d6a(0xae)][_0x396d6a(0x8d)](_0x4b8fbc),_0x14f558=_0xab5bdd[_0x396d6a(0xae)][_0x396d6a(0x8d)](_0x396d6a(0x82)),_0x36a5fa=_0xab5bdd[_0x396d6a(0xae)][_0x396d6a(0x8d)](_0x396d6a(0x96));this[_0x396d6a(0x97)](_0x1293bf[_0x396d6a(0x98)],_0x396d6a(0xb9),(_0x21ab46,_0x5184da)=>{const _0x523bc1=_0x396d6a,_0x355afc=_0xab5bdd[_0x523bc1(0xbe)][_0x523bc1(0x8d)](_0x523bc1(0x90));if(!_0x355afc||_0x5184da[_0x523bc1(0x9b)]===_0x355afc){const _0x186279=_0x36a5fa[_0x523bc1(0xa4)][_0x523bc1(0x8d)](_0x5184da);if(!_0x186279)return void this[_0x523bc1(0xb4)][_0x523bc1(0x88)](_0x5184da);const _0x50a4e3=this[_0x523bc1(0x8a)](_0x5184da[_0x523bc1(0x8c)]),_0x1c942d=_0x14f558[_0x523bc1(0xaf)](_0x186279[_0x523bc1(0xad)]);_0x1c942d[_0x523bc1(0xb6)]&&_0x14f558[_0x523bc1(0xa2)][_0x523bc1(0x7d)](_0x1c942d),this[_0x523bc1(0xbb)][_0x523bc1(0xb9)](_0x1c942d[_0x523bc1(0xad)],_0x50a4e3);}}),this[_0x396d6a(0x97)](_0x14f558[_0x396d6a(0x80)],_0x396d6a(0xb9),(_0x1ec34e,_0x3ffa48)=>{const _0x31409b=_0x396d6a,_0x42bac3=this[_0x31409b(0xb4)][_0x31409b(0x83)](_0x3c4a4d=>{const _0x5f52bc=_0x31409b,_0xe039b7=_0x36a5fa[_0x5f52bc(0xa4)][_0x5f52bc(0x8d)](_0x3c4a4d);return _0xe039b7&&_0x3ffa48[_0x5f52bc(0x91)]===_0xe039b7[_0x5f52bc(0xad)];});if(_0x42bac3){const _0x223444=this[_0x31409b(0x8a)](_0x42bac3[_0x31409b(0x8c)]);this[_0x31409b(0xbb)][_0x31409b(0xb9)](_0x3ffa48[_0x31409b(0xad)],_0x223444),this[_0x31409b(0xb4)][_0x31409b(0x84)](this[_0x31409b(0xb4)][_0x31409b(0xa6)](_0x42bac3),0x1);}}),this[_0x396d6a(0x97)](_0x1293bf[_0x396d6a(0x98)],_0x396d6a(0x7d),(_0xc1e9db,_0x58c6ef)=>{const _0x4ee414=_0x396d6a,_0xd68e03=_0xab5bdd[_0x4ee414(0xbe)][_0x4ee414(0x8d)](_0x4ee414(0x90));if(!_0xd68e03||_0x58c6ef[_0x4ee414(0x9b)]===_0xd68e03){const _0x1ec893=_0x36a5fa[_0x4ee414(0xa4)][_0x4ee414(0x8d)](_0x58c6ef),_0x35761=_0x14f558[_0x4ee414(0xaf)](_0x1ec893[_0x4ee414(0xad)]);this[_0x4ee414(0xbb)][_0x4ee414(0x7d)](_0x35761[_0x4ee414(0xad)]),this[_0x4ee414(0x9a)](_0x35761[_0x4ee414(0x9f)]);}}),this[_0x396d6a(0x97)](_0x14f558[_0x396d6a(0x80)],_0x396d6a(0xb9),(_0xaec4be,_0x37b655)=>{const _0x58056c=_0x396d6a;this[_0x58056c(0x97)](_0x37b655,_0x58056c(0x7c),_0xd2f8a9);}),this[_0x396d6a(0x97)](_0x14f558[_0x396d6a(0x80)],_0x396d6a(0x7d),(_0x175f62,_0x1d39c2)=>{const _0x45d1bc=_0x396d6a;this[_0x45d1bc(0x9a)](_0x1d39c2,_0x45d1bc(0x7c),_0xd2f8a9);});}[_0x58b57d(0x8a)](_0xb53af7){const _0x45fd7b=_0x58b57d,_0x1ce7db=this[_0x45fd7b(0xbd)][_0x45fd7b(0xbe)][_0x45fd7b(0x8d)](_0x45fd7b(0x90)),_0x3f1429=[...this[_0x45fd7b(0xbd)][_0x45fd7b(0xae)][_0x45fd7b(0x8d)](_0x4b8fbc)[_0x45fd7b(0x98)]][_0x45fd7b(0xc0)](_0x293576=>_0x293576[_0x45fd7b(0x9b)]===_0x1ce7db)[_0x45fd7b(0xab)](_0x1ddd20=>_0x1ddd20[_0x45fd7b(0x8c)]<_0xb53af7);return _0x3f1429<0x0||_0x3f1429>this[_0x45fd7b(0xbb)][_0x45fd7b(0x7f)]?this[_0x45fd7b(0xbb)][_0x45fd7b(0x7f)]:_0x3f1429-0x1;}[_0x58b57d(0xb2)](){const _0x214bc2=_0x58b57d,_0x334fd8=this[_0x214bc2(0xbd)],_0x4a2d28=_0x334fd8[_0x214bc2(0xae)][_0x214bc2(0x8d)](_0x214bc2(0xa5));this[_0x214bc2(0x93)]||(this[_0x214bc2(0x93)]=new _0x5e1a27(_0x334fd8[_0x214bc2(0x8f)],this[_0x214bc2(0xbb)])),_0x214bc2(0xa9)===_0x4a2d28['id']?_0x4a2d28[_0x214bc2(0xb7)]():_0x4a2d28[_0x214bc2(0x99)]({'id':_0x214bc2(0xa9),'title':_0x56dbe8(_0x334fd8[_0x214bc2(0x8f)],_0x214bc2(0x89)),'icon':_0x48dafb,'hasCloseButton':!0x0,'content':this[_0x214bc2(0x93)],'position':_0x188d17[_0x214bc2(0xb1)]});}[_0x58b57d(0x8e)](_0x16c4e5,_0x5b04f7=!0x1){const _0x54d0fd=_0x58b57d,_0x26bce6=this[_0x54d0fd(0xbd)][_0x54d0fd(0x8f)],_0x5003f8=this[_0x54d0fd(0xbd)][_0x54d0fd(0xae)][_0x54d0fd(0x8d)](_0x54d0fd(0xa5)),_0x2d53d8=new _0x16c4e5(_0x26bce6);return _0x2d53d8[_0x54d0fd(0xb3)](_0x54d0fd(0x7b))['to'](this,_0x54d0fd(0x7b)),_0x2d53d8[_0x54d0fd(0xb3)](_0x54d0fd(0xaa))['to'](_0x5003f8,'id',_0xd4b827=>_0x54d0fd(0xa9)===_0xd4b827),_0x2d53d8[_0x54d0fd(0xbf)]({'label':_0x56dbe8(_0x26bce6,_0x54d0fd(0x89)),'icon':_0x48dafb,'isToggleable':!0x0}),_0x5b04f7&&(_0x2d53d8[_0x54d0fd(0x92)]=!0x0),this[_0x54d0fd(0x97)](_0x2d53d8,_0x54d0fd(0xa3),()=>this[_0x54d0fd(0xb2)]()),_0x2d53d8;}}
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const _0x26a5fe=_0x23eb;(function(_0x4d7299,_0x49c31b){const _0x3b9457=_0x23eb,_0xa6a222=_0x4d7299();while(!![]){try{const _0x2eff28=-parseInt(_0x3b9457(0x1ff))/0x1+parseInt(_0x3b9457(0x1a8))/0x2*(-parseInt(_0x3b9457(0x22a))/0x3)+parseInt(_0x3b9457(0x1c1))/0x4*(parseInt(_0x3b9457(0x1e1))/0x5)+parseInt(_0x3b9457(0x1d2))/0x6+-parseInt(_0x3b9457(0x20f))/0x7*(-parseInt(_0x3b9457(0x1f1))/0x8)+-parseInt(_0x3b9457(0x1cb))/0x9+parseInt(_0x3b9457(0x1cc))/0xa*(parseInt(_0x3b9457(0x1f5))/0xb);if(_0x2eff28===_0x49c31b)break;else _0xa6a222['push'](_0xa6a222['shift']());}catch(_0x1a0cf2){_0xa6a222['push'](_0xa6a222['shift']());}}}(_0x10a7,0xcbb1e));import{Plugin as _0x57bd6c}from'ckeditor5/src/core.js';import{getEnvKeystrokeText as _0x108114,scrollViewportToShowTarget as _0x42c068}from'ckeditor5/src/utils.js';import _0xbb7f33 from'./commentsrepository.js';import _0x286efb from'./addcommentthreadcommand.js';import{surroundingMarkersDetector as _0x42a854,getAllMarkersDomElementsSorted as _0x43f5fb,FOCUS_ANNOTATION_KEYSTROKE as _0x1d7287,Users as _0x24c815}from'ckeditor5-collaboration/src/collaboration-core.js';import _0x3113d3 from'../annotations/editorannotations.js';import _0x513cdc from'./integrations/commentsrestrictededitingmode.js';import _0x2c1fef from'./integrations/importword.js';import _0xd39d76 from'./integrations/clipboard.js';import'../../theme/commentmarker.css';import _0x262813 from'../annotations/annotations.js';import{getTranslation as _0x461aa9}from'../utils/common-translations.js';function _0x23eb(_0x26423d,_0x4c306f){const _0x10a71f=_0x10a7();return _0x23eb=function(_0x23eb46,_0x5ea8a2){_0x23eb46=_0x23eb46-0x197;let _0x386eb6=_0x10a71f[_0x23eb46];return _0x386eb6;},_0x23eb(_0x26423d,_0x4c306f);}export default class r extends _0x57bd6c{static get[_0x26a5fe(0x20a)](){return[_0xbb7f33,_0x3113d3,_0x24c815,_0x513cdc,_0x2c1fef,_0xd39d76];}static get[_0x26a5fe(0x1ae)](){const _0x52584c=_0x26a5fe;return _0x52584c(0x1ea);}constructor(_0x461253){const _0x5a399d=_0x26a5fe;super(_0x461253),this[_0x5a399d(0x1da)](_0x5a399d(0x1d7),!0x0),_0x461253[_0x5a399d(0x1c6)][_0x5a399d(0x1fa)](_0x5a399d(0x1d9),()=>this[_0x5a399d(0x1d7)]=!0x1),this[_0x5a399d(0x1da)](_0x5a399d(0x1de),null),this['on'](_0x5a399d(0x1f4),(_0x4ea3a9,_0x47e766,_0xb1f10b,_0x2f329c)=>{const _0x547a27=_0x5a399d,_0x4ae653=_0xb1f10b?splitMarkerName(_0xb1f10b)['id']:null;if(_0x461253[_0x547a27(0x206)][_0x547a27(0x218)](()=>{const _0x550fc6=_0x547a27;if(_0x4ae653){const _0x4f789a=this[_0x550fc6(0x1f8)](_0x4ae653);for(const _0x563add of _0x4f789a)_0x461253[_0x550fc6(0x228)][_0x550fc6(0x214)](_0x563add);}if(_0x2f329c){const {id:_0x4151e5}=splitMarkerName(_0x2f329c),_0x5c5754=this[_0x550fc6(0x1f8)](_0x4151e5);for(const _0x5aef40 of _0x5c5754)_0x461253[_0x550fc6(0x228)][_0x550fc6(0x214)](_0x5aef40);}}),_0x4ae653){const _0x5c81be=_0x461253[_0x547a27(0x1ac)][_0x547a27(0x1f7)](_0xbb7f33)[_0x547a27(0x211)](_0x4ae653);_0x5c81be&&_0x5c81be[_0x547a27(0x1b5)]&&this[_0x547a27(0x19e)](_0x4ae653);}}),this[_0x5a399d(0x1f0)]();}[_0x26a5fe(0x1e7)](){const _0x30e86b=_0x26a5fe,_0x38d5d6=this[_0x30e86b(0x21e)],_0x1c15c0=_0x38d5d6[_0x30e86b(0x1ac)][_0x30e86b(0x1f7)](_0xbb7f33),_0x128730=_0x38d5d6[_0x30e86b(0x20d)][_0x30e86b(0x1f7)](_0x30e86b(0x1a6));_0x38d5d6[_0x30e86b(0x1cd)][_0x30e86b(0x19d)](_0x30e86b(0x1ab),new _0x286efb(_0x38d5d6)),this[_0x30e86b(0x1d4)](_0x38d5d6,_0x30e86b(0x1c9),(_0x15bcbb,_0x56964c,_0x395b1f)=>{const _0x3c925e=_0x30e86b;_0x1c15c0[_0x3c925e(0x1d6)](_0x395b1f,_0x38d5d6[_0x3c925e(0x20d)][_0x3c925e(0x1f7)](_0x3c925e(0x1a6)));}),this[_0x30e86b(0x1d4)](_0x1c15c0,ht(_0x30e86b(0x1ab),_0x128730),(_0x49dab6,{threadId:_0x209073})=>{const _0x173003=_0x30e86b,_0x17e636=this[_0x173003(0x21e)][_0x173003(0x1ac)][_0x173003(0x1f7)](_0xbb7f33)[_0x173003(0x211)](_0x209073);_0x17e636&&_0x17e636[_0x173003(0x1eb)]&&this[_0x173003(0x1a1)](_0x209073);}),this[_0x30e86b(0x1d4)](_0x1c15c0,ht(_0x30e86b(0x1ed),_0x128730),(_0x2a823e,{threadId:_0x3d7e7c})=>{const _0x4853a2=_0x30e86b;_0x38d5d6[_0x4853a2(0x206)][_0x4853a2(0x1c7)]({'isUndoable':!0x1},_0x3eb96a=>{const _0x13f65b=_0x4853a2,_0x1222a2=this[_0x13f65b(0x1f8)](_0x3d7e7c);for(const _0x4647fd of _0x1222a2)_0x3eb96a[_0x13f65b(0x1c0)](_0x4647fd);});}),this[_0x30e86b(0x1d4)](_0x1c15c0,ht(_0x30e86b(0x216),_0x128730),(_0x673fd0,{threadId:_0x1c67b6})=>{const _0x551704=_0x30e86b;(this[_0x551704(0x1d8)](_0x1c67b6),this[_0x551704(0x21e)][_0x551704(0x228)][_0x551704(0x1e5)][_0x551704(0x1ce)])&&(this[_0x551704(0x21e)][_0x551704(0x1ac)][_0x551704(0x1f7)](_0xbb7f33)[_0x551704(0x211)](_0x1c67b6)[_0x551704(0x1eb)]||this[_0x551704(0x21e)][_0x551704(0x228)][_0x551704(0x1e5)][_0x551704(0x1a7)]());},{'priority':_0x30e86b(0x22d)}),this[_0x30e86b(0x1d4)](_0x1c15c0,ht(_0x30e86b(0x224),_0x128730),(_0x419fff,{threadId:_0x5d0dc1})=>{const _0x17c649=_0x30e86b;this[_0x17c649(0x1d8)](_0x5d0dc1);},{'priority':_0x30e86b(0x22d)}),this[_0x30e86b(0x1d4)](_0x1c15c0,ht(_0x30e86b(0x1e6),_0x128730),(_0x189740,{threadId:_0x2bc386,isFromAdapter:_0x19ee74})=>{const _0x19fee3=_0x30e86b,_0x11cae5=this[_0x19fee3(0x1f8)](_0x2bc386);if(_0x19ee74||0x0==_0x11cae5[_0x19fee3(0x1c5)]||!_0x1c15c0[_0x19fee3(0x19c)](_0x2bc386))return;0x1===_0x1c15c0[_0x19fee3(0x211)](_0x2bc386)[_0x19fee3(0x1c5)]&&_0x38d5d6[_0x19fee3(0x206)][_0x19fee3(0x1c7)]({'isUndoable':!0x1},_0x4918a3=>{const _0x28a7a4=_0x19fee3;for(const _0x16d419 of _0x11cae5)_0x4918a3[_0x28a7a4(0x1be)](_0x16d419,{'usingOperation':!0x0,'affectsData':!0x0});});},{'priority':_0x30e86b(0x22d)}),this[_0x30e86b(0x229)](),this[_0x30e86b(0x20e)]();}[_0x26a5fe(0x1a5)](){const _0x5c205f=_0x26a5fe,_0x52127d=this[_0x5c205f(0x21e)][_0x5c205f(0x1ac)][_0x5c205f(0x1f7)](_0xbb7f33),_0x3004fe=this[_0x5c205f(0x21e)][_0x5c205f(0x20d)][_0x5c205f(0x1f7)](_0x5c205f(0x1a6));for(const _0x59faa0 of _0x52127d[_0x5c205f(0x1aa)]({'channelId':_0x3004fe}))_0x52127d[_0x5c205f(0x205)](_0x59faa0['id']),_0x52127d[_0x5c205f(0x1ef)][_0x5c205f(0x22e)](_0x59faa0['id']);super[_0x5c205f(0x1a5)]();}[_0x26a5fe(0x198)](_0x5419c3){const _0x1cc93f=_0x26a5fe;return this[_0x1cc93f(0x1f8)](_0x5419c3)[_0x1cc93f(0x1c5)]>0x0;}[_0x26a5fe(0x1f8)](_0x486781){const _0x33ffb8=_0x26a5fe,_0x2a29c8=[];for(const _0x36e537 of this[_0x33ffb8(0x21e)][_0x33ffb8(0x206)][_0x33ffb8(0x22c)])_0x36e537[_0x33ffb8(0x203)][_0x33ffb8(0x1db)](_0x33ffb8(0x1ca)+_0x486781)&&_0x2a29c8[_0x33ffb8(0x215)](_0x36e537);return _0x2a29c8;}[_0x26a5fe(0x19e)](_0x2d5d27){const _0x2f1006=_0x26a5fe,_0x528618=this[_0x2f1006(0x1d1)](_0x2d5d27);_0x528618&&setTimeout(()=>{const _0x1a627e=_0x2f1006;this[_0x1a627e(0x1de)]&&splitMarkerName(this[_0x1a627e(0x1de)])['id']===_0x2d5d27&&_0x42c068({'target':_0x528618[0x0],'viewportOffset':0x64,'alignToTop':!0x0});},0x32);}[_0x26a5fe(0x1d8)](_0x28c406){const _0x5a03d7=_0x26a5fe;this[_0x5a03d7(0x21e)][_0x5a03d7(0x206)][_0x5a03d7(0x218)](()=>{const _0x865c2a=_0x5a03d7;for(const _0x242481 of this[_0x865c2a(0x1f8)](_0x28c406))this[_0x865c2a(0x21e)][_0x865c2a(0x228)][_0x865c2a(0x214)](_0x242481);});}[_0x26a5fe(0x1a1)](_0x4b3a3d){const _0xf4be88=_0x26a5fe,_0x32da13=this[_0xf4be88(0x21e)][_0xf4be88(0x1ac)][_0xf4be88(0x1f7)](_0xbb7f33),_0x15671e=this[_0xf4be88(0x21e)][_0xf4be88(0x1ac)][_0xf4be88(0x1f7)](_0x3113d3),_0x350382=_0x32da13[_0xf4be88(0x211)](_0x4b3a3d);if(!_0x350382[_0xf4be88(0x210)]){const _0x5805c9=_0x350382[_0xf4be88(0x21d)](()=>this[_0xf4be88(0x1d1)](_0x350382['id']));_0x15671e[_0xf4be88(0x209)](_0x5805c9),_0x350382[_0xf4be88(0x1ec)]=!0x1;}}[_0x26a5fe(0x229)](){const _0x10fac5=_0x26a5fe,_0x115f68=this[_0x10fac5(0x21e)],_0x463325=_0x115f68[_0x10fac5(0x1ac)][_0x10fac5(0x1f7)](_0x24c815);_0x115f68[_0x10fac5(0x208)][_0x10fac5(0x1d3)](_0x10fac5(0x1b7))[_0x10fac5(0x1bc)]({'model':_0x10fac5(0x1fe),'view':(_0x270239,_0x3a9889)=>{const _0x1328d8=_0x10fac5,{id:_0x5dbc3a}=splitMarkerName(_0x270239[_0x1328d8(0x20b)]),_0xea7cd1=_0x115f68[_0x1328d8(0x1ac)][_0x1328d8(0x1f7)](_0xbb7f33)[_0x1328d8(0x211)](_0x5dbc3a),_0x18e0f8=this[_0x1328d8(0x1de)]&&splitMarkerName(this[_0x1328d8(0x1de)])['id']===_0x5dbc3a;let _0x513450;if(_0xea7cd1&&_0xea7cd1[_0x1328d8(0x1b5)]&&!_0x18e0f8&&_0x270239[_0x1328d8(0x219)])return _0x3a9889[_0x1328d8(0x1dd)][_0x1328d8(0x199)](_0x270239[_0x1328d8(0x219)],_0x1328d8(0x21f)+_0x270239[_0x1328d8(0x20b)]),_0x3a9889[_0x1328d8(0x1dd)][_0x1328d8(0x199)](_0x270239[_0x1328d8(0x219)],_0x1328d8(0x1a3)+_0x270239[_0x1328d8(0x20b)]),null;const _0x394664=[_0x1328d8(0x1bf)];return _0x18e0f8&&_0x394664[_0x1328d8(0x215)](_0x1328d8(0x1b0)),_0x513450=_0xea7cd1&&_0xea7cd1[_0x1328d8(0x1c5)]?_0xea7cd1[_0x1328d8(0x1a2)][_0x1328d8(0x1bd)][_0x1328d8(0x197)]['id']:_0x463325['me']['id'],{'classes':_0x394664,'attributes':{'data-comment':_0x5dbc3a,'data-author-id':_0x513450}};}}),_0x115f68[_0x10fac5(0x208)][_0x10fac5(0x1d3)](_0x10fac5(0x21b))[_0x10fac5(0x1e8)]({'model':_0x10fac5(0x1fe),'view':(_0x41f834,{options:_0x2a71ea})=>{const _0x3028d2=_0x10fac5,_0x428f5b=_0x115f68[_0x3028d2(0x1ac)][_0x3028d2(0x1f7)](_0xbb7f33),_0x41f7d4=_0x115f68[_0x3028d2(0x206)][_0x3028d2(0x22c)][_0x3028d2(0x1f7)](_0x41f834),{id:_0x2d121d,part:_0x5b1ccc}=splitMarkerName(_0x41f834);if(_0x41f7d4&&!_0x41f7d4[_0x3028d2(0x1e3)])return null;if(_0x2a71ea[_0x3028d2(0x213)]){const _0x505b2d=_0x428f5b[_0x3028d2(0x211)](_0x2d121d);if(_0x505b2d&&_0x505b2d[_0x3028d2(0x1b5)])return null;}return{'group':_0x3028d2(0x1fe),'name':_0x5b1ccc?_0x2d121d+':'+_0x5b1ccc:_0x2d121d};}}),_0x115f68[_0x10fac5(0x208)][_0x10fac5(0x1d3)](_0x10fac5(0x1a0))[_0x10fac5(0x22b)]({'view':{'name':_0x10fac5(0x1fe),'attributes':{'id':/^\w/}},'model':(_0x13cfa7,{writer:_0x4d220d})=>_0x4d220d[_0x10fac5(0x20c)](_0x10fac5(0x201),{'data-name':_0x10fac5(0x1ca)+_0x13cfa7[_0x10fac5(0x223)]('id')})}),_0x115f68[_0x10fac5(0x208)][_0x10fac5(0x1d3)](_0x10fac5(0x1a0))[_0x10fac5(0x200)]({'view':_0x10fac5(0x1fe)});}[_0x26a5fe(0x20e)](){const _0x445d1e=_0x26a5fe,_0x5a4a02=this[_0x445d1e(0x21e)],_0x40e8ac=_0x5a4a02[_0x445d1e(0x1ac)][_0x445d1e(0x1f7)](_0xbb7f33),_0x3c6bd9=new Set(),_0x3750a1=new Set();_0x5a4a02[_0x445d1e(0x206)][_0x445d1e(0x217)][_0x445d1e(0x1b3)](_0x50e231=>{const _0x5ceab8=_0x445d1e;let _0x234457=!0x1;for(const {name:_0x3cbd95,data:_0x41bf0d}of _0x5a4a02[_0x5ceab8(0x206)][_0x5ceab8(0x217)][_0x5ceab8(0x1f6)][_0x5ceab8(0x1f2)]()){const {group:_0x216059,id:_0x22dd20}=splitMarkerName(_0x3cbd95);let _0x4d3e44=_0x41bf0d[_0x5ceab8(0x207)];if(_0x5ceab8(0x1fe)!==_0x216059||!_0x4d3e44)continue;const _0x115c71=_0x5ceab8(0x1e0)===_0x4d3e44[_0x5ceab8(0x1b4)][_0x5ceab8(0x1b6)];_0x115c71||(_0x4d3e44=lt(_0x4d3e44,_0x5a4a02[_0x5ceab8(0x206)]),!_0x4d3e44||_0x4d3e44[_0x5ceab8(0x1b1)]||!_0x41bf0d[_0x5ceab8(0x207)]||_0x4d3e44[_0x5ceab8(0x1e4)](_0x41bf0d[_0x5ceab8(0x207)]))?_0x5a4a02[_0x5ceab8(0x206)][_0x5ceab8(0x225)](_0x4d3e44)&&!_0x115c71?this[_0x5ceab8(0x1d7)]?_0x3c6bd9[_0x5ceab8(0x19d)](_0x3cbd95):this[_0x5ceab8(0x19a)](_0x3cbd95,_0x22dd20):(_0x3750a1[_0x5ceab8(0x19d)](_0x3cbd95),_0x3c6bd9[_0x5ceab8(0x22e)](_0x3cbd95),_0x50e231[_0x5ceab8(0x1c0)](_0x3cbd95),_0x234457=!0x0):(_0x50e231[_0x5ceab8(0x1be)](_0x3cbd95,{'range':_0x4d3e44}),_0x234457=!0x0);}return _0x234457;}),this['on'](_0x445d1e(0x1c3),(_0x2f5301,_0x56714e,_0x3abd3e)=>{const _0x23688c=_0x445d1e;if(!_0x3abd3e&&_0x3c6bd9[_0x23688c(0x1f3)])for(const _0xa2a218 of _0x3c6bd9){const {id:_0x124df3}=splitMarkerName(_0xa2a218);_0x3c6bd9[_0x23688c(0x22e)](_0xa2a218),_0x5a4a02[_0x23688c(0x206)][_0x23688c(0x22c)][_0x23688c(0x1f7)](_0xa2a218)&&this[_0x23688c(0x19a)](_0xa2a218,_0x124df3);}}),this[_0x445d1e(0x1d4)](_0x5a4a02[_0x445d1e(0x206)][_0x445d1e(0x217)],_0x445d1e(0x218),(_0x368be3,_0x2976d3)=>{const _0x4533db=_0x445d1e;for(const {name:_0x214ca4,data:{newRange:_0x1c85a3}}of _0x5a4a02[_0x4533db(0x206)][_0x4533db(0x217)][_0x4533db(0x1f6)][_0x4533db(0x1f2)]()){const {group:_0xd7ef6a,id:_0x2f676d}=splitMarkerName(_0x214ca4);if(_0x4533db(0x1fe)!==_0xd7ef6a)continue;const _0x268e8b=_0x40e8ac[_0x4533db(0x211)](_0x2f676d),_0x5dea06=this[_0x4533db(0x198)](_0x2f676d);_0x268e8b&&(!_0x268e8b[_0x4533db(0x1ec)]&&_0x1c85a3&&_0x5a4a02[_0x4533db(0x228)][_0x4533db(0x1e5)][_0x4533db(0x1fa)](_0x4533db(0x1df),()=>{const _0x297edb=_0x4533db,_0x163d0d=_0x5a4a02[_0x297edb(0x1ac)][_0x297edb(0x1f7)](_0x262813),_0x153bbf=_0x40e8ac[_0x297edb(0x1fc)][_0x297edb(0x1f7)](_0x268e8b)[_0x297edb(0x1e5)];_0x163d0d[_0x297edb(0x1d0)](_0x153bbf)[_0x297edb(0x19f)]();},{'priority':_0x4533db(0x22d)}),_0x268e8b[_0x4533db(0x1ec)]=_0x5dea06||!!_0x1c85a3),_0x1c85a3||(_0x3750a1[_0x4533db(0x19d)](_0x214ca4),_0x3c6bd9[_0x4533db(0x22e)](_0x214ca4));}if(_0x2976d3[_0x4533db(0x1bb)])for(const _0x2e90af of _0x3750a1){const {id:_0x5c29be}=splitMarkerName(_0x2e90af),_0x3352f1=_0x40e8ac[_0x4533db(0x211)](_0x5c29be),_0x321db5=this[_0x4533db(0x198)](_0x5c29be);_0x3c6bd9[_0x4533db(0x22e)](_0x2e90af),!_0x3352f1||_0x321db5||_0x3352f1[_0x4533db(0x1eb)]||_0x3352f1[_0x4533db(0x1fb)](new Date());}_0x3750a1[_0x4533db(0x221)]();});}[_0x26a5fe(0x1d1)](_0x584b29){const _0xd06a49=_0x26a5fe,_0x6cca8a=this[_0xd06a49(0x21e)],_0xe4e8f0=this[_0xd06a49(0x1f8)](_0x584b29);return _0x43f5fb(_0x6cca8a[_0xd06a49(0x228)],_0xe4e8f0);}[_0x26a5fe(0x1c8)](_0x5347b4){const _0x560df0=_0x26a5fe,_0x67e82c=this[_0x560df0(0x1f8)](_0x5347b4);let _0x52670a='',_0x560e61=!0x1;for(const _0x3ef1c2 of _0x67e82c){const _0x1e5e76=_0x3ef1c2[_0x560df0(0x1f9)]();for(const _0x2b4a8d of Array[_0x560df0(0x1af)](_0x1e5e76[_0x560df0(0x21c)]()))_0x2b4a8d['is'](_0x560df0(0x1c4))?(_0x52670a&&_0x560e61&&(_0x52670a+='\x20',_0x560e61=!0x1),_0x52670a+=_0x2b4a8d[_0x560df0(0x1c6)]):_0x560e61=!0x0;_0x560e61=!0x0;}return _0x52670a[_0x560df0(0x1d5)](0x0,0x96);}[_0x26a5fe(0x1ee)](_0x24541e,_0x22a843){const _0x15ad38=_0x26a5fe,_0x12c856=this[_0x15ad38(0x21e)],_0x45c621=_0x12c856[_0x15ad38(0x1ac)][_0x15ad38(0x1f7)](_0xbb7f33);let _0x29eb21=_0x45c621[_0x15ad38(0x211)](_0x22a843);const _0xad69c2=_0x12c856[_0x15ad38(0x20d)][_0x15ad38(0x1f7)](_0x15ad38(0x1a6)),_0x46a730=_0x12c856[_0x15ad38(0x1ac)][_0x15ad38(0x1f7)](_0x3113d3);if(_0x29eb21&&(_0x29eb21[_0x15ad38(0x1eb)]&&_0x29eb21[_0x15ad38(0x1fb)](null),_0x29eb21[_0x15ad38(0x210)]))return _0x29eb21;return!this[_0x15ad38(0x1f8)](_0x22a843)[0x0][_0x15ad38(0x1b9)]?_0x12c856[_0x15ad38(0x228)][_0x15ad38(0x1e5)][_0x15ad38(0x1fa)](_0x15ad38(0x1df),()=>{const _0x39071b=_0x15ad38;if(_0x45c621[_0x39071b(0x211)](_0x22a843))return;const _0x409539=_0x12c856[_0x39071b(0x1ac)][_0x39071b(0x1f7)](_0x262813);_0x29eb21=_0x45c621[_0x39071b(0x21a)]({'channelId':_0xad69c2,'threadId':_0x22a843,'target':()=>this[_0x39071b(0x1d1)](_0x22a843),'context':{'type':_0x39071b(0x1e9),'value':this[_0x39071b(0x1c8)](_0x22a843)}});const _0x2bde48=_0x45c621[_0x39071b(0x1fc)][_0x39071b(0x1f7)](_0x29eb21)[_0x39071b(0x1e5)],_0xdddf5a=_0x409539[_0x39071b(0x1d0)](_0x2bde48);_0xdddf5a&&_0x46a730[_0x39071b(0x209)](_0xdddf5a);},{'priority':_0x15ad38(0x22d)}):_0x45c621[_0x15ad38(0x1b8)]({'channelId':_0xad69c2,'threadId':_0x22a843})[_0x15ad38(0x1c2)](_0x2ed8ec=>{const _0x41ec84=_0x15ad38;if(_0x41ec84(0x1e2)!==_0x12c856[_0x41ec84(0x212)]){if(_0x29eb21=_0x2ed8ec,_0x29eb21&&!_0x29eb21[_0x41ec84(0x210)]){const _0x3a7502=_0x29eb21[_0x41ec84(0x21d)](()=>this[_0x41ec84(0x1d1)](_0x22a843));_0x46a730[_0x41ec84(0x209)](_0x3a7502),_0x29eb21[_0x41ec84(0x1b5)]&&this[_0x41ec84(0x1d8)](_0x22a843);}else{if(!_0x29eb21){const _0x4fbd16=this[_0x41ec84(0x1f8)](_0x22a843);_0x12c856[_0x41ec84(0x206)][_0x41ec84(0x218)](_0x2d3211=>{const _0x35b1b0=_0x41ec84;for(const _0x435b8a of _0x4fbd16)_0x2d3211[_0x35b1b0(0x1c0)](_0x435b8a);});}}}}),_0x29eb21;}[_0x26a5fe(0x19a)](_0x38aab8,_0x166a8e){const _0x171384=_0x26a5fe,_0x236497=this[_0x171384(0x1ee)](_0x38aab8,_0x166a8e);_0x236497&&!_0x236497[_0x171384(0x1a9)]&&_0x236497[_0x171384(0x1b2)]({'type':_0x171384(0x1e9),'value':this[_0x171384(0x1c8)](_0x166a8e)});}[_0x26a5fe(0x1f0)](){const _0x4b48c4=_0x26a5fe,_0x1344b7=this[_0x4b48c4(0x21e)];_0x42a854(_0x1344b7[_0x4b48c4(0x206)],({left:_0x1efdc5,entered:_0x27e78a})=>{const _0x1ce99c=_0x4b48c4;for(const _0x282c84 of _0x1efdc5)if(ft(_0x282c84)){_0x1344b7['ui'][_0x1ce99c(0x1a4)][_0x1ce99c(0x1dc)](_0x461aa9(_0x1344b7[_0x1ce99c(0x202)],_0x1ce99c(0x220)));break;}for(const _0x205a54 of _0x27e78a)if(ft(_0x205a54)){_0x1344b7['ui'][_0x1ce99c(0x1a4)][_0x1ce99c(0x1dc)](_0x461aa9(_0x1344b7[_0x1ce99c(0x202)],_0x1ce99c(0x1cf),_0x108114(_0x1d7287)));break;}});}}function ht(_0x2ad015,_0x5a91ab){return _0x5a91ab?_0x2ad015+':'+_0x5a91ab:_0x2ad015;}export function splitMarkerName(_0x1c5113){const _0x1e618d=_0x26a5fe,_0x3ca088=_0x1c5113[_0x1e618d(0x226)](':');return{'group':_0x3ca088[0x0],'id':_0x3ca088[0x1],'part':_0x3ca088[0x2]};}function _0x10a7(){const _0x5adc27=['ignoreResolvedComments','reconvertMarker','push','resolveCommentThread','document','change','item','openNewCommentThread','dataDowncast','getItems','attachTo','editor','addMarker:','LEAVE_COMMENT_ANNOUNCEMENT','clear','end','getAttribute','reopenCommentThread','hasContent','split','group','editing','_initializeMarkerConverters','683391ttvLjy','elementToElement','markers','low','delete','createRange','author','hasMarkerForId','consume','_handleThreadMarker','createPositionBefore','hasCommentThread','add','scrollToThreadMarker','refreshVisibility','upcast','_attachArchivedThread','comments','removeMarker:','ariaLiveAnnouncer','destroy','collaboration.channelId','focus','10CbDEdf','context','getCommentThreads','addCommentThread','plugins','start','pluginName','from','ck-comment-marker--active','isCollapsed','setContext','registerPostFixer','root','isResolved','rootName','editingDowncast','fetchCommentThread','managedUsingOperations','schema','isLocal','markerToHighlight','first','updateMarker','ck-comment-marker','removeMarker','535652wSBdWI','then','change:isThreadsLoadingPaused','$textProxy','length','data','enqueueChange','_getTextContext','change:isReadOnly','comment:','4407543jVbwit','3330TxfeuG','commands','hasDomSelection','ENTER_COMMENT_ANNOUNCEMENT','getByInnerView','_getTargetForId','4539918Zhxvez','for','listenTo','substring','switchReadOnly','isThreadsLoadingPaused','_reconvertMarkers','ready','set','startsWith','announce','consumable','activeMarker','render','$graveyard','10tmHvpB','destroyed','affectsData','isEqual','view','addComment','init','markerToData','text','CommentsEditing','unlinkedAt','_hasTargetInContent','removeCommentThread','_attachMarkerToThread','_threads','_initAriaMarkerChangeAnnouncements','16lMzJfL','getChangedMarkers','size','change:activeMarker','63305IFVEre','differ','get','getAllMarkersForId','getRange','once','setUnlinkedAt','_threadToController','isObject','comment','654842NVaqSs','dataToMarker','$marker','locale','name','getWalker','_detachCommentThread','model','newRange','conversion','registerAnnotation','requires','markerName','createElement','config','_handleMarkerAddAndRemove','619479JBAEAc','isAttached','getCommentThread','state'];_0x10a7=function(){return _0x5adc27;};return _0x10a7();}function lt(_0x31aa76,_0x24a906){const _0xdb3114=_0x26a5fe,_0x166eba=_0x24a906[_0xdb3114(0x1ba)],_0x48080d=_0x24a906[_0xdb3114(0x22f)](_0x31aa76[_0xdb3114(0x1ad)]);for(const _0x336e91 of _0x31aa76[_0xdb3114(0x204)]()){const {type:_0x3c296b,item:_0x23b824,nextPosition:_0xeda462}=_0x336e91;if(_0xdb3114(0x1e9)===_0x3c296b||_0x166eba[_0xdb3114(0x1fd)](_0x23b824)){const _0x4e3e67=_0x24a906[_0xdb3114(0x19b)](_0x23b824);_0x48080d[_0xdb3114(0x1b1)]&&(_0x48080d[_0xdb3114(0x1ad)]=_0x4e3e67),_0x48080d[_0xdb3114(0x222)]=_0xeda462;}}return _0x48080d;}function ft(_0x27bda4){const _0x155b7d=_0x26a5fe;return _0x155b7d(0x1fe)===splitMarkerName(_0x27bda4[_0x155b7d(0x203)])[_0x155b7d(0x227)];}
|
|
23
|
+
const _0x97ecfd=_0x1251;(function(_0x37bad2,_0x350335){const _0x5e611d=_0x1251,_0x480bfe=_0x37bad2();while(!![]){try{const _0x2329fe=parseInt(_0x5e611d(0x184))/0x1*(parseInt(_0x5e611d(0x1ae))/0x2)+parseInt(_0x5e611d(0x183))/0x3+parseInt(_0x5e611d(0x143))/0x4*(parseInt(_0x5e611d(0x1bc))/0x5)+-parseInt(_0x5e611d(0x195))/0x6*(-parseInt(_0x5e611d(0x1cb))/0x7)+parseInt(_0x5e611d(0x1a9))/0x8*(-parseInt(_0x5e611d(0x164))/0x9)+parseInt(_0x5e611d(0x194))/0xa*(parseInt(_0x5e611d(0x1a5))/0xb)+-parseInt(_0x5e611d(0x1c1))/0xc;if(_0x2329fe===_0x350335)break;else _0x480bfe['push'](_0x480bfe['shift']());}catch(_0x37cdf0){_0x480bfe['push'](_0x480bfe['shift']());}}}(_0x6465,0x8d536));function _0x6465(){const _0x1ad486=['substring','isObject','getAllMarkersForId','_attachArchivedThread','set','createRange','_getTextContext','removeCommentThread','CommentsEditing','getItems','collaboration.channelId','ready','getAttribute','_initializeMarkerConverters','ignoreResolvedComments','change:isReadOnly','2574126RCQPys','1671KVwJef','root','getByInnerView','change:isThreadsLoadingPaused','init','model','isEqual','render','context','createPositionBefore','for','isResolved','config','updateMarker','getRange','unlinkedAt','70PmILhr','4603602ZbmeRV','getCommentThreads','markerToHighlight','push','registerAnnotation','attachTo','text','newRange','editor','isThreadsLoadingPaused','plugins','reconvertMarker','commands','clear','getWalker','data','1096271Ztnpkn','document','isCollapsed','getChangedMarkers','7384uGkBIP','markerName','getCommentThread','pluginName','addMarker:','16qZKmGo','hasMarkerForId','destroy','_detachCommentThread','view','schema','rootName','hasDomSelection','focus','change:activeMarker','scrollToThreadMarker','then','hasContent','once','1370veZyDe','dataToMarker','_hasTargetInContent','delete','split','11996784qvURZJ','refreshVisibility','dataDowncast','_threadToController','_initAriaMarkerChangeAnnouncements','isAttached','hasCommentThread','change','$graveyard','first','7hrxccr','resolveCommentThread','low','setContext','locale','isLocal','_threads','reopenCommentThread','consumable','from','LEAVE_COMMENT_ANNOUNCEMENT','addComment','_reconvertMarkers','startsWith','$marker','markerToData','removeMarker:','size','1416qWvbHH','activeMarker','conversion','destroyed','add','name','consume','differ','comment','_getTargetForId','editingDowncast','length','_handleThreadMarker','switchReadOnly','item','createElement','start','ariaLiveAnnouncer','addCommentThread','$textProxy','comment:','managedUsingOperations','listenTo','removeMarker','group','ck-comment-marker--active','_attachMarkerToThread','setUnlinkedAt','enqueueChange','fetchCommentThread','editing','author','ck-comment-marker','8334cfgoif','markers','_handleMarkerAddAndRemove','state','openNewCommentThread','requires','get','registerPostFixer','end','affectsData','elementToElement','announce','upcast','ENTER_COMMENT_ANNOUNCEMENT','comments'];_0x6465=function(){return _0x1ad486;};return _0x6465();}import{Plugin as _0x5e88c9}from'ckeditor5/src/core.js';import{getEnvKeystrokeText as _0xe4ac44,scrollViewportToShowTarget as _0x579cfd}from'ckeditor5/src/utils.js';import _0x432d83 from'./commentsrepository.js';import _0x5a287a from'./addcommentthreadcommand.js';import{surroundingMarkersDetector as _0x41b545,getAllMarkersDomElementsSorted as _0x4b929c,FOCUS_ANNOTATION_KEYSTROKE as _0x3995ce,Users as _0xc48a7b}from'ckeditor5-collaboration/src/collaboration-core.js';import _0x3a3c41 from'../annotations/editorannotations.js';import _0x46eea0 from'./integrations/commentsrestrictededitingmode.js';function _0x1251(_0x1e1045,_0x40df5c){const _0x646598=_0x6465();return _0x1251=function(_0x125145,_0x206054){_0x125145=_0x125145-0x141;let _0x6bc21e=_0x646598[_0x125145];return _0x6bc21e;},_0x1251(_0x1e1045,_0x40df5c);}import _0x57fc85 from'./integrations/importword.js';import _0x37d83d from'./integrations/clipboard.js';import'../../theme/commentmarker.css';import _0x184d2a from'../annotations/annotations.js';import{getTranslation as _0x1389bd}from'../utils/common-translations.js';export default class r extends _0x5e88c9{static get[_0x97ecfd(0x169)](){return[_0x432d83,_0x3a3c41,_0xc48a7b,_0x46eea0,_0x57fc85,_0x37d83d];}static get[_0x97ecfd(0x1ac)](){const _0xc50249=_0x97ecfd;return _0xc50249(0x17b);}constructor(_0x44b88e){const _0x167b5a=_0x97ecfd;super(_0x44b88e),this[_0x167b5a(0x177)](_0x167b5a(0x19e),!0x0),_0x44b88e[_0x167b5a(0x1a4)][_0x167b5a(0x1bb)](_0x167b5a(0x17e),()=>this[_0x167b5a(0x19e)]=!0x1),this[_0x167b5a(0x177)](_0x167b5a(0x144),null),this['on'](_0x167b5a(0x1b7),(_0x1dfd1f,_0x2ee7c2,_0xbc041c,_0x2cc36c)=>{const _0x5e23d4=_0x167b5a,_0x5bfcec=_0xbc041c?splitMarkerName(_0xbc041c)['id']:null;if(_0x44b88e[_0x5e23d4(0x189)][_0x5e23d4(0x1c8)](()=>{const _0x33557a=_0x5e23d4;if(_0x5bfcec){const _0x4471e2=this[_0x33557a(0x175)](_0x5bfcec);for(const _0x30087a of _0x4471e2)_0x44b88e[_0x33557a(0x161)][_0x33557a(0x1a0)](_0x30087a);}if(_0x2cc36c){const {id:_0x2fd072}=splitMarkerName(_0x2cc36c),_0x4b46aa=this[_0x33557a(0x175)](_0x2fd072);for(const _0x2e181e of _0x4b46aa)_0x44b88e[_0x33557a(0x161)][_0x33557a(0x1a0)](_0x2e181e);}}),_0x5bfcec){const _0xf6631c=_0x44b88e[_0x5e23d4(0x19f)][_0x5e23d4(0x16a)](_0x432d83)[_0x5e23d4(0x1ab)](_0x5bfcec);_0xf6631c&&_0xf6631c[_0x5e23d4(0x18f)]&&this[_0x5e23d4(0x1b8)](_0x5bfcec);}}),this[_0x167b5a(0x1c5)]();}[_0x97ecfd(0x188)](){const _0xaf97ed=_0x97ecfd,_0x1cf6a8=this[_0xaf97ed(0x19d)],_0x5a58c4=_0x1cf6a8[_0xaf97ed(0x19f)][_0xaf97ed(0x16a)](_0x432d83),_0xb778aa=_0x1cf6a8[_0xaf97ed(0x190)][_0xaf97ed(0x16a)](_0xaf97ed(0x17d));_0x1cf6a8[_0xaf97ed(0x1a1)][_0xaf97ed(0x147)](_0xaf97ed(0x155),new _0x5a287a(_0x1cf6a8)),this[_0xaf97ed(0x159)](_0x1cf6a8,_0xaf97ed(0x182),(_0x42f6b2,_0x5edad7,_0x1e65fa)=>{const _0x317ec8=_0xaf97ed;_0x5a58c4[_0x317ec8(0x150)](_0x1e65fa,_0x1cf6a8[_0x317ec8(0x190)][_0x317ec8(0x16a)](_0x317ec8(0x17d)));}),this[_0xaf97ed(0x159)](_0x5a58c4,mt(_0xaf97ed(0x155),_0xb778aa),(_0x1d35ac,{threadId:_0x30ffb2})=>{const _0x205078=_0xaf97ed,_0x11e895=this[_0x205078(0x19d)][_0x205078(0x19f)][_0x205078(0x16a)](_0x432d83)[_0x205078(0x1ab)](_0x30ffb2);_0x11e895&&_0x11e895[_0x205078(0x193)]&&this[_0x205078(0x176)](_0x30ffb2);}),this[_0xaf97ed(0x159)](_0x5a58c4,mt(_0xaf97ed(0x17a),_0xb778aa),(_0x2b150a,{threadId:_0x11b505})=>{const _0x20abda=_0xaf97ed;_0x1cf6a8[_0x20abda(0x189)][_0x20abda(0x15f)]({'isUndoable':!0x1},_0x43b3c1=>{const _0x3b9179=_0x20abda,_0x3e3a82=this[_0x3b9179(0x175)](_0x11b505);for(const _0x4c2d2c of _0x3e3a82)_0x43b3c1[_0x3b9179(0x15a)](_0x4c2d2c);});}),this[_0xaf97ed(0x159)](_0x5a58c4,mt(_0xaf97ed(0x1cc),_0xb778aa),(_0x27ea5d,{threadId:_0x2ae372})=>{const _0x30fe34=_0xaf97ed;(this[_0x30fe34(0x1d7)](_0x2ae372),this[_0x30fe34(0x19d)][_0x30fe34(0x161)][_0x30fe34(0x1b2)][_0x30fe34(0x1b5)])&&(this[_0x30fe34(0x19d)][_0x30fe34(0x19f)][_0x30fe34(0x16a)](_0x432d83)[_0x30fe34(0x1ab)](_0x2ae372)[_0x30fe34(0x193)]||this[_0x30fe34(0x19d)][_0x30fe34(0x161)][_0x30fe34(0x1b2)][_0x30fe34(0x1b6)]());},{'priority':_0xaf97ed(0x1cd)}),this[_0xaf97ed(0x159)](_0x5a58c4,mt(_0xaf97ed(0x1d2),_0xb778aa),(_0x9d0e54,{threadId:_0x1fcfa8})=>{const _0x35bf85=_0xaf97ed;this[_0x35bf85(0x1d7)](_0x1fcfa8);},{'priority':_0xaf97ed(0x1cd)}),this[_0xaf97ed(0x159)](_0x5a58c4,mt(_0xaf97ed(0x1d6),_0xb778aa),(_0x54c515,{threadId:_0x164526,isFromAdapter:_0x1a9c6a})=>{const _0x28f6aa=_0xaf97ed,_0xa950d1=this[_0x28f6aa(0x175)](_0x164526);if(_0x1a9c6a||0x0==_0xa950d1[_0x28f6aa(0x14e)]||!_0x5a58c4[_0x28f6aa(0x1c7)](_0x164526))return;0x1===_0x5a58c4[_0x28f6aa(0x1ab)](_0x164526)[_0x28f6aa(0x14e)]&&_0x1cf6a8[_0x28f6aa(0x189)][_0x28f6aa(0x15f)]({'isUndoable':!0x1},_0x126300=>{const _0x8e5c17=_0x28f6aa;for(const _0xe3671f of _0xa950d1)_0x126300[_0x8e5c17(0x191)](_0xe3671f,{'usingOperation':!0x0,'affectsData':!0x0});});},{'priority':_0xaf97ed(0x1cd)}),this[_0xaf97ed(0x180)](),this[_0xaf97ed(0x166)]();}[_0x97ecfd(0x1b0)](){const _0x4b8d8c=_0x97ecfd,_0x4a0f43=this[_0x4b8d8c(0x19d)][_0x4b8d8c(0x19f)][_0x4b8d8c(0x16a)](_0x432d83),_0x3d581c=this[_0x4b8d8c(0x19d)][_0x4b8d8c(0x190)][_0x4b8d8c(0x16a)](_0x4b8d8c(0x17d));for(const _0x51365c of _0x4a0f43[_0x4b8d8c(0x196)]({'channelId':_0x3d581c}))_0x4a0f43[_0x4b8d8c(0x1b1)](_0x51365c['id']),_0x4a0f43[_0x4b8d8c(0x1d1)][_0x4b8d8c(0x1bf)](_0x51365c['id']);super[_0x4b8d8c(0x1b0)]();}[_0x97ecfd(0x1af)](_0xe93588){const _0x4f9e90=_0x97ecfd;return this[_0x4f9e90(0x175)](_0xe93588)[_0x4f9e90(0x14e)]>0x0;}[_0x97ecfd(0x175)](_0xc4a05c){const _0x21448e=_0x97ecfd,_0x1ddefb=[];for(const _0x5a9c26 of this[_0x21448e(0x19d)][_0x21448e(0x189)][_0x21448e(0x165)])_0x5a9c26[_0x21448e(0x148)][_0x21448e(0x1d8)](_0x21448e(0x157)+_0xc4a05c)&&_0x1ddefb[_0x21448e(0x198)](_0x5a9c26);return _0x1ddefb;}[_0x97ecfd(0x1b8)](_0x54984b){const _0x5b091b=_0x97ecfd,_0x20cbbb=this[_0x5b091b(0x14c)](_0x54984b);_0x20cbbb&&setTimeout(()=>{const _0x380bcb=_0x5b091b;this[_0x380bcb(0x144)]&&splitMarkerName(this[_0x380bcb(0x144)])['id']===_0x54984b&&_0x579cfd({'target':_0x20cbbb[0x0],'viewportOffset':0x64,'alignToTop':!0x0});},0x32);}[_0x97ecfd(0x1d7)](_0x2e53d8){const _0x2d3461=_0x97ecfd;this[_0x2d3461(0x19d)][_0x2d3461(0x189)][_0x2d3461(0x1c8)](()=>{const _0x42bf73=_0x2d3461;for(const _0x93825e of this[_0x42bf73(0x175)](_0x2e53d8))this[_0x42bf73(0x19d)][_0x42bf73(0x161)][_0x42bf73(0x1a0)](_0x93825e);});}[_0x97ecfd(0x176)](_0x395092){const _0x49ea6d=_0x97ecfd,_0x1aaaf1=this[_0x49ea6d(0x19d)][_0x49ea6d(0x19f)][_0x49ea6d(0x16a)](_0x432d83),_0x12a921=this[_0x49ea6d(0x19d)][_0x49ea6d(0x19f)][_0x49ea6d(0x16a)](_0x3a3c41),_0x11a3d7=_0x1aaaf1[_0x49ea6d(0x1ab)](_0x395092);if(!_0x11a3d7[_0x49ea6d(0x1c6)]){const _0x480b2d=_0x11a3d7[_0x49ea6d(0x19a)](()=>this[_0x49ea6d(0x14c)](_0x11a3d7['id']));_0x12a921[_0x49ea6d(0x199)](_0x480b2d),_0x11a3d7[_0x49ea6d(0x1be)]=!0x1;}}[_0x97ecfd(0x180)](){const _0x5d26e9=_0x97ecfd,_0x52b46c=this[_0x5d26e9(0x19d)],_0x4bc2f1=_0x52b46c[_0x5d26e9(0x19f)][_0x5d26e9(0x16a)](_0xc48a7b);_0x52b46c[_0x5d26e9(0x145)][_0x5d26e9(0x18e)](_0x5d26e9(0x14d))[_0x5d26e9(0x197)]({'model':_0x5d26e9(0x14b),'view':(_0x15a9c9,_0x40e49d)=>{const _0x3f61a9=_0x5d26e9,{id:_0x41baf}=splitMarkerName(_0x15a9c9[_0x3f61a9(0x1aa)]),_0x150e93=_0x52b46c[_0x3f61a9(0x19f)][_0x3f61a9(0x16a)](_0x432d83)[_0x3f61a9(0x1ab)](_0x41baf),_0x48113c=this[_0x3f61a9(0x144)]&&splitMarkerName(this[_0x3f61a9(0x144)])['id']===_0x41baf;let _0x4f94e6;if(_0x150e93&&_0x150e93[_0x3f61a9(0x18f)]&&!_0x48113c&&_0x15a9c9[_0x3f61a9(0x151)])return _0x40e49d[_0x3f61a9(0x1d3)][_0x3f61a9(0x149)](_0x15a9c9[_0x3f61a9(0x151)],_0x3f61a9(0x1ad)+_0x15a9c9[_0x3f61a9(0x1aa)]),_0x40e49d[_0x3f61a9(0x1d3)][_0x3f61a9(0x149)](_0x15a9c9[_0x3f61a9(0x151)],_0x3f61a9(0x141)+_0x15a9c9[_0x3f61a9(0x1aa)]),null;const _0x2612d4=[_0x3f61a9(0x163)];return _0x48113c&&_0x2612d4[_0x3f61a9(0x198)](_0x3f61a9(0x15c)),_0x4f94e6=_0x150e93&&_0x150e93[_0x3f61a9(0x14e)]?_0x150e93[_0x3f61a9(0x172)][_0x3f61a9(0x1ca)][_0x3f61a9(0x162)]['id']:_0x4bc2f1['me']['id'],{'classes':_0x2612d4,'attributes':{'data-comment':_0x41baf,'data-author-id':_0x4f94e6}};}}),_0x52b46c[_0x5d26e9(0x145)][_0x5d26e9(0x18e)](_0x5d26e9(0x1c3))[_0x5d26e9(0x1da)]({'model':_0x5d26e9(0x14b),'view':(_0x48cfe5,{options:_0x24de0c})=>{const _0x598784=_0x5d26e9,_0x238c3b=_0x52b46c[_0x598784(0x19f)][_0x598784(0x16a)](_0x432d83),_0x4fb1e9=_0x52b46c[_0x598784(0x189)][_0x598784(0x165)][_0x598784(0x16a)](_0x48cfe5),{id:_0x531a62,part:_0x376ccd}=splitMarkerName(_0x48cfe5);if(_0x4fb1e9&&!_0x4fb1e9[_0x598784(0x16d)])return null;if(_0x24de0c[_0x598784(0x181)]){const _0x87b47b=_0x238c3b[_0x598784(0x1ab)](_0x531a62);if(_0x87b47b&&_0x87b47b[_0x598784(0x18f)])return null;}return{'group':_0x598784(0x14b),'name':_0x376ccd?_0x531a62+':'+_0x376ccd:_0x531a62};}}),_0x52b46c[_0x5d26e9(0x145)][_0x5d26e9(0x18e)](_0x5d26e9(0x170))[_0x5d26e9(0x16e)]({'view':{'name':_0x5d26e9(0x14b),'attributes':{'id':/^\w/}},'model':(_0x446b2b,{writer:_0x8bf057})=>_0x8bf057[_0x5d26e9(0x152)](_0x5d26e9(0x1d9),{'data-name':_0x5d26e9(0x157)+_0x446b2b[_0x5d26e9(0x17f)]('id')})}),_0x52b46c[_0x5d26e9(0x145)][_0x5d26e9(0x18e)](_0x5d26e9(0x170))[_0x5d26e9(0x1bd)]({'view':_0x5d26e9(0x14b)});}[_0x97ecfd(0x166)](){const _0x1b6384=_0x97ecfd,_0x160b40=this[_0x1b6384(0x19d)],_0x443c08=_0x160b40[_0x1b6384(0x19f)][_0x1b6384(0x16a)](_0x432d83),_0x23a348=new Set(),_0x442f11=new Set();_0x160b40[_0x1b6384(0x189)][_0x1b6384(0x1a6)][_0x1b6384(0x16b)](_0x23cf08=>{const _0x20da47=_0x1b6384;let _0x4a5898=!0x1;for(const {name:_0x5ebd52,data:_0x3486b8}of _0x160b40[_0x20da47(0x189)][_0x20da47(0x1a6)][_0x20da47(0x14a)][_0x20da47(0x1a8)]()){const {group:_0x14fcc8,id:_0x2e9839}=splitMarkerName(_0x5ebd52);let _0x54414a=_0x3486b8[_0x20da47(0x19c)];if(_0x20da47(0x14b)!==_0x14fcc8||!_0x54414a)continue;const _0x23d1d9=_0x20da47(0x1c9)===_0x54414a[_0x20da47(0x185)][_0x20da47(0x1b4)];_0x23d1d9||(_0x54414a=dt(_0x54414a,_0x160b40[_0x20da47(0x189)]),!_0x54414a||_0x54414a[_0x20da47(0x1a7)]||!_0x3486b8[_0x20da47(0x19c)]||_0x54414a[_0x20da47(0x18a)](_0x3486b8[_0x20da47(0x19c)]))?_0x160b40[_0x20da47(0x189)][_0x20da47(0x1ba)](_0x54414a)&&!_0x23d1d9?this[_0x20da47(0x19e)]?_0x23a348[_0x20da47(0x147)](_0x5ebd52):this[_0x20da47(0x14f)](_0x5ebd52,_0x2e9839):(_0x442f11[_0x20da47(0x147)](_0x5ebd52),_0x23a348[_0x20da47(0x1bf)](_0x5ebd52),_0x23cf08[_0x20da47(0x15a)](_0x5ebd52),_0x4a5898=!0x0):(_0x23cf08[_0x20da47(0x191)](_0x5ebd52,{'range':_0x54414a}),_0x4a5898=!0x0);}return _0x4a5898;}),this['on'](_0x1b6384(0x187),(_0x52a838,_0x4da432,_0x284899)=>{const _0xf5ca2b=_0x1b6384;if(!_0x284899&&_0x23a348[_0xf5ca2b(0x142)])for(const _0x2a846c of _0x23a348){const {id:_0x33fb02}=splitMarkerName(_0x2a846c);_0x23a348[_0xf5ca2b(0x1bf)](_0x2a846c),_0x160b40[_0xf5ca2b(0x189)][_0xf5ca2b(0x165)][_0xf5ca2b(0x16a)](_0x2a846c)&&this[_0xf5ca2b(0x14f)](_0x2a846c,_0x33fb02);}}),this[_0x1b6384(0x159)](_0x160b40[_0x1b6384(0x189)][_0x1b6384(0x1a6)],_0x1b6384(0x1c8),(_0x4a6b24,_0x4228e0)=>{const _0x52814b=_0x1b6384;for(const {name:_0x3848ce,data:{newRange:_0x406233}}of _0x160b40[_0x52814b(0x189)][_0x52814b(0x1a6)][_0x52814b(0x14a)][_0x52814b(0x1a8)]()){const {group:_0x1e6291,id:_0x316f2d}=splitMarkerName(_0x3848ce);if(_0x52814b(0x14b)!==_0x1e6291)continue;const _0x54fbf3=_0x443c08[_0x52814b(0x1ab)](_0x316f2d),_0x54f0c4=this[_0x52814b(0x1af)](_0x316f2d);_0x54fbf3&&(!_0x54fbf3[_0x52814b(0x1be)]&&_0x406233&&_0x160b40[_0x52814b(0x161)][_0x52814b(0x1b2)][_0x52814b(0x1bb)](_0x52814b(0x18b),()=>{const _0x5df237=_0x52814b,_0x13f0b0=_0x160b40[_0x5df237(0x19f)][_0x5df237(0x16a)](_0x184d2a),_0xcfdbeb=_0x443c08[_0x5df237(0x1c4)][_0x5df237(0x16a)](_0x54fbf3)[_0x5df237(0x1b2)];_0x13f0b0[_0x5df237(0x186)](_0xcfdbeb)[_0x5df237(0x1c2)]();},{'priority':_0x52814b(0x1cd)}),_0x54fbf3[_0x52814b(0x1be)]=_0x54f0c4||!!_0x406233),_0x406233||(_0x442f11[_0x52814b(0x147)](_0x3848ce),_0x23a348[_0x52814b(0x1bf)](_0x3848ce));}if(_0x4228e0[_0x52814b(0x1d0)])for(const _0xd9526a of _0x442f11){const {id:_0x5a8c9c}=splitMarkerName(_0xd9526a),_0x308f2f=_0x443c08[_0x52814b(0x1ab)](_0x5a8c9c),_0x375e54=this[_0x52814b(0x1af)](_0x5a8c9c);_0x23a348[_0x52814b(0x1bf)](_0xd9526a),!_0x308f2f||_0x375e54||_0x308f2f[_0x52814b(0x193)]||_0x308f2f[_0x52814b(0x15e)](new Date());}_0x442f11[_0x52814b(0x1a2)]();});}[_0x97ecfd(0x14c)](_0x49c641){const _0x56853e=_0x97ecfd,_0x192add=this[_0x56853e(0x19d)],_0xcceda7=this[_0x56853e(0x175)](_0x49c641);return _0x4b929c(_0x192add[_0x56853e(0x161)],_0xcceda7);}[_0x97ecfd(0x179)](_0x5c8798){const _0x563261=_0x97ecfd,_0x5ce34f=this[_0x563261(0x175)](_0x5c8798);let _0x505b03='',_0x20c38d=!0x1;for(const _0x46f625 of _0x5ce34f){const _0x15c3d3=_0x46f625[_0x563261(0x192)]();for(const _0x3efb4e of Array[_0x563261(0x1d4)](_0x15c3d3[_0x563261(0x17c)]()))_0x3efb4e['is'](_0x563261(0x156))?(_0x505b03&&_0x20c38d&&(_0x505b03+='\x20',_0x20c38d=!0x1),_0x505b03+=_0x3efb4e[_0x563261(0x1a4)]):_0x20c38d=!0x0;_0x20c38d=!0x0;}return _0x505b03[_0x563261(0x173)](0x0,0x96);}[_0x97ecfd(0x15d)](_0x3f54f0,_0x2472f8){const _0x5723d9=_0x97ecfd,_0x55078d=this[_0x5723d9(0x19d)],_0x51cf39=_0x55078d[_0x5723d9(0x19f)][_0x5723d9(0x16a)](_0x432d83);let _0x35e75c=_0x51cf39[_0x5723d9(0x1ab)](_0x2472f8);const _0xb7c618=_0x55078d[_0x5723d9(0x190)][_0x5723d9(0x16a)](_0x5723d9(0x17d)),_0x1f3669=_0x55078d[_0x5723d9(0x19f)][_0x5723d9(0x16a)](_0x3a3c41);if(_0x35e75c&&(_0x35e75c[_0x5723d9(0x193)]&&_0x35e75c[_0x5723d9(0x15e)](null),_0x35e75c[_0x5723d9(0x1c6)]))return _0x35e75c;return!this[_0x5723d9(0x175)](_0x2472f8)[0x0][_0x5723d9(0x158)]?_0x55078d[_0x5723d9(0x161)][_0x5723d9(0x1b2)][_0x5723d9(0x1bb)](_0x5723d9(0x18b),()=>{const _0x3b7ae2=_0x5723d9;if(_0x51cf39[_0x3b7ae2(0x1ab)](_0x2472f8))return;const _0x5bed63=_0x55078d[_0x3b7ae2(0x19f)][_0x3b7ae2(0x16a)](_0x184d2a);_0x35e75c=_0x51cf39[_0x3b7ae2(0x168)]({'channelId':_0xb7c618,'threadId':_0x2472f8,'target':()=>this[_0x3b7ae2(0x14c)](_0x2472f8),'context':{'type':_0x3b7ae2(0x19b),'value':this[_0x3b7ae2(0x179)](_0x2472f8)}});const _0x53a751=_0x51cf39[_0x3b7ae2(0x1c4)][_0x3b7ae2(0x16a)](_0x35e75c)[_0x3b7ae2(0x1b2)],_0x24566c=_0x5bed63[_0x3b7ae2(0x186)](_0x53a751);_0x24566c&&_0x1f3669[_0x3b7ae2(0x199)](_0x24566c);},{'priority':_0x5723d9(0x1cd)}):_0x51cf39[_0x5723d9(0x160)]({'channelId':_0xb7c618,'threadId':_0x2472f8})[_0x5723d9(0x1b9)](_0x5deb4d=>{const _0x165bbf=_0x5723d9;if(_0x165bbf(0x146)!==_0x55078d[_0x165bbf(0x167)]){if(_0x35e75c=_0x5deb4d,_0x35e75c&&!_0x35e75c[_0x165bbf(0x1c6)]){const _0x503e30=_0x35e75c[_0x165bbf(0x19a)](()=>this[_0x165bbf(0x14c)](_0x2472f8));_0x1f3669[_0x165bbf(0x199)](_0x503e30),_0x35e75c[_0x165bbf(0x18f)]&&this[_0x165bbf(0x1d7)](_0x2472f8);}else{if(!_0x35e75c){const _0xe6a1a3=this[_0x165bbf(0x175)](_0x2472f8);_0x55078d[_0x165bbf(0x189)][_0x165bbf(0x1c8)](_0x505cf4=>{const _0x3a1461=_0x165bbf;for(const _0x5e0bf6 of _0xe6a1a3)_0x505cf4[_0x3a1461(0x15a)](_0x5e0bf6);});}}}}),_0x35e75c;}[_0x97ecfd(0x14f)](_0x3d1975,_0x454ec2){const _0x1a3fe1=_0x97ecfd,_0x4f5aa7=this[_0x1a3fe1(0x15d)](_0x3d1975,_0x454ec2);_0x4f5aa7&&!_0x4f5aa7[_0x1a3fe1(0x18c)]&&_0x4f5aa7[_0x1a3fe1(0x1ce)]({'type':_0x1a3fe1(0x19b),'value':this[_0x1a3fe1(0x179)](_0x454ec2)});}[_0x97ecfd(0x1c5)](){const _0x337f80=_0x97ecfd,_0x495b14=this[_0x337f80(0x19d)];_0x41b545(_0x495b14[_0x337f80(0x189)],({left:_0x2aac5c,entered:_0xb46dfc})=>{const _0x488a6f=_0x337f80;for(const _0x1cf061 of _0x2aac5c)if(ht(_0x1cf061)){_0x495b14['ui'][_0x488a6f(0x154)][_0x488a6f(0x16f)](_0x1389bd(_0x495b14[_0x488a6f(0x1cf)],_0x488a6f(0x1d5)));break;}for(const _0x4580bd of _0xb46dfc)if(ht(_0x4580bd)){_0x495b14['ui'][_0x488a6f(0x154)][_0x488a6f(0x16f)](_0x1389bd(_0x495b14[_0x488a6f(0x1cf)],_0x488a6f(0x171),_0xe4ac44(_0x3995ce)));break;}});}}function mt(_0x56f9ae,_0x29300a){return _0x29300a?_0x56f9ae+':'+_0x29300a:_0x56f9ae;}export function splitMarkerName(_0x31cc51){const _0x3fd51d=_0x97ecfd,_0x4848c3=_0x31cc51[_0x3fd51d(0x1c0)](':');return{'group':_0x4848c3[0x0],'id':_0x4848c3[0x1],'part':_0x4848c3[0x2]};}function dt(_0x4d2aae,_0x2de377){const _0x33d68c=_0x97ecfd,_0x47f8ed=_0x2de377[_0x33d68c(0x1b3)],_0x2cc98d=_0x2de377[_0x33d68c(0x178)](_0x4d2aae[_0x33d68c(0x153)]);for(const _0x5617d1 of _0x4d2aae[_0x33d68c(0x1a3)]()){const {type:_0x2827ec,item:_0x2a117e,nextPosition:_0x1a7b68}=_0x5617d1;if(_0x33d68c(0x19b)===_0x2827ec||_0x47f8ed[_0x33d68c(0x174)](_0x2a117e)){const _0x19bafd=_0x2de377[_0x33d68c(0x18d)](_0x2a117e);_0x2cc98d[_0x33d68c(0x1a7)]&&(_0x2cc98d[_0x33d68c(0x153)]=_0x19bafd),_0x2cc98d[_0x33d68c(0x16c)]=_0x1a7b68;}}return _0x2cc98d;}function ht(_0x3fa629){const _0x3b976e=_0x97ecfd;return _0x3b976e(0x14b)===splitMarkerName(_0x3fa629[_0x3b976e(0x148)])[_0x3b976e(0x15b)];}
|