@univerjs-pro/bases-ui 0.25.0-insiders.20260608-e4336f7
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/README.md +3 -0
- package/lib/cjs/facade.js +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/locale/ar-SA.js +1 -0
- package/lib/cjs/locale/ca-ES.js +1 -0
- package/lib/cjs/locale/de-DE.js +1 -0
- package/lib/cjs/locale/en-US.js +1 -0
- package/lib/cjs/locale/es-ES.js +1 -0
- package/lib/cjs/locale/fa-IR.js +1 -0
- package/lib/cjs/locale/fr-FR.js +1 -0
- package/lib/cjs/locale/id-ID.js +1 -0
- package/lib/cjs/locale/it-IT.js +1 -0
- package/lib/cjs/locale/ja-JP.js +1 -0
- package/lib/cjs/locale/ko-KR.js +1 -0
- package/lib/cjs/locale/pl-PL.js +1 -0
- package/lib/cjs/locale/pt-BR.js +1 -0
- package/lib/cjs/locale/ru-RU.js +1 -0
- package/lib/cjs/locale/sk-SK.js +1 -0
- package/lib/cjs/locale/vi-VN.js +1 -0
- package/lib/cjs/locale/zh-CN.js +1 -0
- package/lib/cjs/locale/zh-HK.js +1 -0
- package/lib/cjs/locale/zh-TW.js +1 -0
- package/lib/es/facade.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/es/locale/ar-SA.js +1 -0
- package/lib/es/locale/ca-ES.js +1 -0
- package/lib/es/locale/de-DE.js +1 -0
- package/lib/es/locale/en-US.js +1 -0
- package/lib/es/locale/es-ES.js +1 -0
- package/lib/es/locale/fa-IR.js +1 -0
- package/lib/es/locale/fr-FR.js +1 -0
- package/lib/es/locale/id-ID.js +1 -0
- package/lib/es/locale/it-IT.js +1 -0
- package/lib/es/locale/ja-JP.js +1 -0
- package/lib/es/locale/ko-KR.js +1 -0
- package/lib/es/locale/pl-PL.js +1 -0
- package/lib/es/locale/pt-BR.js +1 -0
- package/lib/es/locale/ru-RU.js +1 -0
- package/lib/es/locale/sk-SK.js +1 -0
- package/lib/es/locale/vi-VN.js +1 -0
- package/lib/es/locale/zh-CN.js +1 -0
- package/lib/es/locale/zh-HK.js +1 -0
- package/lib/es/locale/zh-TW.js +1 -0
- package/lib/facade.js +1 -0
- package/lib/index.css +2533 -0
- package/lib/index.js +1 -0
- package/lib/locale/ar-SA.js +1 -0
- package/lib/locale/ca-ES.js +1 -0
- package/lib/locale/de-DE.js +1 -0
- package/lib/locale/en-US.js +1 -0
- package/lib/locale/es-ES.js +1 -0
- package/lib/locale/fa-IR.js +1 -0
- package/lib/locale/fr-FR.js +1 -0
- package/lib/locale/id-ID.js +1 -0
- package/lib/locale/it-IT.js +1 -0
- package/lib/locale/ja-JP.js +1 -0
- package/lib/locale/ko-KR.js +1 -0
- package/lib/locale/pl-PL.js +1 -0
- package/lib/locale/pt-BR.js +1 -0
- package/lib/locale/ru-RU.js +1 -0
- package/lib/locale/sk-SK.js +1 -0
- package/lib/locale/vi-VN.js +1 -0
- package/lib/locale/zh-CN.js +1 -0
- package/lib/locale/zh-HK.js +1 -0
- package/lib/locale/zh-TW.js +1 -0
- package/lib/types/commands/operations/activate-table.operation.d.ts +6 -0
- package/lib/types/commands/operations/activate-view.operation.d.ts +6 -0
- package/lib/types/commands/operations/editing.operation.d.ts +9 -0
- package/lib/types/commands/operations/keyboard.operation.d.ts +9 -0
- package/lib/types/commands/operations/scroll.operation.d.ts +7 -0
- package/lib/types/commands/operations/set-selection.operation.d.ts +5 -0
- package/lib/types/commands/operations/toolbar-menu.operation.d.ts +37 -0
- package/lib/types/commands/operations/zoom.operation.d.ts +6 -0
- package/lib/types/components/AddRecordButton.d.ts +6 -0
- package/lib/types/components/BaseAttachmentPreview.d.ts +9 -0
- package/lib/types/components/BaseCellEditors.d.ts +78 -0
- package/lib/types/components/BaseCollaborationStatus.d.ts +24 -0
- package/lib/types/components/BaseColorPalette.d.ts +13 -0
- package/lib/types/components/BaseConfirmDialog.d.ts +12 -0
- package/lib/types/components/BaseIcons.d.ts +19 -0
- package/lib/types/components/BaseMenus.d.ts +593 -0
- package/lib/types/components/BaseNumberInput.d.ts +14 -0
- package/lib/types/components/BaseStandaloneShell.d.ts +139 -0
- package/lib/types/components/BaseToolbar.d.ts +49 -0
- package/lib/types/components/CardCustomizePanel.d.ts +1 -0
- package/lib/types/components/FieldConfigPanel.d.ts +1 -0
- package/lib/types/components/FieldMenu.d.ts +44 -0
- package/lib/types/components/RecordDetailPanel.d.ts +88 -0
- package/lib/types/components/ViewTabs.d.ts +36 -0
- package/lib/types/components/base-formula-library.d.ts +25 -0
- package/lib/types/config/config.d.ts +46 -0
- package/lib/types/controllers/base-keyboard.shortcut.d.ts +9 -0
- package/lib/types/controllers/base-render.controller.d.ts +172 -0
- package/lib/types/controllers/base-theme.controller.d.ts +7 -0
- package/lib/types/controllers/base-ui.controller.d.ts +27 -0
- package/lib/types/controllers/menu.d.ts +3 -0
- package/lib/types/facade/f-base-rendered-view.d.ts +13 -0
- package/lib/types/facade/f-base-ui.d.ts +41 -0
- package/lib/types/facade/f-univer.d.ts +12 -0
- package/lib/types/facade/index.d.ts +3 -0
- package/lib/types/fields/editors/attachment.editor.d.ts +2 -0
- package/lib/types/fields/editors/date.editor.d.ts +2 -0
- package/lib/types/fields/editors/number.editor.d.ts +5 -0
- package/lib/types/fields/editors/person.editor.d.ts +2 -0
- package/lib/types/fields/editors/select.editor.d.ts +3 -0
- package/lib/types/fields/editors/text.editor.d.ts +2 -0
- package/lib/types/fields/field-ui-plugin.d.ts +63 -0
- package/lib/types/fields/renderers/attachment.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/checkbox.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/date.renderer.d.ts +2 -0
- package/lib/types/fields/renderers/number.renderer.d.ts +5 -0
- package/lib/types/fields/renderers/select.renderer.d.ts +3 -0
- package/lib/types/fields/renderers/text.renderer.d.ts +2 -0
- package/lib/types/index.d.ts +67 -0
- package/lib/types/internal.d.ts +11 -0
- package/lib/types/locale/ar-SA.d.ts +3 -0
- package/lib/types/locale/ca-ES.d.ts +3 -0
- package/lib/types/locale/de-DE.d.ts +3 -0
- package/lib/types/locale/en-US.d.ts +1163 -0
- package/lib/types/locale/es-ES.d.ts +3 -0
- package/lib/types/locale/fa-IR.d.ts +3 -0
- package/lib/types/locale/formula/ar-SA.d.ts +1 -0
- package/lib/types/locale/formula/ca-ES.d.ts +1 -0
- package/lib/types/locale/formula/de-DE.d.ts +1 -0
- package/lib/types/locale/formula/en-US.d.ts +707 -0
- package/lib/types/locale/formula/es-ES.d.ts +1 -0
- package/lib/types/locale/formula/fa-IR.d.ts +1 -0
- package/lib/types/locale/formula/fr-FR.d.ts +1 -0
- package/lib/types/locale/formula/id-ID.d.ts +1 -0
- package/lib/types/locale/formula/it-IT.d.ts +1 -0
- package/lib/types/locale/formula/ja-JP.d.ts +1 -0
- package/lib/types/locale/formula/ko-KR.d.ts +1 -0
- package/lib/types/locale/formula/pl-PL.d.ts +1 -0
- package/lib/types/locale/formula/pt-BR.d.ts +1 -0
- package/lib/types/locale/formula/ru-RU.d.ts +1 -0
- package/lib/types/locale/formula/sk-SK.d.ts +1 -0
- package/lib/types/locale/formula/vi-VN.d.ts +1 -0
- package/lib/types/locale/formula/zh-CN.d.ts +707 -0
- package/lib/types/locale/formula/zh-HK.d.ts +1 -0
- package/lib/types/locale/formula/zh-TW.d.ts +1 -0
- package/lib/types/locale/fr-FR.d.ts +3 -0
- package/lib/types/locale/id-ID.d.ts +3 -0
- package/lib/types/locale/it-IT.d.ts +3 -0
- package/lib/types/locale/ja-JP.d.ts +3 -0
- package/lib/types/locale/ko-KR.d.ts +3 -0
- package/lib/types/locale/pl-PL.d.ts +3 -0
- package/lib/types/locale/pt-BR.d.ts +3 -0
- package/lib/types/locale/ru-RU.d.ts +3 -0
- package/lib/types/locale/sk-SK.d.ts +3 -0
- package/lib/types/locale/vi-VN.d.ts +3 -0
- package/lib/types/locale/zh-CN.d.ts +3 -0
- package/lib/types/locale/zh-HK.d.ts +3 -0
- package/lib/types/locale/zh-TW.d.ts +3 -0
- package/lib/types/menu/schema.d.ts +16 -0
- package/lib/types/plugin.d.ts +18 -0
- package/lib/types/render/base-canvas-render-component.d.ts +19 -0
- package/lib/types/render/base-render-manager.d.ts +17 -0
- package/lib/types/render/base-scene.d.ts +239 -0
- package/lib/types/render/base-view-render-controller.d.ts +285 -0
- package/lib/types/render/canvas-draw-command.d.ts +178 -0
- package/lib/types/render/layers/body.layer.d.ts +2 -0
- package/lib/types/render/layers/drag.layer.d.ts +2 -0
- package/lib/types/render/layers/editor-overlay.layer.d.ts +2 -0
- package/lib/types/render/layers/header.layer.d.ts +2 -0
- package/lib/types/render/layers/selection.layer.d.ts +2 -0
- package/lib/types/search/base-view-search.d.ts +13 -0
- package/lib/types/services/base-attachment-io.service.d.ts +21 -0
- package/lib/types/services/base-clipboard.service.d.ts +21 -0
- package/lib/types/services/base-drag.service.d.ts +19 -0
- package/lib/types/services/base-editor.service.d.ts +20 -0
- package/lib/types/services/base-field-ui-registry.service.d.ts +15 -0
- package/lib/types/services/base-formula-progress.service.d.ts +20 -0
- package/lib/types/services/base-layout.service.d.ts +30 -0
- package/lib/types/services/base-render.service.d.ts +10 -0
- package/lib/types/services/base-selection.service.d.ts +14 -0
- package/lib/types/services/base-ui-popup.service.d.ts +27 -0
- package/lib/types/services/base-ui-state.service.d.ts +156 -0
- package/lib/types/services/base-view-ui-registry.service.d.ts +15 -0
- package/lib/types/services/base-workbench-render.service.d.ts +15 -0
- package/lib/types/views/base-canvas-render-utils.d.ts +258 -0
- package/lib/types/views/base-container/BaseContainer.d.ts +30 -0
- package/lib/types/views/calendar/calendar-layout.d.ts +88 -0
- package/lib/types/views/calendar/calendar-render-controller.d.ts +7 -0
- package/lib/types/views/calendar/calendar-settings-panel.d.ts +1 -0
- package/lib/types/views/gallery/gallery-render-controller.d.ts +7 -0
- package/lib/types/views/gallery/gallery-settings-panel.d.ts +1 -0
- package/lib/types/views/gantt/gantt-layout.d.ts +91 -0
- package/lib/types/views/gantt/gantt-render-controller.d.ts +7 -0
- package/lib/types/views/gantt/gantt-settings-panel.d.ts +1 -0
- package/lib/types/views/grid/grid-render-controller.d.ts +7 -0
- package/lib/types/views/grid/grid-settings-panel.d.ts +1 -0
- package/lib/types/views/kanban/kanban-render-controller.d.ts +7 -0
- package/lib/types/views/kanban/kanban-settings-panel.d.ts +1 -0
- package/lib/types/views/view-ui-plugin.d.ts +26 -0
- package/lib/umd/facade.js +1 -0
- package/lib/umd/index.js +1 -0
- package/lib/umd/locale/ar-SA.js +1 -0
- package/lib/umd/locale/ca-ES.js +1 -0
- package/lib/umd/locale/de-DE.js +1 -0
- package/lib/umd/locale/en-US.js +1 -0
- package/lib/umd/locale/es-ES.js +1 -0
- package/lib/umd/locale/fa-IR.js +1 -0
- package/lib/umd/locale/fr-FR.js +1 -0
- package/lib/umd/locale/id-ID.js +1 -0
- package/lib/umd/locale/it-IT.js +1 -0
- package/lib/umd/locale/ja-JP.js +1 -0
- package/lib/umd/locale/ko-KR.js +1 -0
- package/lib/umd/locale/pl-PL.js +1 -0
- package/lib/umd/locale/pt-BR.js +1 -0
- package/lib/umd/locale/ru-RU.js +1 -0
- package/lib/umd/locale/sk-SK.js +1 -0
- package/lib/umd/locale/vi-VN.js +1 -0
- package/lib/umd/locale/zh-CN.js +1 -0
- package/lib/umd/locale/zh-HK.js +1 -0
- package/lib/umd/locale/zh-TW.js +1 -0
- package/package.json +98 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x771d(_0x5dce3a,_0xb7a7fe){_0x5dce3a=_0x5dce3a-0x19a;const _0x362671=_0x3626();let _0x771d9c=_0x362671[_0x5dce3a];return _0x771d9c;}const _0x49541d=_0x771d;(function(_0xc1585d,_0x38d806){const _0x1c4122=_0x771d,_0x33b091=_0xc1585d();while(!![]){try{const _0x1619a8=-parseInt(_0x1c4122(0x351))/0x1*(parseInt(_0x1c4122(0x1e8))/0x2)+parseInt(_0x1c4122(0x286))/0x3+parseInt(_0x1c4122(0x260))/0x4+-parseInt(_0x1c4122(0x229))/0x5*(parseInt(_0x1c4122(0x259))/0x6)+-parseInt(_0x1c4122(0x372))/0x7+parseInt(_0x1c4122(0x1a9))/0x8*(-parseInt(_0x1c4122(0x2f3))/0x9)+parseInt(_0x1c4122(0x2a5))/0xa*(parseInt(_0x1c4122(0x1cc))/0xb);if(_0x1619a8===_0x38d806)break;else _0x33b091['push'](_0x33b091['shift']());}catch(_0x137883){_0x33b091['push'](_0x33b091['shift']());}}}(_0x3626,0x835ef));const e={'bases-ui':{'bases-ui':{'menu':{'addRecord':_0x49541d(0x363),'addBlankRecord':_0x49541d(0x1e7),'addFiveBlankRecords':_0x49541d(0x373),'customizeField':'Customize\x20Field','viewSettings':_0x49541d(0x345),'filter':_0x49541d(0x302),'sort':_0x49541d(0x315),'group':_0x49541d(0x2d5),'groupByFields':_0x49541d(0x358),'rowHeight':_0x49541d(0x23b),'rowHeightShort':'Short','rowHeightMedium':'Medium','rowHeightTall':_0x49541d(0x28a),'rowHeightExtraTall':'Extra\x20Tall','conditionalColoring':'Conditional\x20Coloring','conditionalColoringHelp':_0x49541d(0x2ad),'conditionalColoringSmart':_0x49541d(0x1bf),'conditionalColor':'Color','conditionalCustomColor':_0x49541d(0x2f7),'conditionalTargetCell':_0x49541d(0x230),'conditionalTargetRow':_0x49541d(0x2a0),'conditionalTargetColumn':_0x49541d(0x275),'conditionalEnterValue':_0x49541d(0x1ac),'conditionalExactDate':'exact\x20date','conditionalToday':_0x49541d(0x343),'conditionalTomorrow':_0x49541d(0x26b),'conditionalYesterday':_0x49541d(0x1f4),'conditionalThisWeek':_0x49541d(0x1aa),'conditionalLastWeek':_0x49541d(0x25b),'conditionalThisMonth':_0x49541d(0x35f),'conditionalLastMonth':_0x49541d(0x2f9),'conditionalPast7':_0x49541d(0x355),'conditionalNext7':_0x49541d(0x2a6),'conditionalPast30':'in\x20the\x20past\x2030\x20days','conditionalNext30':'within\x20the\x20next\x2030\x20days','conditionalChecked':_0x49541d(0x1ba),'conditionalUnchecked':_0x49541d(0x2f8),'addField':_0x49541d(0x292),'undo':_0x49541d(0x333),'redo':_0x49541d(0x2b8)},'recordDetail':{'title':_0x49541d(0x2a9),'close':_0x49541d(0x374),'open':_0x49541d(0x34a),'delete':_0x49541d(0x225),'deleteConfirmTitle':_0x49541d(0x306),'deleteConfirmDescription':_0x49541d(0x341),'submit':_0x49541d(0x2ce),'addMoreAfterSubmission':_0x49541d(0x1ae)},'gridContext':{'insert':_0x49541d(0x1fa),'above':_0x49541d(0x254),'below':_0x49541d(0x330),'openRecord':_0x49541d(0x1d4),'clearContent':_0x49541d(0x2fb),'deleteRecord':'Delete\x20record','deleteRecords':_0x49541d(0x270)},'common':{'apply':_0x49541d(0x318),'cancel':_0x49541d(0x1b0),'clear':_0x49541d(0x1c5),'confirm':_0x49541d(0x255),'delete':_0x49541d(0x2f6),'save':_0x49541d(0x2c2),'search':_0x49541d(0x24e),'searchPrevious':'Previous\x20result','searchNext':_0x49541d(0x271),'searchClose':_0x49541d(0x2d6),'value':_0x49541d(0x23e),'newCondition':_0x49541d(0x204),'newBadge':_0x49541d(0x1ce)},'footerStat':{'none':'None','countOption':_0x49541d(0x1ee),'filledOption':'Filled','emptyOption':_0x49541d(0x368),'uniqueOption':_0x49541d(0x25f),'sumOption':_0x49541d(0x31c),'averageOption':'Average','minOption':_0x49541d(0x2be),'maxOption':_0x49541d(0x22e),'count':'{count}\x20records','filled':_0x49541d(0x1ca),'empty':_0x49541d(0x361),'unique':_0x49541d(0x33e),'sum':_0x49541d(0x235),'average':'Avg\x20{value}','min':_0x49541d(0x212),'max':_0x49541d(0x2dd)},'confirmDelete':{'tableTitle':_0x49541d(0x1ad),'tableDescription':_0x49541d(0x249),'viewTitle':'Delete\x20this\x20view?','viewDescription':_0x49541d(0x2ab),'fieldTitle':'Delete\x20this\x20field?','fieldDescription':_0x49541d(0x2b6)},'fieldConfig':{'fieldTitle':_0x49541d(0x2c8),'fieldTitlePlaceholder':_0x49541d(0x316),'fieldType':_0x49541d(0x252),'fieldTypeSectionBasic':_0x49541d(0x2ef),'fieldTypeSectionBusiness':_0x49541d(0x19a),'fieldTypeSectionAdvanced':_0x49541d(0x2d2),'defaultValue':'Default\x20value','newField':_0x49541d(0x34d),'defaultSettingsReady':_0x49541d(0x350),'numberFormat':'Number\x20format','currencyFormat':_0x49541d(0x1dc),'dateFormat':_0x49541d(0x28e),'dateMonthNameExample':_0x49541d(0x1d5),'decimalPlaces':_0x49541d(0x1b1),'example':_0x49541d(0x294),'icon':_0x49541d(0x1f9),'scale':_0x49541d(0x1e1),'options':_0x49541d(0x367),'referenceOptions':_0x49541d(0x1c4),'addOption':_0x49541d(0x2d3),'addOptionPlaceholder':_0x49541d(0x2d1),'removeOption':_0x49541d(0x281),'selectOption':'Select\x20option','option':_0x49541d(0x221),'numberingType':_0x49541d(0x338),'autoIncrement':_0x49541d(0x27a),'custom':_0x49541d(0x2f7),'customizeNumbering':'Customize\x20number/text\x20format\x20and\x20rules','preview':_0x49541d(0x22c),'incremental':_0x49541d(0x1da),'digits':'digits','start':_0x49541d(0x1b7),'step':_0x49541d(0x1d6),'dateCreated':_0x49541d(0x232),'customText':_0x49541d(0x2f1),'lockedField':'Locked\x20field','showField':_0x49541d(0x1a2),'hideField':_0x49541d(0x2ec),'moreFieldActions':'More\x20field\x20actions','edit':_0x49541d(0x1a0),'addFieldToGroup':'Add\x20Field\x20To\x20Group','editField':_0x49541d(0x31a),'editFieldDescription':_0x49541d(0x2a1),'duplicateField':_0x49541d(0x2a4),'insertLeft':_0x49541d(0x2af),'insertRight':'Insert\x20Right','freezeToField':_0x49541d(0x2b9),'sortAsc':_0x49541d(0x2e4),'sortDesc':_0x49541d(0x30e),'groupByField':_0x49541d(0x244),'filterByField':_0x49541d(0x35b),'createKanbanWithField':'Create\x20Kanban\x20with\x20{fieldName}','deleteField':'Delete\x20Field','referenceOptionsHelp':_0x49541d(0x332),'allowMultipleMembers':'Allow\x20adding\x20multiple\x20members\x20in\x20one\x20record','allowMultipleGroups':_0x49541d(0x2ba),'defaultProviderMock':_0x49541d(0x2c7),'defaultProviderExternal':'Default\x20value\x20is\x20resolved\x20from\x20the\x20external\x20Univer\x20{entity}\x20provider.','linkPlaceholder':_0x49541d(0x22f),'phonePlaceholder':_0x49541d(0x1e9),'currencySymbol':_0x49541d(0x34b),'thousandsSeparator':_0x49541d(0x2a8),'showThousandsSeparator':'Show\x20thousands\x20separator','largeNumberAbbreviation':_0x49541d(0x2b7),'allowNegativeNumbers':_0x49541d(0x321),'includeTime':_0x49541d(0x1cf),'timeFormat':_0x49541d(0x243),'hour24':_0x49541d(0x314),'hour12':'12\x20hour\x20am/pm','none':'None','recordCreationTime':_0x49541d(0x2c6),'selectSpecificDate':'Select\x20specific\x20date','percent':_0x49541d(0x19b),'number':_0x49541d(0x28f),'color':_0x49541d(0x20f),'style':_0x49541d(0x32b),'progressColor':_0x49541d(0x326),'customProgressBar':_0x49541d(0x2df),'startValue':_0x49541d(0x267),'targetValue':_0x49541d(0x287),'searchGroups':_0x49541d(0x2bf),'selectGroups':_0x49541d(0x1ec),'noProviderGroupData':_0x49541d(0x311),'noMatchingGroups':_0x49541d(0x301),'searchMembers':_0x49541d(0x2e7),'selectMembers':_0x49541d(0x1de),'noProviderData':'No\x20provider\x20data\x20available','noMatchingMembers':'No\x20matching\x20members.','noFormulaConfigured':_0x49541d(0x1bb),'editFormula':'Edit\x20formula','closeFormulaEditor':'Close\x20formula\x20editor','formulaHint':'Use\x20fields\x20like\x20[Amount].\x20A1:B10\x20and\x20single\x20cell\x20references\x20are\x20not\x20allowed.','formulaReferenceError':_0x49541d(0x362),'formulaTables':_0x49541d(0x36a),'formulaFields':_0x49541d(0x201),'formulaFunctions':'Functions','formulaFunction':'Function','formulaParameters':_0x49541d(0x210),'formulaOptional':_0x49541d(0x2e5),'formulaRepeat':_0x49541d(0x319),'formulaExample':_0x49541d(0x2dc),'currentTable':'Current','currentTableField':_0x49541d(0x2c1),'fieldFromTable':_0x49541d(0x220),'referenceCurrentField':_0x49541d(0x31f),'referenceTableField':_0x49541d(0x1b5),'fieldNameColumn':_0x49541d(0x1db),'fieldTypeColumn':'Type','insertColumn':_0x49541d(0x1fa),'insert':_0x49541d(0x1fa),'formulaNumberFormatSheetPattern':_0x49541d(0x2e2),'formulaFormatType':_0x49541d(0x360),'formulaCustomPattern':'Custom\x20pattern','formulaFormatGeneral':_0x49541d(0x290),'formulaFormatNumber':_0x49541d(0x28f),'formulaFormatCurrency':'Currency','formulaFormatAccounting':_0x49541d(0x1f6),'formulaFormatPercent':_0x49541d(0x19b),'formulaFormatDateTime':_0x49541d(0x27d),'addDescriptionPlaceholder':'Add\x20a\x20description','numberingDescription':_0x49541d(0x2e1),'optionColor':_0x49541d(0x224),'separatorLocal':_0x49541d(0x1ff),'separatorCommaPeriod':_0x49541d(0x356),'separatorPeriodComma':_0x49541d(0x35c),'separatorSpaceComma':_0x49541d(0x217),'separatorSpacePeriod':_0x49541d(0x219),'direction':'Direction','groupFirstToLast':_0x49541d(0x1f8),'groupLastToFirst':'Last\x20->\x20First','checkboxIconCheck':_0x49541d(0x364),'checkboxIconCross':_0x49541d(0x36e),'checkboxIconStar':_0x49541d(0x19e),'checkboxIconHeart':_0x49541d(0x297),'checkboxIconThumb':_0x49541d(0x1a3),'checkboxIconFlag':_0x49541d(0x261),'checkboxIconDot':_0x49541d(0x2ac),'ratingIconStar':_0x49541d(0x19e),'ratingIconHeart':_0x49541d(0x297),'ratingIconThumb':'Thumb','ratingIconFire':_0x49541d(0x1bd),'ratingIconSmile':_0x49541d(0x29e),'ratingIconLightning':_0x49541d(0x23d),'ratingIconMedal':_0x49541d(0x22b),'increment':_0x49541d(0x2ee),'decrement':_0x49541d(0x33d)},'cellEditor':{'done':_0x49541d(0x1ed),'text':_0x49541d(0x20a),'displayText':_0x49541d(0x21f),'url':_0x49541d(0x26c),'linkPlaceholder':'univer.ai\x20or\x20https://univer.ai','attachments':'Attachments','attachFile':_0x49541d(0x19d),'failedToAttachFile':_0x49541d(0x31d),'file':_0x49541d(0x2bb),'invalidEmail':_0x49541d(0x32a),'invalidPhone':_0x49541d(0x208),'closePreview':_0x49541d(0x370),'searchOption':_0x49541d(0x357),'selectOption':_0x49541d(0x21b),'selectOptions':_0x49541d(0x1b6),'previousMonth':_0x49541d(0x257),'nextMonth':_0x49541d(0x2f4),'time':_0x49541d(0x31e)},'recordDetailField':{'previousRecord':'Previous\x20record','nextRecord':_0x49541d(0x215),'pleaseSelect':_0x49541d(0x253),'addAttachment':'Add\x20attachment','failedToAttachFile':'Failed\x20to\x20attach\x20file','closePreview':_0x49541d(0x370),'typeHere':_0x49541d(0x1a1),'empty':'Empty','unassigned':_0x49541d(0x23f),'editField':_0x49541d(0x282),'noVisibleFields':_0x49541d(0x2aa)},'fieldTypes':{'text':'Text','singleSelect':_0x49541d(0x1b8),'multiSelect':_0x49541d(0x327),'person':_0x49541d(0x238),'group':'Group','date':'Date','attachment':'Attachment','number':'Number','checkbox':'Checkbox','link':_0x49541d(0x26c),'formula':_0x49541d(0x1ef),'numbering':_0x49541d(0x1c8),'phone':'Phone\x20Number','email':_0x49541d(0x25d),'progress':'Progress','currency':_0x49541d(0x1ab),'rating':_0x49541d(0x35a),'createdBy':_0x49541d(0x2b1),'updatedBy':'Modified\x20By','createdAt':_0x49541d(0x232),'updatedAt':_0x49541d(0x20d)},'viewMenus':{'customizeKanban':_0x49541d(0x216),'customizeCard':_0x49541d(0x24b),'eventSettings':_0x49541d(0x2d0),'calendarViewSettings':_0x49541d(0x1f5),'calendarViewSettingsTitle':'Calendar\x20View\x20Settings','ganttViewSettings':'Gantt\x20View\x20Settings','fieldsCount':_0x49541d(0x1c6),'cover':_0x49541d(0x26e),'cardLayout':_0x49541d(0x21e),'normal':_0x49541d(0x2a3),'normalDescription':_0x49541d(0x331),'compose':'Compose','composeDescription':_0x49541d(0x2e9),'cardSize':_0x49541d(0x1eb),'small':_0x49541d(0x1af),'medium':_0x49541d(0x1f2),'large':_0x49541d(0x19f),'showFieldNames':_0x49541d(0x1be),'startDate':_0x49541d(0x2b3),'endDate':_0x49541d(0x366),'title':_0x49541d(0x30b),'timeslotSize':_0x49541d(0x328),'timeslotShort':_0x49541d(0x27f),'timeslotMedium':'Medium\x20·\x2030\x20minutes','timeslotLong':_0x49541d(0x269),'displayColor':'Display\x20color','customizeColor':_0x49541d(0x2f0),'alignWithRecords':_0x49541d(0x2cf),'timeZone':_0x49541d(0x2ca),'localTimeZone':'Local\x20({timeZone})','conditionalColor':'Conditional\x20color','conditionsApplied':_0x49541d(0x283),'addCondition':'Add\x20condition','calculateWorkingDaysOnly':'Calculate\x20working\x20days\x20only','customWorkingDays':'Custom\x20working\x20days','customWorkingDaysHelp':_0x49541d(0x36f),'notSet':_0x49541d(0x33f),'settings':_0x49541d(0x1c7),'setWorkingDays':_0x49541d(0x247),'setWorkingDaysDescription':_0x49541d(0x300),'closeWorkingDaysSettings':'Close\x20working\x20days\x20settings','addWorkingDays':'Add\x20working\x20days','holidayName':_0x49541d(0x26d),'dayOff':_0x49541d(0x2bc),'working':'Working','add':'Add','removeWorkingDayException':'Remove\x20working\x20day\x20exception','legalWorkingDays':_0x49541d(0x23a),'legalWorkingDaysHelp':'Legal\x20working\x20days\x20will\x20be\x20available\x20after\x20an\x20external\x20calendar\x20API\x20is\x20connected.','mon':'Mon','tue':_0x49541d(0x1a5),'wed':_0x49541d(0x33a),'thu':_0x49541d(0x248),'fri':'Fri','sat':_0x49541d(0x239),'sun':_0x49541d(0x337),'monFri':_0x49541d(0x223),'days':'{count}\x20days','workingDaysSummary':_0x49541d(0x2da),'exceptionsSummary':_0x49541d(0x2cb),'calendarColor':_0x49541d(0x227),'color':_0x49541d(0x20f),'editGroupTitle':_0x49541d(0x304),'groupByFieldFallback':'Group\x20by\x20field','kanbanGroup':_0x49541d(0x339),'required':_0x49541d(0x21c),'kanbanGroupHelp':_0x49541d(0x20e)},'operators':{'is':'is','isNot':_0x49541d(0x2a2),'contains':_0x49541d(0x272),'notContains':'not\x20contain','isEmpty':'is\x20empty','isNotEmpty':_0x49541d(0x2fe),'greaterThan':_0x49541d(0x2de),'lessThan':_0x49541d(0x266),'before':_0x49541d(0x2bd),'after':'is\x20after'},'viewSettings':{'title':_0x49541d(0x345),'viewName':'View\x20name','addView':_0x49541d(0x30c),'createViewTitle':_0x49541d(0x1e5),'createViewDescription':_0x49541d(0x236),'setAsFirstTab':_0x49541d(0x313),'renameView':_0x49541d(0x310),'duplicateView':'Duplicate\x20view','configureView':_0x49541d(0x242),'deleteView':'Delete\x20view','newGridView':_0x49541d(0x2ea),'newKanbanView':_0x49541d(0x1bc),'newCalendarView':_0x49541d(0x265),'newGanttView':_0x49541d(0x1c0),'newGalleryView':_0x49541d(0x335),'gridView':_0x49541d(0x2f2),'gridViewDescription':_0x49541d(0x342),'kanbanView':_0x49541d(0x1f7),'kanbanViewDescription':_0x49541d(0x365),'calendarView':_0x49541d(0x1fc),'calendarViewDescription':'Records\x20laid\x20out\x20by\x20date.','ganttView':_0x49541d(0x213),'ganttViewDescription':_0x49541d(0x231),'galleryView':_0x49541d(0x234),'galleryViewDescription':_0x49541d(0x25e),'copySuffix':_0x49541d(0x19c)},'tableSidebar':{'searchTables':_0x49541d(0x264),'addTable':_0x49541d(0x2ff),'newTable':'New','collapse':_0x49541d(0x1d7),'expand':_0x49541d(0x20c),'resizeTableSidebar':_0x49541d(0x308),'configureTable':_0x49541d(0x320),'renameTable':_0x49541d(0x352),'duplicateTable':'Duplicate\x20Table','deleteTable':_0x49541d(0x31b),'defaultTableName':'Table\x20{index}'},'footer':{'record':_0x49541d(0x2d9),'records':_0x49541d(0x1fd)},'canvas':{'addRecord':_0x49541d(0x30a),'attachmentDropLabel':_0x49541d(0x293),'calculate':'Calculate','day':_0x49541d(0x1f3),'fields':'Fields','month':_0x49541d(0x309),'more':_0x49541d(0x24d),'moveRecord':_0x49541d(0x2cd),'quarter':_0x49541d(0x251),'today':_0x49541d(0x228),'week':_0x49541d(0x369),'year':_0x49541d(0x312)},'empty':{'value':'Empty','noRecords':_0x49541d(0x33b),'invalidView':_0x49541d(0x21a)},'formula':{'categories':{'math':_0x49541d(0x35e),'statistical':_0x49541d(0x1cd),'text':_0x49541d(0x20a),'logical':_0x49541d(0x1df),'date':_0x49541d(0x2b2),'information':'Information','array':_0x49541d(0x30d),'compatibility':_0x49541d(0x245),'cube':_0x49541d(0x26a),'database':_0x49541d(0x1d9),'engineering':_0x49541d(0x214),'financial':_0x49541d(0x2e6),'lookup':_0x49541d(0x2b0),'web':_0x49541d(0x340)},'functions':{'SUM':{'abstract':_0x49541d(0x23c),'description':_0x49541d(0x33c),'parameters':{'number1':{'name':_0x49541d(0x1c2),'detail':'The\x20first\x20number\x20or\x20numeric\x20expression.'},'number2':{'name':_0x49541d(0x279),'detail':'Additional\x20numbers\x20or\x20numeric\x20expressions.'}}},'AVERAGE':{'abstract':'Returns\x20the\x20average\x20of\x20arguments','description':_0x49541d(0x334),'parameters':{'number1':{'name':_0x49541d(0x1c2),'detail':_0x49541d(0x349)},'number2':{'name':_0x49541d(0x279),'detail':_0x49541d(0x29f)}}},'MIN':{'abstract':_0x49541d(0x323),'description':'Returns\x20the\x20smallest\x20numeric\x20value\x20from\x20the\x20arguments.','parameters':{'number1':{'name':_0x49541d(0x1c2),'detail':_0x49541d(0x349)},'number2':{'name':_0x49541d(0x279),'detail':'Additional\x20numbers\x20or\x20numeric\x20expressions.'}}},'MAX':{'abstract':_0x49541d(0x2a7),'description':_0x49541d(0x347),'parameters':{'number1':{'name':_0x49541d(0x1c2),'detail':_0x49541d(0x349)},'number2':{'name':_0x49541d(0x279),'detail':_0x49541d(0x29f)}}},'COUNT':{'abstract':_0x49541d(0x1d2),'description':_0x49541d(0x295),'parameters':{'value1':{'name':_0x49541d(0x285),'detail':_0x49541d(0x256)},'value2':{'name':'value2','detail':_0x49541d(0x246)}}},'COUNTA':{'abstract':_0x49541d(0x241),'description':'Counts\x20arguments\x20that\x20are\x20not\x20empty.','parameters':{'value1':{'name':_0x49541d(0x285),'detail':_0x49541d(0x256)},'value2':{'name':_0x49541d(0x268),'detail':_0x49541d(0x246)}}},'MEDIAN':{'abstract':'Returns\x20the\x20median\x20value','description':_0x49541d(0x34f),'parameters':{'number1':{'name':'number1','detail':_0x49541d(0x349)},'number2':{'name':_0x49541d(0x279),'detail':_0x49541d(0x29f)}}},'ROUND':{'abstract':'Rounds\x20a\x20number','description':_0x49541d(0x1fb),'parameters':{'number':{'name':_0x49541d(0x1dd),'detail':_0x49541d(0x26f)},'num_digits':{'name':'num_digits','detail':'The\x20number\x20of\x20digits\x20to\x20round\x20to.'}}},'ROUNDUP':{'abstract':_0x49541d(0x2d8),'description':_0x49541d(0x299),'parameters':{'number':{'name':'number','detail':_0x49541d(0x26f)},'num_digits':{'name':'num_digits','detail':_0x49541d(0x2fd)}}},'ROUNDDOWN':{'abstract':'Rounds\x20a\x20number\x20down','description':'Rounds\x20a\x20number\x20down,\x20toward\x20zero.','parameters':{'number':{'name':_0x49541d(0x1dd),'detail':_0x49541d(0x26f)},'num_digits':{'name':_0x49541d(0x2cc),'detail':_0x49541d(0x2fd)}}},'ABS':{'abstract':_0x49541d(0x1e4),'description':_0x49541d(0x2f5),'parameters':{'number':{'name':_0x49541d(0x1dd),'detail':_0x49541d(0x26f)}}},'INT':{'abstract':'Rounds\x20a\x20number\x20down\x20to\x20an\x20integer','description':'Rounds\x20a\x20number\x20down\x20to\x20the\x20nearest\x20integer.','parameters':{'number':{'name':_0x49541d(0x1dd),'detail':_0x49541d(0x26f)}}},'MOD':{'abstract':_0x49541d(0x240),'description':'Returns\x20the\x20remainder\x20after\x20a\x20number\x20is\x20divided\x20by\x20a\x20divisor.','parameters':{'number':{'name':_0x49541d(0x1dd),'detail':_0x49541d(0x26f)},'divisor':{'name':_0x49541d(0x2fa),'detail':_0x49541d(0x1b9)}}},'POWER':{'abstract':_0x49541d(0x1cb),'description':_0x49541d(0x1a4),'parameters':{'number':{'name':_0x49541d(0x1dd),'detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'},'power':{'name':_0x49541d(0x1e3),'detail':'The\x20exponent\x20to\x20apply\x20to\x20the\x20base\x20number.'}}},'SQRT':{'abstract':_0x49541d(0x205),'description':_0x49541d(0x21d),'parameters':{'number':{'name':_0x49541d(0x1dd),'detail':_0x49541d(0x26f)}}},'PRODUCT':{'abstract':_0x49541d(0x206),'description':_0x49541d(0x298),'parameters':{'number1':{'name':_0x49541d(0x1c2),'detail':_0x49541d(0x349)},'number2':{'name':'number2','detail':_0x49541d(0x29f)}}},'IF':{'abstract':'Returns\x20one\x20value\x20for\x20TRUE\x20and\x20another\x20for\x20FALSE','description':_0x49541d(0x1d1),'parameters':{'logical_test':{'name':_0x49541d(0x359),'detail':_0x49541d(0x1d3)},'value_if_true':{'name':'value_if_true','detail':_0x49541d(0x322)},'value_if_false':{'name':_0x49541d(0x226),'detail':_0x49541d(0x24a)}}},'IFS':{'abstract':'Checks\x20multiple\x20conditions','description':_0x49541d(0x1fe),'parameters':{'logical_test1':{'name':'logical_test1','detail':'The\x20first\x20condition\x20to\x20test.'},'value_if_true1':{'name':_0x49541d(0x250),'detail':_0x49541d(0x277)},'logical_test2':{'name':'logical_test2','detail':_0x49541d(0x34c)}}},'IFERROR':{'abstract':'Returns\x20a\x20fallback\x20for\x20errors','description':_0x49541d(0x2d7),'parameters':{'value':{'name':'value','detail':_0x49541d(0x353)},'value_if_error':{'name':_0x49541d(0x34e),'detail':'The\x20value\x20returned\x20when\x20the\x20expression\x20is\x20an\x20error.'}}},'AND':{'abstract':_0x49541d(0x29a),'description':'Returns\x20TRUE\x20when\x20all\x20supplied\x20conditions\x20evaluate\x20to\x20TRUE.','parameters':{'logical1':{'name':_0x49541d(0x1b4),'detail':_0x49541d(0x32e)},'logical2':{'name':'logical2','detail':_0x49541d(0x2b4)}}},'OR':{'abstract':'Returns\x20TRUE\x20if\x20any\x20argument\x20is\x20TRUE','description':_0x49541d(0x274),'parameters':{'logical1':{'name':_0x49541d(0x1b4),'detail':_0x49541d(0x32e)},'logical2':{'name':'logical2','detail':_0x49541d(0x2b4)}}},'NOT':{'abstract':_0x49541d(0x25a),'description':'Changes\x20TRUE\x20to\x20FALSE\x20and\x20FALSE\x20to\x20TRUE.','parameters':{'logical':{'name':'logical','detail':_0x49541d(0x30f)}}},'TRUE':{'abstract':_0x49541d(0x344),'description':'Returns\x20the\x20logical\x20value\x20TRUE.','parameters':{}},'FALSE':{'abstract':_0x49541d(0x203),'description':_0x49541d(0x2fc),'parameters':{}},'CONCAT':{'abstract':_0x49541d(0x29c),'description':_0x49541d(0x1a7),'parameters':{'text1':{'name':'text1','detail':_0x49541d(0x325)},'text2':{'name':'text2','detail':'Additional\x20text\x20values\x20or\x20fields.'}}},'TEXTJOIN':{'abstract':_0x49541d(0x2d4),'description':_0x49541d(0x2e0),'parameters':{'delimiter':{'name':_0x49541d(0x280),'detail':_0x49541d(0x263)},'ignore_empty':{'name':'ignore_empty','detail':_0x49541d(0x36b)},'text1':{'name':_0x49541d(0x296),'detail':_0x49541d(0x325)},'text2':{'name':_0x49541d(0x317),'detail':_0x49541d(0x36d)}}},'LEN':{'abstract':_0x49541d(0x222),'description':_0x49541d(0x27e),'parameters':{'text':{'name':_0x49541d(0x1e0),'detail':_0x49541d(0x24c)}}},'LEFT':{'abstract':_0x49541d(0x211),'description':_0x49541d(0x20b),'parameters':{'text':{'name':_0x49541d(0x1e0),'detail':_0x49541d(0x24c)},'num_chars':{'name':'num_chars','detail':_0x49541d(0x2c4)}}},'RIGHT':{'abstract':'Returns\x20characters\x20from\x20the\x20end\x20of\x20text','description':_0x49541d(0x307),'parameters':{'text':{'name':'text','detail':_0x49541d(0x24c)},'num_chars':{'name':'num_chars','detail':_0x49541d(0x2c4)}}},'MID':{'abstract':_0x49541d(0x28b),'description':_0x49541d(0x233),'parameters':{'text':{'name':_0x49541d(0x1e0),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'},'start_num':{'name':_0x49541d(0x1d8),'detail':'The\x20position\x20of\x20the\x20first\x20character\x20to\x20return.'},'num_chars':{'name':_0x49541d(0x29d),'detail':_0x49541d(0x2c4)}}},'UPPER':{'abstract':_0x49541d(0x291),'description':_0x49541d(0x1c3),'parameters':{'text':{'name':_0x49541d(0x1e0),'detail':_0x49541d(0x24c)}}},'LOWER':{'abstract':_0x49541d(0x2b5),'description':'Converts\x20text\x20to\x20lowercase.','parameters':{'text':{'name':'text','detail':_0x49541d(0x24c)}}},'TRIM':{'abstract':_0x49541d(0x305),'description':'Removes\x20extra\x20spaces\x20from\x20text\x20except\x20for\x20single\x20spaces\x20between\x20words.','parameters':{'text':{'name':_0x49541d(0x1e0),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'}}},'FIND':{'abstract':_0x49541d(0x346),'description':_0x49541d(0x218),'parameters':{'find_text':{'name':_0x49541d(0x32f),'detail':_0x49541d(0x27c)},'within_text':{'name':_0x49541d(0x1d0),'detail':'The\x20text\x20containing\x20the\x20text\x20to\x20find.'},'start_num':{'name':'start_num','detail':_0x49541d(0x1c1)}}},'SEARCH':{'abstract':_0x49541d(0x209),'description':'Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20SEARCH\x20is\x20not\x20case-sensitive.','parameters':{'find_text':{'name':_0x49541d(0x32f),'detail':_0x49541d(0x27c)},'within_text':{'name':_0x49541d(0x1d0),'detail':_0x49541d(0x1f1)},'start_num':{'name':_0x49541d(0x1d8),'detail':_0x49541d(0x1c1)}}},'SUBSTITUTE':{'abstract':_0x49541d(0x1f0),'description':_0x49541d(0x348),'parameters':{'text':{'name':_0x49541d(0x1e0),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'},'old_text':{'name':_0x49541d(0x2ae),'detail':_0x49541d(0x336)},'new_text':{'name':_0x49541d(0x207),'detail':_0x49541d(0x258)},'instance_num':{'name':'instance_num','detail':_0x49541d(0x262)}}},'REPLACE':{'abstract':'Replaces\x20characters\x20by\x20position','description':_0x49541d(0x1a6),'parameters':{'old_text':{'name':_0x49541d(0x2ae),'detail':_0x49541d(0x22d)},'start_num':{'name':_0x49541d(0x1d8),'detail':_0x49541d(0x303)},'num_chars':{'name':'num_chars','detail':'The\x20number\x20of\x20characters\x20to\x20replace.'},'new_text':{'name':'new_text','detail':_0x49541d(0x278)}}},'TEXT':{'abstract':_0x49541d(0x1c9),'description':'Formats\x20a\x20value\x20as\x20text\x20by\x20applying\x20a\x20number\x20format.','parameters':{'value':{'name':_0x49541d(0x1b3),'detail':'The\x20value,\x20field,\x20or\x20expression\x20to\x20test.'},'format_text':{'name':_0x49541d(0x32d),'detail':'The\x20format\x20pattern\x20to\x20apply.'}}},'VALUE':{'abstract':'Converts\x20text\x20to\x20a\x20number','description':_0x49541d(0x288),'parameters':{'text':{'name':_0x49541d(0x1e0),'detail':_0x49541d(0x24c)}}},'TODAY':{'abstract':_0x49541d(0x2c3),'description':'Returns\x20the\x20current\x20date\x20as\x20a\x20date\x20serial\x20value.','parameters':{}},'NOW':{'abstract':_0x49541d(0x32c),'description':'Returns\x20the\x20current\x20date\x20and\x20time\x20as\x20a\x20date/time\x20serial\x20value.','parameters':{}},'DATE':{'abstract':'Creates\x20a\x20date\x20value','description':_0x49541d(0x2ed),'parameters':{'year':{'name':_0x49541d(0x324),'detail':_0x49541d(0x2db)},'month':{'name':_0x49541d(0x1b2),'detail':_0x49541d(0x329)},'day':{'name':_0x49541d(0x2e3),'detail':_0x49541d(0x1e2)}}},'YEAR':{'abstract':_0x49541d(0x36c),'description':_0x49541d(0x29b),'parameters':{'serialNumber':{'name':_0x49541d(0x24f),'detail':_0x49541d(0x28c)}}},'MONTH':{'abstract':_0x49541d(0x202),'description':'Returns\x20the\x20month\x20component\x20of\x20a\x20date\x20serial\x20value.','parameters':{'serialNumber':{'name':_0x49541d(0x24f),'detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'DAY':{'abstract':_0x49541d(0x22a),'description':_0x49541d(0x1e6),'parameters':{'serialNumber':{'name':_0x49541d(0x24f),'detail':_0x49541d(0x28c)}}},'HOUR':{'abstract':_0x49541d(0x1ea),'description':_0x49541d(0x1a8),'parameters':{'serialNumber':{'name':'serial_number','detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'MINUTE':{'abstract':_0x49541d(0x289),'description':_0x49541d(0x273),'parameters':{'serialNumber':{'name':'serial_number','detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'SECOND':{'abstract':_0x49541d(0x2c0),'description':'Returns\x20the\x20second\x20component\x20of\x20a\x20date/time\x20serial\x20value.','parameters':{'serialNumber':{'name':_0x49541d(0x24f),'detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'DAYS':{'abstract':_0x49541d(0x354),'description':_0x49541d(0x2e8),'parameters':{'end_date':{'name':_0x49541d(0x371),'detail':_0x49541d(0x28d)},'start_date':{'name':_0x49541d(0x276),'detail':'The\x20earlier\x20date.'}}},'ISBLANK':{'abstract':_0x49541d(0x200),'description':'Returns\x20TRUE\x20when\x20the\x20value\x20is\x20empty.','parameters':{'value':{'name':_0x49541d(0x1b3),'detail':_0x49541d(0x353)}}},'ISNUMBER':{'abstract':'Checks\x20whether\x20a\x20value\x20is\x20a\x20number','description':'Returns\x20TRUE\x20when\x20the\x20value\x20is\x20a\x20number.','parameters':{'value':{'name':_0x49541d(0x1b3),'detail':_0x49541d(0x353)}}},'ISTEXT':{'abstract':_0x49541d(0x237),'description':_0x49541d(0x27b),'parameters':{'value':{'name':_0x49541d(0x1b3),'detail':'The\x20value,\x20field,\x20or\x20expression\x20to\x20test.'}}},'ISERROR':{'abstract':_0x49541d(0x35d),'description':_0x49541d(0x25c),'parameters':{'value':{'name':_0x49541d(0x1b3),'detail':_0x49541d(0x353)}}}},'generic':{'engineAbstract':_0x49541d(0x2c9),'engineDescription':'{name}\x20is\x20provided\x20by\x20the\x20Univer\x20formula\x20engine.\x20Base\x20supports\x20field\x20references\x20such\x20as\x20table[Field]\x20and\x20OtherTable[Field],\x20but\x20does\x20not\x20support\x20A1\x20cells,\x20A1:B10\x20ranges,\x20or\x20spilled\x20array\x20output\x20in\x20Base\x20formula\x20fields.','argument':{'name':_0x49541d(0x2c5),'detail':_0x49541d(0x284)}}}}}['bases-ui']};module[_0x49541d(0x2eb)]=e;function _0x3626(){const _0x33cdd7=['Rounds\x20a\x20number\x20up','record','{days}{exceptions}','The\x20year\x20of\x20the\x20date.','Example:','Max\x20{value}','greater\x20than','Custom\x20progress\x20bar','Combines\x20text\x20values\x20and\x20inserts\x20a\x20delimiter\x20between\x20each\x20value.','Automatically\x20assigns\x20a\x20unique\x20increasing\x20index\x20starting\x20from\x201\x20when\x20a\x20record\x20is\x20created.\x20Generated\x20values\x20cannot\x20be\x20edited.','Sheet\x20pattern','day','Sort\x20from\x20A\x20to\x20Z','optional','Financial','Search\x20members','Returns\x20the\x20number\x20of\x20days\x20between\x20two\x20date\x20values.','Inline\x20fields\x20that\x20wrap','New\x20grid\x20view','exports','Hide\x20field','Returns\x20the\x20serial\x20number\x20for\x20a\x20date\x20from\x20year,\x20month,\x20and\x20day\x20values.','increment','Basic','Customize\x20color','Custom\x20text','Grid','9XOZzNQ','Next\x20month','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number.\x20The\x20absolute\x20value\x20is\x20the\x20number\x20without\x20its\x20sign.','Delete','Custom','unchecked','last\x20month','divisor','Clear\x20content','Returns\x20the\x20logical\x20value\x20FALSE.','The\x20number\x20of\x20digits\x20to\x20round\x20to.','is\x20not\x20empty','Add\x20table','Customize\x20working\x20days\x20and\x20days\x20off,\x20and\x20apply\x20them\x20to\x20the\x20current\x20base','No\x20matching\x20groups.','Filter','The\x20position\x20of\x20the\x20first\x20character\x20to\x20replace.','Edit\x20group\x20title','Removes\x20extra\x20spaces\x20from\x20text','Delete\x20this\x20record?','Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20end\x20of\x20text.','Resize\x20table\x20sidebar','Month','Add\x20record','Title','Add\x20view','Array','Sort\x20from\x20Z\x20to\x20A','A\x20value\x20or\x20expression\x20that\x20can\x20be\x20evaluated\x20as\x20TRUE\x20or\x20FALSE.','Rename\x20View','No\x20provider\x20group\x20data\x20available','Year','Set\x20as\x20First\x20Tab','24\x20hour','Sort','Enter\x20a\x20field\x20title','text2','Apply','repeat','Edit\x20Field','Delete\x20Table','Sum','Failed\x20to\x20attach\x20file','Time','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20in\x20the\x20current\x20Base\x20table.\x20It\x20will\x20be\x20saved\x20as\x20table[{fieldName}]\x20for\x20the\x20formula\x20engine.','Configure\x20{tableName}','Allow\x20negative\x20numbers','The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20TRUE.','Returns\x20the\x20smallest\x20value','year','The\x20first\x20text\x20value\x20or\x20field.','Progress\x20color\x20{color}','Multiple\x20select','Timeslot\x20size','The\x20month\x20of\x20the\x20date.','Invalid\x20email\x20address','Style','Returns\x20the\x20current\x20date\x20and\x20time','format_text','The\x20first\x20condition\x20that\x20evaluates\x20to\x20TRUE\x20or\x20FALSE.','find_text','Below','Title\x20left,\x20fields\x20right','Reference\x20data\x20from\x20other\x20tables\x20as\x20options','Undo','Returns\x20the\x20arithmetic\x20mean\x20of\x20the\x20supplied\x20numeric\x20values.','New\x20gallery\x20view','The\x20text\x20you\x20want\x20to\x20replace.','Sun','Numbering\x20type','Kanban\x20group','Wed','No\x20records','Adds\x20all\x20numbers,\x20numeric\x20fields,\x20or\x20numeric\x20expressions\x20supplied\x20as\x20arguments.','decrement','{count}\x20unique','Not\x20set','Web','This\x20record\x20will\x20be\x20removed.','Rows\x20and\x20fields\x20for\x20detailed\x20editing.','today','Returns\x20TRUE','View\x20Settings','Finds\x20text\x20within\x20text','Returns\x20the\x20largest\x20numeric\x20value\x20from\x20the\x20arguments.','Replaces\x20existing\x20text\x20with\x20new\x20text\x20in\x20a\x20text\x20string.','The\x20first\x20number\x20or\x20numeric\x20expression.','Open','Currency\x20symbol','Additional\x20conditions\x20to\x20test.','New\x20field','value_if_error','Returns\x20the\x20median\x20of\x20the\x20supplied\x20numeric\x20values.','This\x20field\x20type\x20is\x20ready\x20with\x20default\x20settings.','1Cvwpuf','Rename\x20Table','The\x20value,\x20field,\x20or\x20expression\x20to\x20test.','Returns\x20days\x20between\x20two\x20dates','in\x20the\x20past\x207\x20days','Comma,\x20period','Select\x20or\x20add\x20an\x20option','Group\x20table\x20by\x20fields','logical_test','Rating','Filter\x20by\x20{fieldName}','Period,\x20comma','Checks\x20whether\x20a\x20value\x20is\x20an\x20error','Math','this\x20month','Format\x20type','{count}\x20empty','A1\x20references\x20and\x20ranges\x20are\x20not\x20supported\x20in\x20Base\x20formulas.','Add\x20Record','Check','Cards\x20grouped\x20by\x20a\x20select\x20field.','End\x20date','Options','Empty','Week','Tables','Whether\x20empty\x20values\x20should\x20be\x20ignored.','Returns\x20the\x20year\x20of\x20a\x20date','Additional\x20text\x20values\x20or\x20fields.','Cross','Customize\x20working\x20days\x20and\x20days\x20off\x20for\x20this\x20Gantt\x20view.\x20If\x20not\x20set,\x20Monday\x20to\x20Friday\x20is\x20used\x20when\x20working-day\x20calculation\x20is\x20enabled.','Close\x20preview','end_date','5129964WZPZJi','Add\x205\x20blank\x20records','Close\x20record\x20detail','Business','Percent','Copy','Attach\x20file','Star','Large','Edit','Type\x20here','Show\x20field','Thumb','Returns\x20the\x20result\x20of\x20a\x20number\x20raised\x20to\x20a\x20power.','Tue','Replaces\x20part\x20of\x20a\x20text\x20string\x20based\x20on\x20starting\x20position\x20and\x20length.','Combines\x20text\x20from\x20multiple\x20values,\x20fields,\x20or\x20expressions.','Returns\x20the\x20hour\x20component\x20of\x20a\x20date/time\x20serial\x20value.','5699608dcAJXn','this\x20week','Currency','Enter\x20here','Delete\x20this\x20table?','Add\x20more\x20records\x20after\x20submission','Small','Cancel','Decimal\x20places','month','value','logical1','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20from\x20the\x20\x22{tableName}\x22\x20table.','Select\x20options','Start','Single\x20select','The\x20number\x20by\x20which\x20you\x20want\x20to\x20divide.','checked','No\x20formula\x20configured','New\x20kanban\x20view','Fire','Show\x20field\x20names','Apply\x20Smart\x20Color\x20to\x20All','New\x20gantt\x20view','The\x20character\x20position\x20at\x20which\x20to\x20start\x20searching.','number1','Converts\x20text\x20to\x20uppercase.','Reference\x20options','Clear','{count}\x20fields','Settings','Numbering','Formats\x20a\x20value\x20as\x20text','{count}\x20filled','Returns\x20a\x20number\x20raised\x20to\x20a\x20power','28084683OwtYNn','Statistical','New','Include\x20time','within_text','Checks\x20a\x20condition\x20and\x20returns\x20one\x20value\x20when\x20it\x20is\x20TRUE\x20and\x20another\x20value\x20when\x20it\x20is\x20FALSE.','Counts\x20numeric\x20values','The\x20condition\x20you\x20want\x20to\x20test.','Open\x20record','May\x2028,\x202026','Step','Collapse','start_num','Database','Incremental','Name','Currency\x20format','number','Select\x20members','Logical','text','Scale','The\x20day\x20of\x20the\x20date.','power','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number','Create\x20view','Returns\x20the\x20day\x20component\x20of\x20a\x20date\x20serial\x20value.','Add\x20blank\x20record','702884CKBhwb','Enter\x20a\x20phone\x20number','Returns\x20the\x20hour\x20of\x20a\x20time','Card\x20size','Select\x20groups','Done','Count\x20records','Formula','Substitutes\x20new\x20text\x20for\x20old\x20text','The\x20text\x20containing\x20the\x20text\x20to\x20find.','Medium','Day','yesterday','Calendar\x20View\x20Settings','Accounting','Kanban','First\x20->\x20Last','Icon','Insert','Rounds\x20a\x20number\x20to\x20a\x20specified\x20number\x20of\x20digits.','Calendar','records','Checks\x20whether\x20one\x20or\x20more\x20conditions\x20are\x20met\x20and\x20returns\x20a\x20value\x20matching\x20the\x20first\x20TRUE\x20condition.','Local','Checks\x20whether\x20a\x20value\x20is\x20empty','Fields','Returns\x20the\x20month\x20of\x20a\x20date','Returns\x20FALSE','New\x20condition','Returns\x20a\x20positive\x20square\x20root','Multiplies\x20arguments','new_text','Invalid\x20phone\x20number','Finds\x20text\x20without\x20matching\x20case','Text','Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20beginning\x20of\x20text.','Expand','Last\x20Modified\x20Date','Kanban\x20views\x20always\x20use\x20one\x20group\x20field.','Color','Parameters','Returns\x20characters\x20from\x20the\x20start\x20of\x20text','Min\x20{value}','Gantt','Engineering','Next\x20record','Customize\x20Kanban','Space,\x20comma','Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20FIND\x20is\x20case-sensitive.','Space,\x20period','This\x20view\x20needs\x20to\x20be\x20configured','Select\x20option','Required','Returns\x20the\x20positive\x20square\x20root\x20of\x20a\x20number.','Card\x20layout','Display\x20text','Field\x20from\x20{tableName}','Option','Returns\x20the\x20number\x20of\x20characters\x20in\x20text','Mon-Fri','Option\x20color','Delete\x20record','value_if_false','Calendar\x20color','Today','646930pOCeUi','Returns\x20the\x20day\x20of\x20a\x20date','Medal','Preview','The\x20text\x20in\x20which\x20characters\x20are\x20replaced.','Max','Enter\x20a\x20URL\x20(e.g.\x20univer.ai\x20or\x20https://univer.ai/skills).','Cell','Timeline\x20with\x20start\x20and\x20end\x20dates.','Date\x20Created','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text\x20given\x20a\x20starting\x20position\x20and\x20length.','Gallery','Sum\x20{value}','Choose\x20how\x20this\x20table\x20should\x20be\x20projected.','Checks\x20whether\x20a\x20value\x20is\x20text','Person','Sat','Legal\x20working\x20days','Row\x20Height','Adds\x20numbers','Lightning','Value','Unassigned','Returns\x20the\x20remainder\x20from\x20division','Counts\x20non-empty\x20values','Configure\x20View','Time\x20format','Group\x20by\x20{fieldName}','Compatibility','Additional\x20values,\x20fields,\x20or\x20expressions.','Set\x20working\x20days','Thu','This\x20table\x20and\x20its\x20records\x20will\x20be\x20removed.','The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20FALSE.','Customize\x20Card','The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.','{count}\x20more','Search','serial_number','value_if_true1','Quarter','Field\x20type','Please\x20select','Above','Confirm','The\x20first\x20value,\x20field,\x20or\x20expression.','Previous\x20month','The\x20replacement\x20text.','42nYfcUa','Reverses\x20a\x20logical\x20value','last\x20week','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20any\x20error\x20value.','Email','Visual\x20cards\x20for\x20browsing\x20records.','Unique','1918484YPTYII','Flag','Which\x20occurrence\x20of\x20old_text\x20to\x20replace.\x20If\x20omitted,\x20every\x20occurrence\x20is\x20replaced.','Text\x20inserted\x20between\x20each\x20combined\x20value.','Search\x20tables','New\x20calendar\x20view','less\x20than','Start\x20value','value2','Long\x20·\x2015\x20minutes','Cube','tomorrow','URL','Holiday\x20name','Cover','The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.','Delete\x20records','Next\x20result','contains','Returns\x20the\x20minute\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Returns\x20TRUE\x20when\x20any\x20supplied\x20condition\x20evaluates\x20to\x20TRUE.','Entire\x20Column','start_date','The\x20value\x20returned\x20when\x20the\x20first\x20condition\x20is\x20TRUE.','The\x20text\x20that\x20replaces\x20the\x20old\x20characters.','number2','Auto\x20increment','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20text.','The\x20text\x20you\x20want\x20to\x20find.','Date\x20/\x20Time','Returns\x20the\x20number\x20of\x20characters\x20in\x20a\x20text\x20string.','Short\x20·\x201\x20hour','delimiter','Remove\x20option','Edit\x20{fieldName}','{count}\x20conditions\x20applied','A\x20value,\x20field\x20reference,\x20table\x20field\x20reference,\x20or\x20expression\x20supported\x20by\x20the\x20Univer\x20formula\x20engine.','value1','623304GMtHnW','Target\x20value','Converts\x20text\x20that\x20represents\x20a\x20number\x20to\x20a\x20number.','Returns\x20the\x20minute\x20of\x20a\x20time','Tall','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text','A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.','The\x20later\x20date.','Date\x20format','Number','General','Converts\x20text\x20to\x20uppercase','Add\x20field','Add\x20files\x20to\x20this\x20record','Example','Counts\x20arguments\x20that\x20contain\x20numbers.','text1','Heart','Multiplies\x20all\x20numbers\x20supplied\x20as\x20arguments.','Rounds\x20a\x20number\x20up,\x20away\x20from\x20zero.','Returns\x20TRUE\x20if\x20all\x20arguments\x20are\x20TRUE','Returns\x20the\x20year\x20component\x20of\x20a\x20date\x20serial\x20value.','Combines\x20text\x20values','num_chars','Smile','Additional\x20numbers\x20or\x20numeric\x20expressions.','Entire\x20Row','Edit\x20Field\x20Description','is\x20not','Normal','Duplicate\x20Field','10ACqaPu','within\x20the\x20next\x207\x20days','Returns\x20the\x20largest\x20value','Thousands\x20separator','Record\x20detail','No\x20visible\x20fields','This\x20view\x20will\x20be\x20removed.','Dot','Click\x20\x22New\x20Condition\x22\x20to\x20apply\x20colors\x20based\x20on\x20defined\x20conditions.\x20Please\x20note\x20higher\x20conditions\x20are\x20prioritized.','old_text','Insert\x20Left','Lookup\x20and\x20reference','Created\x20By','Date\x20and\x20time','Start\x20date','Additional\x20conditions\x20that\x20evaluate\x20to\x20TRUE\x20or\x20FALSE.','Converts\x20text\x20to\x20lowercase','This\x20field\x20will\x20be\x20removed\x20from\x20the\x20table.','Large\x20number\x20abbreviation','Redo','Freeze\x20up\x20to\x20This\x20Field','Allow\x20adding\x20multiple\x20groups\x20in\x20one\x20record','FILE','Day\x20off','is\x20before','Min','Search\x20groups','Returns\x20the\x20second\x20of\x20a\x20time','Current\x20table\x20field','Save','Returns\x20the\x20current\x20date','The\x20number\x20of\x20characters\x20to\x20return.','argument','Record\x20Creation\x20Time','Default\x20value\x20is\x20resolved\x20from\x20{count}\x20mock\x20{entity}\x20item{plural}.','Field\x20title','{name}\x20formula\x20engine\x20function','Time\x20zone','\x20·\x20{count}\x20exception{plural}','num_digits','Move\x20record','Submit','Align\x20with\x20records','Event\x20Settings','Add\x20an\x20option','Advanced','Add\x20Option','Combines\x20text\x20with\x20a\x20delimiter','Group\x20By','Close\x20search','Returns\x20a\x20fallback\x20value\x20if\x20the\x20expression\x20evaluates\x20to\x20an\x20error;\x20otherwise\x20returns\x20the\x20expression\x20result.'];_0x3626=function(){return _0x33cdd7;};return _0x3626();}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const _0x5b09db=_0x4415;function _0x4415(_0x228619,_0x6a34c7){_0x228619=_0x228619-0x1c6;const _0x47fd73=_0x47fd();let _0x4415f6=_0x47fd73[_0x228619];return _0x4415f6;}(function(_0x549735,_0x5e0c06){const _0x598f56=_0x4415,_0x523a18=_0x549735();while(!![]){try{const _0x227f3e=-parseInt(_0x598f56(0x25b))/0x1+parseInt(_0x598f56(0x22f))/0x2+parseInt(_0x598f56(0x1ed))/0x3*(-parseInt(_0x598f56(0x264))/0x4)+parseInt(_0x598f56(0x2f6))/0x5*(parseInt(_0x598f56(0x35c))/0x6)+-parseInt(_0x598f56(0x266))/0x7*(-parseInt(_0x598f56(0x23e))/0x8)+parseInt(_0x598f56(0x296))/0x9*(parseInt(_0x598f56(0x2cb))/0xa)+parseInt(_0x598f56(0x2f3))/0xb*(-parseInt(_0x598f56(0x309))/0xc);if(_0x227f3e===_0x5e0c06)break;else _0x523a18['push'](_0x523a18['shift']());}catch(_0x18c80){_0x523a18['push'](_0x523a18['shift']());}}}(_0x47fd,0x2fa4d));function _0x47fd(){const _0x5a7321=['The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.','Reference\x20options','Returns\x20the\x20month\x20of\x20a\x20date','Done','Returns\x20the\x20average\x20of\x20arguments','Sat','logical2','value1','The\x20replacement\x20text.','is\x20empty','records','Close\x20search','The\x20year\x20of\x20the\x20date.','Click\x20\x22New\x20Condition\x22\x20to\x20apply\x20colors\x20based\x20on\x20defined\x20conditions.\x20Please\x20note\x20higher\x20conditions\x20are\x20prioritized.','Apply','Date\x20Created','Default\x20value\x20is\x20resolved\x20from\x20the\x20external\x20Univer\x20{entity}\x20provider.','Returns\x20a\x20fallback\x20for\x20errors','Kanban\x20views\x20always\x20use\x20one\x20group\x20field.','A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.','Returns\x20characters\x20from\x20the\x20end\x20of\x20text','Edit\x20Field','Custom\x20text','Rename\x20Table','Start\x20date','Checkbox','Display\x20text','Combines\x20text\x20values\x20and\x20inserts\x20a\x20delimiter\x20between\x20each\x20value.','month','Text\x20inserted\x20between\x20each\x20combined\x20value.','Inline\x20fields\x20that\x20wrap','Below','ignore_empty','Default\x20value\x20is\x20resolved\x20from\x20{count}\x20mock\x20{entity}\x20item{plural}.','The\x20value\x20returned\x20when\x20the\x20expression\x20is\x20an\x20error.','Save','URL','Additional\x20conditions\x20to\x20test.','Medal','Min\x20{value}','Calendar\x20View\x20Settings','Expand','new_text','931650SfiaXU','Not\x20set','Apply\x20Smart\x20Color\x20to\x20All','Returns\x20the\x20month\x20component\x20of\x20a\x20date\x20serial\x20value.','Set\x20as\x20First\x20Tab','Space,\x20comma','No\x20visible\x20fields','Parameters','Gantt\x20View\x20Settings','Rating','Clear','Sun','unchecked','{count}\x20days','Above','Collapse','Combines\x20text\x20from\x20multiple\x20values,\x20fields,\x20or\x20expressions.','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20a\x20number.','Customize\x20Kanban','Example','Example:','Add\x20condition','Currency','Empty','Rounds\x20a\x20number\x20down\x20to\x20the\x20nearest\x20integer.','power','Entire\x20Row','Period,\x20comma','num_digits','record','Finds\x20text\x20without\x20matching\x20case','Add\x20view','{count}\x20more','Add','Web','Returns\x20the\x20second\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Returns\x20the\x20minute\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20any\x20error\x20value.','Heart','optional','5672095IGDoHo','Returns\x20the\x20logical\x20value\x20TRUE.','Information','35755XEWPPT','Comma,\x20period','number','Time\x20zone','Add\x20working\x20days','The\x20exponent\x20to\x20apply\x20to\x20the\x20base\x20number.','Large\x20number\x20abbreviation','Date','Returns\x20the\x20median\x20value','Advanced','The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20TRUE.','Required','Card\x20size','Group\x20By','Day','Option','Create\x20view','Delete\x20view','Tue','12DBAbnl','Medium','Multiplies\x20arguments','Sheet\x20pattern','Customize\x20color','This\x20field\x20will\x20be\x20removed\x20from\x20the\x20table.','May\x2028,\x202026','Remove\x20option','Delete\x20records','Formula','Locked\x20field','Rounds\x20a\x20number\x20up,\x20away\x20from\x20zero.','Cell','Current','A1\x20references\x20and\x20ranges\x20are\x20not\x20supported\x20in\x20Base\x20formulas.','Converts\x20text\x20to\x20a\x20number','Delete\x20this\x20field?','Field\x20from\x20{tableName}','{count}\x20unique','Attach\x20file','Records\x20laid\x20out\x20by\x20date.','Start\x20value','Number\x20format','Filter','Delete\x20Field','Engineering','Gantt','is\x20not\x20empty','The\x20first\x20value,\x20field,\x20or\x20expression.','Modified\x20By','Group\x20table\x20by\x20fields','Returns\x20the\x20logical\x20value\x20FALSE.','Name','Add\x20blank\x20record','number1','exact\x20date','Short','Filled','Combines\x20text\x20with\x20a\x20delimiter','Delete','Add\x20files\x20to\x20this\x20record','Cards\x20grouped\x20by\x20a\x20select\x20field.','Additional\x20numbers\x20or\x20numeric\x20expressions.','Returns\x20days\x20between\x20two\x20dates','value','last\x20week','Combines\x20text\x20values','Tables','Edit\x20{fieldName}','Conditional\x20color','The\x20first\x20condition\x20that\x20evaluates\x20to\x20TRUE\x20or\x20FALSE.','Current\x20table\x20field','end_date','The\x20number\x20of\x20characters\x20to\x20replace.','Rounds\x20a\x20number\x20down,\x20toward\x20zero.','General','This\x20field\x20type\x20is\x20ready\x20with\x20default\x20settings.','Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20beginning\x20of\x20text.','start_date','text2','Adds\x20numbers','Choose\x20how\x20this\x20table\x20should\x20be\x20projected.','{name}\x20formula\x20engine\x20function','Time\x20format','Group\x20by\x20{fieldName}','Text','value_if_true1','Custom\x20working\x20days','New','within_text','Replaces\x20part\x20of\x20a\x20text\x20string\x20based\x20on\x20starting\x20position\x20and\x20length.','Percent','Statistical','Delete\x20this\x20record?','Add\x20a\x20description','Cancel','Number','Delete\x20this\x20view?','Customize\x20number/text\x20format\x20and\x20rules','New\x20condition','Multiple\x20select','Returns\x20the\x20number\x20of\x20days\x20between\x20two\x20date\x20values.','The\x20number\x20of\x20digits\x20to\x20round\x20to.','78zEpluf','Title','Add\x20Record','Duplicate\x20view','Returns\x20TRUE\x20when\x20any\x20supplied\x20condition\x20evaluates\x20to\x20TRUE.','Returns\x20the\x20year\x20of\x20a\x20date','Decimal\x20places','No\x20provider\x20data\x20available','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20from\x20the\x20\x22{tableName}\x22\x20table.','Returns\x20the\x20serial\x20number\x20for\x20a\x20date\x20from\x20year,\x20month,\x20and\x20day\x20values.','this\x20week','Select\x20or\x20add\x20an\x20option','Add\x20Option','Kanban\x20group','Returns\x20TRUE\x20when\x20all\x20supplied\x20conditions\x20evaluate\x20to\x20TRUE.','Sort','in\x20the\x20past\x207\x20days','Entire\x20Column','this\x20month','No\x20provider\x20group\x20data\x20available','num_chars','Basic','12\x20hour\x20am/pm','Numbering\x20type','Returns\x20the\x20day\x20of\x20a\x20date','Counts\x20numeric\x20values','logical','Use\x20fields\x20like\x20[Amount].\x20A1:B10\x20and\x20single\x20cell\x20references\x20are\x20not\x20allowed.','Format\x20type','Returns\x20the\x20smallest\x20numeric\x20value\x20from\x20the\x20arguments.','Array','Lookup\x20and\x20reference','Medium\x20·\x2030\x20minutes','exports','Tall','This\x20record\x20will\x20be\x20removed.','Previous\x20record','Returns\x20TRUE\x20if\x20all\x20arguments\x20are\x20TRUE','Additional\x20text\x20values\x20or\x20fields.','Returns\x20the\x20current\x20date\x20and\x20time\x20as\x20a\x20date/time\x20serial\x20value.','Set\x20working\x20days','The\x20first\x20number\x20or\x20numeric\x20expression.','Default\x20value','contains','Next\x20record','logical1','format_text','Open','increment','Row\x20Height','Add\x205\x20blank\x20records','Counts\x20arguments\x20that\x20are\x20not\x20empty.','Grid','The\x20month\x20of\x20the\x20date.','Thumb','Reverses\x20a\x20logical\x20value','The\x20text\x20you\x20want\x20to\x20find.','View\x20name','Previous\x20month','The\x20format\x20pattern\x20to\x20apply.','value2','Auto\x20increment','Edit\x20group\x20title','New\x20calendar\x20view','Normal','Thousands\x20separator','Invalid\x20email\x20address','The\x20position\x20of\x20the\x20first\x20character\x20to\x20return.','Close\x20working\x20days\x20settings','The\x20text\x20that\x20replaces\x20the\x20old\x20characters.','Duplicate\x20Field','Person','Scale','No\x20matching\x20groups.','Automatically\x20assigns\x20a\x20unique\x20increasing\x20index\x20starting\x20from\x201\x20when\x20a\x20record\x20is\x20created.\x20Generated\x20values\x20cannot\x20be\x20edited.','Returns\x20the\x20remainder\x20from\x20division','logical_test1','Timeline\x20with\x20start\x20and\x20end\x20dates.','New\x20field','Previous\x20result','Card\x20layout','{name}\x20is\x20provided\x20by\x20the\x20Univer\x20formula\x20engine.\x20Base\x20supports\x20field\x20references\x20such\x20as\x20table[Field]\x20and\x20OtherTable[Field],\x20but\x20does\x20not\x20support\x20A1\x20cells,\x20A1:B10\x20ranges,\x20or\x20spilled\x20array\x20output\x20in\x20Base\x20formula\x20fields.','None','Long\x20·\x2015\x20minutes','Removes\x20extra\x20spaces\x20from\x20text\x20except\x20for\x20single\x20spaces\x20between\x20words.','Kanban','Rounds\x20a\x20number\x20to\x20a\x20specified\x20number\x20of\x20digits.','Date\x20and\x20time','More\x20field\x20actions','Returns\x20the\x20result\x20of\x20a\x20number\x20raised\x20to\x20a\x20power.','This\x20view\x20will\x20be\x20removed.','Mon','The\x20text\x20in\x20which\x20characters\x20are\x20replaced.','logical_test','Additional\x20values,\x20fields,\x20or\x20expressions.','Next\x20result','Add\x20field','Add\x20record','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number.\x20The\x20absolute\x20value\x20is\x20the\x20number\x20without\x20its\x20sign.','Reference\x20data\x20from\x20other\x20tables\x20as\x20options','Flag','Accounting','Allow\x20adding\x20multiple\x20groups\x20in\x20one\x20record','Step','Converts\x20text\x20to\x20lowercase.','text','Add\x20attachment','is\x20not','Returns\x20one\x20value\x20for\x20TRUE\x20and\x20another\x20for\x20FALSE','A\x20value,\x20field\x20reference,\x20table\x20field\x20reference,\x20or\x20expression\x20supported\x20by\x20the\x20Univer\x20formula\x20engine.','Rounds\x20a\x20number\x20down','Short\x20·\x201\x20hour','6918UcoLsF','Extra\x20Tall','The\x20later\x20date.','Dot','24\x20hour','Formats\x20a\x20value\x20as\x20text','Changes\x20TRUE\x20to\x20FALSE\x20and\x20FALSE\x20to\x20TRUE.','Thu','greater\x20than','The\x20number\x20of\x20characters\x20to\x20return.','This\x20table\x20and\x20its\x20records\x20will\x20be\x20removed.','Numbering','View\x20Settings','Rows\x20and\x20fields\x20for\x20detailed\x20editing.','Edit','Returns\x20the\x20year\x20component\x20of\x20a\x20date\x20serial\x20value.','Returns\x20the\x20largest\x20value','The\x20day\x20of\x20the\x20date.','Database','Currency\x20format','Local\x20({timeZone})','Logical','Count\x20records','Converts\x20text\x20to\x20lowercase','Field\x20type','last\x20month','Fields','Returns\x20the\x20smallest\x20value','Move\x20record','Add\x20an\x20option','Cross','Option\x20color','find_text','Returns\x20the\x20largest\x20numeric\x20value\x20from\x20the\x20arguments.','Record\x20detail','Phone\x20Number','Star','digits','Holiday\x20name','Add\x20Field\x20To\x20Group','year','Counts\x20non-empty\x20values','text1','Returns\x20TRUE','Edit\x20Field\x20Description','Function','Please\x20select','Local','Checks\x20whether\x20one\x20or\x20more\x20conditions\x20are\x20met\x20and\x20returns\x20a\x20value\x20matching\x20the\x20first\x20TRUE\x20condition.','{count}\x20empty','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text\x20given\x20a\x20starting\x20position\x20and\x20length.','Quarter','Single\x20select','day','Hide\x20field','Avg\x20{value}','The\x20character\x20position\x20at\x20which\x20to\x20start\x20searching.','{days}{exceptions}','divisor','argument','Fri','{count}\x20conditions\x20applied','Enter\x20a\x20URL\x20(e.g.\x20univer.ai\x20or\x20https://univer.ai/skills).','The\x20first\x20condition\x20to\x20test.','Checks\x20multiple\x20conditions','Delete\x20record','489016asSXtC','Next\x20month','This\x20view\x20needs\x20to\x20be\x20configured','Time','Returns\x20the\x20hour\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Check','Filter\x20by\x20{fieldName}','Target\x20value','Allow\x20negative\x20numbers','start_num','Formats\x20a\x20value\x20as\x20text\x20by\x20applying\x20a\x20number\x20format.','serial_number','Select\x20options','Enter\x20here','Returns\x20the\x20arithmetic\x20mean\x20of\x20the\x20supplied\x20numeric\x20values.','10256QEtQYQ','Additional\x20conditions\x20that\x20evaluate\x20to\x20TRUE\x20or\x20FALSE.','yesterday','Returns\x20the\x20median\x20of\x20the\x20supplied\x20numeric\x20values.','Settings','Unassigned','repeat','Cover','Preview','Rename\x20View','Returns\x20the\x20remainder\x20after\x20a\x20number\x20is\x20divided\x20by\x20a\x20divisor.','Mon-Fri','FILE','Customize\x20working\x20days\x20and\x20days\x20off,\x20and\x20apply\x20them\x20to\x20the\x20current\x20base','Clear\x20content','Custom\x20progress\x20bar','Last\x20->\x20First','Invalid\x20phone\x20number','Customize\x20Field','in\x20the\x20past\x2030\x20days','The\x20earlier\x20date.','Which\x20occurrence\x20of\x20old_text\x20to\x20replace.\x20If\x20omitted,\x20every\x20occurrence\x20is\x20replaced.','Replaces\x20characters\x20by\x20position','within\x20the\x20next\x2030\x20days','Returns\x20the\x20hour\x20of\x20a\x20time','checked','Checks\x20a\x20condition\x20and\x20returns\x20one\x20value\x20when\x20it\x20is\x20TRUE\x20and\x20another\x20value\x20when\x20it\x20is\x20FALSE.','Returns\x20a\x20number\x20raised\x20to\x20a\x20power','The\x20text\x20you\x20want\x20to\x20replace.','103350dbXlBc','Search\x20members','Display\x20color','Custom','The\x20first\x20text\x20value\x20or\x20field.','Legal\x20working\x20days\x20will\x20be\x20available\x20after\x20an\x20external\x20calendar\x20API\x20is\x20connected.','Close\x20record\x20detail','End\x20date','Copy','16siAIGr','Sort\x20from\x20A\x20to\x20Z','1127gAttLh','Select\x20option','\x20·\x20{count}\x20exception{plural}','Edit\x20formula','Email','New\x20gantt\x20view','Currency\x20symbol','Submit','The\x20value,\x20field,\x20or\x20expression\x20to\x20test.','Returns\x20TRUE\x20if\x20any\x20argument\x20is\x20TRUE','Custom\x20pattern','Cube','Sum\x20{value}','bases-ui','Calendar','Working','Customize\x20working\x20days\x20and\x20days\x20off\x20for\x20this\x20Gantt\x20view.\x20If\x20not\x20set,\x20Monday\x20to\x20Friday\x20is\x20used\x20when\x20working-day\x20calculation\x20is\x20enabled.','Removes\x20extra\x20spaces\x20from\x20text','Creates\x20a\x20date\x20value','Compose','The\x20text\x20containing\x20the\x20text\x20to\x20find.','Returns\x20the\x20current\x20date\x20and\x20time','Rounds\x20a\x20number\x20up','is\x20after','Progress','Unique','Checks\x20whether\x20a\x20value\x20is\x20a\x20number','Date\x20format','New\x20kanban\x20view','The\x20number\x20by\x20which\x20you\x20want\x20to\x20divide.','Calculate\x20working\x20days\x20only','Color','Insert','Replaces\x20existing\x20text\x20with\x20new\x20text\x20in\x20a\x20text\x20string.','Date\x20/\x20Time','Failed\x20to\x20attach\x20file','Conditional\x20Coloring','Group','Returns\x20the\x20number\x20of\x20characters\x20in\x20a\x20text\x20string.','No\x20matching\x20members.','Type\x20here','Counts\x20arguments\x20that\x20contain\x20numbers.','number2','Redo','Average','today','old_text','Returns\x20the\x20number\x20of\x20characters\x20in\x20text','27KGICvh','Configure\x20{tableName}','Undo','The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.','Add\x20more\x20records\x20after\x20submission','New\x20gallery\x20view','not\x20contain','Align\x20with\x20records','First\x20->\x20Last','is\x20before'];_0x47fd=function(){return _0x5a7321;};return _0x47fd();}const e={'bases-ui':{'bases-ui':{'menu':{'addRecord':_0x5b09db(0x35e),'addBlankRecord':_0x5b09db(0x32a),'addFiveBlankRecords':_0x5b09db(0x38e),'customizeField':_0x5b09db(0x250),'viewSettings':'View\x20Settings','filter':_0x5b09db(0x320),'sort':_0x5b09db(0x36b),'group':_0x5b09db(0x303),'groupByFields':_0x5b09db(0x327),'rowHeight':_0x5b09db(0x38d),'rowHeightShort':_0x5b09db(0x32d),'rowHeightMedium':_0x5b09db(0x30a),'rowHeightTall':_0x5b09db(0x37e),'rowHeightExtraTall':_0x5b09db(0x1ee),'conditionalColoring':_0x5b09db(0x28a),'conditionalColoringHelp':_0x5b09db(0x2ad),'conditionalColoringSmart':_0x5b09db(0x2cd),'conditionalColor':_0x5b09db(0x285),'conditionalCustomColor':_0x5b09db(0x25e),'conditionalTargetCell':_0x5b09db(0x315),'conditionalTargetRow':_0x5b09db(0x2e5),'conditionalTargetColumn':_0x5b09db(0x36d),'conditionalEnterValue':_0x5b09db(0x23c),'conditionalExactDate':_0x5b09db(0x32c),'conditionalToday':_0x5b09db(0x293),'conditionalTomorrow':'tomorrow','conditionalYesterday':_0x5b09db(0x240),'conditionalThisWeek':_0x5b09db(0x366),'conditionalLastWeek':_0x5b09db(0x336),'conditionalThisMonth':_0x5b09db(0x36e),'conditionalLastMonth':_0x5b09db(0x206),'conditionalPast7':_0x5b09db(0x36c),'conditionalNext7':'within\x20the\x20next\x207\x20days','conditionalPast30':_0x5b09db(0x251),'conditionalNext30':_0x5b09db(0x255),'conditionalChecked':_0x5b09db(0x257),'conditionalUnchecked':_0x5b09db(0x2d7),'addField':_0x5b09db(0x1dd),'undo':_0x5b09db(0x298),'redo':_0x5b09db(0x291)},'recordDetail':{'title':_0x5b09db(0x20f),'close':_0x5b09db(0x261),'open':_0x5b09db(0x38b),'delete':_0x5b09db(0x22e),'deleteConfirmTitle':_0x5b09db(0x352),'deleteConfirmDescription':_0x5b09db(0x37f),'submit':_0x5b09db(0x26d),'addMoreAfterSubmission':_0x5b09db(0x29a)},'gridContext':{'insert':_0x5b09db(0x286),'above':_0x5b09db(0x2d9),'below':_0x5b09db(0x2bf),'openRecord':'Open\x20record','clearContent':_0x5b09db(0x24c),'deleteRecord':_0x5b09db(0x22e),'deleteRecords':_0x5b09db(0x311)},'common':{'apply':_0x5b09db(0x2ae),'cancel':_0x5b09db(0x354),'clear':_0x5b09db(0x2d5),'confirm':'Confirm','delete':_0x5b09db(0x330),'save':_0x5b09db(0x2c3),'search':'Search','searchPrevious':_0x5b09db(0x1cc),'searchNext':_0x5b09db(0x1dc),'searchClose':_0x5b09db(0x2ab),'value':'Value','newCondition':_0x5b09db(0x358),'newBadge':_0x5b09db(0x34d)},'footerStat':{'none':_0x5b09db(0x1cf),'countOption':_0x5b09db(0x203),'filledOption':_0x5b09db(0x32e),'emptyOption':'Empty','uniqueOption':_0x5b09db(0x27f),'sumOption':'Sum','averageOption':_0x5b09db(0x292),'minOption':'Min','maxOption':'Max','count':'{count}\x20records','filled':'{count}\x20filled','empty':_0x5b09db(0x21e),'unique':_0x5b09db(0x31b),'sum':_0x5b09db(0x272),'average':_0x5b09db(0x224),'min':_0x5b09db(0x2c7),'max':'Max\x20{value}'},'confirmDelete':{'tableTitle':'Delete\x20this\x20table?','tableDescription':_0x5b09db(0x1f7),'viewTitle':_0x5b09db(0x356),'viewDescription':_0x5b09db(0x1d7),'fieldTitle':_0x5b09db(0x319),'fieldDescription':_0x5b09db(0x30e)},'fieldConfig':{'fieldTitle':'Field\x20title','fieldTitlePlaceholder':'Enter\x20a\x20field\x20title','fieldType':_0x5b09db(0x205),'fieldTypeSectionBasic':_0x5b09db(0x371),'fieldTypeSectionBusiness':'Business','fieldTypeSectionAdvanced':_0x5b09db(0x2ff),'defaultValue':_0x5b09db(0x386),'newField':_0x5b09db(0x1cb),'defaultSettingsReady':_0x5b09db(0x341),'numberFormat':_0x5b09db(0x31f),'currencyFormat':_0x5b09db(0x200),'dateFormat':_0x5b09db(0x281),'dateMonthNameExample':_0x5b09db(0x30f),'decimalPlaces':_0x5b09db(0x362),'example':_0x5b09db(0x2de),'icon':'Icon','scale':_0x5b09db(0x3a4),'options':'Options','referenceOptions':_0x5b09db(0x2a1),'addOption':_0x5b09db(0x368),'addOptionPlaceholder':_0x5b09db(0x20a),'removeOption':_0x5b09db(0x310),'selectOption':_0x5b09db(0x267),'option':_0x5b09db(0x305),'numberingType':_0x5b09db(0x373),'autoIncrement':_0x5b09db(0x399),'custom':_0x5b09db(0x25e),'customizeNumbering':_0x5b09db(0x357),'preview':_0x5b09db(0x246),'incremental':'Incremental','digits':_0x5b09db(0x212),'start':'Start','step':_0x5b09db(0x1e4),'dateCreated':'Date\x20Created','customText':_0x5b09db(0x2b6),'lockedField':_0x5b09db(0x313),'showField':'Show\x20field','hideField':_0x5b09db(0x223),'moreFieldActions':_0x5b09db(0x1d5),'edit':_0x5b09db(0x1fb),'addFieldToGroup':_0x5b09db(0x214),'editField':_0x5b09db(0x2b5),'editFieldDescription':_0x5b09db(0x219),'duplicateField':_0x5b09db(0x3a2),'insertLeft':'Insert\x20Left','insertRight':'Insert\x20Right','freezeToField':'Freeze\x20up\x20to\x20This\x20Field','sortAsc':_0x5b09db(0x265),'sortDesc':'Sort\x20from\x20Z\x20to\x20A','groupByField':_0x5b09db(0x349),'filterByField':_0x5b09db(0x235),'createKanbanWithField':'Create\x20Kanban\x20with\x20{fieldName}','deleteField':_0x5b09db(0x321),'referenceOptionsHelp':_0x5b09db(0x1e0),'allowMultipleMembers':'Allow\x20adding\x20multiple\x20members\x20in\x20one\x20record','allowMultipleGroups':_0x5b09db(0x1e3),'defaultProviderMock':_0x5b09db(0x2c1),'defaultProviderExternal':_0x5b09db(0x2b0),'linkPlaceholder':_0x5b09db(0x22b),'phonePlaceholder':'Enter\x20a\x20phone\x20number','currencySymbol':_0x5b09db(0x26c),'thousandsSeparator':_0x5b09db(0x39d),'showThousandsSeparator':'Show\x20thousands\x20separator','largeNumberAbbreviation':_0x5b09db(0x2fc),'allowNegativeNumbers':_0x5b09db(0x237),'includeTime':'Include\x20time','timeFormat':_0x5b09db(0x348),'hour24':_0x5b09db(0x1f1),'hour12':_0x5b09db(0x372),'none':_0x5b09db(0x1cf),'recordCreationTime':'Record\x20Creation\x20Time','selectSpecificDate':'Select\x20specific\x20date','percent':_0x5b09db(0x350),'number':_0x5b09db(0x355),'color':_0x5b09db(0x285),'style':'Style','progressColor':'Progress\x20color\x20{color}','customProgressBar':_0x5b09db(0x24d),'startValue':_0x5b09db(0x31e),'targetValue':_0x5b09db(0x236),'searchGroups':'Search\x20groups','selectGroups':'Select\x20groups','noProviderGroupData':_0x5b09db(0x36f),'noMatchingGroups':_0x5b09db(0x1c6),'searchMembers':_0x5b09db(0x25c),'selectMembers':'Select\x20members','noProviderData':_0x5b09db(0x363),'noMatchingMembers':_0x5b09db(0x28d),'noFormulaConfigured':'No\x20formula\x20configured','editFormula':_0x5b09db(0x269),'closeFormulaEditor':'Close\x20formula\x20editor','formulaHint':_0x5b09db(0x377),'formulaReferenceError':_0x5b09db(0x317),'formulaTables':_0x5b09db(0x338),'formulaFields':_0x5b09db(0x207),'formulaFunctions':'Functions','formulaFunction':_0x5b09db(0x21a),'formulaParameters':_0x5b09db(0x2d2),'formulaOptional':_0x5b09db(0x2f2),'formulaRepeat':_0x5b09db(0x244),'formulaExample':_0x5b09db(0x2df),'currentTable':_0x5b09db(0x316),'currentTableField':_0x5b09db(0x33c),'fieldFromTable':_0x5b09db(0x31a),'referenceCurrentField':'Reference\x20the\x20\x22{fieldName}\x22\x20field\x20in\x20the\x20current\x20Base\x20table.\x20It\x20will\x20be\x20saved\x20as\x20table[{fieldName}]\x20for\x20the\x20formula\x20engine.','referenceTableField':_0x5b09db(0x364),'fieldNameColumn':_0x5b09db(0x329),'fieldTypeColumn':'Type','insertColumn':_0x5b09db(0x286),'insert':_0x5b09db(0x286),'formulaNumberFormatSheetPattern':_0x5b09db(0x30c),'formulaFormatType':_0x5b09db(0x378),'formulaCustomPattern':_0x5b09db(0x270),'formulaFormatGeneral':_0x5b09db(0x340),'formulaFormatNumber':_0x5b09db(0x355),'formulaFormatCurrency':_0x5b09db(0x2e1),'formulaFormatAccounting':_0x5b09db(0x1e2),'formulaFormatPercent':_0x5b09db(0x350),'formulaFormatDateTime':_0x5b09db(0x288),'addDescriptionPlaceholder':_0x5b09db(0x353),'numberingDescription':_0x5b09db(0x1c7),'optionColor':_0x5b09db(0x20c),'separatorLocal':_0x5b09db(0x21c),'separatorCommaPeriod':_0x5b09db(0x2f7),'separatorPeriodComma':_0x5b09db(0x2e6),'separatorSpaceComma':_0x5b09db(0x2d0),'separatorSpacePeriod':'Space,\x20period','direction':'Direction','groupFirstToLast':_0x5b09db(0x29e),'groupLastToFirst':_0x5b09db(0x24e),'checkboxIconCheck':_0x5b09db(0x234),'checkboxIconCross':_0x5b09db(0x20b),'checkboxIconStar':_0x5b09db(0x211),'checkboxIconHeart':_0x5b09db(0x2f1),'checkboxIconThumb':'Thumb','checkboxIconFlag':_0x5b09db(0x1e1),'checkboxIconDot':_0x5b09db(0x1f0),'ratingIconStar':_0x5b09db(0x211),'ratingIconHeart':_0x5b09db(0x2f1),'ratingIconThumb':_0x5b09db(0x392),'ratingIconFire':'Fire','ratingIconSmile':'Smile','ratingIconLightning':'Lightning','ratingIconMedal':_0x5b09db(0x2c6),'increment':_0x5b09db(0x38c),'decrement':'decrement'},'cellEditor':{'done':_0x5b09db(0x2a3),'text':_0x5b09db(0x34a),'displayText':_0x5b09db(0x2ba),'url':_0x5b09db(0x2c4),'linkPlaceholder':'univer.ai\x20or\x20https://univer.ai','attachments':'Attachments','attachFile':_0x5b09db(0x31c),'failedToAttachFile':_0x5b09db(0x289),'file':_0x5b09db(0x24a),'invalidEmail':_0x5b09db(0x39e),'invalidPhone':_0x5b09db(0x24f),'closePreview':'Close\x20preview','searchOption':_0x5b09db(0x367),'selectOption':_0x5b09db(0x267),'selectOptions':_0x5b09db(0x23b),'previousMonth':_0x5b09db(0x396),'nextMonth':_0x5b09db(0x230),'time':_0x5b09db(0x232)},'recordDetailField':{'previousRecord':_0x5b09db(0x380),'nextRecord':_0x5b09db(0x388),'pleaseSelect':_0x5b09db(0x21b),'addAttachment':_0x5b09db(0x1e7),'failedToAttachFile':_0x5b09db(0x289),'closePreview':'Close\x20preview','typeHere':_0x5b09db(0x28e),'empty':_0x5b09db(0x2e2),'unassigned':_0x5b09db(0x243),'editField':_0x5b09db(0x339),'noVisibleFields':_0x5b09db(0x2d1)},'fieldTypes':{'text':_0x5b09db(0x34a),'singleSelect':_0x5b09db(0x221),'multiSelect':_0x5b09db(0x359),'person':_0x5b09db(0x3a3),'group':_0x5b09db(0x28b),'date':_0x5b09db(0x2fd),'attachment':'Attachment','number':'Number','checkbox':_0x5b09db(0x2b9),'link':'URL','formula':_0x5b09db(0x312),'numbering':_0x5b09db(0x1f8),'phone':_0x5b09db(0x210),'email':_0x5b09db(0x26a),'progress':_0x5b09db(0x27e),'currency':_0x5b09db(0x2e1),'rating':_0x5b09db(0x2d4),'createdBy':'Created\x20By','updatedBy':_0x5b09db(0x326),'createdAt':_0x5b09db(0x2af),'updatedAt':'Last\x20Modified\x20Date'},'viewMenus':{'customizeKanban':_0x5b09db(0x2dd),'customizeCard':'Customize\x20Card','eventSettings':'Event\x20Settings','calendarViewSettings':_0x5b09db(0x2c8),'calendarViewSettingsTitle':'Calendar\x20View\x20Settings','ganttViewSettings':_0x5b09db(0x2d3),'fieldsCount':'{count}\x20fields','cover':_0x5b09db(0x245),'cardLayout':_0x5b09db(0x1cd),'normal':_0x5b09db(0x39c),'normalDescription':'Title\x20left,\x20fields\x20right','compose':_0x5b09db(0x279),'composeDescription':_0x5b09db(0x2be),'cardSize':_0x5b09db(0x302),'small':'Small','medium':_0x5b09db(0x30a),'large':'Large','showFieldNames':'Show\x20field\x20names','startDate':_0x5b09db(0x2b8),'endDate':_0x5b09db(0x262),'title':_0x5b09db(0x35d),'timeslotSize':'Timeslot\x20size','timeslotShort':_0x5b09db(0x1ec),'timeslotMedium':_0x5b09db(0x37c),'timeslotLong':_0x5b09db(0x1d0),'displayColor':_0x5b09db(0x25d),'customizeColor':_0x5b09db(0x30d),'alignWithRecords':_0x5b09db(0x29d),'timeZone':_0x5b09db(0x2f9),'localTimeZone':_0x5b09db(0x201),'conditionalColor':_0x5b09db(0x33a),'conditionsApplied':_0x5b09db(0x22a),'addCondition':_0x5b09db(0x2e0),'calculateWorkingDaysOnly':_0x5b09db(0x284),'customWorkingDays':_0x5b09db(0x34c),'customWorkingDaysHelp':_0x5b09db(0x276),'notSet':_0x5b09db(0x2cc),'settings':_0x5b09db(0x242),'setWorkingDays':_0x5b09db(0x384),'setWorkingDaysDescription':_0x5b09db(0x24b),'closeWorkingDaysSettings':_0x5b09db(0x3a0),'addWorkingDays':_0x5b09db(0x2fa),'holidayName':_0x5b09db(0x213),'dayOff':'Day\x20off','working':_0x5b09db(0x275),'add':_0x5b09db(0x2ec),'removeWorkingDayException':'Remove\x20working\x20day\x20exception','legalWorkingDays':'Legal\x20working\x20days','legalWorkingDaysHelp':_0x5b09db(0x260),'mon':_0x5b09db(0x1d8),'tue':_0x5b09db(0x308),'wed':'Wed','thu':_0x5b09db(0x1f4),'fri':_0x5b09db(0x229),'sat':_0x5b09db(0x2a5),'sun':_0x5b09db(0x2d6),'monFri':_0x5b09db(0x249),'days':_0x5b09db(0x2d8),'workingDaysSummary':_0x5b09db(0x226),'exceptionsSummary':_0x5b09db(0x268),'calendarColor':'Calendar\x20color','color':_0x5b09db(0x285),'editGroupTitle':_0x5b09db(0x39a),'groupByFieldFallback':'Group\x20by\x20field','kanbanGroup':_0x5b09db(0x369),'required':_0x5b09db(0x301),'kanbanGroupHelp':_0x5b09db(0x2b2)},'operators':{'is':'is','isNot':_0x5b09db(0x1e8),'contains':_0x5b09db(0x387),'notContains':_0x5b09db(0x29c),'isEmpty':_0x5b09db(0x2a9),'isNotEmpty':_0x5b09db(0x324),'greaterThan':_0x5b09db(0x1f5),'lessThan':'less\x20than','before':_0x5b09db(0x29f),'after':_0x5b09db(0x27d)},'viewSettings':{'title':_0x5b09db(0x1f9),'viewName':_0x5b09db(0x395),'addView':_0x5b09db(0x2ea),'createViewTitle':_0x5b09db(0x306),'createViewDescription':_0x5b09db(0x346),'setAsFirstTab':_0x5b09db(0x2cf),'renameView':_0x5b09db(0x247),'duplicateView':_0x5b09db(0x35f),'configureView':'Configure\x20View','deleteView':_0x5b09db(0x307),'newGridView':'New\x20grid\x20view','newKanbanView':_0x5b09db(0x282),'newCalendarView':_0x5b09db(0x39b),'newGanttView':_0x5b09db(0x26b),'newGalleryView':_0x5b09db(0x29b),'gridView':_0x5b09db(0x390),'gridViewDescription':_0x5b09db(0x1fa),'kanbanView':_0x5b09db(0x1d2),'kanbanViewDescription':_0x5b09db(0x332),'calendarView':_0x5b09db(0x274),'calendarViewDescription':_0x5b09db(0x31d),'ganttView':_0x5b09db(0x323),'ganttViewDescription':_0x5b09db(0x1ca),'galleryView':'Gallery','galleryViewDescription':'Visual\x20cards\x20for\x20browsing\x20records.','copySuffix':_0x5b09db(0x263)},'tableSidebar':{'searchTables':'Search\x20tables','addTable':'Add\x20table','newTable':_0x5b09db(0x34d),'collapse':_0x5b09db(0x2da),'expand':_0x5b09db(0x2c9),'resizeTableSidebar':'Resize\x20table\x20sidebar','configureTable':_0x5b09db(0x297),'renameTable':_0x5b09db(0x2b7),'duplicateTable':'Duplicate\x20Table','deleteTable':'Delete\x20Table','defaultTableName':'Table\x20{index}'},'footer':{'record':_0x5b09db(0x2e8),'records':_0x5b09db(0x2aa)},'canvas':{'addRecord':_0x5b09db(0x1de),'attachmentDropLabel':_0x5b09db(0x331),'calculate':'Calculate','day':_0x5b09db(0x304),'fields':_0x5b09db(0x207),'month':'Month','more':_0x5b09db(0x2eb),'moveRecord':_0x5b09db(0x209),'quarter':_0x5b09db(0x220),'today':'Today','week':'Week','year':'Year'},'empty':{'value':_0x5b09db(0x2e2),'noRecords':'No\x20records','invalidView':_0x5b09db(0x231)},'formula':{'categories':{'math':'Math','statistical':_0x5b09db(0x351),'text':_0x5b09db(0x34a),'logical':_0x5b09db(0x202),'date':_0x5b09db(0x1d4),'information':_0x5b09db(0x2f5),'array':_0x5b09db(0x37a),'compatibility':'Compatibility','cube':_0x5b09db(0x271),'database':_0x5b09db(0x1ff),'engineering':_0x5b09db(0x322),'financial':'Financial','lookup':_0x5b09db(0x37b),'web':_0x5b09db(0x2ed)},'functions':{'SUM':{'abstract':_0x5b09db(0x345),'description':'Adds\x20all\x20numbers,\x20numeric\x20fields,\x20or\x20numeric\x20expressions\x20supplied\x20as\x20arguments.','parameters':{'number1':{'name':_0x5b09db(0x32b),'detail':_0x5b09db(0x385)},'number2':{'name':_0x5b09db(0x290),'detail':_0x5b09db(0x333)}}},'AVERAGE':{'abstract':_0x5b09db(0x2a4),'description':_0x5b09db(0x23d),'parameters':{'number1':{'name':_0x5b09db(0x32b),'detail':'The\x20first\x20number\x20or\x20numeric\x20expression.'},'number2':{'name':_0x5b09db(0x290),'detail':_0x5b09db(0x333)}}},'MIN':{'abstract':_0x5b09db(0x208),'description':_0x5b09db(0x379),'parameters':{'number1':{'name':_0x5b09db(0x32b),'detail':_0x5b09db(0x385)},'number2':{'name':_0x5b09db(0x290),'detail':_0x5b09db(0x333)}}},'MAX':{'abstract':_0x5b09db(0x1fd),'description':_0x5b09db(0x20e),'parameters':{'number1':{'name':_0x5b09db(0x32b),'detail':'The\x20first\x20number\x20or\x20numeric\x20expression.'},'number2':{'name':'number2','detail':_0x5b09db(0x333)}}},'COUNT':{'abstract':_0x5b09db(0x375),'description':_0x5b09db(0x28f),'parameters':{'value1':{'name':_0x5b09db(0x2a7),'detail':'The\x20first\x20value,\x20field,\x20or\x20expression.'},'value2':{'name':'value2','detail':_0x5b09db(0x1db)}}},'COUNTA':{'abstract':_0x5b09db(0x216),'description':_0x5b09db(0x38f),'parameters':{'value1':{'name':_0x5b09db(0x2a7),'detail':_0x5b09db(0x325)},'value2':{'name':_0x5b09db(0x398),'detail':'Additional\x20values,\x20fields,\x20or\x20expressions.'}}},'MEDIAN':{'abstract':_0x5b09db(0x2fe),'description':_0x5b09db(0x241),'parameters':{'number1':{'name':'number1','detail':_0x5b09db(0x385)},'number2':{'name':_0x5b09db(0x290),'detail':_0x5b09db(0x333)}}},'ROUND':{'abstract':'Rounds\x20a\x20number','description':_0x5b09db(0x1d3),'parameters':{'number':{'name':'number','detail':_0x5b09db(0x299)},'num_digits':{'name':'num_digits','detail':_0x5b09db(0x35b)}}},'ROUNDUP':{'abstract':_0x5b09db(0x27c),'description':_0x5b09db(0x314),'parameters':{'number':{'name':_0x5b09db(0x2f8),'detail':_0x5b09db(0x299)},'num_digits':{'name':_0x5b09db(0x2e7),'detail':_0x5b09db(0x35b)}}},'ROUNDDOWN':{'abstract':_0x5b09db(0x1eb),'description':_0x5b09db(0x33f),'parameters':{'number':{'name':_0x5b09db(0x2f8),'detail':_0x5b09db(0x299)},'num_digits':{'name':'num_digits','detail':_0x5b09db(0x35b)}}},'ABS':{'abstract':'Returns\x20the\x20absolute\x20value\x20of\x20a\x20number','description':_0x5b09db(0x1df),'parameters':{'number':{'name':_0x5b09db(0x2f8),'detail':_0x5b09db(0x299)}}},'INT':{'abstract':'Rounds\x20a\x20number\x20down\x20to\x20an\x20integer','description':_0x5b09db(0x2e3),'parameters':{'number':{'name':'number','detail':_0x5b09db(0x299)}}},'MOD':{'abstract':_0x5b09db(0x1c8),'description':_0x5b09db(0x248),'parameters':{'number':{'name':_0x5b09db(0x2f8),'detail':_0x5b09db(0x299)},'divisor':{'name':_0x5b09db(0x227),'detail':_0x5b09db(0x283)}}},'POWER':{'abstract':_0x5b09db(0x259),'description':_0x5b09db(0x1d6),'parameters':{'number':{'name':_0x5b09db(0x2f8),'detail':_0x5b09db(0x299)},'power':{'name':_0x5b09db(0x2e4),'detail':_0x5b09db(0x2fb)}}},'SQRT':{'abstract':'Returns\x20a\x20positive\x20square\x20root','description':'Returns\x20the\x20positive\x20square\x20root\x20of\x20a\x20number.','parameters':{'number':{'name':_0x5b09db(0x2f8),'detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'}}},'PRODUCT':{'abstract':_0x5b09db(0x30b),'description':'Multiplies\x20all\x20numbers\x20supplied\x20as\x20arguments.','parameters':{'number1':{'name':_0x5b09db(0x32b),'detail':'The\x20first\x20number\x20or\x20numeric\x20expression.'},'number2':{'name':_0x5b09db(0x290),'detail':_0x5b09db(0x333)}}},'IF':{'abstract':_0x5b09db(0x1e9),'description':_0x5b09db(0x258),'parameters':{'logical_test':{'name':_0x5b09db(0x1da),'detail':'The\x20condition\x20you\x20want\x20to\x20test.'},'value_if_true':{'name':'value_if_true','detail':_0x5b09db(0x300)},'value_if_false':{'name':'value_if_false','detail':'The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20FALSE.'}}},'IFS':{'abstract':_0x5b09db(0x22d),'description':_0x5b09db(0x21d),'parameters':{'logical_test1':{'name':_0x5b09db(0x1c9),'detail':_0x5b09db(0x22c)},'value_if_true1':{'name':_0x5b09db(0x34b),'detail':'The\x20value\x20returned\x20when\x20the\x20first\x20condition\x20is\x20TRUE.'},'logical_test2':{'name':'logical_test2','detail':_0x5b09db(0x2c5)}}},'IFERROR':{'abstract':_0x5b09db(0x2b1),'description':'Returns\x20a\x20fallback\x20value\x20if\x20the\x20expression\x20evaluates\x20to\x20an\x20error;\x20otherwise\x20returns\x20the\x20expression\x20result.','parameters':{'value':{'name':'value','detail':_0x5b09db(0x26e)},'value_if_error':{'name':'value_if_error','detail':_0x5b09db(0x2c2)}}},'AND':{'abstract':_0x5b09db(0x381),'description':_0x5b09db(0x36a),'parameters':{'logical1':{'name':_0x5b09db(0x389),'detail':_0x5b09db(0x33b)},'logical2':{'name':_0x5b09db(0x2a6),'detail':_0x5b09db(0x23f)}}},'OR':{'abstract':_0x5b09db(0x26f),'description':_0x5b09db(0x360),'parameters':{'logical1':{'name':_0x5b09db(0x389),'detail':_0x5b09db(0x33b)},'logical2':{'name':_0x5b09db(0x2a6),'detail':_0x5b09db(0x23f)}}},'NOT':{'abstract':_0x5b09db(0x393),'description':_0x5b09db(0x1f3),'parameters':{'logical':{'name':_0x5b09db(0x376),'detail':'A\x20value\x20or\x20expression\x20that\x20can\x20be\x20evaluated\x20as\x20TRUE\x20or\x20FALSE.'}}},'TRUE':{'abstract':_0x5b09db(0x218),'description':_0x5b09db(0x2f4),'parameters':{}},'FALSE':{'abstract':'Returns\x20FALSE','description':_0x5b09db(0x328),'parameters':{}},'CONCAT':{'abstract':_0x5b09db(0x337),'description':_0x5b09db(0x2db),'parameters':{'text1':{'name':_0x5b09db(0x217),'detail':'The\x20first\x20text\x20value\x20or\x20field.'},'text2':{'name':_0x5b09db(0x344),'detail':_0x5b09db(0x382)}}},'TEXTJOIN':{'abstract':_0x5b09db(0x32f),'description':_0x5b09db(0x2bb),'parameters':{'delimiter':{'name':'delimiter','detail':_0x5b09db(0x2bd)},'ignore_empty':{'name':_0x5b09db(0x2c0),'detail':'Whether\x20empty\x20values\x20should\x20be\x20ignored.'},'text1':{'name':'text1','detail':_0x5b09db(0x25f)},'text2':{'name':'text2','detail':_0x5b09db(0x382)}}},'LEN':{'abstract':_0x5b09db(0x295),'description':_0x5b09db(0x28c),'parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'}}},'LEFT':{'abstract':'Returns\x20characters\x20from\x20the\x20start\x20of\x20text','description':_0x5b09db(0x342),'parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'},'num_chars':{'name':_0x5b09db(0x370),'detail':_0x5b09db(0x1f6)}}},'RIGHT':{'abstract':_0x5b09db(0x2b4),'description':'Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20end\x20of\x20text.','parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'},'num_chars':{'name':_0x5b09db(0x370),'detail':_0x5b09db(0x1f6)}}},'MID':{'abstract':'Returns\x20characters\x20from\x20the\x20middle\x20of\x20text','description':_0x5b09db(0x21f),'parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':_0x5b09db(0x2a0)},'start_num':{'name':_0x5b09db(0x238),'detail':_0x5b09db(0x39f)},'num_chars':{'name':_0x5b09db(0x370),'detail':_0x5b09db(0x1f6)}}},'UPPER':{'abstract':'Converts\x20text\x20to\x20uppercase','description':'Converts\x20text\x20to\x20uppercase.','parameters':{'text':{'name':'text','detail':_0x5b09db(0x2a0)}}},'LOWER':{'abstract':_0x5b09db(0x204),'description':_0x5b09db(0x1e5),'parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':_0x5b09db(0x2a0)}}},'TRIM':{'abstract':_0x5b09db(0x277),'description':_0x5b09db(0x1d1),'parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':_0x5b09db(0x2a0)}}},'FIND':{'abstract':'Finds\x20text\x20within\x20text','description':'Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20FIND\x20is\x20case-sensitive.','parameters':{'find_text':{'name':_0x5b09db(0x20d),'detail':_0x5b09db(0x394)},'within_text':{'name':_0x5b09db(0x34e),'detail':_0x5b09db(0x27a)},'start_num':{'name':_0x5b09db(0x238),'detail':_0x5b09db(0x225)}}},'SEARCH':{'abstract':_0x5b09db(0x2e9),'description':'Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20SEARCH\x20is\x20not\x20case-sensitive.','parameters':{'find_text':{'name':_0x5b09db(0x20d),'detail':_0x5b09db(0x394)},'within_text':{'name':'within_text','detail':'The\x20text\x20containing\x20the\x20text\x20to\x20find.'},'start_num':{'name':'start_num','detail':_0x5b09db(0x225)}}},'SUBSTITUTE':{'abstract':'Substitutes\x20new\x20text\x20for\x20old\x20text','description':_0x5b09db(0x287),'parameters':{'text':{'name':_0x5b09db(0x1e6),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'},'old_text':{'name':_0x5b09db(0x294),'detail':_0x5b09db(0x25a)},'new_text':{'name':_0x5b09db(0x2ca),'detail':_0x5b09db(0x2a8)},'instance_num':{'name':'instance_num','detail':_0x5b09db(0x253)}}},'REPLACE':{'abstract':_0x5b09db(0x254),'description':_0x5b09db(0x34f),'parameters':{'old_text':{'name':'old_text','detail':_0x5b09db(0x1d9)},'start_num':{'name':_0x5b09db(0x238),'detail':'The\x20position\x20of\x20the\x20first\x20character\x20to\x20replace.'},'num_chars':{'name':_0x5b09db(0x370),'detail':_0x5b09db(0x33e)},'new_text':{'name':'new_text','detail':_0x5b09db(0x3a1)}}},'TEXT':{'abstract':_0x5b09db(0x1f2),'description':_0x5b09db(0x239),'parameters':{'value':{'name':_0x5b09db(0x335),'detail':_0x5b09db(0x26e)},'format_text':{'name':_0x5b09db(0x38a),'detail':_0x5b09db(0x397)}}},'VALUE':{'abstract':_0x5b09db(0x318),'description':'Converts\x20text\x20that\x20represents\x20a\x20number\x20to\x20a\x20number.','parameters':{'text':{'name':'text','detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'}}},'TODAY':{'abstract':'Returns\x20the\x20current\x20date','description':'Returns\x20the\x20current\x20date\x20as\x20a\x20date\x20serial\x20value.','parameters':{}},'NOW':{'abstract':_0x5b09db(0x27b),'description':_0x5b09db(0x383),'parameters':{}},'DATE':{'abstract':_0x5b09db(0x278),'description':_0x5b09db(0x365),'parameters':{'year':{'name':_0x5b09db(0x215),'detail':_0x5b09db(0x2ac)},'month':{'name':_0x5b09db(0x2bc),'detail':_0x5b09db(0x391)},'day':{'name':_0x5b09db(0x222),'detail':_0x5b09db(0x1fe)}}},'YEAR':{'abstract':_0x5b09db(0x361),'description':_0x5b09db(0x1fc),'parameters':{'serialNumber':{'name':_0x5b09db(0x23a),'detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'MONTH':{'abstract':_0x5b09db(0x2a2),'description':_0x5b09db(0x2ce),'parameters':{'serialNumber':{'name':_0x5b09db(0x23a),'detail':_0x5b09db(0x2b3)}}},'DAY':{'abstract':_0x5b09db(0x374),'description':'Returns\x20the\x20day\x20component\x20of\x20a\x20date\x20serial\x20value.','parameters':{'serialNumber':{'name':'serial_number','detail':_0x5b09db(0x2b3)}}},'HOUR':{'abstract':_0x5b09db(0x256),'description':_0x5b09db(0x233),'parameters':{'serialNumber':{'name':'serial_number','detail':_0x5b09db(0x2b3)}}},'MINUTE':{'abstract':'Returns\x20the\x20minute\x20of\x20a\x20time','description':_0x5b09db(0x2ef),'parameters':{'serialNumber':{'name':_0x5b09db(0x23a),'detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'SECOND':{'abstract':'Returns\x20the\x20second\x20of\x20a\x20time','description':_0x5b09db(0x2ee),'parameters':{'serialNumber':{'name':_0x5b09db(0x23a),'detail':_0x5b09db(0x2b3)}}},'DAYS':{'abstract':_0x5b09db(0x334),'description':_0x5b09db(0x35a),'parameters':{'end_date':{'name':_0x5b09db(0x33d),'detail':_0x5b09db(0x1ef)},'start_date':{'name':_0x5b09db(0x343),'detail':_0x5b09db(0x252)}}},'ISBLANK':{'abstract':'Checks\x20whether\x20a\x20value\x20is\x20empty','description':'Returns\x20TRUE\x20when\x20the\x20value\x20is\x20empty.','parameters':{'value':{'name':'value','detail':_0x5b09db(0x26e)}}},'ISNUMBER':{'abstract':_0x5b09db(0x280),'description':_0x5b09db(0x2dc),'parameters':{'value':{'name':_0x5b09db(0x335),'detail':_0x5b09db(0x26e)}}},'ISTEXT':{'abstract':'Checks\x20whether\x20a\x20value\x20is\x20text','description':'Returns\x20TRUE\x20when\x20the\x20value\x20is\x20text.','parameters':{'value':{'name':_0x5b09db(0x335),'detail':_0x5b09db(0x26e)}}},'ISERROR':{'abstract':'Checks\x20whether\x20a\x20value\x20is\x20an\x20error','description':_0x5b09db(0x2f0),'parameters':{'value':{'name':'value','detail':'The\x20value,\x20field,\x20or\x20expression\x20to\x20test.'}}}},'generic':{'engineAbstract':_0x5b09db(0x347),'engineDescription':_0x5b09db(0x1ce),'argument':{'name':_0x5b09db(0x228),'detail':_0x5b09db(0x1ea)}}}}}[_0x5b09db(0x273)]};module[_0x5b09db(0x37d)]=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const _0x518fdb=_0x28be;function _0x2142(){const _0x54fd95=['New\x20kanban\x20view','24\x20hour','Changes\x20TRUE\x20to\x20FALSE\x20and\x20FALSE\x20to\x20TRUE.','Rounds\x20a\x20number\x20down\x20to\x20the\x20nearest\x20integer.','Insert','Select\x20options','Delete\x20this\x20table?','Event\x20Settings','Large','in\x20the\x20past\x207\x20days','144462SAkJxe','today','Group','Unassigned','Max\x20{value}','Row\x20Height','Percent','Returns\x20the\x20smallest\x20numeric\x20value\x20from\x20the\x20arguments.','Returns\x20the\x20current\x20date','Calculate\x20working\x20days\x20only','Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20end\x20of\x20text.','Duplicate\x20view','The\x20condition\x20you\x20want\x20to\x20test.','Database','Reference\x20data\x20from\x20other\x20tables\x20as\x20options','The\x20month\x20of\x20the\x20date.','Expand','Select\x20option','Compatibility','Short\x20·\x201\x20hour','Add\x20Option','Returns\x20the\x20number\x20of\x20days\x20between\x20two\x20date\x20values.','None','End\x20date','The\x20character\x20position\x20at\x20which\x20to\x20start\x20searching.','The\x20position\x20of\x20the\x20first\x20character\x20to\x20replace.','160VGCPHt','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text','Converts\x20text\x20to\x20uppercase.','The\x20later\x20date.','Add\x20attachment','num_chars','Legal\x20working\x20days','The\x20number\x20of\x20characters\x20to\x20return.','Checks\x20whether\x20one\x20or\x20more\x20conditions\x20are\x20met\x20and\x20returns\x20a\x20value\x20matching\x20the\x20first\x20TRUE\x20condition.','Time\x20zone','Returns\x20the\x20hour\x20of\x20a\x20time','Text','Date','Field\x20type','Delete\x20view','Attach\x20file','Day','end_date','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20a\x20number.','bases-ui','Start\x20date','Returns\x20the\x20month\x20component\x20of\x20a\x20date\x20serial\x20value.','new_text','Filter','Sheet\x20pattern','No\x20matching\x20groups.','number','Average','Card\x20size','Clear','Returns\x20the\x20logical\x20value\x20TRUE.','value','Period,\x20comma','Duplicate\x20Field','Record\x20detail','value_if_true','Add\x20Field\x20To\x20Group','exact\x20date','Replaces\x20existing\x20text\x20with\x20new\x20text\x20in\x20a\x20text\x20string.','Show\x20field\x20names','4407669qCuxNJ','The\x20day\x20of\x20the\x20date.','Open\x20record','Default\x20value','delimiter','12\x20hour\x20am/pm','449hLYaSv','Custom','day','4734UKINxT','Enter\x20a\x20field\x20title','Returns\x20the\x20largest\x20numeric\x20value\x20from\x20the\x20arguments.','Engineering','Display\x20text','Returns\x20the\x20serial\x20number\x20for\x20a\x20date\x20from\x20year,\x20month,\x20and\x20day\x20values.','The\x20value\x20returned\x20when\x20the\x20first\x20condition\x20is\x20TRUE.','Returns\x20a\x20positive\x20square\x20root','Comma,\x20period','Timeline\x20with\x20start\x20and\x20end\x20dates.','Click\x20\x22New\x20Condition\x22\x20to\x20apply\x20colors\x20based\x20on\x20defined\x20conditions.\x20Please\x20note\x20higher\x20conditions\x20are\x20prioritized.','Group\x20by\x20{fieldName}','exports','The\x20text\x20you\x20want\x20to\x20replace.','Compose','Creates\x20a\x20date\x20value','Min','not\x20contain','Title','Returns\x20TRUE\x20when\x20any\x20supplied\x20condition\x20evaluates\x20to\x20TRUE.','Table\x20{index}','format_text','Delete\x20records','Remove\x20option','Thumb','Adds\x20numbers','Sum','Additional\x20values,\x20fields,\x20or\x20expressions.','Logical','Start\x20value','Long\x20·\x2015\x20minutes','The\x20format\x20pattern\x20to\x20apply.','Returns\x20the\x20second\x20of\x20a\x20time','Edit','find_text','Close\x20preview','Returns\x20the\x20day\x20of\x20a\x20date','Formats\x20a\x20value\x20as\x20text\x20by\x20applying\x20a\x20number\x20format.','Returns\x20the\x20year\x20component\x20of\x20a\x20date\x20serial\x20value.','URL','The\x20number\x20of\x20digits\x20to\x20round\x20to.','Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20FIND\x20is\x20case-sensitive.','{count}\x20records','Time','Returns\x20the\x20remainder\x20from\x20division','Add\x20working\x20days','checked','This\x20table\x20and\x20its\x20records\x20will\x20be\x20removed.','Customize\x20working\x20days\x20and\x20days\x20off,\x20and\x20apply\x20them\x20to\x20the\x20current\x20base','Returns\x20TRUE','Returns\x20TRUE\x20if\x20any\x20argument\x20is\x20TRUE','Converts\x20text\x20to\x20a\x20number','Rounds\x20a\x20number\x20down','month','Web','decrement','is\x20before','power','Group\x20by\x20field','The\x20first\x20value,\x20field,\x20or\x20expression.','Date\x20/\x20Time','number1','Create\x20Kanban\x20with\x20{fieldName}','increment','The\x20first\x20text\x20value\x20or\x20field.','Rounds\x20a\x20number\x20down,\x20toward\x20zero.','Returns\x20the\x20smallest\x20value','logical_test1','Rounds\x20a\x20number','Undo','Invalid\x20email\x20address','Returns\x20the\x20year\x20of\x20a\x20date','Close\x20search','Short','Additional\x20text\x20values\x20or\x20fields.','Returns\x20a\x20fallback\x20for\x20errors','Apply\x20Smart\x20Color\x20to\x20All','number2','Configure\x20View','478674QKGtUq','Add\x20more\x20records\x20after\x20submission','Cover','Option','Delete\x20record','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number.\x20The\x20absolute\x20value\x20is\x20the\x20number\x20without\x20its\x20sign.','Returns\x20the\x20minute\x20of\x20a\x20time','Returns\x20the\x20hour\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Below','text1','Medium\x20·\x2030\x20minutes','Apply','The\x20text\x20containing\x20the\x20text\x20to\x20find.','value_if_false','Mon-Fri','text2','Multiplies\x20all\x20numbers\x20supplied\x20as\x20arguments.','num_digits','The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20FALSE.','Example','Rounds\x20a\x20number\x20up','Which\x20occurrence\x20of\x20old_text\x20to\x20replace.\x20If\x20omitted,\x20every\x20occurrence\x20is\x20replaced.','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text\x20given\x20a\x20starting\x20position\x20and\x20length.','Gantt\x20View\x20Settings','Search','Conditional\x20Coloring','Rename\x20Table','Returns\x20characters\x20from\x20the\x20start\x20of\x20text','Done','Progress','A\x20value,\x20field\x20reference,\x20table\x20field\x20reference,\x20or\x20expression\x20supported\x20by\x20the\x20Univer\x20formula\x20engine.','Configure\x20{tableName}','Returns\x20the\x20current\x20date\x20and\x20time','Rating','Tables','Avg\x20{value}','Add','Add\x205\x20blank\x20records','The\x20text\x20you\x20want\x20to\x20find.','value_if_error','Fire','Combines\x20text\x20with\x20a\x20delimiter','{count}\x20conditions\x20applied','within_text','old_text','A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20empty.','start_date','Multiple\x20select','Show\x20field','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number','Please\x20select','Single\x20select','New\x20condition','Add\x20an\x20option','Delete','Remove\x20working\x20day\x20exception','No\x20provider\x20group\x20data\x20available','{count}\x20filled','{name}\x20formula\x20engine\x20function','Close\x20record\x20detail','Move\x20record','Cell','Information','Currency\x20symbol','Working','Options','39699mXyTQF','Checks\x20whether\x20a\x20value\x20is\x20an\x20error','Customize\x20Kanban','Numbering\x20type','Insert\x20Right','Customize\x20Card','Returns\x20the\x20current\x20date\x20and\x20time\x20as\x20a\x20date/time\x20serial\x20value.','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20text.','Combines\x20text\x20values','Finds\x20text\x20without\x20matching\x20case','Duplicate\x20Table','Example:','Edit\x20Field','Allow\x20adding\x20multiple\x20groups\x20in\x20one\x20record','The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20TRUE.','The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.','Checks\x20whether\x20a\x20value\x20is\x20a\x20number','Customize\x20working\x20days\x20and\x20days\x20off\x20for\x20this\x20Gantt\x20view.\x20If\x20not\x20set,\x20Monday\x20to\x20Friday\x20is\x20used\x20when\x20working-day\x20calculation\x20is\x20enabled.','Sat','Calendar\x20color','FILE','Returns\x20the\x20median\x20value','No\x20matching\x20members.','Lightning','Date\x20Created','Reverses\x20a\x20logical\x20value','logical','Returns\x20the\x20median\x20of\x20the\x20supplied\x20numeric\x20values.','Customize\x20color','Field\x20title','Checks\x20a\x20condition\x20and\x20returns\x20one\x20value\x20when\x20it\x20is\x20TRUE\x20and\x20another\x20value\x20when\x20it\x20is\x20FALSE.','13360qmjOtB','Date\x20format','greater\x20than','Date\x20and\x20time','{count}\x20empty','logical_test','Returns\x20the\x20second\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Max','Modified\x20By','Add\x20record','{days}{exceptions}','Target\x20value','Large\x20number\x20abbreviation','{count}\x20more','Show\x20thousands\x20separator','Rows\x20and\x20fields\x20for\x20detailed\x20editing.','Returns\x20TRUE\x20when\x20all\x20supplied\x20conditions\x20evaluate\x20to\x20TRUE.','Mon','Close\x20formula\x20editor','Returns\x20the\x20month\x20of\x20a\x20date','Previous\x20result','Holiday\x20name','Today','The\x20number\x20by\x20which\x20you\x20want\x20to\x20divide.','Filled','year','Settings','Copy','Counts\x20non-empty\x20values','The\x20replacement\x20text.','Converts\x20text\x20to\x20lowercase.','{count}\x20unique','Accounting','Direction','Conditional\x20color','Use\x20fields\x20like\x20[Amount].\x20A1:B10\x20and\x20single\x20cell\x20references\x20are\x20not\x20allowed.','Align\x20with\x20records','Close\x20working\x20days\x20settings','No\x20records','Choose\x20how\x20this\x20table\x20should\x20be\x20projected.','Inline\x20fields\x20that\x20wrap','Returns\x20the\x20minute\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Time\x20format','Statistical','Number','Select\x20groups','unchecked','Enter\x20a\x20URL\x20(e.g.\x20univer.ai\x20or\x20https://univer.ai/skills).','\x20·\x20{count}\x20exception{plural}','Converts\x20text\x20that\x20represents\x20a\x20number\x20to\x20a\x20number.','Medal','Returns\x20one\x20value\x20for\x20TRUE\x20and\x20another\x20for\x20FALSE','Returns\x20the\x20logical\x20value\x20FALSE.','logical2','Counts\x20arguments\x20that\x20contain\x20numbers.','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20any\x20error\x20value.','Preview','Number\x20format','The\x20exponent\x20to\x20apply\x20to\x20the\x20base\x20number.','Redo','136GYbpxT','The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.','Returns\x20FALSE','Returns\x20the\x20number\x20of\x20characters\x20in\x20text','Value','Kanban','Local\x20({timeZone})','Enter\x20a\x20phone\x20number','Heart','This\x20field\x20will\x20be\x20removed\x20from\x20the\x20table.','Star','Space,\x20period','serial_number','The\x20first\x20number\x20or\x20numeric\x20expression.','instance_num','univer.ai\x20or\x20https://univer.ai','Check','Returns\x20the\x20current\x20date\x20as\x20a\x20date\x20serial\x20value.','value2','Add\x20Record','Substitutes\x20new\x20text\x20for\x20old\x20text','Normal','Combines\x20text\x20from\x20multiple\x20values,\x20fields,\x20or\x20expressions.','No\x20visible\x20fields','Month','repeat','Next\x20month','Created\x20By','Wed','Name','Delete\x20Field','Records\x20laid\x20out\x20by\x20date.','Next\x20record','Edit\x20formula','Progress\x20color\x20{color}','Flag','start_num','Returns\x20days\x20between\x20two\x20dates','Whether\x20empty\x20values\x20should\x20be\x20ignored.','Attachments','New\x20grid\x20view','optional','Thousands\x20separator','Confirm','Scale','The\x20number\x20of\x20characters\x20to\x20replace.','Dot','divisor','Formats\x20a\x20value\x20as\x20text','Medium','2220414WXpBFj','Legal\x20working\x20days\x20will\x20be\x20available\x20after\x20an\x20external\x20calendar\x20API\x20is\x20connected.','Basic','Custom\x20progress\x20bar','Type\x20here','Person','May\x2028,\x202026','Phone\x20Number','Text\x20inserted\x20between\x20each\x20combined\x20value.','contains','Customize\x20number/text\x20format\x20and\x20rules','The\x20value,\x20field,\x20or\x20expression\x20to\x20test.','New\x20gallery\x20view','A\x20value\x20or\x20expression\x20that\x20can\x20be\x20evaluated\x20as\x20TRUE\x20or\x20FALSE.','Previous\x20month','Counts\x20numeric\x20values','Numbering','Current','Local','last\x20month','Returns\x20the\x20average\x20of\x20arguments','logical1','Currency','Sort\x20from\x20Z\x20to\x20A','Next\x20result','Customize\x20Field','Small','Edit\x20Field\x20Description','Default\x20value\x20is\x20resolved\x20from\x20{count}\x20mock\x20{entity}\x20item{plural}.','argument','Add\x20condition','Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20beginning\x20of\x20text.','Last\x20->\x20First','Empty','Returns\x20a\x20number\x20raised\x20to\x20a\x20power','This\x20record\x20will\x20be\x20removed.','Sum\x20{value}','Custom\x20pattern','The\x20first\x20condition\x20that\x20evaluates\x20to\x20TRUE\x20or\x20FALSE.','Thu','5234292hkUJag','Removes\x20extra\x20spaces\x20from\x20text\x20except\x20for\x20single\x20spaces\x20between\x20words.','Week','No\x20provider\x20data\x20available','Additional\x20numbers\x20or\x20numeric\x20expressions.','Checks\x20whether\x20a\x20value\x20is\x20empty','Not\x20set','View\x20name','Color','Checkbox','text','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20from\x20the\x20\x22{tableName}\x22\x20table.','Group\x20By','Finds\x20text\x20within\x20text','Visual\x20cards\x20for\x20browsing\x20records.','Returns\x20TRUE\x20if\x20all\x20arguments\x20are\x20TRUE','Locked\x20field','Select\x20members','Returns\x20characters\x20from\x20the\x20end\x20of\x20text','Quarter','Cross','Reference\x20options','Calendar\x20View\x20Settings','Gantt','Delete\x20this\x20record?','Add\x20files\x20to\x20this\x20record','Required','Above','Grid','Min\x20{value}','Calendar','Group\x20table\x20by\x20fields','The\x20position\x20of\x20the\x20first\x20character\x20to\x20return.','Select\x20specific\x20date','Start','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20in\x20the\x20current\x20Base\x20table.\x20It\x20will\x20be\x20saved\x20as\x20table[{fieldName}]\x20for\x20the\x20formula\x20engine.','Last\x20Modified\x20Date','Card\x20layout','Space,\x20comma','Fields','Set\x20working\x20days','Additional\x20conditions\x20to\x20test.','Multiplies\x20arguments','Allow\x20negative\x20numbers','No\x20formula\x20configured','Kanban\x20group','Select\x20or\x20add\x20an\x20option','Count\x20records','Returns\x20the\x20largest\x20value','within\x20the\x20next\x2030\x20days','Add\x20table','Rename\x20View','Lookup\x20and\x20reference','within\x20the\x20next\x207\x20days','This\x20field\x20type\x20is\x20ready\x20with\x20default\x20settings.','Add\x20blank\x20record','Currency\x20format','Cards\x20grouped\x20by\x20a\x20select\x20field.','Returns\x20the\x20remainder\x20after\x20a\x20number\x20is\x20divided\x20by\x20a\x20divisor.','Option\x20color','Email','Smile','Edit\x20group\x20title','Function','A1\x20references\x20and\x20ranges\x20are\x20not\x20supported\x20in\x20Base\x20formulas.','Incremental','Add\x20field','Replaces\x20characters\x20by\x20position','Attachment','Previous\x20record'];_0x2142=function(){return _0x54fd95;};return _0x2142();}(function(_0x23e080,_0x6444ff){const _0x1ca000=_0x28be,_0x20c6b3=_0x23e080();while(!![]){try{const _0x23a9d0=parseInt(_0x1ca000(0x197))/0x1*(-parseInt(_0x1ca000(0x19a))/0x2)+-parseInt(_0x1ca000(0x191))/0x3+-parseInt(_0x1ca000(0x2e1))/0x4+parseInt(_0x1ca000(0x169))/0x5*(-parseInt(_0x1ca000(0x14f))/0x6)+-parseInt(_0x1ca000(0x2b9))/0x7+-parseInt(_0x1ca000(0x287))/0x8*(-parseInt(_0x1ca000(0x1e9))/0x9)+parseInt(_0x1ca000(0x24b))/0xa*(parseInt(_0x1ca000(0x22c))/0xb);if(_0x23a9d0===_0x6444ff)break;else _0x20c6b3['push'](_0x20c6b3['shift']());}catch(_0x1da81b){_0x20c6b3['push'](_0x20c6b3['shift']());}}}(_0x2142,0xc2b65));function _0x28be(_0x47db32,_0x593a2f){_0x47db32=_0x47db32-0x10f;const _0x2142b8=_0x2142();let _0x28bea8=_0x2142b8[_0x47db32];return _0x28bea8;}const e={'bases-ui':{'bases-ui':{'menu':{'addRecord':_0x518fdb(0x29a),'addBlankRecord':_0x518fdb(0x136),'addFiveBlankRecords':_0x518fdb(0x20e),'customizeField':_0x518fdb(0x2d2),'viewSettings':'View\x20Settings','filter':_0x518fdb(0x180),'sort':'Sort','group':_0x518fdb(0x2ed),'groupByFields':_0x518fdb(0x11e),'rowHeight':_0x518fdb(0x154),'rowHeightShort':_0x518fdb(0x1e3),'rowHeightMedium':_0x518fdb(0x2b8),'rowHeightTall':'Tall','rowHeightExtraTall':'Extra\x20Tall','conditionalColoring':_0x518fdb(0x202),'conditionalColoringHelp':_0x518fdb(0x1a4),'conditionalColoringSmart':_0x518fdb(0x1e6),'conditionalColor':_0x518fdb(0x2e9),'conditionalCustomColor':_0x518fdb(0x198),'conditionalTargetCell':_0x518fdb(0x227),'conditionalTargetRow':'Entire\x20Row','conditionalTargetColumn':'Entire\x20Column','conditionalEnterValue':'Enter\x20here','conditionalExactDate':_0x518fdb(0x18e),'conditionalToday':_0x518fdb(0x150),'conditionalTomorrow':'tomorrow','conditionalYesterday':'yesterday','conditionalThisWeek':'this\x20week','conditionalLastWeek':'last\x20week','conditionalThisMonth':'this\x20month','conditionalLastMonth':_0x518fdb(0x2cc),'conditionalPast7':_0x518fdb(0x14e),'conditionalNext7':_0x518fdb(0x134),'conditionalPast30':'in\x20the\x20past\x2030\x20days','conditionalNext30':_0x518fdb(0x130),'conditionalChecked':_0x518fdb(0x1c8),'conditionalUnchecked':_0x518fdb(0x279),'addField':_0x518fdb(0x141),'undo':_0x518fdb(0x1df),'redo':_0x518fdb(0x286)},'recordDetail':{'title':_0x518fdb(0x18b),'close':_0x518fdb(0x225),'open':'Open','delete':'Delete\x20record','deleteConfirmTitle':_0x518fdb(0x117),'deleteConfirmDescription':_0x518fdb(0x2dc),'submit':'Submit','addMoreAfterSubmission':_0x518fdb(0x1ea)},'gridContext':{'insert':'Insert','above':_0x518fdb(0x11a),'below':_0x518fdb(0x1f1),'openRecord':_0x518fdb(0x193),'clearContent':'Clear\x20content','deleteRecord':_0x518fdb(0x1ed),'deleteRecords':_0x518fdb(0x1b0)},'common':{'apply':_0x518fdb(0x1f4),'cancel':'Cancel','clear':_0x518fdb(0x186),'confirm':_0x518fdb(0x2b2),'delete':_0x518fdb(0x220),'save':'Save','search':_0x518fdb(0x201),'searchPrevious':_0x518fdb(0x25f),'searchNext':_0x518fdb(0x2d1),'searchClose':_0x518fdb(0x1e2),'value':_0x518fdb(0x28b),'newCondition':_0x518fdb(0x21e),'newBadge':'New'},'footerStat':{'none':_0x518fdb(0x165),'countOption':_0x518fdb(0x12e),'filledOption':_0x518fdb(0x263),'emptyOption':_0x518fdb(0x2da),'uniqueOption':'Unique','sumOption':_0x518fdb(0x1b4),'averageOption':_0x518fdb(0x184),'minOption':_0x518fdb(0x1aa),'maxOption':_0x518fdb(0x252),'count':_0x518fdb(0x1c4),'filled':_0x518fdb(0x223),'empty':_0x518fdb(0x24f),'unique':_0x518fdb(0x26a),'sum':_0x518fdb(0x2dd),'average':_0x518fdb(0x20c),'min':_0x518fdb(0x11c),'max':_0x518fdb(0x153)},'confirmDelete':{'tableTitle':_0x518fdb(0x14b),'tableDescription':_0x518fdb(0x1c9),'viewTitle':'Delete\x20this\x20view?','viewDescription':'This\x20view\x20will\x20be\x20removed.','fieldTitle':'Delete\x20this\x20field?','fieldDescription':_0x518fdb(0x290)},'fieldConfig':{'fieldTitle':_0x518fdb(0x249),'fieldTitlePlaceholder':_0x518fdb(0x19b),'fieldType':_0x518fdb(0x176),'fieldTypeSectionBasic':_0x518fdb(0x2bb),'fieldTypeSectionBusiness':'Business','fieldTypeSectionAdvanced':'Advanced','defaultValue':_0x518fdb(0x194),'newField':'New\x20field','defaultSettingsReady':_0x518fdb(0x135),'numberFormat':_0x518fdb(0x284),'currencyFormat':_0x518fdb(0x137),'dateFormat':_0x518fdb(0x24c),'dateMonthNameExample':_0x518fdb(0x2bf),'decimalPlaces':'Decimal\x20places','example':_0x518fdb(0x1fc),'icon':'Icon','scale':_0x518fdb(0x2b3),'options':_0x518fdb(0x22b),'referenceOptions':_0x518fdb(0x114),'addOption':_0x518fdb(0x163),'addOptionPlaceholder':_0x518fdb(0x21f),'removeOption':_0x518fdb(0x1b1),'selectOption':_0x518fdb(0x160),'option':_0x518fdb(0x1ec),'numberingType':_0x518fdb(0x22f),'autoIncrement':'Auto\x20increment','custom':_0x518fdb(0x198),'customizeNumbering':_0x518fdb(0x2c3),'preview':_0x518fdb(0x283),'incremental':_0x518fdb(0x140),'digits':'digits','start':_0x518fdb(0x121),'step':'Step','dateCreated':_0x518fdb(0x244),'customText':'Custom\x20text','lockedField':_0x518fdb(0x10f),'showField':_0x518fdb(0x21a),'hideField':'Hide\x20field','moreFieldActions':'More\x20field\x20actions','edit':_0x518fdb(0x1bb),'addFieldToGroup':_0x518fdb(0x18d),'editField':_0x518fdb(0x238),'editFieldDescription':_0x518fdb(0x2d4),'duplicateField':_0x518fdb(0x18a),'insertLeft':'Insert\x20Left','insertRight':_0x518fdb(0x230),'freezeToField':'Freeze\x20up\x20to\x20This\x20Field','sortAsc':'Sort\x20from\x20A\x20to\x20Z','sortDesc':_0x518fdb(0x2d0),'groupByField':_0x518fdb(0x1a5),'filterByField':'Filter\x20by\x20{fieldName}','createKanbanWithField':_0x518fdb(0x1d8),'deleteField':_0x518fdb(0x2a5),'referenceOptionsHelp':_0x518fdb(0x15d),'allowMultipleMembers':'Allow\x20adding\x20multiple\x20members\x20in\x20one\x20record','allowMultipleGroups':_0x518fdb(0x239),'defaultProviderMock':_0x518fdb(0x2d5),'defaultProviderExternal':'Default\x20value\x20is\x20resolved\x20from\x20the\x20external\x20Univer\x20{entity}\x20provider.','linkPlaceholder':_0x518fdb(0x27a),'phonePlaceholder':_0x518fdb(0x28e),'currencySymbol':_0x518fdb(0x229),'thousandsSeparator':_0x518fdb(0x2b1),'showThousandsSeparator':_0x518fdb(0x259),'largeNumberAbbreviation':_0x518fdb(0x257),'allowNegativeNumbers':_0x518fdb(0x12a),'includeTime':'Include\x20time','timeFormat':_0x518fdb(0x275),'hour24':_0x518fdb(0x146),'hour12':_0x518fdb(0x196),'none':_0x518fdb(0x165),'recordCreationTime':'Record\x20Creation\x20Time','selectSpecificDate':_0x518fdb(0x120),'percent':'Percent','number':_0x518fdb(0x277),'color':_0x518fdb(0x2e9),'style':'Style','progressColor':_0x518fdb(0x2a9),'customProgressBar':_0x518fdb(0x2bc),'startValue':_0x518fdb(0x1b7),'targetValue':_0x518fdb(0x256),'searchGroups':'Search\x20groups','selectGroups':_0x518fdb(0x278),'noProviderGroupData':_0x518fdb(0x222),'noMatchingGroups':_0x518fdb(0x182),'searchMembers':'Search\x20members','selectMembers':_0x518fdb(0x110),'noProviderData':_0x518fdb(0x2e4),'noMatchingMembers':_0x518fdb(0x242),'noFormulaConfigured':_0x518fdb(0x12b),'editFormula':_0x518fdb(0x2a8),'closeFormulaEditor':_0x518fdb(0x25d),'formulaHint':_0x518fdb(0x26e),'formulaReferenceError':_0x518fdb(0x13f),'formulaTables':_0x518fdb(0x20b),'formulaFields':_0x518fdb(0x126),'formulaFunctions':'Functions','formulaFunction':_0x518fdb(0x13e),'formulaParameters':'Parameters','formulaOptional':_0x518fdb(0x2b0),'formulaRepeat':_0x518fdb(0x2a0),'formulaExample':_0x518fdb(0x237),'currentTable':_0x518fdb(0x2ca),'currentTableField':'Current\x20table\x20field','fieldFromTable':'Field\x20from\x20{tableName}','referenceCurrentField':_0x518fdb(0x122),'referenceTableField':_0x518fdb(0x2ec),'fieldNameColumn':_0x518fdb(0x2a4),'fieldTypeColumn':'Type','insertColumn':_0x518fdb(0x149),'insert':_0x518fdb(0x149),'formulaNumberFormatSheetPattern':_0x518fdb(0x181),'formulaFormatType':'Format\x20type','formulaCustomPattern':_0x518fdb(0x2de),'formulaFormatGeneral':'General','formulaFormatNumber':_0x518fdb(0x277),'formulaFormatCurrency':_0x518fdb(0x2cf),'formulaFormatAccounting':_0x518fdb(0x26b),'formulaFormatPercent':_0x518fdb(0x155),'formulaFormatDateTime':_0x518fdb(0x1d6),'addDescriptionPlaceholder':'Add\x20a\x20description','numberingDescription':'Automatically\x20assigns\x20a\x20unique\x20increasing\x20index\x20starting\x20from\x201\x20when\x20a\x20record\x20is\x20created.\x20Generated\x20values\x20cannot\x20be\x20edited.','optionColor':_0x518fdb(0x13a),'separatorLocal':_0x518fdb(0x2cb),'separatorCommaPeriod':_0x518fdb(0x1a2),'separatorPeriodComma':_0x518fdb(0x189),'separatorSpaceComma':_0x518fdb(0x125),'separatorSpacePeriod':_0x518fdb(0x292),'direction':_0x518fdb(0x26c),'groupFirstToLast':'First\x20->\x20Last','groupLastToFirst':_0x518fdb(0x2d9),'checkboxIconCheck':_0x518fdb(0x297),'checkboxIconCross':_0x518fdb(0x113),'checkboxIconStar':_0x518fdb(0x291),'checkboxIconHeart':_0x518fdb(0x28f),'checkboxIconThumb':_0x518fdb(0x1b2),'checkboxIconFlag':_0x518fdb(0x2aa),'checkboxIconDot':_0x518fdb(0x2b5),'ratingIconStar':_0x518fdb(0x291),'ratingIconHeart':_0x518fdb(0x28f),'ratingIconThumb':'Thumb','ratingIconFire':_0x518fdb(0x211),'ratingIconSmile':_0x518fdb(0x13c),'ratingIconLightning':_0x518fdb(0x243),'ratingIconMedal':_0x518fdb(0x27d),'increment':_0x518fdb(0x1d9),'decrement':_0x518fdb(0x1d1)},'cellEditor':{'done':_0x518fdb(0x205),'text':_0x518fdb(0x174),'displayText':_0x518fdb(0x19e),'url':_0x518fdb(0x1c1),'linkPlaceholder':_0x518fdb(0x296),'attachments':_0x518fdb(0x2ae),'attachFile':_0x518fdb(0x178),'failedToAttachFile':'Failed\x20to\x20attach\x20file','file':_0x518fdb(0x240),'invalidEmail':_0x518fdb(0x1e0),'invalidPhone':'Invalid\x20phone\x20number','closePreview':_0x518fdb(0x1bd),'searchOption':_0x518fdb(0x12d),'selectOption':_0x518fdb(0x160),'selectOptions':_0x518fdb(0x14a),'previousMonth':_0x518fdb(0x2c7),'nextMonth':_0x518fdb(0x2a1),'time':_0x518fdb(0x1c5)},'recordDetailField':{'previousRecord':_0x518fdb(0x144),'nextRecord':_0x518fdb(0x2a7),'pleaseSelect':_0x518fdb(0x21c),'addAttachment':_0x518fdb(0x16d),'failedToAttachFile':'Failed\x20to\x20attach\x20file','closePreview':'Close\x20preview','typeHere':_0x518fdb(0x2bd),'empty':_0x518fdb(0x2da),'unassigned':_0x518fdb(0x152),'editField':'Edit\x20{fieldName}','noVisibleFields':_0x518fdb(0x29e)},'fieldTypes':{'text':_0x518fdb(0x174),'singleSelect':_0x518fdb(0x21d),'multiSelect':_0x518fdb(0x219),'person':_0x518fdb(0x2be),'group':_0x518fdb(0x151),'date':_0x518fdb(0x175),'attachment':_0x518fdb(0x143),'number':_0x518fdb(0x277),'checkbox':_0x518fdb(0x2ea),'link':_0x518fdb(0x1c1),'formula':'Formula','numbering':_0x518fdb(0x2c9),'phone':_0x518fdb(0x2c0),'email':_0x518fdb(0x13b),'progress':_0x518fdb(0x206),'currency':_0x518fdb(0x2cf),'rating':_0x518fdb(0x20a),'createdBy':_0x518fdb(0x2a2),'updatedBy':_0x518fdb(0x253),'createdAt':_0x518fdb(0x244),'updatedAt':_0x518fdb(0x123)},'viewMenus':{'customizeKanban':_0x518fdb(0x22e),'customizeCard':_0x518fdb(0x231),'eventSettings':_0x518fdb(0x14c),'calendarViewSettings':_0x518fdb(0x115),'calendarViewSettingsTitle':_0x518fdb(0x115),'ganttViewSettings':_0x518fdb(0x200),'fieldsCount':'{count}\x20fields','cover':_0x518fdb(0x1eb),'cardLayout':_0x518fdb(0x124),'normal':_0x518fdb(0x29c),'normalDescription':'Title\x20left,\x20fields\x20right','compose':_0x518fdb(0x1a8),'composeDescription':_0x518fdb(0x273),'cardSize':_0x518fdb(0x185),'small':_0x518fdb(0x2d3),'medium':'Medium','large':_0x518fdb(0x14d),'showFieldNames':_0x518fdb(0x190),'startDate':_0x518fdb(0x17d),'endDate':_0x518fdb(0x166),'title':_0x518fdb(0x1ac),'timeslotSize':'Timeslot\x20size','timeslotShort':_0x518fdb(0x162),'timeslotMedium':_0x518fdb(0x1f3),'timeslotLong':_0x518fdb(0x1b8),'displayColor':'Display\x20color','customizeColor':_0x518fdb(0x248),'alignWithRecords':_0x518fdb(0x26f),'timeZone':_0x518fdb(0x172),'localTimeZone':_0x518fdb(0x28d),'conditionalColor':_0x518fdb(0x26d),'conditionsApplied':_0x518fdb(0x213),'addCondition':_0x518fdb(0x2d7),'calculateWorkingDaysOnly':_0x518fdb(0x158),'customWorkingDays':'Custom\x20working\x20days','customWorkingDaysHelp':_0x518fdb(0x23d),'notSet':_0x518fdb(0x2e7),'settings':_0x518fdb(0x265),'setWorkingDays':_0x518fdb(0x127),'setWorkingDaysDescription':_0x518fdb(0x1ca),'closeWorkingDaysSettings':_0x518fdb(0x270),'addWorkingDays':_0x518fdb(0x1c7),'holidayName':_0x518fdb(0x260),'dayOff':'Day\x20off','working':_0x518fdb(0x22a),'add':_0x518fdb(0x20d),'removeWorkingDayException':_0x518fdb(0x221),'legalWorkingDays':_0x518fdb(0x16f),'legalWorkingDaysHelp':_0x518fdb(0x2ba),'mon':_0x518fdb(0x25c),'tue':'Tue','wed':_0x518fdb(0x2a3),'thu':_0x518fdb(0x2e0),'fri':'Fri','sat':_0x518fdb(0x23e),'sun':'Sun','monFri':_0x518fdb(0x1f7),'days':'{count}\x20days','workingDaysSummary':_0x518fdb(0x255),'exceptionsSummary':_0x518fdb(0x27b),'calendarColor':_0x518fdb(0x23f),'color':_0x518fdb(0x2e9),'editGroupTitle':_0x518fdb(0x13d),'groupByFieldFallback':_0x518fdb(0x1d4),'kanbanGroup':_0x518fdb(0x12c),'required':_0x518fdb(0x119),'kanbanGroupHelp':'Kanban\x20views\x20always\x20use\x20one\x20group\x20field.'},'operators':{'is':'is','isNot':'is\x20not','contains':_0x518fdb(0x2c2),'notContains':_0x518fdb(0x1ab),'isEmpty':'is\x20empty','isNotEmpty':'is\x20not\x20empty','greaterThan':_0x518fdb(0x24d),'lessThan':'less\x20than','before':_0x518fdb(0x1d2),'after':'is\x20after'},'viewSettings':{'title':'View\x20Settings','viewName':_0x518fdb(0x2e8),'addView':'Add\x20view','createViewTitle':'Create\x20view','createViewDescription':_0x518fdb(0x272),'setAsFirstTab':'Set\x20as\x20First\x20Tab','renameView':_0x518fdb(0x132),'duplicateView':_0x518fdb(0x15a),'configureView':_0x518fdb(0x1e8),'deleteView':_0x518fdb(0x177),'newGridView':_0x518fdb(0x2af),'newKanbanView':_0x518fdb(0x145),'newCalendarView':'New\x20calendar\x20view','newGanttView':'New\x20gantt\x20view','newGalleryView':_0x518fdb(0x2c5),'gridView':_0x518fdb(0x11b),'gridViewDescription':_0x518fdb(0x25a),'kanbanView':_0x518fdb(0x28c),'kanbanViewDescription':_0x518fdb(0x138),'calendarView':_0x518fdb(0x11d),'calendarViewDescription':_0x518fdb(0x2a6),'ganttView':_0x518fdb(0x116),'ganttViewDescription':_0x518fdb(0x1a3),'galleryView':'Gallery','galleryViewDescription':_0x518fdb(0x2ef),'copySuffix':_0x518fdb(0x266)},'tableSidebar':{'searchTables':'Search\x20tables','addTable':_0x518fdb(0x131),'newTable':'New','collapse':'Collapse','expand':_0x518fdb(0x15f),'resizeTableSidebar':'Resize\x20table\x20sidebar','configureTable':_0x518fdb(0x208),'renameTable':_0x518fdb(0x203),'duplicateTable':_0x518fdb(0x236),'deleteTable':'Delete\x20Table','defaultTableName':_0x518fdb(0x1ae)},'footer':{'record':'record','records':'records'},'canvas':{'addRecord':_0x518fdb(0x254),'attachmentDropLabel':_0x518fdb(0x118),'calculate':'Calculate','day':_0x518fdb(0x179),'fields':_0x518fdb(0x126),'month':_0x518fdb(0x29f),'more':_0x518fdb(0x258),'moveRecord':_0x518fdb(0x226),'quarter':_0x518fdb(0x112),'today':_0x518fdb(0x261),'week':_0x518fdb(0x2e3),'year':'Year'},'empty':{'value':_0x518fdb(0x2da),'noRecords':_0x518fdb(0x271),'invalidView':'This\x20view\x20needs\x20to\x20be\x20configured'},'formula':{'categories':{'math':'Math','statistical':_0x518fdb(0x276),'text':_0x518fdb(0x174),'logical':_0x518fdb(0x1b6),'date':_0x518fdb(0x24e),'information':_0x518fdb(0x228),'array':'Array','compatibility':_0x518fdb(0x161),'cube':'Cube','database':_0x518fdb(0x15c),'engineering':_0x518fdb(0x19d),'financial':'Financial','lookup':_0x518fdb(0x133),'web':_0x518fdb(0x1d0)},'functions':{'SUM':{'abstract':_0x518fdb(0x1b3),'description':'Adds\x20all\x20numbers,\x20numeric\x20fields,\x20or\x20numeric\x20expressions\x20supplied\x20as\x20arguments.','parameters':{'number1':{'name':_0x518fdb(0x1d7),'detail':_0x518fdb(0x294)},'number2':{'name':_0x518fdb(0x1e7),'detail':_0x518fdb(0x2e5)}}},'AVERAGE':{'abstract':_0x518fdb(0x2cd),'description':'Returns\x20the\x20arithmetic\x20mean\x20of\x20the\x20supplied\x20numeric\x20values.','parameters':{'number1':{'name':_0x518fdb(0x1d7),'detail':_0x518fdb(0x294)},'number2':{'name':_0x518fdb(0x1e7),'detail':_0x518fdb(0x2e5)}}},'MIN':{'abstract':_0x518fdb(0x1dc),'description':_0x518fdb(0x156),'parameters':{'number1':{'name':_0x518fdb(0x1d7),'detail':_0x518fdb(0x294)},'number2':{'name':_0x518fdb(0x1e7),'detail':_0x518fdb(0x2e5)}}},'MAX':{'abstract':_0x518fdb(0x12f),'description':_0x518fdb(0x19c),'parameters':{'number1':{'name':'number1','detail':_0x518fdb(0x294)},'number2':{'name':_0x518fdb(0x1e7),'detail':_0x518fdb(0x2e5)}}},'COUNT':{'abstract':_0x518fdb(0x2c8),'description':_0x518fdb(0x281),'parameters':{'value1':{'name':'value1','detail':'The\x20first\x20value,\x20field,\x20or\x20expression.'},'value2':{'name':_0x518fdb(0x299),'detail':_0x518fdb(0x1b5)}}},'COUNTA':{'abstract':_0x518fdb(0x267),'description':'Counts\x20arguments\x20that\x20are\x20not\x20empty.','parameters':{'value1':{'name':'value1','detail':_0x518fdb(0x1d5)},'value2':{'name':'value2','detail':_0x518fdb(0x1b5)}}},'MEDIAN':{'abstract':_0x518fdb(0x241),'description':_0x518fdb(0x247),'parameters':{'number1':{'name':_0x518fdb(0x1d7),'detail':'The\x20first\x20number\x20or\x20numeric\x20expression.'},'number2':{'name':_0x518fdb(0x1e7),'detail':_0x518fdb(0x2e5)}}},'ROUND':{'abstract':_0x518fdb(0x1de),'description':'Rounds\x20a\x20number\x20to\x20a\x20specified\x20number\x20of\x20digits.','parameters':{'number':{'name':_0x518fdb(0x183),'detail':_0x518fdb(0x288)},'num_digits':{'name':'num_digits','detail':_0x518fdb(0x1c2)}}},'ROUNDUP':{'abstract':_0x518fdb(0x1fd),'description':'Rounds\x20a\x20number\x20up,\x20away\x20from\x20zero.','parameters':{'number':{'name':_0x518fdb(0x183),'detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'},'num_digits':{'name':_0x518fdb(0x1fa),'detail':_0x518fdb(0x1c2)}}},'ROUNDDOWN':{'abstract':_0x518fdb(0x1ce),'description':_0x518fdb(0x1db),'parameters':{'number':{'name':'number','detail':_0x518fdb(0x288)},'num_digits':{'name':_0x518fdb(0x1fa),'detail':_0x518fdb(0x1c2)}}},'ABS':{'abstract':_0x518fdb(0x21b),'description':_0x518fdb(0x1ee),'parameters':{'number':{'name':'number','detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'}}},'INT':{'abstract':'Rounds\x20a\x20number\x20down\x20to\x20an\x20integer','description':_0x518fdb(0x148),'parameters':{'number':{'name':_0x518fdb(0x183),'detail':_0x518fdb(0x288)}}},'MOD':{'abstract':_0x518fdb(0x1c6),'description':_0x518fdb(0x139),'parameters':{'number':{'name':_0x518fdb(0x183),'detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'},'divisor':{'name':_0x518fdb(0x2b6),'detail':_0x518fdb(0x262)}}},'POWER':{'abstract':_0x518fdb(0x2db),'description':'Returns\x20the\x20result\x20of\x20a\x20number\x20raised\x20to\x20a\x20power.','parameters':{'number':{'name':'number','detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'},'power':{'name':_0x518fdb(0x1d3),'detail':_0x518fdb(0x285)}}},'SQRT':{'abstract':_0x518fdb(0x1a1),'description':'Returns\x20the\x20positive\x20square\x20root\x20of\x20a\x20number.','parameters':{'number':{'name':_0x518fdb(0x183),'detail':_0x518fdb(0x288)}}},'PRODUCT':{'abstract':_0x518fdb(0x129),'description':_0x518fdb(0x1f9),'parameters':{'number1':{'name':'number1','detail':_0x518fdb(0x294)},'number2':{'name':_0x518fdb(0x1e7),'detail':_0x518fdb(0x2e5)}}},'IF':{'abstract':_0x518fdb(0x27e),'description':_0x518fdb(0x24a),'parameters':{'logical_test':{'name':_0x518fdb(0x250),'detail':_0x518fdb(0x15b)},'value_if_true':{'name':_0x518fdb(0x18c),'detail':_0x518fdb(0x23a)},'value_if_false':{'name':_0x518fdb(0x1f6),'detail':_0x518fdb(0x1fb)}}},'IFS':{'abstract':'Checks\x20multiple\x20conditions','description':_0x518fdb(0x171),'parameters':{'logical_test1':{'name':_0x518fdb(0x1dd),'detail':'The\x20first\x20condition\x20to\x20test.'},'value_if_true1':{'name':'value_if_true1','detail':_0x518fdb(0x1a0)},'logical_test2':{'name':'logical_test2','detail':_0x518fdb(0x128)}}},'IFERROR':{'abstract':_0x518fdb(0x1e5),'description':'Returns\x20a\x20fallback\x20value\x20if\x20the\x20expression\x20evaluates\x20to\x20an\x20error;\x20otherwise\x20returns\x20the\x20expression\x20result.','parameters':{'value':{'name':'value','detail':_0x518fdb(0x2c4)},'value_if_error':{'name':_0x518fdb(0x210),'detail':'The\x20value\x20returned\x20when\x20the\x20expression\x20is\x20an\x20error.'}}},'AND':{'abstract':_0x518fdb(0x2f0),'description':_0x518fdb(0x25b),'parameters':{'logical1':{'name':_0x518fdb(0x2ce),'detail':_0x518fdb(0x2df)},'logical2':{'name':_0x518fdb(0x280),'detail':'Additional\x20conditions\x20that\x20evaluate\x20to\x20TRUE\x20or\x20FALSE.'}}},'OR':{'abstract':_0x518fdb(0x1cc),'description':_0x518fdb(0x1ad),'parameters':{'logical1':{'name':_0x518fdb(0x2ce),'detail':_0x518fdb(0x2df)},'logical2':{'name':_0x518fdb(0x280),'detail':'Additional\x20conditions\x20that\x20evaluate\x20to\x20TRUE\x20or\x20FALSE.'}}},'NOT':{'abstract':_0x518fdb(0x245),'description':_0x518fdb(0x147),'parameters':{'logical':{'name':_0x518fdb(0x246),'detail':_0x518fdb(0x2c6)}}},'TRUE':{'abstract':_0x518fdb(0x1cb),'description':_0x518fdb(0x187),'parameters':{}},'FALSE':{'abstract':_0x518fdb(0x289),'description':_0x518fdb(0x27f),'parameters':{}},'CONCAT':{'abstract':_0x518fdb(0x234),'description':_0x518fdb(0x29d),'parameters':{'text1':{'name':_0x518fdb(0x1f2),'detail':_0x518fdb(0x1da)},'text2':{'name':_0x518fdb(0x1f8),'detail':_0x518fdb(0x1e4)}}},'TEXTJOIN':{'abstract':_0x518fdb(0x212),'description':'Combines\x20text\x20values\x20and\x20inserts\x20a\x20delimiter\x20between\x20each\x20value.','parameters':{'delimiter':{'name':_0x518fdb(0x195),'detail':_0x518fdb(0x2c1)},'ignore_empty':{'name':'ignore_empty','detail':_0x518fdb(0x2ad)},'text1':{'name':'text1','detail':_0x518fdb(0x1da)},'text2':{'name':_0x518fdb(0x1f8),'detail':_0x518fdb(0x1e4)}}},'LEN':{'abstract':_0x518fdb(0x28a),'description':'Returns\x20the\x20number\x20of\x20characters\x20in\x20a\x20text\x20string.','parameters':{'text':{'name':'text','detail':_0x518fdb(0x23b)}}},'LEFT':{'abstract':_0x518fdb(0x204),'description':_0x518fdb(0x2d8),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)},'num_chars':{'name':_0x518fdb(0x16e),'detail':'The\x20number\x20of\x20characters\x20to\x20return.'}}},'RIGHT':{'abstract':_0x518fdb(0x111),'description':_0x518fdb(0x159),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)},'num_chars':{'name':_0x518fdb(0x16e),'detail':'The\x20number\x20of\x20characters\x20to\x20return.'}}},'MID':{'abstract':_0x518fdb(0x16a),'description':_0x518fdb(0x1ff),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)},'start_num':{'name':_0x518fdb(0x2ab),'detail':_0x518fdb(0x11f)},'num_chars':{'name':'num_chars','detail':_0x518fdb(0x170)}}},'UPPER':{'abstract':'Converts\x20text\x20to\x20uppercase','description':_0x518fdb(0x16b),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)}}},'LOWER':{'abstract':'Converts\x20text\x20to\x20lowercase','description':_0x518fdb(0x269),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':'The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.'}}},'TRIM':{'abstract':'Removes\x20extra\x20spaces\x20from\x20text','description':_0x518fdb(0x2e2),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)}}},'FIND':{'abstract':_0x518fdb(0x2ee),'description':_0x518fdb(0x1c3),'parameters':{'find_text':{'name':_0x518fdb(0x1bc),'detail':_0x518fdb(0x20f)},'within_text':{'name':_0x518fdb(0x214),'detail':_0x518fdb(0x1f5)},'start_num':{'name':'start_num','detail':'The\x20character\x20position\x20at\x20which\x20to\x20start\x20searching.'}}},'SEARCH':{'abstract':_0x518fdb(0x235),'description':'Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20SEARCH\x20is\x20not\x20case-sensitive.','parameters':{'find_text':{'name':_0x518fdb(0x1bc),'detail':_0x518fdb(0x20f)},'within_text':{'name':_0x518fdb(0x214),'detail':'The\x20text\x20containing\x20the\x20text\x20to\x20find.'},'start_num':{'name':_0x518fdb(0x2ab),'detail':_0x518fdb(0x167)}}},'SUBSTITUTE':{'abstract':_0x518fdb(0x29b),'description':_0x518fdb(0x18f),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)},'old_text':{'name':_0x518fdb(0x215),'detail':_0x518fdb(0x1a7)},'new_text':{'name':_0x518fdb(0x17f),'detail':_0x518fdb(0x268)},'instance_num':{'name':_0x518fdb(0x295),'detail':_0x518fdb(0x1fe)}}},'REPLACE':{'abstract':_0x518fdb(0x142),'description':'Replaces\x20part\x20of\x20a\x20text\x20string\x20based\x20on\x20starting\x20position\x20and\x20length.','parameters':{'old_text':{'name':_0x518fdb(0x215),'detail':'The\x20text\x20in\x20which\x20characters\x20are\x20replaced.'},'start_num':{'name':_0x518fdb(0x2ab),'detail':_0x518fdb(0x168)},'num_chars':{'name':'num_chars','detail':_0x518fdb(0x2b4)},'new_text':{'name':_0x518fdb(0x17f),'detail':'The\x20text\x20that\x20replaces\x20the\x20old\x20characters.'}}},'TEXT':{'abstract':_0x518fdb(0x2b7),'description':_0x518fdb(0x1bf),'parameters':{'value':{'name':_0x518fdb(0x188),'detail':_0x518fdb(0x2c4)},'format_text':{'name':_0x518fdb(0x1af),'detail':_0x518fdb(0x1b9)}}},'VALUE':{'abstract':_0x518fdb(0x1cd),'description':_0x518fdb(0x27c),'parameters':{'text':{'name':_0x518fdb(0x2eb),'detail':_0x518fdb(0x23b)}}},'TODAY':{'abstract':_0x518fdb(0x157),'description':_0x518fdb(0x298),'parameters':{}},'NOW':{'abstract':_0x518fdb(0x209),'description':_0x518fdb(0x232),'parameters':{}},'DATE':{'abstract':_0x518fdb(0x1a9),'description':_0x518fdb(0x19f),'parameters':{'year':{'name':_0x518fdb(0x264),'detail':'The\x20year\x20of\x20the\x20date.'},'month':{'name':_0x518fdb(0x1cf),'detail':_0x518fdb(0x15e)},'day':{'name':_0x518fdb(0x199),'detail':_0x518fdb(0x192)}}},'YEAR':{'abstract':_0x518fdb(0x1e1),'description':_0x518fdb(0x1c0),'parameters':{'serialNumber':{'name':_0x518fdb(0x293),'detail':_0x518fdb(0x216)}}},'MONTH':{'abstract':_0x518fdb(0x25e),'description':_0x518fdb(0x17e),'parameters':{'serialNumber':{'name':'serial_number','detail':_0x518fdb(0x216)}}},'DAY':{'abstract':_0x518fdb(0x1be),'description':'Returns\x20the\x20day\x20component\x20of\x20a\x20date\x20serial\x20value.','parameters':{'serialNumber':{'name':_0x518fdb(0x293),'detail':_0x518fdb(0x216)}}},'HOUR':{'abstract':_0x518fdb(0x173),'description':_0x518fdb(0x1f0),'parameters':{'serialNumber':{'name':_0x518fdb(0x293),'detail':_0x518fdb(0x216)}}},'MINUTE':{'abstract':_0x518fdb(0x1ef),'description':_0x518fdb(0x274),'parameters':{'serialNumber':{'name':'serial_number','detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'SECOND':{'abstract':_0x518fdb(0x1ba),'description':_0x518fdb(0x251),'parameters':{'serialNumber':{'name':_0x518fdb(0x293),'detail':_0x518fdb(0x216)}}},'DAYS':{'abstract':_0x518fdb(0x2ac),'description':_0x518fdb(0x164),'parameters':{'end_date':{'name':_0x518fdb(0x17a),'detail':_0x518fdb(0x16c)},'start_date':{'name':_0x518fdb(0x218),'detail':'The\x20earlier\x20date.'}}},'ISBLANK':{'abstract':_0x518fdb(0x2e6),'description':_0x518fdb(0x217),'parameters':{'value':{'name':_0x518fdb(0x188),'detail':_0x518fdb(0x2c4)}}},'ISNUMBER':{'abstract':_0x518fdb(0x23c),'description':_0x518fdb(0x17b),'parameters':{'value':{'name':_0x518fdb(0x188),'detail':_0x518fdb(0x2c4)}}},'ISTEXT':{'abstract':'Checks\x20whether\x20a\x20value\x20is\x20text','description':_0x518fdb(0x233),'parameters':{'value':{'name':_0x518fdb(0x188),'detail':_0x518fdb(0x2c4)}}},'ISERROR':{'abstract':_0x518fdb(0x22d),'description':_0x518fdb(0x282),'parameters':{'value':{'name':'value','detail':_0x518fdb(0x2c4)}}}},'generic':{'engineAbstract':_0x518fdb(0x224),'engineDescription':'{name}\x20is\x20provided\x20by\x20the\x20Univer\x20formula\x20engine.\x20Base\x20supports\x20field\x20references\x20such\x20as\x20table[Field]\x20and\x20OtherTable[Field],\x20but\x20does\x20not\x20support\x20A1\x20cells,\x20A1:B10\x20ranges,\x20or\x20spilled\x20array\x20output\x20in\x20Base\x20formula\x20fields.','argument':{'name':_0x518fdb(0x2d6),'detail':_0x518fdb(0x207)}}}}}[_0x518fdb(0x17c)]};module[_0x518fdb(0x1a6)]=e;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function _0x3bff(){const _0x4be6d1=['Additional\x20conditions\x20to\x20test.','Align\x20with\x20records','End\x20date','Sum\x20{value}','logical2','The\x20value\x20returned\x20when\x20the\x20first\x20condition\x20is\x20TRUE.','The\x20value,\x20field,\x20or\x20expression\x20to\x20test.','Returns\x20the\x20minute\x20of\x20a\x20time','Checks\x20whether\x20one\x20or\x20more\x20conditions\x20are\x20met\x20and\x20returns\x20a\x20value\x20matching\x20the\x20first\x20TRUE\x20condition.','Removes\x20extra\x20spaces\x20from\x20text','digits','Delete\x20this\x20record?','Legal\x20working\x20days','Week','Add\x20a\x20description','Basic','The\x20first\x20condition\x20that\x20evaluates\x20to\x20TRUE\x20or\x20FALSE.','Example','Collapse','Start','Field\x20type','delimiter','Display\x20color','Additional\x20values,\x20fields,\x20or\x20expressions.','Move\x20record','within_text','Attachment','Short\x20·\x201\x20hour','Redo','Short','Multiplies\x20arguments','Additional\x20numbers\x20or\x20numeric\x20expressions.','Group\x20By','Returns\x20characters\x20from\x20the\x20start\x20of\x20text','New','serial_number','Combines\x20text\x20from\x20multiple\x20values,\x20fields,\x20or\x20expressions.','value_if_false','The\x20text\x20in\x20which\x20characters\x20are\x20replaced.','Reference\x20data\x20from\x20other\x20tables\x20as\x20options','Kanban\x20group','Rounds\x20a\x20number\x20down','Expand','Copy','Reverses\x20a\x20logical\x20value','Date\x20and\x20time','Apply\x20Smart\x20Color\x20to\x20All','{count}\x20unique','Formats\x20a\x20value\x20as\x20text','Unassigned','Cross','Counts\x20non-empty\x20values','Delete','Automatically\x20assigns\x20a\x20unique\x20increasing\x20index\x20starting\x20from\x201\x20when\x20a\x20record\x20is\x20created.\x20Generated\x20values\x20cannot\x20be\x20edited.','contains','Thu','Remove\x20option','Created\x20By','{days}{exceptions}','Combines\x20text\x20values\x20and\x20inserts\x20a\x20delimiter\x20between\x20each\x20value.','Fri','Duplicate\x20view','View\x20name','Enter\x20a\x20URL\x20(e.g.\x20univer.ai\x20or\x20https://univer.ai/skills).','Heart','Edit\x20formula','Undo','Resize\x20table\x20sidebar','Enter\x20a\x20field\x20title','Previous\x20result','Returns\x20TRUE\x20if\x20any\x20argument\x20is\x20TRUE','Returns\x20the\x20smallest\x20numeric\x20value\x20from\x20the\x20arguments.','num_chars','Counts\x20arguments\x20that\x20contain\x20numbers.','Mon','The\x20text\x20value,\x20field,\x20or\x20expression\x20to\x20use.','Changes\x20TRUE\x20to\x20FALSE\x20and\x20FALSE\x20to\x20TRUE.','Email','New\x20field','Remove\x20working\x20day\x20exception','{count}\x20conditions\x20applied','old_text','Group\x20table\x20by\x20fields','number1','Customize\x20working\x20days\x20and\x20days\x20off\x20for\x20this\x20Gantt\x20view.\x20If\x20not\x20set,\x20Monday\x20to\x20Friday\x20is\x20used\x20when\x20working-day\x20calculation\x20is\x20enabled.','Accounting','No\x20provider\x20group\x20data\x20available','Done','Name','Above','The\x20text\x20you\x20want\x20to\x20find.','less\x20than','Add\x20blank\x20record','The\x20first\x20condition\x20to\x20test.','New\x20calendar\x20view','in\x20the\x20past\x207\x20days','{count}\x20more','value_if_true1','text1','Display\x20text','The\x20condition\x20you\x20want\x20to\x20test.','Returns\x20the\x20hour\x20of\x20a\x20time','Numbering\x20type','Date\x20/\x20Time','Returns\x20the\x20average\x20of\x20arguments','logical','No\x20matching\x20members.','Rounds\x20a\x20number\x20down\x20to\x20an\x20integer','Currency\x20symbol','Time\x20format','Table\x20{index}','Cover','Avg\x20{value}','Text','Create\x20view','Invalid\x20email\x20address','Formula','The\x20position\x20of\x20the\x20first\x20character\x20to\x20return.','Web','Confirm','Add\x20working\x20days','value_if_true','Removes\x20extra\x20spaces\x20from\x20text\x20except\x20for\x20single\x20spaces\x20between\x20words.','Add\x20record','Date','ignore_empty','Finds\x20text\x20without\x20matching\x20case','Returns\x20days\x20between\x20two\x20dates','Include\x20time','Average','instance_num','end_date','252JSjFGK','Delete\x20view','Filled','Returns\x20the\x20year\x20of\x20a\x20date','May\x2028,\x202026','The\x20number\x20of\x20characters\x20to\x20return.','Replaces\x20existing\x20text\x20with\x20new\x20text\x20in\x20a\x20text\x20string.','Style','The\x20first\x20number\x20or\x20numeric\x20expression.','Record\x20Creation\x20Time','24\x20hour','Wed','Records\x20laid\x20out\x20by\x20date.','Default\x20value\x20is\x20resolved\x20from\x20{count}\x20mock\x20{entity}\x20item{plural}.','19417255bOTuud','No\x20records','Day\x20off','Delete\x20this\x20field?','Returns\x20TRUE\x20when\x20any\x20supplied\x20condition\x20evaluates\x20to\x20TRUE.','Close\x20search','Delete\x20Table','Custom\x20progress\x20bar','Not\x20set','Lightning','Close\x20working\x20days\x20settings','Currency','Rounds\x20a\x20number\x20down,\x20toward\x20zero.','Incremental','\x20·\x20{count}\x20exception{plural}','No\x20formula\x20configured','Compose','Add','Start\x20date','Select\x20groups','Returns\x20the\x20logical\x20value\x20TRUE.','Field\x20from\x20{tableName}','Auto\x20increment','Custom\x20working\x20days','Grid','Customize\x20Field','Checks\x20whether\x20a\x20value\x20is\x20empty','Progress\x20color\x20{color}','Scale','Delete\x20records','Group\x20by\x20{fieldName}','Open\x20record','Select\x20options','argument','No\x20matching\x20groups.','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number','last\x20month','greater\x20than','Search\x20members','1108UiSSQf','Sort\x20from\x20Z\x20to\x20A','{count}\x20records','Which\x20occurrence\x20of\x20old_text\x20to\x20replace.\x20If\x20omitted,\x20every\x20occurrence\x20is\x20replaced.','Space,\x20period','Today','Below','increment','Checks\x20whether\x20a\x20value\x20is\x20text','12\x20hour\x20am/pm','Set\x20working\x20days','Local\x20({timeZone})','value1','Edit','Cell','Number','Compatibility','Additional\x20text\x20values\x20or\x20fields.','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20empty.','Default\x20value\x20is\x20resolved\x20from\x20the\x20external\x20Univer\x20{entity}\x20provider.','Duplicate\x20Field','year','Number\x20format','Edit\x20group\x20title','repeat','{count}\x20days','this\x20month','Type\x20here','Calendar\x20color','Sat','within\x20the\x20next\x2030\x20days','Event\x20Settings','Financial','Freeze\x20up\x20to\x20This\x20Field','Business','Math','Time\x20zone','Returns\x20the\x20current\x20date\x20and\x20time\x20as\x20a\x20date/time\x20serial\x20value.','Checks\x20whether\x20a\x20value\x20is\x20a\x20number','Locked\x20field','logical_test','Returns\x20the\x20serial\x20number\x20for\x20a\x20date\x20from\x20year,\x20month,\x20and\x20day\x20values.','Extra\x20Tall','Numbering','Next\x20record','Invalid\x20phone\x20number','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20in\x20the\x20current\x20Base\x20table.\x20It\x20will\x20be\x20saved\x20as\x20table[{fieldName}]\x20for\x20the\x20formula\x20engine.','{count}\x20empty','Holiday\x20name','Type','Add\x20Option','Add\x20an\x20option','Insert','Advanced','Unique','Combines\x20text\x20values','Counts\x20numeric\x20values','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text','Filter\x20by\x20{fieldName}','Medal','logical1','is\x20empty','num_digits','Next\x20month','Clear','logical_test2','start_date','Custom','number','Currency\x20format','Timeslot\x20size','Returns\x20the\x20day\x20of\x20a\x20date','Entire\x20Row','Entire\x20Column','Choose\x20how\x20this\x20table\x20should\x20be\x20projected.','Medium','Checkbox','Add\x20condition','Card\x20size','Edit\x20Field','Min\x20{value}','start_num','Mon-Fri','Allow\x20negative\x20numbers','yesterday','is\x20not','Local','Returns\x20a\x20number\x20raised\x20to\x20a\x20power','Adds\x20all\x20numbers,\x20numeric\x20fields,\x20or\x20numeric\x20expressions\x20supplied\x20as\x20arguments.','Phone\x20Number','Counts\x20arguments\x20that\x20are\x20not\x20empty.','records','Duplicate\x20Table','Single\x20select','Color','Title\x20left,\x20fields\x20right','New\x20gallery\x20view','Fields','Reference\x20options','48483yeccCs','Min','Insert\x20Right','Reference\x20the\x20\x22{fieldName}\x22\x20field\x20from\x20the\x20\x22{tableName}\x22\x20table.','This\x20field\x20will\x20be\x20removed\x20from\x20the\x20table.','Medium\x20·\x2030\x20minutes','Use\x20fields\x20like\x20[Amount].\x20A1:B10\x20and\x20single\x20cell\x20references\x20are\x20not\x20allowed.','13205codUDJ','Count\x20records','Apply','Returns\x20the\x20median\x20of\x20the\x20supplied\x20numeric\x20values.','Returns\x20characters\x20from\x20the\x20middle\x20of\x20text\x20given\x20a\x20starting\x20position\x20and\x20length.','1768hWUkAw','The\x20first\x20text\x20value\x20or\x20field.','Percent','Returns\x20the\x20current\x20date','Enter\x20here','Calendar\x20View\x20Settings','Empty','text2','Gantt\x20View\x20Settings','Array','A1\x20references\x20and\x20ranges\x20are\x20not\x20supported\x20in\x20Base\x20formulas.','Visual\x20cards\x20for\x20browsing\x20records.','Long\x20·\x2015\x20minutes','value','Day','Enter\x20a\x20phone\x20number','Parameters','Last\x20->\x20First','Returns\x20the\x20month\x20component\x20of\x20a\x20date\x20serial\x20value.','Cards\x20grouped\x20by\x20a\x20select\x20field.','Statistical','General','13969890mEmSOo','Customize\x20Kanban','The\x20number\x20of\x20characters\x20to\x20replace.','Functions','Delete\x20Field','Checks\x20a\x20condition\x20and\x20returns\x20one\x20value\x20when\x20it\x20is\x20TRUE\x20and\x20another\x20value\x20when\x20it\x20is\x20FALSE.','month','A\x20value,\x20field\x20reference,\x20table\x20field\x20reference,\x20or\x20expression\x20supported\x20by\x20the\x20Univer\x20formula\x20engine.','Rounds\x20a\x20number\x20up','Legal\x20working\x20days\x20will\x20be\x20available\x20after\x20an\x20external\x20calendar\x20API\x20is\x20connected.','divisor','Large','A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.','Substitutes\x20new\x20text\x20for\x20old\x20text','Group\x20by\x20field','Icon','Returns\x20the\x20day\x20component\x20of\x20a\x20date\x20serial\x20value.','The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20FALSE.','The\x20day\x20of\x20the\x20date.','Sum','View\x20Settings','is\x20after','Returns\x20the\x20smallest\x20value','Insert\x20Left','Failed\x20to\x20attach\x20file','Flag','{name}\x20is\x20provided\x20by\x20the\x20Univer\x20formula\x20engine.\x20Base\x20supports\x20field\x20references\x20such\x20as\x20table[Field]\x20and\x20OtherTable[Field],\x20but\x20does\x20not\x20support\x20A1\x20cells,\x20A1:B10\x20ranges,\x20or\x20spilled\x20array\x20output\x20in\x20Base\x20formula\x20fields.','Start\x20value','tomorrow','Add\x20Field\x20To\x20Group','Sort','Add\x20table','The\x20text\x20containing\x20the\x20text\x20to\x20find.','The\x20earlier\x20date.','Returns\x20the\x20minute\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Edit\x20{fieldName}','Select\x20members','Timeline\x20with\x20start\x20and\x20end\x20dates.','Logical','Save','is\x20not\x20empty','URL','The\x20character\x20position\x20at\x20which\x20to\x20start\x20searching.','Next\x20result','Click\x20\x22New\x20Condition\x22\x20to\x20apply\x20colors\x20based\x20on\x20defined\x20conditions.\x20Please\x20note\x20higher\x20conditions\x20are\x20prioritized.','Search\x20tables','Rename\x20Table','Please\x20select','None','Adds\x20numbers','Returns\x20the\x20result\x20of\x20a\x20number\x20raised\x20to\x20a\x20power.','Add\x205\x20blank\x20records','Options','Tall','Small','Search','4544457TVsfyJ','This\x20view\x20will\x20be\x20removed.','Previous\x20record','No\x20provider\x20data\x20available','Group','Returns\x20the\x20arithmetic\x20mean\x20of\x20the\x20supplied\x20numeric\x20values.','Progress','Rounds\x20a\x20number\x20up,\x20away\x20from\x20zero.','Tables','This\x20table\x20and\x20its\x20records\x20will\x20be\x20removed.','Attach\x20file','Returns\x20the\x20hour\x20component\x20of\x20a\x20date/time\x20serial\x20value.','Custom\x20text','Decimal\x20places','The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.','Delete\x20record','Working','Kanban\x20views\x20always\x20use\x20one\x20group\x20field.','Additional\x20conditions\x20that\x20evaluate\x20to\x20TRUE\x20or\x20FALSE.','Returns\x20the\x20positive\x20square\x20root\x20of\x20a\x20number.','Configure\x20{tableName}','Customize\x20color','Dot','Formats\x20a\x20value\x20as\x20text\x20by\x20applying\x20a\x20number\x20format.','Returns\x20the\x20remainder\x20after\x20a\x20number\x20is\x20divided\x20by\x20a\x20divisor.','new_text','Returns\x20one\x20value\x20for\x20TRUE\x20and\x20another\x20for\x20FALSE','exports','today','Option','Format\x20type','The\x20number\x20by\x20which\x20you\x20want\x20to\x20divide.','univer.ai\x20or\x20https://univer.ai','The\x20value\x20returned\x20when\x20the\x20expression\x20is\x20an\x20error.','The\x20month\x20of\x20the\x20date.','{count}\x20filled','Returns\x20the\x20current\x20date\x20and\x20time','Converts\x20text\x20to\x20a\x20number','Quarter','number2','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20a\x20number.','This\x20record\x20will\x20be\x20removed.','{name}\x20formula\x20engine\x20function','Converts\x20text\x20to\x20uppercase','Space,\x20comma','checked','Returns\x20the\x20absolute\x20value\x20of\x20a\x20number.\x20The\x20absolute\x20value\x20is\x20the\x20number\x20without\x20its\x20sign.','value2','Thousands\x20separator','Rating','Gallery','find_text','The\x20replacement\x20text.','First\x20->\x20Last','Direction','Record\x20detail','decrement','The\x20exponent\x20to\x20apply\x20to\x20the\x20base\x20number.','Delete\x20this\x20view?','Modified\x20By','The\x20first\x20value,\x20field,\x20or\x20expression.','The\x20text\x20you\x20want\x20to\x20replace.','Option\x20color','Sort\x20from\x20A\x20to\x20Z','Checks\x20multiple\x20conditions','New\x20gantt\x20view','Returns\x20the\x20month\x20of\x20a\x20date','unchecked','Person','Previous\x20month','Value','118506YWyHsY','Large\x20number\x20abbreviation','1424Zxdcog','Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20SEARCH\x20is\x20not\x20case-sensitive.','Combines\x20text\x20with\x20a\x20delimiter','this\x20week','exact\x20date','text','Returns\x20the\x20second\x20of\x20a\x20time','More\x20field\x20actions','Max','Card\x20layout','Close\x20preview','Max\x20{value}','day','119CvOTwF','Returns\x20TRUE\x20when\x20the\x20value\x20is\x20text.','The\x20later\x20date.','The\x20number\x20of\x20digits\x20to\x20round\x20to.','Step'];_0x3bff=function(){return _0x4be6d1;};return _0x3bff();}const _0x4a595=_0x4da4;(function(_0x807d95,_0x208985){const _0x3904d3=_0x4da4,_0x316097=_0x807d95();while(!![]){try{const _0x50915d=parseInt(_0x3904d3(0x15d))/0x1*(parseInt(_0x3904d3(0x1cc))/0x2)+parseInt(_0x3904d3(0x21a))/0x3+-parseInt(_0x3904d3(0x128))/0x4*(-parseInt(_0x3904d3(0x1c7))/0x5)+parseInt(_0x3904d3(0x261))/0x6*(parseInt(_0x3904d3(0x270))/0x7)+-parseInt(_0x3904d3(0x263))/0x8*(-parseInt(_0x3904d3(0x1c0))/0x9)+-parseInt(_0x3904d3(0x1e2))/0xa+-parseInt(_0x3904d3(0x136))/0xb;if(_0x50915d===_0x208985)break;else _0x316097['push'](_0x316097['shift']());}catch(_0x1765e6){_0x316097['push'](_0x316097['shift']());}}}(_0x3bff,0xc1a2d));const e={'bases-ui':{'bases-ui':{'menu':{'addRecord':'Add\x20Record','addBlankRecord':_0x4a595(0x100),'addFiveBlankRecords':_0x4a595(0x215),'customizeField':_0x4a595(0x14f),'viewSettings':_0x4a595(0x1f6),'filter':'Filter','sort':_0x4a595(0x200),'group':_0x4a595(0xc4),'groupByFields':_0x4a595(0xf6),'rowHeight':'Row\x20Height','rowHeightShort':_0x4a595(0xc1),'rowHeightMedium':_0x4a595(0x1a8),'rowHeightTall':_0x4a595(0x217),'rowHeightExtraTall':_0x4a595(0x187),'conditionalColoring':'Conditional\x20Coloring','conditionalColoringHelp':_0x4a595(0x20e),'conditionalColoringSmart':_0x4a595(0xd2),'conditionalColor':'Color','conditionalCustomColor':_0x4a595(0x1a0),'conditionalTargetCell':_0x4a595(0x16b),'conditionalTargetRow':_0x4a595(0x1a5),'conditionalTargetColumn':_0x4a595(0x1a6),'conditionalEnterValue':_0x4a595(0x1d0),'conditionalExactDate':_0x4a595(0x267),'conditionalToday':_0x4a595(0x236),'conditionalTomorrow':_0x4a595(0x1fe),'conditionalYesterday':_0x4a595(0x1b1),'conditionalThisWeek':_0x4a595(0x266),'conditionalLastWeek':'last\x20week','conditionalThisMonth':_0x4a595(0x177),'conditionalLastMonth':_0x4a595(0x15a),'conditionalPast7':_0x4a595(0x103),'conditionalNext7':'within\x20the\x20next\x207\x20days','conditionalPast30':'in\x20the\x20past\x2030\x20days','conditionalNext30':_0x4a595(0x17b),'conditionalChecked':_0x4a595(0x247),'conditionalUnchecked':_0x4a595(0x25d),'addField':'Add\x20field','undo':_0x4a595(0xe6),'redo':_0x4a595(0xc0)},'recordDetail':{'title':_0x4a595(0x251),'close':'Close\x20record\x20detail','open':'Open','delete':_0x4a595(0x229),'deleteConfirmTitle':_0x4a595(0xaf),'deleteConfirmDescription':_0x4a595(0x243),'submit':'Submit','addMoreAfterSubmission':'Add\x20more\x20records\x20after\x20submission'},'gridContext':{'insert':_0x4a595(0x191),'above':_0x4a595(0xfd),'below':_0x4a595(0x163),'openRecord':_0x4a595(0x155),'clearContent':'Clear\x20content','deleteRecord':_0x4a595(0x229),'deleteRecords':_0x4a595(0x153)},'common':{'apply':_0x4a595(0x1c9),'cancel':'Cancel','clear':_0x4a595(0x19d),'confirm':_0x4a595(0x11b),'delete':_0x4a595(0xd8),'save':_0x4a595(0x209),'search':_0x4a595(0x219),'searchPrevious':_0x4a595(0xe9),'searchNext':_0x4a595(0x20d),'searchClose':_0x4a595(0x13b),'value':_0x4a595(0x260),'newCondition':'New\x20condition','newBadge':_0x4a595(0xc6)},'footerStat':{'none':_0x4a595(0x212),'countOption':_0x4a595(0x1c8),'filledOption':_0x4a595(0x12a),'emptyOption':_0x4a595(0x1d2),'uniqueOption':_0x4a595(0x193),'sumOption':_0x4a595(0x1f5),'averageOption':_0x4a595(0x125),'minOption':_0x4a595(0x1c1),'maxOption':_0x4a595(0x26b),'count':_0x4a595(0x15f),'filled':_0x4a595(0x23d),'empty':_0x4a595(0x18c),'unique':_0x4a595(0xd3),'sum':_0x4a595(0x278),'average':_0x4a595(0x114),'min':_0x4a595(0x1ad),'max':_0x4a595(0x26e)},'confirmDelete':{'tableTitle':'Delete\x20this\x20table?','tableDescription':_0x4a595(0x223),'viewTitle':_0x4a595(0x254),'viewDescription':_0x4a595(0x21b),'fieldTitle':_0x4a595(0x139),'fieldDescription':_0x4a595(0x1c4)},'fieldConfig':{'fieldTitle':'Field\x20title','fieldTitlePlaceholder':_0x4a595(0xe8),'fieldType':_0x4a595(0xb8),'fieldTypeSectionBasic':_0x4a595(0xb3),'fieldTypeSectionBusiness':_0x4a595(0x17f),'fieldTypeSectionAdvanced':_0x4a595(0x192),'defaultValue':'Default\x20value','newField':_0x4a595(0xf2),'defaultSettingsReady':'This\x20field\x20type\x20is\x20ready\x20with\x20default\x20settings.','numberFormat':_0x4a595(0x173),'currencyFormat':_0x4a595(0x1a2),'dateFormat':'Date\x20format','dateMonthNameExample':_0x4a595(0x12c),'decimalPlaces':_0x4a595(0x227),'example':_0x4a595(0xb5),'icon':_0x4a595(0x1f1),'scale':_0x4a595(0x152),'options':_0x4a595(0x216),'referenceOptions':_0x4a595(0x1bf),'addOption':_0x4a595(0x18f),'addOptionPlaceholder':_0x4a595(0x190),'removeOption':_0x4a595(0xdc),'selectOption':'Select\x20option','option':_0x4a595(0x237),'numberingType':_0x4a595(0x10a),'autoIncrement':_0x4a595(0x14c),'custom':_0x4a595(0x1a0),'customizeNumbering':'Customize\x20number/text\x20format\x20and\x20rules','preview':'Preview','incremental':_0x4a595(0x143),'digits':_0x4a595(0xae),'start':_0x4a595(0xb7),'step':_0x4a595(0x274),'dateCreated':'Date\x20Created','customText':_0x4a595(0x226),'lockedField':_0x4a595(0x184),'showField':'Show\x20field','hideField':'Hide\x20field','moreFieldActions':_0x4a595(0x26a),'edit':_0x4a595(0x16a),'addFieldToGroup':_0x4a595(0x1ff),'editField':_0x4a595(0x1ac),'editFieldDescription':'Edit\x20Field\x20Description','duplicateField':_0x4a595(0x171),'insertLeft':_0x4a595(0x1f9),'insertRight':_0x4a595(0x1c2),'freezeToField':_0x4a595(0x17e),'sortAsc':_0x4a595(0x259),'sortDesc':_0x4a595(0x15e),'groupByField':_0x4a595(0x154),'filterByField':_0x4a595(0x197),'createKanbanWithField':'Create\x20Kanban\x20with\x20{fieldName}','deleteField':_0x4a595(0x1e6),'referenceOptionsHelp':_0x4a595(0xcb),'allowMultipleMembers':'Allow\x20adding\x20multiple\x20members\x20in\x20one\x20record','allowMultipleGroups':'Allow\x20adding\x20multiple\x20groups\x20in\x20one\x20record','defaultProviderMock':_0x4a595(0x135),'defaultProviderExternal':_0x4a595(0x170),'linkPlaceholder':_0x4a595(0xe3),'phonePlaceholder':_0x4a595(0x1db),'currencySymbol':_0x4a595(0x110),'thousandsSeparator':_0x4a595(0x24a),'showThousandsSeparator':'Show\x20thousands\x20separator','largeNumberAbbreviation':_0x4a595(0x262),'allowNegativeNumbers':_0x4a595(0x1b0),'includeTime':_0x4a595(0x124),'timeFormat':_0x4a595(0x111),'hour24':_0x4a595(0x132),'hour12':_0x4a595(0x166),'none':_0x4a595(0x212),'recordCreationTime':_0x4a595(0x131),'selectSpecificDate':'Select\x20specific\x20date','percent':_0x4a595(0x1ce),'number':_0x4a595(0x16c),'color':_0x4a595(0x1bb),'style':_0x4a595(0x12f),'progressColor':_0x4a595(0x151),'customProgressBar':_0x4a595(0x13d),'startValue':_0x4a595(0x1fd),'targetValue':'Target\x20value','searchGroups':'Search\x20groups','selectGroups':_0x4a595(0x149),'noProviderGroupData':_0x4a595(0xfa),'noMatchingGroups':_0x4a595(0x158),'searchMembers':_0x4a595(0x15c),'selectMembers':_0x4a595(0x206),'noProviderData':_0x4a595(0x21d),'noMatchingMembers':_0x4a595(0x10e),'noFormulaConfigured':_0x4a595(0x145),'editFormula':_0x4a595(0xe5),'closeFormulaEditor':'Close\x20formula\x20editor','formulaHint':_0x4a595(0x1c6),'formulaReferenceError':_0x4a595(0x1d6),'formulaTables':_0x4a595(0x222),'formulaFields':_0x4a595(0x1be),'formulaFunctions':_0x4a595(0x1e5),'formulaFunction':'Function','formulaParameters':_0x4a595(0x1dc),'formulaOptional':'optional','formulaRepeat':_0x4a595(0x175),'formulaExample':'Example:','currentTable':'Current','currentTableField':'Current\x20table\x20field','fieldFromTable':_0x4a595(0x14b),'referenceCurrentField':_0x4a595(0x18b),'referenceTableField':_0x4a595(0x1c3),'fieldNameColumn':_0x4a595(0xfc),'fieldTypeColumn':_0x4a595(0x18e),'insertColumn':_0x4a595(0x191),'insert':_0x4a595(0x191),'formulaNumberFormatSheetPattern':'Sheet\x20pattern','formulaFormatType':_0x4a595(0x238),'formulaCustomPattern':'Custom\x20pattern','formulaFormatGeneral':_0x4a595(0x1e1),'formulaFormatNumber':_0x4a595(0x16c),'formulaFormatCurrency':_0x4a595(0x141),'formulaFormatAccounting':_0x4a595(0xf9),'formulaFormatPercent':_0x4a595(0x1ce),'formulaFormatDateTime':_0x4a595(0x10b),'addDescriptionPlaceholder':_0x4a595(0xb2),'numberingDescription':_0x4a595(0xd9),'optionColor':_0x4a595(0x258),'separatorLocal':_0x4a595(0x1b3),'separatorCommaPeriod':'Comma,\x20period','separatorPeriodComma':'Period,\x20comma','separatorSpaceComma':_0x4a595(0x246),'separatorSpacePeriod':_0x4a595(0x161),'direction':_0x4a595(0x250),'groupFirstToLast':_0x4a595(0x24f),'groupLastToFirst':_0x4a595(0x1dd),'checkboxIconCheck':'Check','checkboxIconCross':_0x4a595(0xd6),'checkboxIconStar':'Star','checkboxIconHeart':_0x4a595(0xe4),'checkboxIconThumb':'Thumb','checkboxIconFlag':_0x4a595(0x1fb),'checkboxIconDot':_0x4a595(0x230),'ratingIconStar':'Star','ratingIconHeart':'Heart','ratingIconThumb':'Thumb','ratingIconFire':'Fire','ratingIconSmile':'Smile','ratingIconLightning':_0x4a595(0x13f),'ratingIconMedal':_0x4a595(0x198),'increment':_0x4a595(0x164),'decrement':_0x4a595(0x252)},'cellEditor':{'done':_0x4a595(0xfb),'text':_0x4a595(0x115),'displayText':_0x4a595(0x107),'url':_0x4a595(0x20b),'linkPlaceholder':_0x4a595(0x23a),'attachments':'Attachments','attachFile':_0x4a595(0x224),'failedToAttachFile':_0x4a595(0x1fa),'file':'FILE','invalidEmail':_0x4a595(0x117),'invalidPhone':_0x4a595(0x18a),'closePreview':'Close\x20preview','searchOption':'Select\x20or\x20add\x20an\x20option','selectOption':'Select\x20option','selectOptions':_0x4a595(0x156),'previousMonth':_0x4a595(0x25f),'nextMonth':_0x4a595(0x19c),'time':'Time'},'recordDetailField':{'previousRecord':_0x4a595(0x21c),'nextRecord':_0x4a595(0x189),'pleaseSelect':_0x4a595(0x211),'addAttachment':'Add\x20attachment','failedToAttachFile':_0x4a595(0x1fa),'closePreview':_0x4a595(0x26d),'typeHere':_0x4a595(0x178),'empty':_0x4a595(0x1d2),'unassigned':_0x4a595(0xd5),'editField':_0x4a595(0x205),'noVisibleFields':'No\x20visible\x20fields'},'fieldTypes':{'text':'Text','singleSelect':_0x4a595(0x1ba),'multiSelect':'Multiple\x20select','person':_0x4a595(0x25e),'group':_0x4a595(0x21e),'date':_0x4a595(0x120),'attachment':_0x4a595(0xbe),'number':_0x4a595(0x16c),'checkbox':_0x4a595(0x1a9),'link':_0x4a595(0x20b),'formula':_0x4a595(0x118),'numbering':_0x4a595(0x188),'phone':_0x4a595(0x1b6),'email':_0x4a595(0xf1),'progress':_0x4a595(0x220),'currency':_0x4a595(0x141),'rating':_0x4a595(0x24b),'createdBy':_0x4a595(0xdd),'updatedBy':_0x4a595(0x255),'createdAt':'Date\x20Created','updatedAt':'Last\x20Modified\x20Date'},'viewMenus':{'customizeKanban':_0x4a595(0x1e3),'customizeCard':'Customize\x20Card','eventSettings':_0x4a595(0x17c),'calendarViewSettings':_0x4a595(0x1d1),'calendarViewSettingsTitle':_0x4a595(0x1d1),'ganttViewSettings':_0x4a595(0x1d4),'fieldsCount':'{count}\x20fields','cover':_0x4a595(0x113),'cardLayout':_0x4a595(0x26c),'normal':'Normal','normalDescription':_0x4a595(0x1bc),'compose':_0x4a595(0x146),'composeDescription':'Inline\x20fields\x20that\x20wrap','cardSize':_0x4a595(0x1ab),'small':_0x4a595(0x218),'medium':'Medium','large':_0x4a595(0x1ed),'showFieldNames':'Show\x20field\x20names','startDate':_0x4a595(0x148),'endDate':_0x4a595(0x277),'title':'Title','timeslotSize':_0x4a595(0x1a3),'timeslotShort':_0x4a595(0xbf),'timeslotMedium':_0x4a595(0x1c5),'timeslotLong':_0x4a595(0x1d8),'displayColor':_0x4a595(0xba),'customizeColor':_0x4a595(0x22f),'alignWithRecords':_0x4a595(0x276),'timeZone':_0x4a595(0x181),'localTimeZone':_0x4a595(0x168),'conditionalColor':'Conditional\x20color','conditionsApplied':_0x4a595(0xf4),'addCondition':_0x4a595(0x1aa),'calculateWorkingDaysOnly':'Calculate\x20working\x20days\x20only','customWorkingDays':_0x4a595(0x14d),'customWorkingDaysHelp':_0x4a595(0xf8),'notSet':_0x4a595(0x13e),'settings':'Settings','setWorkingDays':_0x4a595(0x167),'setWorkingDaysDescription':'Customize\x20working\x20days\x20and\x20days\x20off,\x20and\x20apply\x20them\x20to\x20the\x20current\x20base','closeWorkingDaysSettings':_0x4a595(0x140),'addWorkingDays':_0x4a595(0x11c),'holidayName':_0x4a595(0x18d),'dayOff':_0x4a595(0x138),'working':_0x4a595(0x22a),'add':_0x4a595(0x147),'removeWorkingDayException':_0x4a595(0xf3),'legalWorkingDays':_0x4a595(0xb0),'legalWorkingDaysHelp':_0x4a595(0x1eb),'mon':_0x4a595(0xee),'tue':'Tue','wed':_0x4a595(0x133),'thu':_0x4a595(0xdb),'fri':_0x4a595(0xe0),'sat':_0x4a595(0x17a),'sun':'Sun','monFri':_0x4a595(0x1af),'days':_0x4a595(0x176),'workingDaysSummary':_0x4a595(0xde),'exceptionsSummary':_0x4a595(0x144),'calendarColor':_0x4a595(0x179),'color':_0x4a595(0x1bb),'editGroupTitle':_0x4a595(0x174),'groupByFieldFallback':_0x4a595(0x1f0),'kanbanGroup':_0x4a595(0xcc),'required':'Required','kanbanGroupHelp':_0x4a595(0x22b)},'operators':{'is':'is','isNot':_0x4a595(0x1b2),'contains':_0x4a595(0xda),'notContains':'not\x20contain','isEmpty':_0x4a595(0x19a),'isNotEmpty':_0x4a595(0x20a),'greaterThan':_0x4a595(0x15b),'lessThan':_0x4a595(0xff),'before':'is\x20before','after':_0x4a595(0x1f7)},'viewSettings':{'title':_0x4a595(0x1f6),'viewName':_0x4a595(0xe2),'addView':'Add\x20view','createViewTitle':_0x4a595(0x116),'createViewDescription':_0x4a595(0x1a7),'setAsFirstTab':'Set\x20as\x20First\x20Tab','renameView':'Rename\x20View','duplicateView':_0x4a595(0xe1),'configureView':'Configure\x20View','deleteView':_0x4a595(0x129),'newGridView':'New\x20grid\x20view','newKanbanView':'New\x20kanban\x20view','newCalendarView':_0x4a595(0x102),'newGanttView':_0x4a595(0x25b),'newGalleryView':_0x4a595(0x1bd),'gridView':_0x4a595(0x14e),'gridViewDescription':'Rows\x20and\x20fields\x20for\x20detailed\x20editing.','kanbanView':'Kanban','kanbanViewDescription':_0x4a595(0x1df),'calendarView':'Calendar','calendarViewDescription':_0x4a595(0x134),'ganttView':'Gantt','ganttViewDescription':_0x4a595(0x207),'galleryView':_0x4a595(0x24c),'galleryViewDescription':_0x4a595(0x1d7),'copySuffix':_0x4a595(0xcf)},'tableSidebar':{'searchTables':_0x4a595(0x20f),'addTable':_0x4a595(0x201),'newTable':_0x4a595(0xc6),'collapse':_0x4a595(0xb6),'expand':_0x4a595(0xce),'resizeTableSidebar':_0x4a595(0xe7),'configureTable':_0x4a595(0x22e),'renameTable':_0x4a595(0x210),'duplicateTable':_0x4a595(0x1b9),'deleteTable':_0x4a595(0x13c),'defaultTableName':_0x4a595(0x112)},'footer':{'record':'record','records':_0x4a595(0x1b8)},'canvas':{'addRecord':_0x4a595(0x11f),'attachmentDropLabel':'Add\x20files\x20to\x20this\x20record','calculate':'Calculate','day':_0x4a595(0x1da),'fields':_0x4a595(0x1be),'month':'Month','more':_0x4a595(0x104),'moveRecord':_0x4a595(0xbc),'quarter':_0x4a595(0x240),'today':_0x4a595(0x162),'week':_0x4a595(0xb1),'year':'Year'},'empty':{'value':_0x4a595(0x1d2),'noRecords':_0x4a595(0x137),'invalidView':'This\x20view\x20needs\x20to\x20be\x20configured'},'formula':{'categories':{'math':_0x4a595(0x180),'statistical':_0x4a595(0x1e0),'text':'Text','logical':_0x4a595(0x208),'date':_0x4a595(0xd1),'information':'Information','array':_0x4a595(0x1d5),'compatibility':_0x4a595(0x16d),'cube':'Cube','database':'Database','engineering':'Engineering','financial':_0x4a595(0x17d),'lookup':'Lookup\x20and\x20reference','web':_0x4a595(0x11a)},'functions':{'SUM':{'abstract':_0x4a595(0x213),'description':_0x4a595(0x1b5),'parameters':{'number1':{'name':_0x4a595(0xf7),'detail':_0x4a595(0x130)},'number2':{'name':_0x4a595(0x241),'detail':_0x4a595(0xc3)}}},'AVERAGE':{'abstract':_0x4a595(0x10c),'description':_0x4a595(0x21f),'parameters':{'number1':{'name':'number1','detail':_0x4a595(0x130)},'number2':{'name':_0x4a595(0x241),'detail':'Additional\x20numbers\x20or\x20numeric\x20expressions.'}}},'MIN':{'abstract':_0x4a595(0x1f8),'description':_0x4a595(0xeb),'parameters':{'number1':{'name':'number1','detail':_0x4a595(0x130)},'number2':{'name':_0x4a595(0x241),'detail':_0x4a595(0xc3)}}},'MAX':{'abstract':'Returns\x20the\x20largest\x20value','description':'Returns\x20the\x20largest\x20numeric\x20value\x20from\x20the\x20arguments.','parameters':{'number1':{'name':'number1','detail':_0x4a595(0x130)},'number2':{'name':_0x4a595(0x241),'detail':_0x4a595(0xc3)}}},'COUNT':{'abstract':_0x4a595(0x195),'description':_0x4a595(0xed),'parameters':{'value1':{'name':'value1','detail':_0x4a595(0x256)},'value2':{'name':_0x4a595(0x249),'detail':_0x4a595(0xbb)}}},'COUNTA':{'abstract':_0x4a595(0xd7),'description':_0x4a595(0x1b7),'parameters':{'value1':{'name':_0x4a595(0x169),'detail':_0x4a595(0x256)},'value2':{'name':_0x4a595(0x249),'detail':_0x4a595(0xbb)}}},'MEDIAN':{'abstract':'Returns\x20the\x20median\x20value','description':_0x4a595(0x1ca),'parameters':{'number1':{'name':_0x4a595(0xf7),'detail':_0x4a595(0x130)},'number2':{'name':'number2','detail':_0x4a595(0xc3)}}},'ROUND':{'abstract':'Rounds\x20a\x20number','description':'Rounds\x20a\x20number\x20to\x20a\x20specified\x20number\x20of\x20digits.','parameters':{'number':{'name':_0x4a595(0x1a1),'detail':_0x4a595(0x228)},'num_digits':{'name':'num_digits','detail':_0x4a595(0x273)}}},'ROUNDUP':{'abstract':_0x4a595(0x1ea),'description':_0x4a595(0x221),'parameters':{'number':{'name':_0x4a595(0x1a1),'detail':'The\x20number\x20or\x20numeric\x20field\x20value\x20to\x20calculate.'},'num_digits':{'name':'num_digits','detail':_0x4a595(0x273)}}},'ROUNDDOWN':{'abstract':_0x4a595(0xcd),'description':_0x4a595(0x142),'parameters':{'number':{'name':'number','detail':_0x4a595(0x228)},'num_digits':{'name':_0x4a595(0x19b),'detail':'The\x20number\x20of\x20digits\x20to\x20round\x20to.'}}},'ABS':{'abstract':_0x4a595(0x159),'description':_0x4a595(0x248),'parameters':{'number':{'name':_0x4a595(0x1a1),'detail':_0x4a595(0x228)}}},'INT':{'abstract':_0x4a595(0x10f),'description':'Rounds\x20a\x20number\x20down\x20to\x20the\x20nearest\x20integer.','parameters':{'number':{'name':_0x4a595(0x1a1),'detail':_0x4a595(0x228)}}},'MOD':{'abstract':'Returns\x20the\x20remainder\x20from\x20division','description':_0x4a595(0x232),'parameters':{'number':{'name':_0x4a595(0x1a1),'detail':_0x4a595(0x228)},'divisor':{'name':_0x4a595(0x1ec),'detail':_0x4a595(0x239)}}},'POWER':{'abstract':_0x4a595(0x1b4),'description':_0x4a595(0x214),'parameters':{'number':{'name':_0x4a595(0x1a1),'detail':_0x4a595(0x228)},'power':{'name':'power','detail':_0x4a595(0x253)}}},'SQRT':{'abstract':'Returns\x20a\x20positive\x20square\x20root','description':_0x4a595(0x22d),'parameters':{'number':{'name':_0x4a595(0x1a1),'detail':_0x4a595(0x228)}}},'PRODUCT':{'abstract':_0x4a595(0xc2),'description':'Multiplies\x20all\x20numbers\x20supplied\x20as\x20arguments.','parameters':{'number1':{'name':_0x4a595(0xf7),'detail':_0x4a595(0x130)},'number2':{'name':_0x4a595(0x241),'detail':'Additional\x20numbers\x20or\x20numeric\x20expressions.'}}},'IF':{'abstract':_0x4a595(0x234),'description':_0x4a595(0x1e7),'parameters':{'logical_test':{'name':_0x4a595(0x185),'detail':_0x4a595(0x108)},'value_if_true':{'name':_0x4a595(0x11d),'detail':'The\x20value\x20returned\x20when\x20the\x20condition\x20is\x20TRUE.'},'value_if_false':{'name':_0x4a595(0xc9),'detail':_0x4a595(0x1f3)}}},'IFS':{'abstract':_0x4a595(0x25a),'description':_0x4a595(0x27d),'parameters':{'logical_test1':{'name':'logical_test1','detail':_0x4a595(0x101)},'value_if_true1':{'name':_0x4a595(0x105),'detail':_0x4a595(0x27a)},'logical_test2':{'name':_0x4a595(0x19e),'detail':_0x4a595(0x275)}}},'IFERROR':{'abstract':'Returns\x20a\x20fallback\x20for\x20errors','description':'Returns\x20a\x20fallback\x20value\x20if\x20the\x20expression\x20evaluates\x20to\x20an\x20error;\x20otherwise\x20returns\x20the\x20expression\x20result.','parameters':{'value':{'name':'value','detail':_0x4a595(0x27b)},'value_if_error':{'name':'value_if_error','detail':_0x4a595(0x23b)}}},'AND':{'abstract':'Returns\x20TRUE\x20if\x20all\x20arguments\x20are\x20TRUE','description':'Returns\x20TRUE\x20when\x20all\x20supplied\x20conditions\x20evaluate\x20to\x20TRUE.','parameters':{'logical1':{'name':_0x4a595(0x199),'detail':'The\x20first\x20condition\x20that\x20evaluates\x20to\x20TRUE\x20or\x20FALSE.'},'logical2':{'name':'logical2','detail':_0x4a595(0x22c)}}},'OR':{'abstract':_0x4a595(0xea),'description':_0x4a595(0x13a),'parameters':{'logical1':{'name':_0x4a595(0x199),'detail':_0x4a595(0xb4)},'logical2':{'name':_0x4a595(0x279),'detail':_0x4a595(0x22c)}}},'NOT':{'abstract':_0x4a595(0xd0),'description':_0x4a595(0xf0),'parameters':{'logical':{'name':_0x4a595(0x10d),'detail':'A\x20value\x20or\x20expression\x20that\x20can\x20be\x20evaluated\x20as\x20TRUE\x20or\x20FALSE.'}}},'TRUE':{'abstract':'Returns\x20TRUE','description':_0x4a595(0x14a),'parameters':{}},'FALSE':{'abstract':'Returns\x20FALSE','description':'Returns\x20the\x20logical\x20value\x20FALSE.','parameters':{}},'CONCAT':{'abstract':_0x4a595(0x194),'description':_0x4a595(0xc8),'parameters':{'text1':{'name':_0x4a595(0x106),'detail':_0x4a595(0x1cd)},'text2':{'name':_0x4a595(0x1d3),'detail':'Additional\x20text\x20values\x20or\x20fields.'}}},'TEXTJOIN':{'abstract':_0x4a595(0x265),'description':_0x4a595(0xdf),'parameters':{'delimiter':{'name':_0x4a595(0xb9),'detail':'Text\x20inserted\x20between\x20each\x20combined\x20value.'},'ignore_empty':{'name':_0x4a595(0x121),'detail':'Whether\x20empty\x20values\x20should\x20be\x20ignored.'},'text1':{'name':'text1','detail':_0x4a595(0x1cd)},'text2':{'name':_0x4a595(0x1d3),'detail':_0x4a595(0x16e)}}},'LEN':{'abstract':'Returns\x20the\x20number\x20of\x20characters\x20in\x20text','description':'Returns\x20the\x20number\x20of\x20characters\x20in\x20a\x20text\x20string.','parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)}}},'LEFT':{'abstract':_0x4a595(0xc5),'description':'Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20beginning\x20of\x20text.','parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)},'num_chars':{'name':'num_chars','detail':_0x4a595(0x12d)}}},'RIGHT':{'abstract':'Returns\x20characters\x20from\x20the\x20end\x20of\x20text','description':'Returns\x20the\x20specified\x20number\x20of\x20characters\x20from\x20the\x20end\x20of\x20text.','parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)},'num_chars':{'name':'num_chars','detail':_0x4a595(0x12d)}}},'MID':{'abstract':_0x4a595(0x196),'description':_0x4a595(0x1cb),'parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)},'start_num':{'name':_0x4a595(0x1ae),'detail':_0x4a595(0x119)},'num_chars':{'name':_0x4a595(0xec),'detail':_0x4a595(0x12d)}}},'UPPER':{'abstract':_0x4a595(0x245),'description':'Converts\x20text\x20to\x20uppercase.','parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)}}},'LOWER':{'abstract':'Converts\x20text\x20to\x20lowercase','description':'Converts\x20text\x20to\x20lowercase.','parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)}}},'TRIM':{'abstract':_0x4a595(0x27e),'description':_0x4a595(0x11e),'parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)}}},'FIND':{'abstract':'Finds\x20text\x20within\x20text','description':'Returns\x20the\x20starting\x20position\x20of\x20one\x20text\x20string\x20within\x20another.\x20FIND\x20is\x20case-sensitive.','parameters':{'find_text':{'name':_0x4a595(0x24d),'detail':'The\x20text\x20you\x20want\x20to\x20find.'},'within_text':{'name':'within_text','detail':_0x4a595(0x202)},'start_num':{'name':_0x4a595(0x1ae),'detail':_0x4a595(0x20c)}}},'SEARCH':{'abstract':_0x4a595(0x122),'description':_0x4a595(0x264),'parameters':{'find_text':{'name':_0x4a595(0x24d),'detail':_0x4a595(0xfe)},'within_text':{'name':_0x4a595(0xbd),'detail':_0x4a595(0x202)},'start_num':{'name':_0x4a595(0x1ae),'detail':_0x4a595(0x20c)}}},'SUBSTITUTE':{'abstract':_0x4a595(0x1ef),'description':_0x4a595(0x12e),'parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)},'old_text':{'name':_0x4a595(0xf5),'detail':_0x4a595(0x257)},'new_text':{'name':_0x4a595(0x233),'detail':_0x4a595(0x24e)},'instance_num':{'name':_0x4a595(0x126),'detail':_0x4a595(0x160)}}},'REPLACE':{'abstract':'Replaces\x20characters\x20by\x20position','description':'Replaces\x20part\x20of\x20a\x20text\x20string\x20based\x20on\x20starting\x20position\x20and\x20length.','parameters':{'old_text':{'name':_0x4a595(0xf5),'detail':_0x4a595(0xca)},'start_num':{'name':_0x4a595(0x1ae),'detail':'The\x20position\x20of\x20the\x20first\x20character\x20to\x20replace.'},'num_chars':{'name':'num_chars','detail':_0x4a595(0x1e4)},'new_text':{'name':_0x4a595(0x233),'detail':'The\x20text\x20that\x20replaces\x20the\x20old\x20characters.'}}},'TEXT':{'abstract':_0x4a595(0xd4),'description':_0x4a595(0x231),'parameters':{'value':{'name':_0x4a595(0x1d9),'detail':_0x4a595(0x27b)},'format_text':{'name':'format_text','detail':'The\x20format\x20pattern\x20to\x20apply.'}}},'VALUE':{'abstract':_0x4a595(0x23f),'description':'Converts\x20text\x20that\x20represents\x20a\x20number\x20to\x20a\x20number.','parameters':{'text':{'name':_0x4a595(0x268),'detail':_0x4a595(0xef)}}},'TODAY':{'abstract':_0x4a595(0x1cf),'description':'Returns\x20the\x20current\x20date\x20as\x20a\x20date\x20serial\x20value.','parameters':{}},'NOW':{'abstract':_0x4a595(0x23e),'description':_0x4a595(0x182),'parameters':{}},'DATE':{'abstract':'Creates\x20a\x20date\x20value','description':_0x4a595(0x186),'parameters':{'year':{'name':_0x4a595(0x172),'detail':'The\x20year\x20of\x20the\x20date.'},'month':{'name':_0x4a595(0x1e8),'detail':_0x4a595(0x23c)},'day':{'name':_0x4a595(0x26f),'detail':_0x4a595(0x1f4)}}},'YEAR':{'abstract':_0x4a595(0x12b),'description':'Returns\x20the\x20year\x20component\x20of\x20a\x20date\x20serial\x20value.','parameters':{'serialNumber':{'name':_0x4a595(0xc7),'detail':_0x4a595(0x1ee)}}},'MONTH':{'abstract':_0x4a595(0x25c),'description':_0x4a595(0x1de),'parameters':{'serialNumber':{'name':_0x4a595(0xc7),'detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'DAY':{'abstract':_0x4a595(0x1a4),'description':_0x4a595(0x1f2),'parameters':{'serialNumber':{'name':_0x4a595(0xc7),'detail':_0x4a595(0x1ee)}}},'HOUR':{'abstract':_0x4a595(0x109),'description':_0x4a595(0x225),'parameters':{'serialNumber':{'name':'serial_number','detail':_0x4a595(0x1ee)}}},'MINUTE':{'abstract':_0x4a595(0x27c),'description':_0x4a595(0x204),'parameters':{'serialNumber':{'name':_0x4a595(0xc7),'detail':'A\x20date/time\x20serial\x20number\x20or\x20date\x20field\x20value.'}}},'SECOND':{'abstract':_0x4a595(0x269),'description':'Returns\x20the\x20second\x20component\x20of\x20a\x20date/time\x20serial\x20value.','parameters':{'serialNumber':{'name':'serial_number','detail':_0x4a595(0x1ee)}}},'DAYS':{'abstract':_0x4a595(0x123),'description':'Returns\x20the\x20number\x20of\x20days\x20between\x20two\x20date\x20values.','parameters':{'end_date':{'name':_0x4a595(0x127),'detail':_0x4a595(0x272)},'start_date':{'name':_0x4a595(0x19f),'detail':_0x4a595(0x203)}}},'ISBLANK':{'abstract':_0x4a595(0x150),'description':_0x4a595(0x16f),'parameters':{'value':{'name':'value','detail':'The\x20value,\x20field,\x20or\x20expression\x20to\x20test.'}}},'ISNUMBER':{'abstract':_0x4a595(0x183),'description':_0x4a595(0x242),'parameters':{'value':{'name':_0x4a595(0x1d9),'detail':_0x4a595(0x27b)}}},'ISTEXT':{'abstract':_0x4a595(0x165),'description':_0x4a595(0x271),'parameters':{'value':{'name':_0x4a595(0x1d9),'detail':_0x4a595(0x27b)}}},'ISERROR':{'abstract':'Checks\x20whether\x20a\x20value\x20is\x20an\x20error','description':'Returns\x20TRUE\x20when\x20the\x20value\x20is\x20any\x20error\x20value.','parameters':{'value':{'name':_0x4a595(0x1d9),'detail':_0x4a595(0x27b)}}}},'generic':{'engineAbstract':_0x4a595(0x244),'engineDescription':_0x4a595(0x1fc),'argument':{'name':_0x4a595(0x157),'detail':_0x4a595(0x1e9)}}}}}['bases-ui']};function _0x4da4(_0x46a546,_0x3191a5){_0x46a546=_0x46a546-0xae;const _0x3bfff4=_0x3bff();let _0x4da4f6=_0x3bfff4[_0x46a546];return _0x4da4f6;}module[_0x4a595(0x235)]=e;
|