@ckeditor/ckeditor5-merge-fields 0.0.0-nightly-20241016.0 → 0.0.0-nightly-20241018.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/merge-fields.js +1 -1
- package/dist/index.js +1 -1
- package/dist/translations/ar.js +1 -1
- package/dist/translations/ar.umd.js +1 -1
- package/dist/translations/bg.js +1 -1
- package/dist/translations/bg.umd.js +1 -1
- package/dist/translations/bn.js +1 -1
- package/dist/translations/bn.umd.js +1 -1
- package/dist/translations/ca.js +1 -1
- package/dist/translations/ca.umd.js +1 -1
- package/dist/translations/cs.js +1 -1
- package/dist/translations/cs.umd.js +1 -1
- package/dist/translations/da.js +1 -1
- package/dist/translations/da.umd.js +1 -1
- package/dist/translations/de.js +1 -1
- package/dist/translations/de.umd.js +1 -1
- package/dist/translations/el.js +1 -1
- package/dist/translations/el.umd.js +1 -1
- package/dist/translations/en.umd.js +1 -1
- package/dist/translations/es.js +1 -1
- package/dist/translations/es.umd.js +1 -1
- package/dist/translations/et.js +1 -1
- package/dist/translations/et.umd.js +1 -1
- package/dist/translations/fi.js +1 -1
- package/dist/translations/fi.umd.js +1 -1
- package/dist/translations/fr.js +1 -1
- package/dist/translations/fr.umd.js +1 -1
- package/dist/translations/gl.js +1 -1
- package/dist/translations/gl.umd.js +1 -1
- package/dist/translations/he.js +1 -1
- package/dist/translations/he.umd.js +1 -1
- package/dist/translations/hi.js +1 -1
- package/dist/translations/hi.umd.js +1 -1
- package/dist/translations/hr.js +1 -1
- package/dist/translations/hr.umd.js +1 -1
- package/dist/translations/hu.js +1 -1
- package/dist/translations/hu.umd.js +1 -1
- package/dist/translations/id.js +1 -1
- package/dist/translations/id.umd.js +1 -1
- package/dist/translations/it.js +1 -1
- package/dist/translations/it.umd.js +1 -1
- package/dist/translations/ja.js +1 -1
- package/dist/translations/ja.umd.js +1 -1
- package/dist/translations/ko.js +1 -1
- package/dist/translations/ko.umd.js +1 -1
- package/dist/translations/lt.js +1 -1
- package/dist/translations/lt.umd.js +1 -1
- package/dist/translations/lv.js +1 -1
- package/dist/translations/lv.umd.js +1 -1
- package/dist/translations/ms.js +1 -1
- package/dist/translations/ms.umd.js +1 -1
- package/dist/translations/nl.js +1 -1
- package/dist/translations/nl.umd.js +1 -1
- package/dist/translations/no.js +1 -1
- package/dist/translations/no.umd.js +1 -1
- package/dist/translations/pl.js +1 -1
- package/dist/translations/pl.umd.js +1 -1
- package/dist/translations/pt-br.js +1 -1
- package/dist/translations/pt-br.umd.js +1 -1
- package/dist/translations/pt.js +1 -1
- package/dist/translations/pt.umd.js +1 -1
- package/dist/translations/ro.js +1 -1
- package/dist/translations/ro.umd.js +1 -1
- package/dist/translations/ru.js +1 -1
- package/dist/translations/ru.umd.js +1 -1
- package/dist/translations/sk.js +1 -1
- package/dist/translations/sk.umd.js +1 -1
- package/dist/translations/sr.js +1 -1
- package/dist/translations/sr.umd.js +1 -1
- package/dist/translations/sv.js +1 -1
- package/dist/translations/sv.umd.js +1 -1
- package/dist/translations/th.js +1 -1
- package/dist/translations/th.umd.js +1 -1
- package/dist/translations/tr.js +1 -1
- package/dist/translations/tr.umd.js +1 -1
- package/dist/translations/uk.js +1 -1
- package/dist/translations/uk.umd.js +1 -1
- package/dist/translations/vi.js +1 -1
- package/dist/translations/vi.umd.js +1 -1
- package/dist/translations/zh-cn.js +1 -1
- package/dist/translations/zh-cn.umd.js +1 -1
- package/dist/translations/zh.js +1 -1
- package/dist/translations/zh.umd.js +1 -1
- package/package.json +7 -7
- package/src/index.js +1 -1
- package/src/insertmergefieldblockcommand.js +1 -1
- package/src/insertmergefieldcommand.js +1 -1
- package/src/mergefields.d.ts +8 -0
- package/src/mergefields.js +1 -1
- package/src/mergefieldsediting.d.ts +8 -0
- package/src/mergefieldsediting.js +1 -1
- package/src/mergefieldsui.d.ts +8 -0
- package/src/mergefieldsui.js +1 -1
- package/src/previewmergefieldscommand.js +1 -1
- package/src/ui/mergefieldslistview.js +1 -1
- package/src/ui/mergefieldspanelview.js +1 -1
- package/src/utils/common-translations.js +1 -1
|
@@ -27,6 +27,14 @@ export default class MergeFieldsEditing extends Plugin {
|
|
|
27
27
|
* @inheritDoc
|
|
28
28
|
*/
|
|
29
29
|
static get pluginName(): "MergeFieldsEditing";
|
|
30
|
+
/**
|
|
31
|
+
* @inheritDoc
|
|
32
|
+
*/
|
|
33
|
+
static get isOfficialPlugin(): true;
|
|
34
|
+
/**
|
|
35
|
+
* @inheritDoc
|
|
36
|
+
*/
|
|
37
|
+
static get isPremiumPlugin(): true;
|
|
30
38
|
/**
|
|
31
39
|
* @inheritDoc
|
|
32
40
|
*/
|
|
@@ -20,4 +20,4 @@
|
|
|
20
20
|
*
|
|
21
21
|
*
|
|
22
22
|
*/
|
|
23
|
-
const _0x16417c=_0x2d06;(function(_0x1b8091,_0x2e4cb4){const _0x18a036=_0x2d06,_0x32fe82=_0x1b8091();while(!![]){try{const _0x2e7023=-parseInt(_0x18a036(0x18d))/0x1*(-parseInt(_0x18a036(0xfa))/0x2)+-parseInt(_0x18a036(0x15a))/0x3*(parseInt(_0x18a036(0x165))/0x4)+parseInt(_0x18a036(0x12e))/0x5*(parseInt(_0x18a036(0x1cf))/0x6)+parseInt(_0x18a036(0x11a))/0x7+parseInt(_0x18a036(0x15c))/0x8*(parseInt(_0x18a036(0x1b3))/0x9)+parseInt(_0x18a036(0x16c))/0xa*(-parseInt(_0x18a036(0x149))/0xb)+parseInt(_0x18a036(0x1c1))/0xc*(-parseInt(_0x18a036(0x17b))/0xd);if(_0x2e7023===_0x2e4cb4)break;else _0x32fe82['push'](_0x32fe82['shift']());}catch(_0x43074a){_0x32fe82['push'](_0x32fe82['shift']());}}}(_0xeb73,0x9bcd5));import{toWidget as _0x360e04,viewToModelPositionOutsideModelElement as _0x54ee3e}from'ckeditor5/src/widget.js';import{Plugin as _0x53ac01}from'ckeditor5/src/core.js';import{IconView as _0x28b2dc}from'ckeditor5/src/ui.js';import{isParagraphable as _0x5b491f,wrapInParagraph as _0x34e3b2}from'ckeditor5/src/engine.js';import{CKEditorError as _0x48a203,logWarning as _0x3e100}from'ckeditor5/src/utils.js';import _0x2d8484 from'./insertmergefieldcommand.js';function _0x2d06(_0x2645ce,_0x40882f){const _0xeb732=_0xeb73();return _0x2d06=function(_0x2d069c,_0x3629a9){_0x2d069c=_0x2d069c-0xf6;let _0x120a27=_0xeb732[_0x2d069c];return _0x120a27;},_0x2d06(_0x2645ce,_0x40882f);}import _0x313084 from'./insertmergefieldblockcommand.js';import _0x83caa from'./previewmergefieldscommand.js';import _0x273478 from'../theme/icons/warning.svg';function _0xeb73(){const _0x1720fe=['mergeFieldsData','values','merge-fields-prefix-and-suffix-must-differ','mergeFieldsLicenseKeyValid','insertMergeFieldBlock','startOffset','mergeFields.previewHtmlValues','find','next','merge-fields-invalid-preview-mode-set','_getAvailablePreviewModes','createRange','$dataSets','licenseKey','29217MOZpWb','createUIElement','56kmoVxM','editing','isLocal','createText','innerHTML','reconvertItem','start','dataPipeline:transparentRendering','span','500aGlJEC','match','schema','ck-merge-field__content','height','set','element','10HUYcoK','offsetSize','groupId','remove','has','block','mergeFields.definitions','merge-fields-duplicate-data-set-id','mergeFields.suffix','setContentOf','merge-fields-prefix-or-suffix-too-long','matchAll','define','merge-fields-invalid-prefix-or-suffix','_createTextualMergeField','26NDLPmS','function','merge-fields-invalid-preview-modes-configuration','$labels','WARNING_MISSING_DATA_USED_DEFAULT_VALUE','_shouldPreviewHtmlValues','init','$inlineObject','change:data','$graveyard','insertMergeField','mergeFieldBlock','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-definition','parent','editingDowncast','push','info','getMergeFieldDefaultValue','38AzLIlU','mergeFields.previewModes','\x20]+','getDefinition','style','upcast','editor','view','getMergeFieldType','You\x20are\x20using\x20the\x20trial\x20version\x20of\x20CKEditor\x205\x20format\x20painter\x20plugin\x20with\x20limited\x20usage.\x20Make\x20sure\x20you\x20will\x20not\x20use\x20it\x20in\x20the\x20production\x20environment.','availablePreviewModes','differ','type','conversion','WARNING_MISSING_DATA','_mergeFieldElements','position','merge-fields-duplicate-merge-field-id','every','for','from','insert','add','getLabel','height:\x20','ck-merge-field-block_with-value','createRangeIn','register','ck-merge-field_with-value','div','getDataSetValues','_mergeFieldRegExp','merge-fields-invalid-id','rootName','delete','ck-merge-field__icon','index','getDocumentMergeFieldsIds','1018359NdQzXO','mergeFields.prefix','_registerConversionPostFixer','_licenseKeyCheckInterval','data','getMergeFieldValue','end','split','replace','$blockObject','setCustomProperty','getChildren','previewMode','viewToModelPosition','1488060MQKVWv','getAttribute','label','_mergeFieldPrefix','change:previewMode','render','_prepareViewElementData','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_no-default','dataDowncast','merge-fields-duplicate-group-id','getClassNames','_trackAddedMergeFields','name','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-data','678hMFcRn','modelRange','test','merge-fields-provide-sanitize-function','batch','nextSibling','elementToElement','addClass','_defineSchema','listenTo','47152HfPXpl','get','destroy','getAttributes','previewMergeFields','text','_defineConverters','appendChild','concat','getChanges','_validateConfig','getDefaultValues','getMergeFieldsIds','filter','html','definitions','forEach','flattenedMergeFieldDefinitions','commands','_mergeFieldSuffix','nodeAfter','ck-merge-field\x20ck-merge-field_with-value','value','document','config','bind','registerPostFixer','mergeField','$text','MergeFieldsEditing','reduce','domConverter','4150671NYFdYi','mergeFieldsLicenseKeyTrialLimit:operations','checkChild','model','merge-fields-invalid-license-key','hasClass','_validatePreviewMode','mergeFieldsLicenseKeyInvalid','merge-fields-trial-license-key-reached-limit-changes','getItems','registerInlineObjectMatcher','setAttribute','defaultValue','merge-fields-data-set-not-found','length','join','pluginName','toDomElement','consume','ck-merge-field__affix','21315jvwRYn','insertObject','getShiftedBy','mergeFields.sanitizeHtml','mergeFieldStatus','_getFlattenedMergeFieldDefinitions','slice','createContainerElement','WARNING_MISSING_DEFAULT_VALUE','createPositionAt','createRawElement','root','ck-merge-field','ck-merge-field-block','createElement','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_default-value-used','mergeFields.dataSets','data-merge-field-block-label','reverse','$defaultValues','mapper','map','modelCursor','_refreshMergeFields','_createMergeFieldWidget','mergeFieldsLicenseKeyTrial','mergeFields.initialPreviewMode','7249737cNOCud','ck-merge-field_with-warning','includes'];_0xeb73=function(){return _0x1720fe;};return _0xeb73();}export default class m extends _0x53ac01{static get[_0x16417c(0x12a)](){const _0x534f9e=_0x16417c;return _0x534f9e(0x117);}constructor(_0x3a42d3){const _0x506c5b=_0x16417c;super(_0x3a42d3),this[_0x506c5b(0x10b)]=[],_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x18e),[_0x506c5b(0x17e),_0x506c5b(0x141),_0x506c5b(0x158)]),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x13e),[]),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x172),[]),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x1b4),'{{'),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x174),'}}'),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x152),!0x1),_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0x178)](_0x506c5b(0x131),_0x510f50=>(_0x3e100(_0x506c5b(0x1d2)),{'html':_0x510f50,'hasChanged':!0x1})),this[_0x506c5b(0x1c4)]=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x1b4)),this[_0x506c5b(0x10d)]=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x174)),this[_0x506c5b(0x180)]=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x152)),this[_0x506c5b(0x10b)]=this[_0x506c5b(0x133)](),this[_0x506c5b(0x104)]();const _0x4930d4='\x5c'+this[_0x506c5b(0x1c4)][_0x506c5b(0x1ba)]('')[_0x506c5b(0x129)]('\x5c'),_0x2f3cfc='\x5c'+this[_0x506c5b(0x10d)][_0x506c5b(0x1ba)]('')[_0x506c5b(0x129)]('\x5c');this[_0x506c5b(0x1ac)]=new RegExp('('+_0x4930d4+'[^'+(_0x4930d4+_0x2f3cfc)+_0x506c5b(0x18f)+_0x2f3cfc+')','g'),this[_0x506c5b(0x197)]=this[_0x506c5b(0x156)]();const _0x2f2fe1=_0x3a42d3[_0x506c5b(0x112)][_0x506c5b(0xfb)](_0x506c5b(0x148))||this[_0x506c5b(0x197)][0x0];this[_0x506c5b(0x120)](_0x2f2fe1),this[_0x506c5b(0x16a)](_0x506c5b(0x1bf),_0x2f2fe1),this[_0x506c5b(0x19c)]=new Set(),this[_0x506c5b(0x1b6)]=null;}[_0x16417c(0x181)](){const _0x2def37=_0x16417c,_0x1df2a5=this[_0x2def37(0x193)];_0x1df2a5[_0x2def37(0x10c)][_0x2def37(0x1a3)](_0x2def37(0x185),new _0x2d8484(_0x1df2a5)),_0x1df2a5[_0x2def37(0x10c)][_0x2def37(0x1a3)](_0x2def37(0x150),new _0x313084(_0x1df2a5)),_0x1df2a5[_0x2def37(0x10c)][_0x2def37(0x1a3)](_0x2def37(0xfe),new _0x83caa(_0x1df2a5)),this[_0x2def37(0xf8)](),this[_0x2def37(0x100)](),this['on'](_0x2def37(0x1c5),(_0x5ee51e,_0x47c048,_0x325aa9)=>{const _0x10ff44=_0x2def37;this[_0x10ff44(0x120)](_0x325aa9),this[_0x10ff44(0x145)]();}),this[_0x2def37(0xf9)](_0x1df2a5[_0x2def37(0x11d)][_0x2def37(0x111)],_0x2def37(0x183),()=>{const _0x2b44a5=_0x2def37;this[_0x2b44a5(0x1cc)]();}),_0x1df2a5[_0x2def37(0x15d)][_0x2def37(0x142)]['on'](_0x2def37(0x1c0),_0x54ee3e(_0x1df2a5[_0x2def37(0x11d)],_0x43502c=>_0x43502c[_0x2def37(0x11f)](_0x2def37(0x13a)))),_0x1df2a5[_0x2def37(0x15d)][_0x2def37(0x142)]['on'](_0x2def37(0x1c0),_0x54ee3e(_0x1df2a5[_0x2def37(0x11d)],_0x2b2972=>_0x2b2972[_0x2def37(0x11f)](_0x2def37(0x13b)))),this[_0x2def37(0x1b5)](),_0x1df2a5[_0x2def37(0x15d)][_0x2def37(0x194)][_0x2def37(0x119)][_0x2def37(0x124)]({'name':_0x2def37(0x164),'classes':[_0x2def37(0x13a)]}),this[_0x2def37(0x159)]=_0x1df2a5[_0x2def37(0x112)][_0x2def37(0xfb)](_0x2def37(0x159));const _0x367117=this[_0x2def37(0x193)];this[_0x2def37(0x1b6)]=setInterval(()=>{const _0x37a3f2=_0x2def37;let _0x376912;for(const _0x40bb9f in _0x367117){const _0x4bd800=_0x40bb9f,_0x4c842c=_0x367117[_0x4bd800];if(_0x37a3f2(0x147)===_0x4c842c||_0x37a3f2(0x121)===_0x4c842c||_0x37a3f2(0x14f)===_0x4c842c||_0x37a3f2(0x11b)===_0x4c842c){delete _0x367117[_0x4bd800],_0x376912=_0x4c842c;break;}}if(_0x37a3f2(0x121)===_0x376912)throw clearInterval(this[_0x37a3f2(0x1b6)]),new _0x48a203(_0x37a3f2(0x11e),null);if(_0x37a3f2(0x147)===_0x376912&&console[_0x37a3f2(0x18b)](_0x37a3f2(0x196)),_0x37a3f2(0x11b)===_0x376912)throw clearInterval(this[_0x37a3f2(0x1b6)]),new _0x48a203(_0x37a3f2(0x122),null);_0x37a3f2(0x14f)===_0x376912&&clearInterval(this[_0x37a3f2(0x1b6)]);},0x3e8);}[_0x16417c(0x105)](){const _0x27d79f=_0x16417c,_0x1d1c77={},_0x1a7e6f=this[_0x27d79f(0x106)]();for(const _0x353609 of _0x1a7e6f)_0x1d1c77[_0x353609]=this[_0x27d79f(0x18c)](_0x353609);return _0x1d1c77;}[_0x16417c(0x1ab)](_0x46d225,_0x4eb425=!0x1){const _0x533748=_0x16417c,_0x55f2e9={},_0x45e1be=this[_0x533748(0x106)]();for(const _0xdccc0 of _0x45e1be){let _0x5672ca=this[_0x533748(0x1b8)](_0xdccc0,_0x46d225);null===_0x5672ca&&_0x4eb425&&(_0x5672ca=this[_0x533748(0x18c)](_0xdccc0)),_0x55f2e9[_0xdccc0]=_0x5672ca;}return _0x55f2e9;}[_0x16417c(0x1a4)](_0x31cda3){const _0x53f1d7=_0x16417c,_0x1f28a3=this[_0x53f1d7(0x190)](_0x31cda3);return _0x1f28a3&&_0x1f28a3[_0x53f1d7(0x1c3)]?_0x1f28a3[_0x53f1d7(0x1c3)]:_0x31cda3;}[_0x16417c(0x18c)](_0x53f5d1){const _0x268797=_0x16417c,_0x1f1e46=this[_0x268797(0x190)](_0x53f5d1);if(!_0x1f1e46||void 0x0===_0x1f1e46[_0x268797(0x126)])return null;const _0x38d086=_0x268797(0x17c)==typeof _0x1f1e46[_0x268797(0x126)]?_0x1f1e46[_0x268797(0x126)](this[_0x268797(0x193)]):_0x1f1e46[_0x268797(0x126)];return String(_0x38d086);}[_0x16417c(0x1b8)](_0x115f05,_0x1e9fc5){const _0x10a0a7=_0x16417c,_0x5e8e60=this[_0x10a0a7(0x193)][_0x10a0a7(0x112)][_0x10a0a7(0xfb)](_0x10a0a7(0x13e))[_0x10a0a7(0x153)](_0x1ea90b=>_0x1ea90b['id']===_0x1e9fc5);if(!_0x5e8e60)throw new _0x48a203(_0x10a0a7(0x127),null);const _0x319fe4=_0x5e8e60[_0x10a0a7(0x14d)][_0x115f05];if(void 0x0===_0x319fe4)return null;const _0x45857f=_0x10a0a7(0x17c)==typeof _0x319fe4?_0x319fe4(this[_0x10a0a7(0x193)]):_0x319fe4;return String(_0x45857f);}[_0x16417c(0x195)](_0x56f595){const _0x362be9=_0x16417c,_0x1c5ba3=this[_0x362be9(0x190)](_0x56f595);return _0x1c5ba3&&_0x1c5ba3[_0x362be9(0x199)]?_0x1c5ba3[_0x362be9(0x199)]:_0x362be9(0xff);}[_0x16417c(0x1b2)](){const _0x3d3a2d=_0x16417c,_0x1290c7=new Set();for(const _0x29479d of this[_0x3d3a2d(0x19c)])_0x3d3a2d(0x184)!==_0x29479d[_0x3d3a2d(0x139)][_0x3d3a2d(0x1ae)]&&_0x1290c7[_0x3d3a2d(0x1a3)](_0x29479d[_0x3d3a2d(0x1c2)]('id'));return Array[_0x3d3a2d(0x1a1)](_0x1290c7);}[_0x16417c(0x106)](){const _0x39ea25=_0x16417c,_0x4588f1=this[_0x39ea25(0x10b)][_0x39ea25(0x143)](_0x1f46ac=>_0x1f46ac['id']),_0x5eacdc=this[_0x39ea25(0x1b2)]();return Array[_0x39ea25(0x1a1)](new Set([..._0x4588f1,..._0x5eacdc]));}[_0x16417c(0x190)](_0x3f420c){const _0xa3bfb=_0x16417c;return this[_0xa3bfb(0x10b)][_0xa3bfb(0x153)](_0x28104d=>_0x28104d['id']===_0x3f420c)||null;}[_0x16417c(0xfc)](){const _0x4b5957=_0x16417c;this[_0x4b5957(0x1b6)]&&clearInterval(this[_0x4b5957(0x1b6)]);}[_0x16417c(0x133)](){const _0x61db0e=_0x16417c,_0x51b5c4=new Set(),_0x20574c=this[_0x61db0e(0x193)];return _0x20574c[_0x61db0e(0x112)][_0x61db0e(0xfb)](_0x61db0e(0x172))[_0x61db0e(0x118)]((_0x1a875c,_0x2ed555)=>{const _0xf04e95=_0x61db0e;if(_0xf04e95(0x16e)in _0x2ed555){if(_0x51b5c4[_0xf04e95(0x170)](_0x2ed555[_0xf04e95(0x16e)]))throw new _0x48a203(_0xf04e95(0x1ca),_0x20574c,{'duplicateId':_0x2ed555[_0xf04e95(0x16e)]});_0x51b5c4[_0xf04e95(0x1a3)](_0x2ed555[_0xf04e95(0x16e)]);}return _0xf04e95(0x16e)in _0x2ed555?function(_0x978666,_0x553a3b){const _0x29e84b=_0xf04e95;for(const _0x18e952 of _0x553a3b[_0x29e84b(0x109)])_0x978666=_0x978666[_0x29e84b(0x102)](_0x18e952);return _0x978666;}[_0xf04e95(0x113)](_0x20574c)(_0x1a875c,_0x2ed555):_0x1a875c[_0xf04e95(0x102)](_0x2ed555);},new Array());}[_0x16417c(0x104)](){const _0x168c7a=_0x16417c,_0x575ee4=/^['"`!#%:;=@{}~$()*+/?[\\\]^|]+$/;if(!_0x575ee4[_0x168c7a(0x1d1)](this[_0x168c7a(0x1c4)])||!_0x575ee4[_0x168c7a(0x1d1)](this[_0x168c7a(0x10d)]))throw new _0x48a203(_0x168c7a(0x179),this,{'prefix':this[_0x168c7a(0x1c4)],'suffix':this[_0x168c7a(0x10d)]});if(this[_0x168c7a(0x1c4)][_0x168c7a(0x128)]>0x8||this[_0x168c7a(0x10d)][_0x168c7a(0x128)]>0x8)throw new _0x48a203(_0x168c7a(0x176),this,{'prefix':this[_0x168c7a(0x1c4)],'suffix':this[_0x168c7a(0x10d)],'limit':0x8});const _0x7c0739=/^[a-zA-Z0-9_.-]+$/,_0x461273=new Set();if(this[_0x168c7a(0x10b)][_0x168c7a(0x143)](_0x406fa5=>{const _0x217068=_0x168c7a;if(!_0x7c0739[_0x217068(0x1d1)](_0x406fa5['id']))throw new _0x48a203(_0x217068(0x1ad),this,{'incorrectId':_0x406fa5['id']});if(_0x461273[_0x217068(0x170)](_0x406fa5['id']))throw new _0x48a203(_0x217068(0x19e),this,{'duplicateId':_0x406fa5['id']});_0x461273[_0x217068(0x1a3)](_0x406fa5['id']);}),this[_0x168c7a(0x1c4)]===this[_0x168c7a(0x10d)])throw new _0x48a203(_0x168c7a(0x14e),this);const _0x68e3c5=this[_0x168c7a(0x193)][_0x168c7a(0x112)][_0x168c7a(0xfb)](_0x168c7a(0x18e)),_0x2ee5e4=[_0x168c7a(0x17e),_0x168c7a(0x141),_0x168c7a(0x158)];if(!_0x68e3c5[_0x168c7a(0x128)]||!_0x68e3c5[_0x168c7a(0x19f)](_0x22b9d7=>_0x2ee5e4[_0x168c7a(0x14b)](_0x22b9d7)))throw new _0x48a203(_0x168c7a(0x17d),this,{'invalidConfig':_0x68e3c5});const _0x8a123b=new Set(),_0x2ffe98=this[_0x168c7a(0x193)][_0x168c7a(0x112)][_0x168c7a(0xfb)](_0x168c7a(0x13e));for(const _0x37bd44 of _0x2ffe98){if(_0x8a123b[_0x168c7a(0x170)](_0x37bd44['id']))throw new _0x48a203(_0x168c7a(0x173),this,{'duplicateId':_0x37bd44['id']});_0x8a123b[_0x168c7a(0x1a3)](_0x37bd44['id']);}}[_0x16417c(0x156)](){const _0x5e809b=_0x16417c,_0x1f51d4=this[_0x5e809b(0x193)][_0x5e809b(0x112)][_0x5e809b(0xfb)](_0x5e809b(0x18e)),_0x3816a7=[];if(_0x1f51d4[_0x5e809b(0x14b)](_0x5e809b(0x17e))&&_0x3816a7[_0x5e809b(0x18a)](_0x5e809b(0x17e)),_0x1f51d4[_0x5e809b(0x14b)](_0x5e809b(0x141))&&_0x3816a7[_0x5e809b(0x18a)](_0x5e809b(0x141)),_0x1f51d4[_0x5e809b(0x14b)](_0x5e809b(0x158))){const _0x46502d=this[_0x5e809b(0x193)][_0x5e809b(0x112)][_0x5e809b(0xfb)](_0x5e809b(0x13e));_0x3816a7[_0x5e809b(0x18a)](..._0x46502d[_0x5e809b(0x143)](_0x8825a5=>_0x8825a5['id']));}return _0x3816a7;}[_0x16417c(0xf8)](){const _0x1d5525=_0x16417c,_0x458924=this[_0x1d5525(0x193)][_0x1d5525(0x11d)][_0x1d5525(0x167)];_0x458924[_0x1d5525(0x1a8)](_0x1d5525(0x115),{'inheritAllFrom':_0x1d5525(0x182),'allowAttributes':['id'],'allowWhere':_0x1d5525(0x116)}),_0x458924[_0x1d5525(0x1a8)](_0x1d5525(0x186),{'inheritAllFrom':_0x1d5525(0x1bc),'allowAttributes':['id']});}[_0x16417c(0x100)](){const _0x255d9e=_0x16417c,_0x2282b3=this[_0x255d9e(0x193)][_0x255d9e(0x19a)];_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x192))[_0x255d9e(0x1a3)](_0x3171ee=>{const _0x54f431=_0x255d9e;_0x3171ee['on'](_0x54f431(0xff),(_0x37f3d5,_0x2faa2e,_0xc7b461)=>{const _0x30cd94=_0x54f431,{consumable:_0x22623e,writer:_0x59004a,schema:_0xf75709}=_0xc7b461,{viewItem:_0x2ae884}=_0x2faa2e;if(!_0x22623e[_0x30cd94(0x1d1)](_0x2ae884))return;const _0x129e78=_0x2ae884[_0x30cd94(0x1b7)][_0x30cd94(0x1ba)](this[_0x30cd94(0x1ac)])[_0x30cd94(0x107)](_0x3a40f8=>_0x3a40f8);if(0x1===_0x129e78[_0x30cd94(0x128)]&&!_0x129e78[0x0][_0x30cd94(0x166)](this[_0x30cd94(0x1ac)]))return;let _0x222d80=!0x0;for(const _0x5efd94 of _0x129e78){if(!_0x5efd94[_0x30cd94(0x166)](this[_0x30cd94(0x1ac)])){_0x222d80=!0x1;break;}const _0x4a6e33=_0x5efd94[_0x30cd94(0x134)](this[_0x30cd94(0x1c4)][_0x30cd94(0x128)],_0x5efd94[_0x30cd94(0x128)]-this[_0x30cd94(0x10d)][_0x30cd94(0x128)]);if(_0x30cd94(0xff)===this[_0x30cd94(0x195)](_0x4a6e33)){_0x222d80=!0x1;break;}}if(_0x222d80){_0x22623e[_0x30cd94(0x12c)](_0x2ae884);for(const _0xdb33df of _0x129e78){const _0x236fdc=_0xdb33df[_0x30cd94(0x134)](this[_0x30cd94(0x1c4)][_0x30cd94(0x128)],_0xdb33df[_0x30cd94(0x128)]-this[_0x30cd94(0x10d)][_0x30cd94(0x128)]),_0x3b83d8=_0x2faa2e[_0x30cd94(0x144)],_0x3cc593=_0x59004a[_0x30cd94(0x13c)](_0x30cd94(0x186),{'id':_0x236fdc});_0x59004a[_0x30cd94(0x1a2)](_0x3cc593,_0x3b83d8),_0x2faa2e[_0x30cd94(0x144)]=_0x3b83d8[_0x30cd94(0x130)](0x1),_0x2faa2e[_0x30cd94(0x1d0)]=_0x59004a[_0x30cd94(0x157)](_0x2faa2e[_0x30cd94(0x1d0)]?_0x2faa2e[_0x30cd94(0x1d0)][_0x30cd94(0x162)]:_0x3b83d8,_0x2faa2e[_0x30cd94(0x144)]);}}else{if(!_0xf75709[_0x30cd94(0x11c)](_0x2faa2e[_0x30cd94(0x144)],_0x30cd94(0x116))){if(!_0x5b491f(_0x2faa2e[_0x30cd94(0x144)],_0x30cd94(0x116),_0xf75709))return;_0x2faa2e[_0x30cd94(0x144)]=_0x34e3b2(_0x2faa2e[_0x30cd94(0x144)],_0x59004a);}_0x22623e[_0x30cd94(0x12c)](_0x2ae884);for(const _0x40e255 of _0x129e78){const _0x546d1d=_0x2faa2e[_0x30cd94(0x144)];let _0x4900c7;if(_0x40e255[_0x30cd94(0x166)](this[_0x30cd94(0x1ac)])){const _0x28f066=_0x40e255[_0x30cd94(0x134)](this[_0x30cd94(0x1c4)][_0x30cd94(0x128)],_0x40e255[_0x30cd94(0x128)]-this[_0x30cd94(0x10d)][_0x30cd94(0x128)]);_0x4900c7=_0x59004a[_0x30cd94(0x13c)](_0x30cd94(0x115),{'id':_0x28f066});}else _0x4900c7=_0x59004a[_0x30cd94(0x15f)](_0x40e255);_0x59004a[_0x30cd94(0x1a2)](_0x4900c7,_0x546d1d),_0x2faa2e[_0x30cd94(0x144)]=_0x546d1d[_0x30cd94(0x130)](_0x4900c7[_0x30cd94(0x16d)]),_0x2faa2e[_0x30cd94(0x1d0)]=_0x59004a[_0x30cd94(0x157)](_0x2faa2e[_0x30cd94(0x1d0)]?_0x2faa2e[_0x30cd94(0x1d0)][_0x30cd94(0x162)]:_0x546d1d,_0x2faa2e[_0x30cd94(0x144)]);}}});}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x189))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x115),'view':(_0x537a27,{writer:_0x868f97})=>this[_0x255d9e(0x146)](_0x537a27,_0x868f97,_0x255d9e(0xff))}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x1c9))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x115),'view':(_0xf675a0,{writer:_0x59407d,options:_0x78fa1a})=>this[_0x255d9e(0x17a)](_0xf675a0,_0x59407d,_0x78fa1a[_0x255d9e(0x14c)])}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x189))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x186),'view':(_0x6bca69,{writer:_0x929e21})=>this[_0x255d9e(0x146)](_0x6bca69,_0x929e21,_0x255d9e(0x171))}),_0x2282b3[_0x255d9e(0x1a0)](_0x255d9e(0x1c9))[_0x255d9e(0xf6)]({'model':_0x255d9e(0x186),'view':(_0x512653,{writer:_0x1f991a,options:_0x3b3f74})=>this[_0x255d9e(0x17a)](_0x512653,_0x1f991a,_0x3b3f74[_0x255d9e(0x14c)])});}[_0x16417c(0x146)](_0x28518a,_0x7365eb,_0x31a66d){const _0x59207c=_0x16417c,{label:_0x23e8f7,classes:_0x4e172f,status:_0x5c28d4,height:_0x32b662}=this[_0x59207c(0x1c7)](_0x28518a),_0x4db25a=this[_0x59207c(0x1c4)],_0x5da7a5=this[_0x59207c(0x10d)],_0x3bc862=this[_0x59207c(0x193)][_0x59207c(0x112)][_0x59207c(0xfb)](_0x59207c(0x131)),_0x4fc11b=_0x59207c(0xff)===_0x31a66d?_0x59207c(0x164):_0x59207c(0x1aa);let _0x2fe1c1;if(_0x59207c(0x17e)===this[_0x59207c(0x1bf)])_0x2fe1c1=_0x7365eb[_0x59207c(0x135)](_0x4fc11b,{'class':_0x4e172f},[_0x7365eb[_0x59207c(0x15b)](_0x59207c(0x164),{'class':_0x59207c(0x12d)},function(_0x2b4ea3){const _0x156a20=_0x59207c,_0x3eafd0=this[_0x156a20(0x12b)](_0x2b4ea3);return _0x3eafd0[_0x156a20(0x160)]=_0x4db25a,_0x3eafd0;}),_0x7365eb[_0x59207c(0x135)](_0x59207c(0x164),{'class':_0x59207c(0x168)},_0x7365eb[_0x59207c(0x15f)](String(_0x23e8f7))),_0x7365eb[_0x59207c(0x15b)](_0x59207c(0x164),{'class':_0x59207c(0x12d)},function(_0x370a7f){const _0x32353f=_0x59207c,_0x2cb38f=this[_0x32353f(0x12b)](_0x370a7f);return _0x2cb38f[_0x32353f(0x160)]=_0x5da7a5,_0x2cb38f;})]);else{if(_0x5c28d4){const _0x17b8e2=this[_0x59207c(0x180)]?_0x7365eb[_0x59207c(0x138)](_0x59207c(0x164),{},function(_0x31eb34,_0x5b3d3f){const _0x3b7fc7=_0x59207c;_0x5b3d3f[_0x3b7fc7(0x175)](_0x31eb34,_0x3bc862(_0x23e8f7)[_0x3b7fc7(0x108)]);}):_0x7365eb[_0x59207c(0x15f)](_0x23e8f7);if(_0x2fe1c1=_0x7365eb[_0x59207c(0x135)](_0x4fc11b,{'class':_0x4e172f},[_0x17b8e2]),_0x59207c(0xff)===_0x31a66d||[_0x59207c(0x136),_0x59207c(0x19b)][_0x59207c(0x14b)](_0x5c28d4)){const _0x31c0cd=_0x7365eb[_0x59207c(0x15b)](_0x59207c(0x164),{'class':_0x59207c(0x1b0)},function(_0x1f4731){const _0xb99576=_0x59207c,_0x39d5ff=this[_0xb99576(0x12b)](_0x1f4731),_0xbc99ec=new _0x28b2dc();return _0xbc99ec[_0xb99576(0x16a)]({'content':_0x273478}),_0xbc99ec[_0xb99576(0x1c6)](),_0x39d5ff[_0xb99576(0x101)](_0xbc99ec[_0xb99576(0x16b)]),_0x39d5ff;});_0x7365eb[_0x59207c(0x1a2)](_0x7365eb[_0x59207c(0x137)](_0x2fe1c1,_0x59207c(0x1b9)),_0x31c0cd);}_0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x132),_0x5c28d4,_0x2fe1c1);}else{const _0x26b355=this[_0x59207c(0x180)]?_0x7365eb[_0x59207c(0x138)](_0x4fc11b,{},function(_0x55cca8,_0x1a81ce){const _0x3e0254=_0x59207c;_0x1a81ce[_0x3e0254(0x175)](_0x55cca8,_0x3bc862(_0x23e8f7)[_0x3e0254(0x108)]);}):_0x7365eb[_0x59207c(0x15f)](_0x23e8f7);_0x2fe1c1=_0x7365eb[_0x59207c(0x135)](_0x4fc11b,{'class':_0x4e172f},_0x26b355);}}if(_0x59207c(0x171)===_0x31a66d){const _0x4c16d3=_0x7365eb[_0x59207c(0x135)](_0x59207c(0x1aa),{'class':_0x59207c(0x13b)},[_0x2fe1c1]);if((_0x59207c(0x17e)===this[_0x59207c(0x1bf)]||_0x5c28d4&&[_0x59207c(0x136),_0x59207c(0x19b)][_0x59207c(0x14b)](_0x5c28d4))&&_0x7365eb[_0x59207c(0x125)](_0x59207c(0x191),_0x59207c(0x1a5)+_0x32b662+'px',_0x4c16d3),_0x2fe1c1[_0x59207c(0x11f)](_0x59207c(0x1a9)))_0x7365eb[_0x59207c(0xf7)](_0x59207c(0x1a6),_0x4c16d3);else{if(_0x2fe1c1[_0x59207c(0x11f)](_0x59207c(0x14a))){for(const _0x439a4b of _0x2fe1c1[_0x59207c(0x1cb)]())if(_0x59207c(0x13a)!==_0x439a4b){const _0x3c8874=_0x439a4b[_0x59207c(0x1bb)](_0x59207c(0x13a),_0x59207c(0x13b));_0x7365eb[_0x59207c(0xf7)](_0x3c8874,_0x4c16d3);}_0x7365eb[_0x59207c(0x125)](_0x59207c(0x13f),this[_0x59207c(0x1a4)](_0x28518a[_0x59207c(0x1c2)]('id')),_0x4c16d3),_0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x132),_0x5c28d4,_0x4c16d3);}}return _0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x186),!0x0,_0x4c16d3),_0x360e04(_0x4c16d3,_0x7365eb,{'hasSelectionHandle':!0x0});}return _0x7365eb[_0x59207c(0x1bd)](_0x59207c(0x115),!0x0,_0x2fe1c1),_0x360e04(_0x2fe1c1,_0x7365eb);}[_0x16417c(0x1c7)](_0x1658b4){const _0x575976=_0x16417c,_0x55a422=this[_0x575976(0x190)](_0x1658b4[_0x575976(0x1c2)]('id'));if(!_0x55a422)return _0x575976(0x17e)===this[_0x575976(0x1bf)]?{'label':_0x1658b4[_0x575976(0x1c2)]('id'),'classes':_0x575976(0x13a)}:{'label':_0x1658b4[_0x575976(0x1c2)]('id'),'classes':_0x575976(0x187),'status':_0x575976(0x19b)};const _0x214f18=this[_0x575976(0x1a4)](_0x55a422['id']),_0x5595e3=this[_0x575976(0x195)](_0x55a422['id']),_0x34e576=this[_0x575976(0x18c)](_0x1658b4[_0x575976(0x1c2)]('id')),_0x9b2876=_0x575976(0xff)!==_0x5595e3?_0x55a422[_0x575976(0x169)]||0x78:void 0x0;if(_0x575976(0x17e)===this[_0x575976(0x1bf)])return{'label':_0x214f18,'height':_0x9b2876,'classes':_0x575976(0x13a)};if(_0x575976(0x141)===this[_0x575976(0x1bf)])return _0x34e576?{'label':_0x34e576,'height':_0x9b2876,'classes':_0x575976(0x10f)}:{'label':_0x214f18,'height':_0x9b2876,'classes':_0x575976(0x1c8),'status':_0x575976(0x136)};const _0x202367=this[_0x575976(0x1b8)](_0x55a422['id'],this[_0x575976(0x1bf)]);return _0x202367?{'label':_0x202367,'height':_0x9b2876,'classes':_0x575976(0x10f)}:_0x34e576?{'label':_0x34e576,'height':_0x9b2876,'classes':_0x575976(0x13d),'status':_0x575976(0x17f)}:{'label':_0x214f18,'height':_0x9b2876,'classes':_0x575976(0x1ce),'status':_0x575976(0x19b)};}[_0x16417c(0x17a)](_0x2cb12,_0x42d363,_0x58de52){const _0x568567=_0x16417c,_0x1fa274=_0x2cb12[_0x568567(0x1c2)]('id'),_0x2c42ae=_0x58de52&&_0x58de52[_0x1fa274]?_0x58de52[_0x1fa274]:this[_0x568567(0x1c4)]+_0x1fa274+this[_0x568567(0x10d)];let _0x5eb69b;if(_0x58de52)_0x5eb69b=_0x42d363[_0x568567(0x138)](_0x568567(0x164),{},function(_0x5baa64,_0x2bf7f0){const _0x1e52db=_0x568567;_0x2bf7f0[_0x1e52db(0x175)](_0x5baa64,String(_0x2c42ae));});else{_0x5eb69b=_0x42d363[_0x568567(0x135)](_0x568567(0x164));const _0x54068a=_0x42d363[_0x568567(0x15f)](_0x2c42ae);_0x42d363[_0x568567(0x1a2)](_0x42d363[_0x568567(0x137)](_0x5eb69b,_0x568567(0x1b9)),_0x54068a);}return _0x42d363[_0x568567(0x1bd)](_0x568567(0x163),!0x0,_0x5eb69b),_0x5eb69b;}[_0x16417c(0x145)](){const _0xfd57f5=_0x16417c;this[_0xfd57f5(0x19c)][_0xfd57f5(0x10a)](_0x5227fc=>{const _0x159718=_0xfd57f5;_0x159718(0x184)!==_0x5227fc[_0x159718(0x139)][_0x159718(0x1ae)]&&this[_0x159718(0x193)][_0x159718(0x15d)][_0x159718(0x161)](_0x5227fc);});}[_0x16417c(0x120)](_0xa21dbe){const _0x550837=_0x16417c;if(!this[_0x550837(0x197)][_0x550837(0x14b)](_0xa21dbe))throw new _0x48a203(_0x550837(0x155),this,{'availablePreviewModes':this[_0x550837(0x197)],'previewMode':_0xa21dbe});}[_0x16417c(0x1cc)](){const _0x2c551d=_0x16417c;for(const _0x1b57af of this[_0x2c551d(0x193)][_0x2c551d(0x11d)][_0x2c551d(0x111)][_0x2c551d(0x198)][_0x2c551d(0x103)]({'includeChangesInGraveyard':!0x0})){if(_0x2c551d(0x1a2)!==_0x1b57af[_0x2c551d(0x199)]||_0x2c551d(0x116)===_0x1b57af[_0x2c551d(0x1cd)])continue;if(_0x2c551d(0x115)===_0x1b57af[_0x2c551d(0x1cd)]||_0x2c551d(0x186)===_0x1b57af[_0x2c551d(0x1cd)]){this[_0x2c551d(0x19c)][_0x2c551d(0x1a3)](_0x1b57af[_0x2c551d(0x19d)][_0x2c551d(0x10e)]);continue;}const _0x52b53a=this[_0x2c551d(0x193)][_0x2c551d(0x11d)][_0x2c551d(0x1a7)](_0x1b57af[_0x2c551d(0x19d)][_0x2c551d(0x10e)]);for(const _0x3882d7 of _0x52b53a[_0x2c551d(0x123)]())_0x3882d7['is'](_0x2c551d(0x16b),_0x2c551d(0x115))&&this[_0x2c551d(0x19c)][_0x2c551d(0x1a3)](_0x3882d7);}}[_0x16417c(0x1b5)](){const _0x41564d=_0x16417c,_0x34a483=this[_0x41564d(0x193)];_0x34a483[_0x41564d(0x11d)][_0x41564d(0x111)][_0x41564d(0x114)](_0x58189c=>{const _0x4c37fc=_0x41564d;if(!_0x58189c[_0x4c37fc(0x1d3)][_0x4c37fc(0x15e)])return!0x1;const _0x4beff7=[],_0x3a3d6e=new Set(),_0x372e9d=this[_0x4c37fc(0x1ac)];let _0x21d10e=!0x1;for(const _0x4d9fad of _0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x111)][_0x4c37fc(0x198)][_0x4c37fc(0x103)]())if(_0x4c37fc(0x1a2)===_0x4d9fad[_0x4c37fc(0x199)]||_0x4c37fc(0x16f)===_0x4d9fad[_0x4c37fc(0x199)]){let _0x3f0e9f=_0x4c37fc(0x116)==_0x4d9fad[_0x4c37fc(0x1cd)]?_0x4d9fad[_0x4c37fc(0x19d)][_0x4c37fc(0x188)]:_0x4d9fad[_0x4c37fc(0x19d)][_0x4c37fc(0x10e)];if(!_0x3f0e9f)continue;_0x3f0e9f['is'](_0x4c37fc(0x116))&&(_0x3f0e9f=_0x3f0e9f[_0x4c37fc(0x188)]),_0x4e6d04(_0x3f0e9f);}for(const _0x5991d2 of _0x4beff7[_0x4c37fc(0x140)]()){const {match:_0x3ef010,item:_0x1a172e}=_0x5991d2,_0x497945=_0x58189c[_0x4c37fc(0x137)](_0x1a172e,_0x3ef010[_0x4c37fc(0x1b1)]),_0x12b20c=_0x497945[_0x4c37fc(0x130)](_0x3ef010[0x0][_0x4c37fc(0x128)]),_0x38f9d5=_0x58189c[_0x4c37fc(0x157)](_0x497945,_0x12b20c),_0x3c0a8a=_0x3ef010[0x0],_0x40a22a=_0x3c0a8a[_0x4c37fc(0x134)](this[_0x4c37fc(0x1c4)][_0x4c37fc(0x128)],_0x3c0a8a[_0x4c37fc(0x128)]-this[_0x4c37fc(0x10d)][_0x4c37fc(0x128)]),_0x131c99=_0x3c85b0(_0x38f9d5);if(_0x131c99[_0x4c37fc(0x16a)]('id',_0x40a22a),_0x4c37fc(0x171)===this[_0x4c37fc(0x195)](_0x40a22a)){const _0x6619d=_0x58189c[_0x4c37fc(0x13c)](_0x4c37fc(0x186),{'id':_0x40a22a});_0x58189c[_0x4c37fc(0x16f)](_0x38f9d5),_0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x12f)](_0x6619d,null,null,{'setSelection':'on','findOptimalPosition':void 0x0});}else{const _0x5811c7=_0x58189c[_0x4c37fc(0x13c)](_0x4c37fc(0x115),_0x131c99);_0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x167)][_0x4c37fc(0x11c)](_0x38f9d5[_0x4c37fc(0x162)],_0x4c37fc(0x115))?_0x34a483[_0x4c37fc(0x11d)][_0x4c37fc(0x12f)](_0x5811c7,_0x38f9d5):_0x58189c[_0x4c37fc(0x16f)](_0x38f9d5);}_0x21d10e=!0x0;}return _0x21d10e;function _0x4e6d04(_0x12a618){const _0xc2b66f=_0x4c37fc;let _0x336957='',_0x2ff39d=0x0;if(!_0x3a3d6e[_0xc2b66f(0x170)](_0x12a618))for(const _0x286635 of _0x12a618[_0xc2b66f(0x1be)]()){const _0xb73278=_0x286635[_0xc2b66f(0x1d4)];if(_0x286635['is'](_0xc2b66f(0x116))&&(''===_0x336957&&_0x286635[_0xc2b66f(0x151)]&&(_0x2ff39d=_0x286635[_0xc2b66f(0x151)]),_0x336957+=_0x286635[_0xc2b66f(0x1b7)]),!_0xb73278||_0xb73278['is'](_0xc2b66f(0x16b))){for(const _0x29b6da of _0x336957[_0xc2b66f(0x177)](_0x372e9d))_0x29b6da[_0xc2b66f(0x1b1)]=_0x29b6da[_0xc2b66f(0x1b1)]+_0x2ff39d,_0x4beff7[_0xc2b66f(0x18a)]({'match':_0x29b6da,'item':_0x12a618});_0x3a3d6e[_0xc2b66f(0x1a3)](_0x12a618),_0x336957='';}_0x286635['is'](_0xc2b66f(0x16b))&&_0x4e6d04(_0x286635);}}function _0x3c85b0(_0x57dc2e){const _0x4bf4a7=_0x4c37fc,_0x273d6d=_0x57dc2e[_0x4bf4a7(0x123)](),_0x2f0d9a=_0x273d6d[_0x4bf4a7(0x154)]()[_0x4bf4a7(0x110)],_0xff3368=new Map(_0x2f0d9a[_0x4bf4a7(0xfd)]());for(const _0x56e4c8 of _0x273d6d)for(const [_0x38cdc2,_0x2f7657]of _0xff3368)_0x56e4c8[_0x4bf4a7(0x1c2)](_0x38cdc2)!==_0x2f7657&&_0xff3368[_0x4bf4a7(0x1af)](_0x38cdc2);return _0xff3368;}});}}
|
|
23
|
+
const _0x1ad112=_0xce85;(function(_0x16ab94,_0x3979f7){const _0x28b15a=_0xce85,_0x4c80e6=_0x16ab94();while(!![]){try{const _0x448e5e=parseInt(_0x28b15a(0x13c))/0x1+parseInt(_0x28b15a(0x198))/0x2*(-parseInt(_0x28b15a(0x151))/0x3)+parseInt(_0x28b15a(0x107))/0x4+-parseInt(_0x28b15a(0x186))/0x5+parseInt(_0x28b15a(0x196))/0x6+-parseInt(_0x28b15a(0x134))/0x7+-parseInt(_0x28b15a(0x127))/0x8*(parseInt(_0x28b15a(0x15a))/0x9);if(_0x448e5e===_0x3979f7)break;else _0x4c80e6['push'](_0x4c80e6['shift']());}catch(_0x384d5e){_0x4c80e6['push'](_0x4c80e6['shift']());}}}(_0x36e8,0xec066));import{toWidget as _0x1caf43,viewToModelPositionOutsideModelElement as _0x514902}from'ckeditor5/src/widget.js';import{Plugin as _0x51e086}from'ckeditor5/src/core.js';import{IconView as _0xd380ec}from'ckeditor5/src/ui.js';import{isParagraphable as _0x4c99f0,wrapInParagraph as _0x1a9d56}from'ckeditor5/src/engine.js';import{CKEditorError as _0x4ffab2,logWarning as _0x42e037}from'ckeditor5/src/utils.js';import _0x27cbab from'./insertmergefieldcommand.js';function _0xce85(_0x324b00,_0x164b4b){const _0x36e8ac=_0x36e8();return _0xce85=function(_0xce859,_0x1e8c97){_0xce859=_0xce859-0xc9;let _0x3275a3=_0x36e8ac[_0xce859];return _0x3275a3;},_0xce85(_0x324b00,_0x164b4b);}import _0x533971 from'./insertmergefieldblockcommand.js';function _0x36e8(){const _0x28c5ca=['text','_registerConversionPostFixer','merge-fields-invalid-prefix-or-suffix','5770248OUKqBb','function','div','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-definition','_createMergeFieldWidget','dataPipeline:transparentRendering','defaultValue','hasClass','define','groupId','batch','addClass','offsetSize','_mergeFieldPrefix','WARNING_MISSING_DATA_USED_DEFAULT_VALUE','elementToElement','register','match','root','mergeFieldsLicenseKeyTrial','every','getMergeFieldValue','replace','mergeFields.previewHtmlValues','slice','index','concat','startOffset','commands','change:previewMode','merge-fields-invalid-license-key','setCustomProperty','264rZeRjO','_createTextualMergeField','map','find','height','_mergeFieldElements','mergeFields.sanitizeHtml','$dataSets','nextSibling','appendChild','getAttribute','mergeFieldStatus','html','4110862AMSJyf','createText','getLabel','viewToModelPosition','flattenedMergeFieldDefinitions','destroy','_prepareViewElementData','_defineSchema','1909643QefPBM','domConverter','span','$text','push','mergeField','merge-fields-invalid-id','$blockObject','_mergeFieldRegExp','definitions','_mergeFieldSuffix','position','createContainerElement','differ','add','from','insertObject','mergeFields.previewModes','pluginName','setContentOf','style','4385457FjmXMn','value','mergeFieldBlock','_validateConfig','createRawElement','mergeFieldsLicenseKeyValid','_defineConverters','ck-merge-field-block','block','362385tXudMf','merge-fields-provide-sanitize-function','createRangeIn','createRange','innerHTML','insert','insertMergeFieldBlock','consume','name','start','mergeFields.initialPreviewMode','change:data','modelCursor','getDefinition','getItems','merge-fields-duplicate-merge-field-id','mapper','checkChild','reverse','render','$inlineObject','mergeFieldsData','previewMode','data-merge-field-block-label','getChanges','dataDowncast','isLocal','toDomElement','\x20]+','WARNING_MISSING_DATA','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_default-value-used','bind','get','registerPostFixer','$graveyard','next','element','view','editing','test','init','has','merge-fields-trial-license-key-reached-limit-changes','document','1605295TmcTQm','modelRange','delete','includes','merge-fields-prefix-and-suffix-must-differ','rootName','split','filter','forEach','merge-fields-duplicate-group-id','ck-merge-field\x20ck-merge-field_with-value','getAttributes','_refreshMergeFields','model','_licenseKeyCheckInterval','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_no-default','7880652AOPHDb','reconvertItem','2rrIFbm','upcast','merge-fields-data-set-not-found','ck-merge-field\x20ck-merge-field_with-warning\x20ck-merge-field_with-warning_missing-data','createElement','mergeFields.definitions','values','getClassNames','ck-merge-field__icon','length','MergeFieldsEditing','config','$defaultValues','end','getChildren','_getAvailablePreviewModes','availablePreviewModes','remove','setAttribute','reduce','insertMergeField','mergeFieldsLicenseKeyTrialLimit:operations','_trackAddedMergeFields','You\x20are\x20using\x20the\x20trial\x20version\x20of\x20CKEditor\x205\x20format\x20painter\x20plugin\x20with\x20limited\x20usage.\x20Make\x20sure\x20you\x20will\x20not\x20use\x20it\x20in\x20the\x20production\x20environment.','merge-fields-invalid-preview-mode-set','nodeAfter','_validatePreviewMode','getShiftedBy','getMergeFieldsIds','type','parent','getDataSetValues','ck-merge-field-block_with-value','ck-merge-field__affix','data','getMergeFieldType','previewMergeFields','listenTo','join','getMergeFieldDefaultValue','isPremiumPlugin','WARNING_MISSING_DEFAULT_VALUE','createPositionAt','ck-merge-field_with-warning','registerInlineObjectMatcher','ck-merge-field','createUIElement','merge-fields-prefix-or-suffix-too-long','editor','ck-merge-field_with-value','ck-merge-field__content','mergeFieldsLicenseKeyInvalid','height:\x20','getDocumentMergeFieldsIds','editingDowncast','conversion','isOfficialPlugin','mergeFields.dataSets','info','merge-fields-duplicate-data-set-id','mergeFields.prefix','getDefaultValues','_getFlattenedMergeFieldDefinitions','for','set','merge-fields-invalid-preview-modes-configuration','mergeFields.suffix','schema','matchAll','_shouldPreviewHtmlValues','label','$labels','licenseKey'];_0x36e8=function(){return _0x28c5ca;};return _0x36e8();}import _0x3d42c7 from'./previewmergefieldscommand.js';import _0x2bfac5 from'../theme/icons/warning.svg';export default class g extends _0x51e086{static get[_0x1ad112(0x14e)](){const _0x55f81b=_0x1ad112;return _0x55f81b(0x1a2);}static get[_0x1ad112(0xf3)](){return!0x0;}static get[_0x1ad112(0xe3)](){return!0x0;}constructor(_0x5b7165){const _0x28a6f9=_0x1ad112;super(_0x5b7165),this[_0x28a6f9(0x138)]=[],_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0x14d),[_0x28a6f9(0x102),_0x28a6f9(0x1a4),_0x28a6f9(0x12e)]),_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0xf4),[]),_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0x19d),[]),_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0xf7),'{{'),_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0xfd),'}}'),_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0x11e),!0x1),_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x10f)](_0x28a6f9(0x12d),_0x5ce5e2=>(_0x42e037(_0x28a6f9(0x15b)),{'html':_0x5ce5e2,'hasChanged':!0x1})),this[_0x28a6f9(0x114)]=_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x17a)](_0x28a6f9(0xf7)),this[_0x28a6f9(0x146)]=_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x17a)](_0x28a6f9(0xfd)),this[_0x28a6f9(0x100)]=_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x17a)](_0x28a6f9(0x11e)),this[_0x28a6f9(0x138)]=this[_0x28a6f9(0xf9)](),this[_0x28a6f9(0x154)]();const _0x559e71='\x5c'+this[_0x28a6f9(0x114)][_0x28a6f9(0x18c)]('')[_0x28a6f9(0xe1)]('\x5c'),_0x2b4aef='\x5c'+this[_0x28a6f9(0x146)][_0x28a6f9(0x18c)]('')[_0x28a6f9(0xe1)]('\x5c');this[_0x28a6f9(0x144)]=new RegExp('('+_0x559e71+'[^'+(_0x559e71+_0x2b4aef)+_0x28a6f9(0x176)+_0x2b4aef+')','g'),this[_0x28a6f9(0xcb)]=this[_0x28a6f9(0xca)]();const _0x14eb9f=_0x5b7165[_0x28a6f9(0x1a3)][_0x28a6f9(0x17a)](_0x28a6f9(0x164))||this[_0x28a6f9(0xcb)][0x0];this[_0x28a6f9(0xd5)](_0x14eb9f),this[_0x28a6f9(0xfb)](_0x28a6f9(0x170),_0x14eb9f),this[_0x28a6f9(0x12c)]=new Set(),this[_0x28a6f9(0x194)]=null;}[_0x1ad112(0x182)](){const _0x3e05df=_0x1ad112,_0xcff7fe=this[_0x3e05df(0xeb)];_0xcff7fe[_0x3e05df(0x123)][_0x3e05df(0x14a)](_0x3e05df(0xcf),new _0x27cbab(_0xcff7fe)),_0xcff7fe[_0x3e05df(0x123)][_0x3e05df(0x14a)](_0x3e05df(0x160),new _0x533971(_0xcff7fe)),_0xcff7fe[_0x3e05df(0x123)][_0x3e05df(0x14a)](_0x3e05df(0xdf),new _0x3d42c7(_0xcff7fe)),this[_0x3e05df(0x13b)](),this[_0x3e05df(0x157)](),this['on'](_0x3e05df(0x124),(_0x202e97,_0xddeb6e,_0x3b67bf)=>{const _0x1c2f42=_0x3e05df;this[_0x1c2f42(0xd5)](_0x3b67bf),this[_0x1c2f42(0x192)]();}),this[_0x3e05df(0xe0)](_0xcff7fe[_0x3e05df(0x193)][_0x3e05df(0x185)],_0x3e05df(0x165),()=>{const _0x54633e=_0x3e05df;this[_0x54633e(0xd1)]();}),_0xcff7fe[_0x3e05df(0x180)][_0x3e05df(0x16a)]['on'](_0x3e05df(0x137),_0x514902(_0xcff7fe[_0x3e05df(0x193)],_0x30425d=>_0x30425d[_0x3e05df(0x10e)](_0x3e05df(0xe8)))),_0xcff7fe[_0x3e05df(0x180)][_0x3e05df(0x16a)]['on'](_0x3e05df(0x137),_0x514902(_0xcff7fe[_0x3e05df(0x193)],_0x8a79f2=>_0x8a79f2[_0x3e05df(0x10e)](_0x3e05df(0x158)))),this[_0x3e05df(0x105)](),_0xcff7fe[_0x3e05df(0x180)][_0x3e05df(0x17f)][_0x3e05df(0x13d)][_0x3e05df(0xe7)]({'name':_0x3e05df(0x13e),'classes':[_0x3e05df(0xe8)]}),this[_0x3e05df(0x103)]=_0xcff7fe[_0x3e05df(0x1a3)][_0x3e05df(0x17a)](_0x3e05df(0x103));const _0x376f76=this[_0x3e05df(0xeb)];this[_0x3e05df(0x194)]=setInterval(()=>{const _0x48ba30=_0x3e05df;let _0x5d8d45;for(const _0x198016 in _0x376f76){const _0x31c724=_0x198016,_0x95d632=_0x376f76[_0x31c724];if(_0x48ba30(0x11a)===_0x95d632||_0x48ba30(0xee)===_0x95d632||_0x48ba30(0x156)===_0x95d632||_0x48ba30(0xd0)===_0x95d632){delete _0x376f76[_0x31c724],_0x5d8d45=_0x95d632;break;}}if(_0x48ba30(0xee)===_0x5d8d45)throw clearInterval(this[_0x48ba30(0x194)]),new _0x4ffab2(_0x48ba30(0x125),null);if(_0x48ba30(0x11a)===_0x5d8d45&&console[_0x48ba30(0xf5)](_0x48ba30(0xd2)),_0x48ba30(0xd0)===_0x5d8d45)throw clearInterval(this[_0x48ba30(0x194)]),new _0x4ffab2(_0x48ba30(0x184),null);_0x48ba30(0x156)===_0x5d8d45&&clearInterval(this[_0x48ba30(0x194)]);},0x3e8);}[_0x1ad112(0xf8)](){const _0x5cab94=_0x1ad112,_0x25d560={},_0x2a3a27=this[_0x5cab94(0xd7)]();for(const _0x256740 of _0x2a3a27)_0x25d560[_0x256740]=this[_0x5cab94(0xe2)](_0x256740);return _0x25d560;}[_0x1ad112(0xda)](_0x5a00b1,_0x407a1a=!0x1){const _0x5658ad=_0x1ad112,_0x51b366={},_0x38ddc6=this[_0x5658ad(0xd7)]();for(const _0x3b1452 of _0x38ddc6){let _0x475ec9=this[_0x5658ad(0x11c)](_0x3b1452,_0x5a00b1);null===_0x475ec9&&_0x407a1a&&(_0x475ec9=this[_0x5658ad(0xe2)](_0x3b1452)),_0x51b366[_0x3b1452]=_0x475ec9;}return _0x51b366;}[_0x1ad112(0x136)](_0x4411a0){const _0x51a1c5=_0x1ad112,_0xbefd58=this[_0x51a1c5(0x167)](_0x4411a0);return _0xbefd58&&_0xbefd58[_0x51a1c5(0x101)]?_0xbefd58[_0x51a1c5(0x101)]:_0x4411a0;}[_0x1ad112(0xe2)](_0x5dfa60){const _0x1bba56=_0x1ad112,_0xef4790=this[_0x1bba56(0x167)](_0x5dfa60);if(!_0xef4790||void 0x0===_0xef4790[_0x1bba56(0x10d)])return null;const _0x4cc451=_0x1bba56(0x108)==typeof _0xef4790[_0x1bba56(0x10d)]?_0xef4790[_0x1bba56(0x10d)](this[_0x1bba56(0xeb)]):_0xef4790[_0x1bba56(0x10d)];return String(_0x4cc451);}[_0x1ad112(0x11c)](_0x4bb963,_0x4083a9){const _0x195baa=_0x1ad112,_0x1c99e1=this[_0x195baa(0xeb)][_0x195baa(0x1a3)][_0x195baa(0x17a)](_0x195baa(0xf4))[_0x195baa(0x12a)](_0x22ef60=>_0x22ef60['id']===_0x4083a9);if(!_0x1c99e1)throw new _0x4ffab2(_0x195baa(0x19a),null);const _0x191bc1=_0x1c99e1[_0x195baa(0x19e)][_0x4bb963];if(void 0x0===_0x191bc1)return null;const _0x422ea3=_0x195baa(0x108)==typeof _0x191bc1?_0x191bc1(this[_0x195baa(0xeb)]):_0x191bc1;return String(_0x422ea3);}[_0x1ad112(0xde)](_0x15d991){const _0x357b34=_0x1ad112,_0x335ce9=this[_0x357b34(0x167)](_0x15d991);return _0x335ce9&&_0x335ce9[_0x357b34(0xd8)]?_0x335ce9[_0x357b34(0xd8)]:_0x357b34(0x104);}[_0x1ad112(0xf0)](){const _0xc5ebff=_0x1ad112,_0x34a017=new Set();for(const _0x4232f1 of this[_0xc5ebff(0x12c)])_0xc5ebff(0x17c)!==_0x4232f1[_0xc5ebff(0x119)][_0xc5ebff(0x18b)]&&_0x34a017[_0xc5ebff(0x14a)](_0x4232f1[_0xc5ebff(0x131)]('id'));return Array[_0xc5ebff(0x14b)](_0x34a017);}[_0x1ad112(0xd7)](){const _0x3b9074=_0x1ad112,_0x50381d=this[_0x3b9074(0x138)][_0x3b9074(0x129)](_0x543b67=>_0x543b67['id']),_0x209b71=this[_0x3b9074(0xf0)]();return Array[_0x3b9074(0x14b)](new Set([..._0x50381d,..._0x209b71]));}[_0x1ad112(0x167)](_0x29b439){const _0x1f16c6=_0x1ad112;return this[_0x1f16c6(0x138)][_0x1f16c6(0x12a)](_0x41fd0b=>_0x41fd0b['id']===_0x29b439)||null;}[_0x1ad112(0x139)](){const _0x24fa69=_0x1ad112;this[_0x24fa69(0x194)]&&clearInterval(this[_0x24fa69(0x194)]);}[_0x1ad112(0xf9)](){const _0x4f8d80=_0x1ad112,_0x326c79=new Set(),_0x86f099=this[_0x4f8d80(0xeb)];return _0x86f099[_0x4f8d80(0x1a3)][_0x4f8d80(0x17a)](_0x4f8d80(0x19d))[_0x4f8d80(0xce)]((_0x5e3a40,_0x50846b)=>{const _0x1c1d49=_0x4f8d80;if(_0x1c1d49(0x110)in _0x50846b){if(_0x326c79[_0x1c1d49(0x183)](_0x50846b[_0x1c1d49(0x110)]))throw new _0x4ffab2(_0x1c1d49(0x18f),_0x86f099,{'duplicateId':_0x50846b[_0x1c1d49(0x110)]});_0x326c79[_0x1c1d49(0x14a)](_0x50846b[_0x1c1d49(0x110)]);}return _0x1c1d49(0x110)in _0x50846b?function(_0x5a1364,_0x50341e){const _0x4c0b35=_0x1c1d49;for(const _0x264317 of _0x50341e[_0x4c0b35(0x145)])_0x5a1364=_0x5a1364[_0x4c0b35(0x121)](_0x264317);return _0x5a1364;}[_0x1c1d49(0x179)](_0x86f099)(_0x5e3a40,_0x50846b):_0x5e3a40[_0x1c1d49(0x121)](_0x50846b);},new Array());}[_0x1ad112(0x154)](){const _0x591e38=_0x1ad112,_0x45b4b9=/^['"`!#%:;=@{}~$()*+/?[\\\]^|]+$/;if(!_0x45b4b9[_0x591e38(0x181)](this[_0x591e38(0x114)])||!_0x45b4b9[_0x591e38(0x181)](this[_0x591e38(0x146)]))throw new _0x4ffab2(_0x591e38(0x106),this,{'prefix':this[_0x591e38(0x114)],'suffix':this[_0x591e38(0x146)]});if(this[_0x591e38(0x114)][_0x591e38(0x1a1)]>0x8||this[_0x591e38(0x146)][_0x591e38(0x1a1)]>0x8)throw new _0x4ffab2(_0x591e38(0xea),this,{'prefix':this[_0x591e38(0x114)],'suffix':this[_0x591e38(0x146)],'limit':0x8});const _0x1a4361=/^[a-zA-Z0-9_.-]+$/,_0x4ce1a1=new Set();if(this[_0x591e38(0x138)][_0x591e38(0x129)](_0x1be57b=>{const _0x540084=_0x591e38;if(!_0x1a4361[_0x540084(0x181)](_0x1be57b['id']))throw new _0x4ffab2(_0x540084(0x142),this,{'incorrectId':_0x1be57b['id']});if(_0x4ce1a1[_0x540084(0x183)](_0x1be57b['id']))throw new _0x4ffab2(_0x540084(0x169),this,{'duplicateId':_0x1be57b['id']});_0x4ce1a1[_0x540084(0x14a)](_0x1be57b['id']);}),this[_0x591e38(0x114)]===this[_0x591e38(0x146)])throw new _0x4ffab2(_0x591e38(0x18a),this);const _0x418910=this[_0x591e38(0xeb)][_0x591e38(0x1a3)][_0x591e38(0x17a)](_0x591e38(0x14d)),_0x365d1f=[_0x591e38(0x102),_0x591e38(0x1a4),_0x591e38(0x12e)];if(!_0x418910[_0x591e38(0x1a1)]||!_0x418910[_0x591e38(0x11b)](_0x282283=>_0x365d1f[_0x591e38(0x189)](_0x282283)))throw new _0x4ffab2(_0x591e38(0xfc),this,{'invalidConfig':_0x418910});const _0x19b04b=new Set(),_0xa52546=this[_0x591e38(0xeb)][_0x591e38(0x1a3)][_0x591e38(0x17a)](_0x591e38(0xf4));for(const _0x4ab84f of _0xa52546){if(_0x19b04b[_0x591e38(0x183)](_0x4ab84f['id']))throw new _0x4ffab2(_0x591e38(0xf6),this,{'duplicateId':_0x4ab84f['id']});_0x19b04b[_0x591e38(0x14a)](_0x4ab84f['id']);}}[_0x1ad112(0xca)](){const _0x27d6f0=_0x1ad112,_0x23d1e8=this[_0x27d6f0(0xeb)][_0x27d6f0(0x1a3)][_0x27d6f0(0x17a)](_0x27d6f0(0x14d)),_0x4985ea=[];if(_0x23d1e8[_0x27d6f0(0x189)](_0x27d6f0(0x102))&&_0x4985ea[_0x27d6f0(0x140)](_0x27d6f0(0x102)),_0x23d1e8[_0x27d6f0(0x189)](_0x27d6f0(0x1a4))&&_0x4985ea[_0x27d6f0(0x140)](_0x27d6f0(0x1a4)),_0x23d1e8[_0x27d6f0(0x189)](_0x27d6f0(0x12e))){const _0x2f2b49=this[_0x27d6f0(0xeb)][_0x27d6f0(0x1a3)][_0x27d6f0(0x17a)](_0x27d6f0(0xf4));_0x4985ea[_0x27d6f0(0x140)](..._0x2f2b49[_0x27d6f0(0x129)](_0x5ca884=>_0x5ca884['id']));}return _0x4985ea;}[_0x1ad112(0x13b)](){const _0x262a64=_0x1ad112,_0x1a8c06=this[_0x262a64(0xeb)][_0x262a64(0x193)][_0x262a64(0xfe)];_0x1a8c06[_0x262a64(0x117)](_0x262a64(0x141),{'inheritAllFrom':_0x262a64(0x16e),'allowAttributes':['id'],'allowWhere':_0x262a64(0x13f)}),_0x1a8c06[_0x262a64(0x117)](_0x262a64(0x153),{'inheritAllFrom':_0x262a64(0x143),'allowAttributes':['id']});}[_0x1ad112(0x157)](){const _0x25c583=_0x1ad112,_0x44df90=this[_0x25c583(0xeb)][_0x25c583(0xf2)];_0x44df90[_0x25c583(0xfa)](_0x25c583(0x199))[_0x25c583(0x14a)](_0x1bf860=>{const _0x5a6310=_0x25c583;_0x1bf860['on'](_0x5a6310(0x104),(_0x3a8201,_0x3c1e86,_0xb9d2fc)=>{const _0x4c30d8=_0x5a6310,{consumable:_0x3eefb4,writer:_0x282c0b,schema:_0x3ac0c0}=_0xb9d2fc,{viewItem:_0x56e8d0}=_0x3c1e86;if(!_0x3eefb4[_0x4c30d8(0x181)](_0x56e8d0))return;const _0x16eac9=_0x56e8d0[_0x4c30d8(0xdd)][_0x4c30d8(0x18c)](this[_0x4c30d8(0x144)])[_0x4c30d8(0x18d)](_0x438145=>_0x438145);if(0x1===_0x16eac9[_0x4c30d8(0x1a1)]&&!_0x16eac9[0x0][_0x4c30d8(0x118)](this[_0x4c30d8(0x144)]))return;let _0x4ec620=!0x0;for(const _0x2b567b of _0x16eac9){if(!_0x2b567b[_0x4c30d8(0x118)](this[_0x4c30d8(0x144)])){_0x4ec620=!0x1;break;}const _0x45a6c1=_0x2b567b[_0x4c30d8(0x11f)](this[_0x4c30d8(0x114)][_0x4c30d8(0x1a1)],_0x2b567b[_0x4c30d8(0x1a1)]-this[_0x4c30d8(0x146)][_0x4c30d8(0x1a1)]);if(_0x4c30d8(0x104)===this[_0x4c30d8(0xde)](_0x45a6c1)){_0x4ec620=!0x1;break;}}if(_0x4ec620){_0x3eefb4[_0x4c30d8(0x161)](_0x56e8d0);for(const _0x18b178 of _0x16eac9){const _0x3c198e=_0x18b178[_0x4c30d8(0x11f)](this[_0x4c30d8(0x114)][_0x4c30d8(0x1a1)],_0x18b178[_0x4c30d8(0x1a1)]-this[_0x4c30d8(0x146)][_0x4c30d8(0x1a1)]),_0x39fb89=_0x3c1e86[_0x4c30d8(0x166)],_0x12d125=_0x282c0b[_0x4c30d8(0x19c)](_0x4c30d8(0x153),{'id':_0x3c198e});_0x282c0b[_0x4c30d8(0x15f)](_0x12d125,_0x39fb89),_0x3c1e86[_0x4c30d8(0x166)]=_0x39fb89[_0x4c30d8(0xd6)](0x1),_0x3c1e86[_0x4c30d8(0x187)]=_0x282c0b[_0x4c30d8(0x15d)](_0x3c1e86[_0x4c30d8(0x187)]?_0x3c1e86[_0x4c30d8(0x187)][_0x4c30d8(0x163)]:_0x39fb89,_0x3c1e86[_0x4c30d8(0x166)]);}}else{if(!_0x3ac0c0[_0x4c30d8(0x16b)](_0x3c1e86[_0x4c30d8(0x166)],_0x4c30d8(0x13f))){if(!_0x4c99f0(_0x3c1e86[_0x4c30d8(0x166)],_0x4c30d8(0x13f),_0x3ac0c0))return;_0x3c1e86[_0x4c30d8(0x166)]=_0x1a9d56(_0x3c1e86[_0x4c30d8(0x166)],_0x282c0b);}_0x3eefb4[_0x4c30d8(0x161)](_0x56e8d0);for(const _0x52dc92 of _0x16eac9){const _0x516778=_0x3c1e86[_0x4c30d8(0x166)];let _0x412a59;if(_0x52dc92[_0x4c30d8(0x118)](this[_0x4c30d8(0x144)])){const _0x57d311=_0x52dc92[_0x4c30d8(0x11f)](this[_0x4c30d8(0x114)][_0x4c30d8(0x1a1)],_0x52dc92[_0x4c30d8(0x1a1)]-this[_0x4c30d8(0x146)][_0x4c30d8(0x1a1)]);_0x412a59=_0x282c0b[_0x4c30d8(0x19c)](_0x4c30d8(0x141),{'id':_0x57d311});}else _0x412a59=_0x282c0b[_0x4c30d8(0x135)](_0x52dc92);_0x282c0b[_0x4c30d8(0x15f)](_0x412a59,_0x516778),_0x3c1e86[_0x4c30d8(0x166)]=_0x516778[_0x4c30d8(0xd6)](_0x412a59[_0x4c30d8(0x113)]),_0x3c1e86[_0x4c30d8(0x187)]=_0x282c0b[_0x4c30d8(0x15d)](_0x3c1e86[_0x4c30d8(0x187)]?_0x3c1e86[_0x4c30d8(0x187)][_0x4c30d8(0x163)]:_0x516778,_0x3c1e86[_0x4c30d8(0x166)]);}}});}),_0x44df90[_0x25c583(0xfa)](_0x25c583(0xf1))[_0x25c583(0x116)]({'model':_0x25c583(0x141),'view':(_0x50fea9,{writer:_0x311bd7})=>this[_0x25c583(0x10b)](_0x50fea9,_0x311bd7,_0x25c583(0x104))}),_0x44df90[_0x25c583(0xfa)](_0x25c583(0x173))[_0x25c583(0x116)]({'model':_0x25c583(0x141),'view':(_0x19c86c,{writer:_0x593599,options:_0xf9e978})=>this[_0x25c583(0x128)](_0x19c86c,_0x593599,_0xf9e978[_0x25c583(0x16f)])}),_0x44df90[_0x25c583(0xfa)](_0x25c583(0xf1))[_0x25c583(0x116)]({'model':_0x25c583(0x153),'view':(_0x1dd5bb,{writer:_0x5e4713})=>this[_0x25c583(0x10b)](_0x1dd5bb,_0x5e4713,_0x25c583(0x159))}),_0x44df90[_0x25c583(0xfa)](_0x25c583(0x173))[_0x25c583(0x116)]({'model':_0x25c583(0x153),'view':(_0x1cbcc8,{writer:_0xb8169b,options:_0x2295c0})=>this[_0x25c583(0x128)](_0x1cbcc8,_0xb8169b,_0x2295c0[_0x25c583(0x16f)])});}[_0x1ad112(0x10b)](_0x20db37,_0x43eace,_0x4b678c){const _0x29a596=_0x1ad112,{label:_0x4d4639,classes:_0x1cc991,status:_0x16d598,height:_0x21d1e8}=this[_0x29a596(0x13a)](_0x20db37),_0x28f65e=this[_0x29a596(0x114)],_0x142171=this[_0x29a596(0x146)],_0x56ce19=this[_0x29a596(0xeb)][_0x29a596(0x1a3)][_0x29a596(0x17a)](_0x29a596(0x12d)),_0x23f622=_0x29a596(0x104)===_0x4b678c?_0x29a596(0x13e):_0x29a596(0x109);let _0x3aa07f;if(_0x29a596(0x102)===this[_0x29a596(0x170)])_0x3aa07f=_0x43eace[_0x29a596(0x148)](_0x23f622,{'class':_0x1cc991},[_0x43eace[_0x29a596(0xe9)](_0x29a596(0x13e),{'class':_0x29a596(0xdc)},function(_0x34b154){const _0x2fed1a=_0x29a596,_0xa5d9c2=this[_0x2fed1a(0x175)](_0x34b154);return _0xa5d9c2[_0x2fed1a(0x15e)]=_0x28f65e,_0xa5d9c2;}),_0x43eace[_0x29a596(0x148)](_0x29a596(0x13e),{'class':_0x29a596(0xed)},_0x43eace[_0x29a596(0x135)](String(_0x4d4639))),_0x43eace[_0x29a596(0xe9)](_0x29a596(0x13e),{'class':_0x29a596(0xdc)},function(_0x3dff60){const _0x454597=_0x29a596,_0x17ca47=this[_0x454597(0x175)](_0x3dff60);return _0x17ca47[_0x454597(0x15e)]=_0x142171,_0x17ca47;})]);else{if(_0x16d598){const _0x1482e3=this[_0x29a596(0x100)]?_0x43eace[_0x29a596(0x155)](_0x29a596(0x13e),{},function(_0x3e017b,_0x463c89){const _0x5ba1b2=_0x29a596;_0x463c89[_0x5ba1b2(0x14f)](_0x3e017b,_0x56ce19(_0x4d4639)[_0x5ba1b2(0x133)]);}):_0x43eace[_0x29a596(0x135)](_0x4d4639);if(_0x3aa07f=_0x43eace[_0x29a596(0x148)](_0x23f622,{'class':_0x1cc991},[_0x1482e3]),_0x29a596(0x104)===_0x4b678c||[_0x29a596(0xe4),_0x29a596(0x177)][_0x29a596(0x189)](_0x16d598)){const _0x56a605=_0x43eace[_0x29a596(0xe9)](_0x29a596(0x13e),{'class':_0x29a596(0x1a0)},function(_0x25ebf1){const _0x53faaf=_0x29a596,_0x5149f4=this[_0x53faaf(0x175)](_0x25ebf1),_0x85fc3c=new _0xd380ec();return _0x85fc3c[_0x53faaf(0xfb)]({'content':_0x2bfac5}),_0x85fc3c[_0x53faaf(0x16d)](),_0x5149f4[_0x53faaf(0x130)](_0x85fc3c[_0x53faaf(0x17e)]),_0x5149f4;});_0x43eace[_0x29a596(0x15f)](_0x43eace[_0x29a596(0xe5)](_0x3aa07f,_0x29a596(0x1a5)),_0x56a605);}_0x43eace[_0x29a596(0x126)](_0x29a596(0x132),_0x16d598,_0x3aa07f);}else{const _0x225720=this[_0x29a596(0x100)]?_0x43eace[_0x29a596(0x155)](_0x23f622,{},function(_0x45cb06,_0x10cd3d){const _0x1f5263=_0x29a596;_0x10cd3d[_0x1f5263(0x14f)](_0x45cb06,_0x56ce19(_0x4d4639)[_0x1f5263(0x133)]);}):_0x43eace[_0x29a596(0x135)](_0x4d4639);_0x3aa07f=_0x43eace[_0x29a596(0x148)](_0x23f622,{'class':_0x1cc991},_0x225720);}}if(_0x29a596(0x159)===_0x4b678c){const _0x4100ac=_0x43eace[_0x29a596(0x148)](_0x29a596(0x109),{'class':_0x29a596(0x158)},[_0x3aa07f]);if((_0x29a596(0x102)===this[_0x29a596(0x170)]||_0x16d598&&[_0x29a596(0xe4),_0x29a596(0x177)][_0x29a596(0x189)](_0x16d598))&&_0x43eace[_0x29a596(0xcd)](_0x29a596(0x150),_0x29a596(0xef)+_0x21d1e8+'px',_0x4100ac),_0x3aa07f[_0x29a596(0x10e)](_0x29a596(0xec)))_0x43eace[_0x29a596(0x112)](_0x29a596(0xdb),_0x4100ac);else{if(_0x3aa07f[_0x29a596(0x10e)](_0x29a596(0xe6))){for(const _0x35e5b5 of _0x3aa07f[_0x29a596(0x19f)]())if(_0x29a596(0xe8)!==_0x35e5b5){const _0x1820d0=_0x35e5b5[_0x29a596(0x11d)](_0x29a596(0xe8),_0x29a596(0x158));_0x43eace[_0x29a596(0x112)](_0x1820d0,_0x4100ac);}_0x43eace[_0x29a596(0xcd)](_0x29a596(0x171),this[_0x29a596(0x136)](_0x20db37[_0x29a596(0x131)]('id')),_0x4100ac),_0x43eace[_0x29a596(0x126)](_0x29a596(0x132),_0x16d598,_0x4100ac);}}return _0x43eace[_0x29a596(0x126)](_0x29a596(0x153),!0x0,_0x4100ac),_0x1caf43(_0x4100ac,_0x43eace,{'hasSelectionHandle':!0x0});}return _0x43eace[_0x29a596(0x126)](_0x29a596(0x141),!0x0,_0x3aa07f),_0x1caf43(_0x3aa07f,_0x43eace);}[_0x1ad112(0x13a)](_0x52f73f){const _0x103bcb=_0x1ad112,_0x54826a=this[_0x103bcb(0x167)](_0x52f73f[_0x103bcb(0x131)]('id'));if(!_0x54826a)return _0x103bcb(0x102)===this[_0x103bcb(0x170)]?{'label':_0x52f73f[_0x103bcb(0x131)]('id'),'classes':_0x103bcb(0xe8)}:{'label':_0x52f73f[_0x103bcb(0x131)]('id'),'classes':_0x103bcb(0x10a),'status':_0x103bcb(0x177)};const _0x59a53a=this[_0x103bcb(0x136)](_0x54826a['id']),_0x416a76=this[_0x103bcb(0xde)](_0x54826a['id']),_0x547292=this[_0x103bcb(0xe2)](_0x52f73f[_0x103bcb(0x131)]('id')),_0xa86f2d=_0x103bcb(0x104)!==_0x416a76?_0x54826a[_0x103bcb(0x12b)]||0x78:void 0x0;if(_0x103bcb(0x102)===this[_0x103bcb(0x170)])return{'label':_0x59a53a,'height':_0xa86f2d,'classes':_0x103bcb(0xe8)};if(_0x103bcb(0x1a4)===this[_0x103bcb(0x170)])return _0x547292?{'label':_0x547292,'height':_0xa86f2d,'classes':_0x103bcb(0x190)}:{'label':_0x59a53a,'height':_0xa86f2d,'classes':_0x103bcb(0x195),'status':_0x103bcb(0xe4)};const _0x517860=this[_0x103bcb(0x11c)](_0x54826a['id'],this[_0x103bcb(0x170)]);return _0x517860?{'label':_0x517860,'height':_0xa86f2d,'classes':_0x103bcb(0x190)}:_0x547292?{'label':_0x547292,'height':_0xa86f2d,'classes':_0x103bcb(0x178),'status':_0x103bcb(0x115)}:{'label':_0x59a53a,'height':_0xa86f2d,'classes':_0x103bcb(0x19b),'status':_0x103bcb(0x177)};}[_0x1ad112(0x128)](_0x45bbcd,_0x7d8d37,_0x3d4638){const _0x1ad2b5=_0x1ad112,_0x557f63=_0x45bbcd[_0x1ad2b5(0x131)]('id'),_0x2ed1ca=_0x3d4638&&_0x3d4638[_0x557f63]?_0x3d4638[_0x557f63]:this[_0x1ad2b5(0x114)]+_0x557f63+this[_0x1ad2b5(0x146)];let _0x425eab;if(_0x3d4638)_0x425eab=_0x7d8d37[_0x1ad2b5(0x155)](_0x1ad2b5(0x13e),{},function(_0x4e9cff,_0x14b6d5){const _0x19dfc8=_0x1ad2b5;_0x14b6d5[_0x19dfc8(0x14f)](_0x4e9cff,String(_0x2ed1ca));});else{_0x425eab=_0x7d8d37[_0x1ad2b5(0x148)](_0x1ad2b5(0x13e));const _0x4c28c8=_0x7d8d37[_0x1ad2b5(0x135)](_0x2ed1ca);_0x7d8d37[_0x1ad2b5(0x15f)](_0x7d8d37[_0x1ad2b5(0xe5)](_0x425eab,_0x1ad2b5(0x1a5)),_0x4c28c8);}return _0x7d8d37[_0x1ad2b5(0x126)](_0x1ad2b5(0x10c),!0x0,_0x425eab),_0x425eab;}[_0x1ad112(0x192)](){const _0x464fa4=_0x1ad112;this[_0x464fa4(0x12c)][_0x464fa4(0x18e)](_0x2fd79d=>{const _0x56f374=_0x464fa4;_0x56f374(0x17c)!==_0x2fd79d[_0x56f374(0x119)][_0x56f374(0x18b)]&&this[_0x56f374(0xeb)][_0x56f374(0x180)][_0x56f374(0x197)](_0x2fd79d);});}[_0x1ad112(0xd5)](_0x5daf2a){const _0x3580ba=_0x1ad112;if(!this[_0x3580ba(0xcb)][_0x3580ba(0x189)](_0x5daf2a))throw new _0x4ffab2(_0x3580ba(0xd3),this,{'availablePreviewModes':this[_0x3580ba(0xcb)],'previewMode':_0x5daf2a});}[_0x1ad112(0xd1)](){const _0x1a4370=_0x1ad112;for(const _0x318df4 of this[_0x1a4370(0xeb)][_0x1a4370(0x193)][_0x1a4370(0x185)][_0x1a4370(0x149)][_0x1a4370(0x172)]({'includeChangesInGraveyard':!0x0})){if(_0x1a4370(0x15f)!==_0x318df4[_0x1a4370(0xd8)]||_0x1a4370(0x13f)===_0x318df4[_0x1a4370(0x162)])continue;if(_0x1a4370(0x141)===_0x318df4[_0x1a4370(0x162)]||_0x1a4370(0x153)===_0x318df4[_0x1a4370(0x162)]){this[_0x1a4370(0x12c)][_0x1a4370(0x14a)](_0x318df4[_0x1a4370(0x147)][_0x1a4370(0xd4)]);continue;}const _0x431ee6=this[_0x1a4370(0xeb)][_0x1a4370(0x193)][_0x1a4370(0x15c)](_0x318df4[_0x1a4370(0x147)][_0x1a4370(0xd4)]);for(const _0x64c858 of _0x431ee6[_0x1a4370(0x168)]())_0x64c858['is'](_0x1a4370(0x17e),_0x1a4370(0x141))&&this[_0x1a4370(0x12c)][_0x1a4370(0x14a)](_0x64c858);}}[_0x1ad112(0x105)](){const _0x4b281d=_0x1ad112,_0x4278a4=this[_0x4b281d(0xeb)];_0x4278a4[_0x4b281d(0x193)][_0x4b281d(0x185)][_0x4b281d(0x17b)](_0x33ab40=>{const _0x1b41a0=_0x4b281d;if(!_0x33ab40[_0x1b41a0(0x111)][_0x1b41a0(0x174)])return!0x1;const _0x3f04bb=[],_0x549be7=new Set(),_0x456923=this[_0x1b41a0(0x144)];let _0x445a4e=!0x1;for(const _0x131185 of _0x4278a4[_0x1b41a0(0x193)][_0x1b41a0(0x185)][_0x1b41a0(0x149)][_0x1b41a0(0x172)]())if(_0x1b41a0(0x15f)===_0x131185[_0x1b41a0(0xd8)]||_0x1b41a0(0xcc)===_0x131185[_0x1b41a0(0xd8)]){let _0x9baaf8=_0x1b41a0(0x13f)==_0x131185[_0x1b41a0(0x162)]?_0x131185[_0x1b41a0(0x147)][_0x1b41a0(0xd9)]:_0x131185[_0x1b41a0(0x147)][_0x1b41a0(0xd4)];if(!_0x9baaf8)continue;_0x9baaf8['is'](_0x1b41a0(0x13f))&&(_0x9baaf8=_0x9baaf8[_0x1b41a0(0xd9)]),_0x36dcff(_0x9baaf8);}for(const _0x54c3a1 of _0x3f04bb[_0x1b41a0(0x16c)]()){const {match:_0x4b0e57,item:_0x1e4853}=_0x54c3a1,_0x14b3c7=_0x33ab40[_0x1b41a0(0xe5)](_0x1e4853,_0x4b0e57[_0x1b41a0(0x120)]),_0x2d0ec0=_0x14b3c7[_0x1b41a0(0xd6)](_0x4b0e57[0x0][_0x1b41a0(0x1a1)]),_0x487957=_0x33ab40[_0x1b41a0(0x15d)](_0x14b3c7,_0x2d0ec0),_0x3e3bb3=_0x4b0e57[0x0],_0x5b6a2a=_0x3e3bb3[_0x1b41a0(0x11f)](this[_0x1b41a0(0x114)][_0x1b41a0(0x1a1)],_0x3e3bb3[_0x1b41a0(0x1a1)]-this[_0x1b41a0(0x146)][_0x1b41a0(0x1a1)]),_0x270d61=_0x4d861c(_0x487957);if(_0x270d61[_0x1b41a0(0xfb)]('id',_0x5b6a2a),_0x1b41a0(0x159)===this[_0x1b41a0(0xde)](_0x5b6a2a)){const _0x401517=_0x33ab40[_0x1b41a0(0x19c)](_0x1b41a0(0x153),{'id':_0x5b6a2a});_0x33ab40[_0x1b41a0(0xcc)](_0x487957),_0x4278a4[_0x1b41a0(0x193)][_0x1b41a0(0x14c)](_0x401517,null,null,{'setSelection':'on','findOptimalPosition':void 0x0});}else{const _0x284848=_0x33ab40[_0x1b41a0(0x19c)](_0x1b41a0(0x141),_0x270d61);_0x4278a4[_0x1b41a0(0x193)][_0x1b41a0(0xfe)][_0x1b41a0(0x16b)](_0x487957[_0x1b41a0(0x163)],_0x1b41a0(0x141))?_0x4278a4[_0x1b41a0(0x193)][_0x1b41a0(0x14c)](_0x284848,_0x487957):_0x33ab40[_0x1b41a0(0xcc)](_0x487957);}_0x445a4e=!0x0;}return _0x445a4e;function _0x36dcff(_0x52eb01){const _0x36eadf=_0x1b41a0;let _0x3b0eb6='',_0x41e21c=0x0;if(!_0x549be7[_0x36eadf(0x183)](_0x52eb01))for(const _0x2d294f of _0x52eb01[_0x36eadf(0xc9)]()){const _0x972483=_0x2d294f[_0x36eadf(0x12f)];if(_0x2d294f['is'](_0x36eadf(0x13f))&&(''===_0x3b0eb6&&_0x2d294f[_0x36eadf(0x122)]&&(_0x41e21c=_0x2d294f[_0x36eadf(0x122)]),_0x3b0eb6+=_0x2d294f[_0x36eadf(0xdd)]),!_0x972483||_0x972483['is'](_0x36eadf(0x17e))){for(const _0x2f54e3 of _0x3b0eb6[_0x36eadf(0xff)](_0x456923))_0x2f54e3[_0x36eadf(0x120)]=_0x2f54e3[_0x36eadf(0x120)]+_0x41e21c,_0x3f04bb[_0x36eadf(0x140)]({'match':_0x2f54e3,'item':_0x52eb01});_0x549be7[_0x36eadf(0x14a)](_0x52eb01),_0x3b0eb6='';}_0x2d294f['is'](_0x36eadf(0x17e))&&_0x36dcff(_0x2d294f);}}function _0x4d861c(_0x474a38){const _0xa49b0c=_0x1b41a0,_0x50ffc6=_0x474a38[_0xa49b0c(0x168)](),_0x24a634=_0x50ffc6[_0xa49b0c(0x17d)]()[_0xa49b0c(0x152)],_0x1bbbdc=new Map(_0x24a634[_0xa49b0c(0x191)]());for(const _0x1a73bd of _0x50ffc6)for(const [_0x5782ca,_0x17141f]of _0x1bbbdc)_0x1a73bd[_0xa49b0c(0x131)](_0x5782ca)!==_0x17141f&&_0x1bbbdc[_0xa49b0c(0x188)](_0x5782ca);return _0x1bbbdc;}});}}
|
package/src/mergefieldsui.d.ts
CHANGED
|
@@ -23,6 +23,14 @@ export default class MergeFieldsUI extends Plugin {
|
|
|
23
23
|
* @inheritDoc
|
|
24
24
|
*/
|
|
25
25
|
static get pluginName(): "MergeFieldsUI";
|
|
26
|
+
/**
|
|
27
|
+
* @inheritDoc
|
|
28
|
+
*/
|
|
29
|
+
static get isOfficialPlugin(): true;
|
|
30
|
+
/**
|
|
31
|
+
* @inheritDoc
|
|
32
|
+
*/
|
|
33
|
+
static get isPremiumPlugin(): true;
|
|
26
34
|
/**
|
|
27
35
|
* @inheritDoc
|
|
28
36
|
*/
|