\n","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","import { Svue } from \"svue\";\n\nconst DOCUMENTCLOUD_TOKEN_STORAGE_KEY = \"documentcloud_token\";\n\nexport const SQUARELET_URL = process.env.SQUARELET_BASE;\nexport const SIGN_IN_URL = process.env.DC_BASE + process.env.DC_LOGIN;\nexport const SIGN_UP_URL =\n process.env.SQUARELET_BASE +\n process.env.SQUARELET_SIGNUP +\n encodeURIComponent(window.location.href);\nexport const SIGN_OUT_URL = process.env.DC_BASE + process.env.DC_LOGOUT;\n\nexport const auth = new Svue({\n data() {\n return {\n signingIn: false,\n key: null,\n };\n },\n computed: {\n isAuthenticated(key) {\n return key !== null;\n },\n },\n});\n\nexport function login() {\n setToken(true);\n}\n\nexport function logout() {\n // TODO: use some Squarelet method and have a finally clause of removeToken()\n // for now, we just \"forget\" we're logged in\n removeToken();\n}\n\n// Token methods\nfunction initialize() {\n try {\n const storedData = localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n if (storedData === null) {\n // Logged in\n return;\n }\n if (storedData !== null) {\n const key = JSON.parse(storedData);\n setToken(key);\n return;\n }\n } catch (e) {\n removeToken();\n return;\n }\n\n removeToken();\n return;\n}\n\nfunction setToken(key) {\n // Set the token state.\n try {\n localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY, JSON.stringify(key));\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = key;\n}\n\nfunction removeToken() {\n try {\n localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = null;\n}\n\n// Initialize the token\ninitialize();\n","const languageCodes = process.env.LANGUAGE_CODES.split(\"|\");\nconst languageNames = process.env.LANGUAGE_NAMES.split(\"|\");\nexport const defaultLanguage = process.env.DEFAULT_LANGUAGE;\n\nfunction makeLanguagePairs(codes, names) {\n const results = [];\n for (let i = 0; i < codes.length; i++) {\n results.push([codes[i], names[i]]);\n }\n results.sort((a, b) => (a[1] > b[1] ? 1 : a[1] < b[1] ? -1 : 0));\n return results;\n}\n\nexport const languages = makeLanguagePairs(languageCodes, languageNames);\n\nconst textractLanguageCodes = [\"eng\", \"spa\", \"ita\", \"por\", \"fra\", \"deu\"];\nexport const textractLanguages = languages.filter((l) =>\n textractLanguageCodes.indexOf(l[0]) != -1\n);\n","const docTitleLimit = process.env.DOCUMENT_TITLE_CHAR_LIMIT;\nconst docSourceLimit = process.env.DOCUMENT_SOURCE_CHAR_LIMIT;\nconst docDescriptionLimit = process.env.DOCUMENT_DESCRIPTION_CHAR_LIMIT;\nconst relatedArticleLimit = process.env.RELATED_ARTICLE_URL_CHAR_LIMIT;\nconst publishedUrlLimit = process.env.PUBLISHED_URL_CHAR_LIMIT;\n\nexport const metaDialogs = [\n {\n menuTitle: \"metaFields.titleFieldTitle\",\n charLimit: docTitleLimit,\n fieldAccessor: (x) => x.title,\n fieldName: \"metaFields.titleFieldName\",\n fieldNameUppercase: \"metaFields.titleFieldNameUppercase\",\n apiField: \"title\",\n headerText: \"metaFields.titleFieldHeader\",\n explainerText: \"metaFields.titleFieldDescription\",\n buttonText: \"metaFields.titleFieldButton\",\n fieldValid: (value, initial) => value != initial && value.trim().length > 0,\n fieldInvalidText: (value, initial) =>\n value == initial\n ? \"metaFields.titleFieldInvalidSameName\"\n : value.trim().length == 0\n ? \"metaFields.titleFieldInvalidEmptyName\"\n : \"\",\n disabled: (numSelected) => numSelected != 1,\n },\n {\n menuTitle: \"metaFields.sourceFieldTitle\",\n charLimit: docSourceLimit,\n fieldAccessor: (x) => x.source,\n fieldName: \"metaFields.sourceFieldName\",\n fieldNameUppercase: \"metaFields.sourceFieldNameUppercase\",\n apiField: \"source\",\n headerText: \"metaFields.sourceFieldHeader\",\n explainerText: \"metaFields.sourceFieldDescription\",\n buttonText: \"metaFields.sourceFieldButton\",\n },\n {\n menuTitle: \"metaFields.descriptionFieldTitle\",\n charLimit: docDescriptionLimit,\n fieldAccessor: (x) => x.description,\n fieldName: \"metaFields.descriptionFieldName\",\n fieldNameUppercase: \"metaFields.descriptionFieldNameUppercase\",\n apiField: \"description\",\n headerText: \"metaFields.descriptionFieldHeader\",\n explainerText: \"metaFields.descriptionFieldDescription\",\n isTextArea: true,\n buttonText: \"metaFields.descriptionFieldButton\",\n },\n {\n menuTitle: \"metaFields.relatedArticleFieldTitle\",\n charLimit: relatedArticleLimit,\n fieldAccessor: (x) => x.relatedArticleUrl,\n fieldName: \"rmetaFields.relatedArticleFieldName\",\n fieldNameUppercase: \"metaFields.relatedArticleFieldNameUppercase\",\n apiField: \"related_article\",\n headerText: \"metaFields.relatedArticleFieldHeader\",\n explainerText: \"metaFields.relatedArticleFieldDescription\",\n buttonText: \"metaFields.relatedArticleFieldButton\",\n },\n {\n menuTitle: \"metaFields.publishedUrlFieldTitle\",\n charLimit: publishedUrlLimit,\n fieldAccessor: (x) => x.publishedUrl,\n fieldName: \"metaFields.publishedUrlFieldName\",\n fieldNameUppercase: \"metaFields.publishedUrlFieldNameUppercase\",\n apiField: \"published_url\",\n headerText: \"metaFields.publishedUrlFieldHeader\",\n explainerText: \"metaFields.publishedUrlFieldDescription\",\n buttonText: \"metaFields.publishedUrlFieldButton\",\n },\n];\n","import { timeoutify } from \"@/util/closure.js\";\n\nexport function informSize(\n element,\n useScrollDimension = true,\n updateStyleProps = false,\n) {\n // Inform a parent window about an embed size\n const update = () => {\n window.parent.postMessage(\n {\n width: Math.max(\n useScrollDimension ? element.scrollWidth : 0,\n element.offsetWidth,\n ),\n height: Math.max(\n useScrollDimension ? element.scrollHeight : 0,\n element.offsetHeight,\n ),\n updateStyleProps,\n },\n \"*\",\n );\n };\n\n // Trigger event now and any time the window resizes\n window.addEventListener(\"resize\", timeoutify(update));\n update();\n}\n\nexport function setupResizeEvent(iframe) {\n window.addEventListener(\"message\", (event) => {\n if (event.source == iframe.contentWindow) {\n const { width, height, updateStyleProps } = event.data;\n if (width != null) {\n iframe.width = width;\n }\n if (height != null) {\n iframe.height = height;\n if (updateStyleProps) {\n // Set max height\n const existingMaxHeight = parseFloat(\n iframe.dataset.cachemaxheight || iframe.style.maxHeight,\n );\n const existingMinHeight = parseFloat(\n iframe.dataset.cacheminheight || iframe.style.minHeight,\n );\n if (\n !isNaN(existingMaxHeight) &&\n existingMaxHeight != null &&\n !isNaN(existingMinHeight) &&\n existingMinHeight != null\n ) {\n // Cache original maxheight\n iframe.dataset.cachemaxheight = existingMaxHeight;\n iframe.dataset.cacheminheight = existingMinHeight;\n iframe.style.maxHeight =\n \"\" + Math.min(existingMaxHeight, height) + \"px\";\n iframe.style.minHeight =\n \"\" + Math.max(existingMinHeight, height) + \"px\";\n } else {\n iframe.style.maxHeight = \"\" + height + \"px\";\n iframe.style.minHeight = \"\" + height + \"px\";\n }\n }\n }\n }\n });\n}\n","export function smoothify(fn) {\n let timer = null;\n\n return (...args) => {\n if (timer != null) {\n cancelAnimationFrame(timer);\n timer = null;\n }\n\n timer = requestAnimationFrame(() => {\n timer = null;\n fn(...args);\n });\n };\n}\n\nexport function timeoutify(fn, timeout = 100) {\n let timer = null;\n\n return (...args) => {\n if (timer != null) {\n clearTimeout(timer);\n timer = null;\n }\n\n timer = setTimeout(() => {\n timer = null;\n fn(...args);\n }, timeout);\n };\n}\n\nexport function ignoreFirst(closure) {\n // Ignore first invocation of a function\n let first = true;\n return (...args) => {\n if (first) {\n first = false;\n } else {\n closure(...args);\n }\n };\n}\n"],"names":["toString","author","name","repository","usage","active","addon","date_format","created_at","progress","includes","uuid","rating","comment","message","file_url","status","me","newPage","nopadding","homeLink","toUrl","$orgsAndUsers","small","inline","has","input","label","placeholder","options","selected","value","valueToName","reduce","m","opt","set","Map","nameToValue","get","e","values","organization","n","monthly_ai_credits","language","forceOcr","ocrEngine","hasTextract","feature_level","languageName","languages","code","find","defaultLanguageName","ocrEngines","async","selectLanguages","REM","publishedUrl","trim","length","Math","floor","id","slugId","thumbnail","viewable","pending","document","embed","dialog","noteCount","publicNote","orgNote","privateNote","emit","pick","realProgress","$documents","realProgressMap","pagesProcessed","pagesProcessedMap","pageCount","pageCountMap","dispatch","checkbox","checked","indeterminate","disabled","results","count","onlyPage","hasPrev","hasNext","search","start","end","rawResults","hasResults","manager","data","documents","layout","computed","hasDocuments","allSelected","every","doc","selectedMap","someSelected","hasSelection","noneSelected","removeSelected","changeAccessSelected","numSelected","accessEditDocuments","slice","changeOwnerSelected","ownerEditDocuments","reprocessSelected","reprocessDocuments","cancelProcessSelected","editDataSelected","showDiagnosticsSelected","diagnosticsOpen","showMailkeySelected","mailkeyOpen","menuTitle","metaDialogs","isStaff","processing","allProcessing","canChangeOwner","visible","$layout","filter","userId","publicAccess","organizations","indexOf","orgId","docs","documentInfoOpen","meta","metaOpen","editMetaSelected","title","project","scope","caption","addRemoveableProjects","alphabetizedProjects","projects","sort","a","b","localeCompare","$projects","addonURL","window","plausible","q","push","arguments","alphabetizedAddons","$pinned","loggedIn","selectionEditable","loading","outerHeight","editVisible","detail","forEach","selectAll","closed","langs","triggerWindowResize","dispatchEvent","Event","change","org","updateLanguage","$locale","localStorage","setItem","list","individual","currentOrg","orgs","selfOrgs","individualOrg","documentTypes","split","map","x","toLowerCase","filterFiles","files","file","endsWith","dragging","leave","Array","from","handleFiles","dataTransfer","source","createdAt","format","userName","userOrgString","description","error","nofile","projectIds","highlights","noteHighlights","readable","dataPoints","editAccess","projectsById","text","type","page","passages","relativePageUrl","aspect","pageNumber","note","isPageNote","titlePassages","hlContent","relativeNoteUrl","notes","some","access","expandHighlights","closeHighlights","closeNoteHighlights","shiftKey","highlightsActive","trimmedHighlights","moreToExpand","key","params","oneUserSearch","noStatus","noAccess","isVerified","doneProcessing","processingProgress","numProcessing","dismissed","subscribe","link","contact","version","endpoint","URL","base","resp","fetch","ok","content","json","load","show","showContact","delete","done","uploadMode","size","secondary","multiselect","join","picker","click","fileList","i","limit","errorMessage","allUploaded","percent","uploaded","index","setDismissable","initialFiles","uploadFiles","uploadAdditional","LIMIT","parseInt","PDF_SIZE_LIMIT","DOCUMENT_SIZE_LIMIT","numUploaded","tooManyFiles","tooManyBigFiles","createProgress","processProgress","uploadInProgress","newFiles","hasTooBigPdf","hasTooBigDocument","newFile","isPdf","removeFile","uploadProject","$search","oneProjectSearch","displayFiles","total","createProgressPercent","processProgressPercent","uploading","goodDocuments","newName","$_","projectEmbedTitle","projectEmbedId","duration","query","projectEmbedSearchBar","containerElem","containerWidth","containerHeight","preUploadFiles","anonymousClosed","newTitle","isSearch","oneOrZeroAccesses","oneAccessSearch","user","usersById","projs","oneOrgSearch","orgsById","isAllSearch","languageOptions","sortCompletions","info","feed","validSorts","fieldValid","example","fieldMatch","match","valid","field","transform","startsWith","completions","highlightLetters","score","completionScore","completion","lastPos","char","charAt","idx","completionFilter","candidates","candidate","fieldAliases","account","group","order","alias","mirror","compact","forceInput","bubbles","target","selectionStart","selectionEnd","completionCache","asyncComplete","fieldPost","then","mappedOrgs","mappedUsers","isMe","orgsAndUsers","mappedUser","unshift","mapped","triggerCompletion","deleteChars","individualSelection","setPreserveSpace","insert","restoreSelectionPosition","substr","setSelectionRange","preserveSpace","preserveSpaceOnKeyPress","preserveSpaceIndex","handleCursor","space","fieldPreIndex","completionX","setCompletionX","allChunks","highlight","concat","pos","highlightIdx","children","completionLeft","firstChild","getBoundingClientRect","completionRight","right","escPressed","completionIndex","transformedQuery","selectionAtEnd","searchPre","searchPost","showCompletions","test","fieldRaw","fieldPre","processedCompletions","processCompletions","selectedCompletion","noCompletion","autocomplete","ensureValidity","String","fromCharCode","keyCode","which","preventDefault","unsubscribe","filePickerUser","router","route","resolvedRoute","props","module","exports","DOCUMENTCLOUD_TOKEN_STORAGE_KEY","SQUARELET_URL","SIGN_IN_URL","SIGN_UP_URL","encodeURIComponent","location","href","SIGN_OUT_URL","auth","signingIn","isAuthenticated","setToken","JSON","stringify","removeToken","removeItem","storedData","getItem","parse","initialize","languageCodes","languageNames","defaultLanguage","codes","names","makeLanguagePairs","textractLanguageCodes","textractLanguages","l","charLimit","fieldAccessor","fieldName","fieldNameUppercase","apiField","headerText","explainerText","buttonText","initial","fieldInvalidText","isTextArea","relatedArticleUrl","informSize","element","useScrollDimension","updateStyleProps","update","parent","postMessage","width","max","scrollWidth","offsetWidth","height","scrollHeight","offsetHeight","addEventListener","timeoutify","fn","timeout","timer","args","clearTimeout","setTimeout"],"sourceRoot":""}
-./public/7886.a92694288a7a69ba665f.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="aa7f1ed2-41f5-4e1a-9cc9-cea9d5cfa109",e._sentryDebugIdIdentifier="sentry-dbid-aa7f1ed2-41f5-4e1a-9cc9-cea9d5cfa109")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[7886],{7886:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"Email address","loading":"Loading...","documentCloud":"DocumentCloud","home":"Home","new":"New","learnMore":"Learn more"},"homeTemplate":{"signedIn":"Signed in as {name}","signOut":"Sign out","signIn":"Sign in","signUp":"Sign up","goToApp":"Go to app"},"notfound":{"title":"Page not found","content":"Please try another URL"},"accessToggle":{"public":"Note will be visible to anyone with access to the document.","collaborator":"Note will be visible to anyone who can edit this document.","private":"Note will be visible to you alone.","publicName":"Public","collaboratorName":"Collaborator","privateName":"Private"},"accessIcon":{"private":"Private Access","organization":"Private to Your Organization","public":"Public Access","privateExplanation":"Only you can view this document","organizationExplanation":"Only members of your organization can view this document","publicExplanation":"Anyone can search and view this document"},"appearanceCustomizer":{"customizeAppearance":"Customize Appearance","hide":"Hide help text","show":"Show help text"},"appearanceDimension":{"responsive":"Automatic (default)","fixed":"Fixed"},"calendar":{"jan":"January","feb":"February","mar":"March","apr":"April","may":"May","jun":"June","jul":"July","aug":"August","sep":"September","oct":"October","nov":"November","dec":"December","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Cancel","cancelling":"Cancelling...","delete":"Delete","done":"Done","edit":"Edit","remove":"Remove","save":"Save","create":"Create","ok":"Ok","reset":"Reset","update":"Update","dismiss":"Dismiss","continue":"Continue","dispatch":"Dispatch","submit":"Submit"},"dialogAccessDialog":{"changeAccess":"Change access for {n, plural, one {document} other {# documents}}","selectAccess":"Select an access level for the {n, plural, one {selected document} other {# selected documents}}","public":"Public access","publicDesc":"Anyone on the internet can view the document.","verifiedHelp":"Only verified users or members of verified organizations can make uploaded documents public. If you\'re a journalist or otherwise work in publishing vetted materials to inform the public, learn more and request verification here.","privateToOrg":"You can’t change the access level to “Private to your organization” because {n, plural, one {this document is} other {one or more documents are}} associated with your individual account, not an organization. To add {n, plural, one {it} other {them}} to an organization, select {n, plural, one {it} other {them}} from the management view and click “Change Owner.” You can join or create an organization on this page.","private":"Private access","privateDesc":"Only people with explicit permission (via collaboration) have access.","organization":"Private to your organization","organizationDesc":"Only the people in your organization have access.","schedulePublication":"Schedule publication","scheduleHelp":"This document will be made public at the given date and time. Publication time is local{timezone}.","noindexTitle":"Hide from search engines and DocumentCloud search","noindexHelp":"If you enable this option, search engines like Google\'s will be told they should not index this document. Also, the document will not appear in searches from DocumentCloud for users that are not logged in.","unchanged":"Access is unchanged. Select a different access level.","future":"Must select a time in the future","change":"Change","changeNoindex":"Change visibility to search engines and DocumentCloud search for {n, plural, one {document} other {# documents}}"},"dialogCollaboratorDialog":{"confirm":"Confirm remove user","confirmMsg":"Proceeding will remove {name} from {title}. Do you wish to continue?","addCollaborators":"Add Collaborators","invite":"Put in the email of an existing DocumentCloud user below. If they don\'t have an account, have them register here for free, and then ask them to log in to DocumentCloud at least once.","admin":"Admin","view":"View","adminHelp":"Collaborators can edit this project and its documents","editHelp":"Collaborators can edit documents in this project","viewHelp":"Collaborators can view documents in this project","add":"Add","empty":"You have not yet added any collaborators to this project. Invite collaborators to grant other users access to the documents shared in this project. You can control whether collaborators have access to view/edit the project’s documents or be an admin with permissions to invite other users and edit the project itself.","manageCollaborators":"Manage Collaborators","name":"Name","access":"Access","you":"(you)"},"dialogDataDialog":{"confirm":"Confirm remove data point","removeMsg":"Proceeding will remove the {key}{value} data point from the specified documents. Do you wish to continue?","addData":"Add Data for {n, plural, one {Document} other {# Documents}}","tag":"Tag","value":"Value","key":"Key","keyValue":"Key / Value","tagInfo":"Add custom tags to categorize your documents.","eg":"e.g.","exampleTagReport":"report","exampleTagLawsuit":"lawsuit","exampleTagEmail":"email","keyValueInfo":"Add custom key / value pairs for precise categorization of your documents.","exampleKVState":"state: California","exampleKVYear":"year: 2016","exampleKVType":"type: memo","enterTag":"Enter a tag","enterKey":"Enter a key","keyInvalid":"Keys can only contain letters, numbers, underscores (_), and dashes (-)","emptyMsg":"You have not yet added any data to the specified documents. Add tags and key/value pairs to categorize and organize your documents. You can filter and search on document data to give you powerful control over document management.","manageDocumentData":"Manage Document Data","valueUnchanged":"Value remains unchanged","kvCannotBeEmpty":"Key/value cannot be empty"},"dialogReprocessDialog":{"title":"Confirm reprocess","reprocessDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to reprocess page and image text. Do you wish to continue?","reprocessSingleDoc":"Proceeding will force the document to reprocess page and image text. Do you wish to continue?","confirm":"Reprocess"},"dialogDeleteDialog":{"title":"Confirm reprocess","deleteDocs":"Proceeding will permanently delete the {n, plural, one {selected document} other {# selected documents}}. Do you wish to continue?"},"dialogCancelProcessingDialog":{"title":"Cancel processing","deleteDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to stop processing. After processing has been stopped, an error will show after which you can “Force Reprocess” or delete the {n, plural, one {document} other {documents}} using the Edit menu. Do you wish to continue?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Staff-only info for selected {n, plural, one {document} other {# documents}}","id":"ID","title":"Title","actions":"Actions","debug":"Debug","viewErrors":"View errors","viewS3":"View in S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"On (default)","respOnHelp":"Fill the width of the article container (usually works best)","respOff":"Off","respOffHelp":"The document will fit the sizes specified below","width":"Width","widthAuto":"Will fill the available space if the document is set to responsive, otherwise defaults to 700px","widthFixed":"Set a maximum width if the document is responsive, or set a fixed size if not responsive","height":"Height","heightAuto":"The height is based on the size of the document, with no maximum size. If responsive, will be set to the height of the browser window minus 100px","heightFixed":"Set a maximum height if the document is responsive, or set a fixed size if not responsive","sidebarBehavior":"Sidebar behavior","sbResponsive":"Responsive (default)","sbResponsiveHelp":"Show sidebar automatically on large screens and hide on mobile devices. In embed mode, the sidebar will be hidden","hidden":"Hidden","visible":"Visible","visibleDefault":"Visible (default)","sbHiddenHelp":"Hide the sidebar by default","sbVisibleHelp":"Show the sidebar by default","titleBehavior":"Title behavior","tVisibleHelp":"Display the title and attribution in the header of the viewer","tHiddenHelp":"Hide the title in the header of the viewer (still visible in the sidebar)","pdfLink":"PDF link","plVisibleHelp":"Show a link to the raw PDF document in the sidebar","plHiddenHelp":"Hide the sidebar PDF link (file is still accessible if the URL is known)","fullscreenOption":"Fullscreen option","fsVisibleHelp":"Show a fullscreen icon in the bottom-right corner","fsHiddenHelp":"Hide the fullscreen option","textMode":"Text mode","tmVisibleHelp":"Show an option to view the document’s text in the view dropdown","tmHiddenHelp":"Hide text mode","contributedByFormat":"Contributed by format","cbfUserAndOrg":"User and org (default)","cbfUserAndOrgHelp":"Show a document’s attribution as the user name followed by the organization","cbfOrgOnly":"Org only","cbfOrgOnlyHelp":"Attribute the document to just the organization","share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article"},"dialogDocumentInformationDialog":{"editInformation":"Edit Information for {n, plural, one {document} other {# documents}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Set the parameters for your chosen add-on to run on {n, plural, one {document} other {# documents}}"},"dialogRedactDialog":{"title":"Confirm redactions","description":"Are you sure you wish to redact the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the redactions in place. This change is irreversible."},"dialogModifyDialog":{"title":"Apply modifications","description":"Are you sure you wish to modify the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the modifications. This change is irreversible.","closeTitle":"Confirm close","closeWarning":"You will lose all your unapplied modifications. Are you sure you want to proceed?"},"dialogDeleteNoteDialog":{"title":"Confirm delete","description":"Are you sure you wish to delete the current note?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirm delete","proceedingWillRemove":"Proceeding will remove the specified section (p. {page} {title}). Do you wish to continue?","editSections":"Edit Sections","manageSections":"Manage sections to organize your document with a table of contents.","pageAbbrevNo":"p. {n}","pageAbbrev":"p.","empty":"You have not added any sections","edit":"Edit the selected section","add":"Add a new section","title":"Title","missingTitle":"Please enter a title","updateTitle":"Enter a new title or page number","uniquePageNumber":"You must enter a unique page number","invalidPageNumber":"Page number is invalid"},"dialogEmbedDialog":{"updatingDocument":"Updating document...","makingPublic":"The document is currently being made public. This may take a minute or two.","wouldMakePublic":"Would you like to make this document public before sharing?","notPublic":"The document is not currently public. If you embed or link it, only you and collaborators will be able to view it until it is made public. Click below when you’re ready to publish this document to the public.","makePublic":"Make document public","leave":"Leave as is","selectShare":"Select share option","selectShareHelp":"Choose whether to share the entire document or just a page or note.","shareDoc":"Share entire document","shareDocHelp":"Link or embed the entire document. (This is the most commonly used share option.)","sharePage":"Share specific page","sharePageHelp":"Link or embed a single page of the document. Useful for highlighting a page excerpt.","shareNote":"Share specific note","shareNoteHelpHasNote":"Link or embed a note within the document. Useful for highlighting a region of a page.","shareNoteHelpNoNote":"Once you add notes to the document, use this feature to link or embed them."},"dialogErrorDialog":{"errorOccurred":"An error occurred","unexpectedErrorOccurred":"An unexpected error occurred","tryAgain":"Please try again later.","close":"Close","refresh":"Refresh"},"dialogNoteEmbedDialog":{"embedNote":"Embed a note of “{title}”","embedDesc":"Copy the HTML code to embed this note within an article or post:"},"dialogPageEmbedDialog":{"embedPage":"Embed a page of “{title}”","embedDesc":"Copy the HTML code to embed this page within an article or post:","selectPage":"Select the page to embed:","page":"Page {n} (currently visible)","otherPage":"Other page","enterPageNumber":"Enter the page number to embed:"},"dialogProjectAccessDialog":{"changeAccessFor":"Change access for {name}","selectAccess":"Select an access level below for {name} in {title}","adminAccess":"Admin Access","editAccess":"Edit Access","viewAccess":"View Access","adminHelp":"This collaborator can edit this project and its documents. The collaborator can invite users, delete users, and remove the project.","editHelp":"This collaborator can edit documents in this project but cannot edit the project itself.","viewHelp":"This collaborator can view documents in this project but cannot edit them or the project.","invalidAccess":"Access is already set to {access}. Select a different access level.","changeAccess":"Change access"},"dialogOwnerDialog":{"selectUser":"User must be selected","selectOrg":"Organization must be selected","changeOwner":"Change owner for {n, plural, one {document} other {# documents}}","accessWarning":"Warning: You may lose access to the specified {n, plural, one {document} other {# documents}} as a result of changing the document owner","user":"User:","filterUsers":"Type to filter users...","filterOrgs":"Type to filter organizations..."},"dialogProjectDialog":{"confirmDelete":"Confirm delete","deleteProject":"Are you sure you want to delete this project ({project})?","editProject":"Edit Project","createProject":"Create New Project","title":"Title...","projectDesc":"Project Description (optional)","manageCollabs":"Manage Collaborators","share":"Share / Embed Project","enterTitle":"Enter a title","changeTitle":"Change the title or description"},"dialogProjectEmbedDialog":{"share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article or post:","invalid":"Invalid project","cannotEmbed":"Cannot embed this project, as it does not appear to exist."},"htmlEditor":{"preview":"Preview:"},"image":{"error":"An error occurred. Try refreshing the page"},"omniselect":{"filter":"Type to filter","noResults":"No results. Click to clear filter."},"shareOptions":{"errorText":"An unexpected error occurred. Please try again later.","copyHtml":"Copy HTML code","addShortcode":"Add this shortcode to your WordPress content —","pluginRequired":"plugin required","copyShortcode":"Copy shortcode","copyUrl":"Copy URL"},"specialMessage":{"contactUs":"Contact us with bug reports, questions, and suggestions."},"uploadOptions":{"documentLang":"Document language:","forceOcr":"Force OCR:","ocrEngine":"OCR Engine:","tesseract":"Tesseract is an open source OCR engine available free to all DocumentCloud accounts.","textractPremium":"Textract is a more powerful OCR engine that can better handle messy text, handwriting and fuzzy scans. It is a premium feature available on Professional and Organization plans. Learn more or sign up.","creditHelpText":"Selecting Textract will cost one AI Credit per page in the document. If you go over, the document will fall back to using Tesseract. You are currently working on behalf of {organization} and have {n, plural, one {# credit} other {# credits}} left.","documentLanguagePlaceholder":"Begin typing to see options"},"actionBar":{"selectDocs":"Select some documents to reveal edit actions","noPerms":"You do not have permission to edit all of the selected documents","editMenu":"Edit","projectsMenu":"Projects","addOnsMenu":"Add-Ons"},"authSection":{"help":"Help","language":"Language","faq":"FAQ","searchDocs":"Search Documentation","apiDocs":"API Documentation","addOns":"Add-Ons","premium":"DocumentCloud Premium","emailUs":"Email Us","acctSettings":"Account settings","signOut":"Sign out","changeOrg":"Change organization","personalAcct":"Personal Account","signIn":"Sign in","uploadEmail":"Upload via email"},"documents":{"yourDocuments":"Your Documents","searchResults":"Search Results","accessDocuments":"Your {access}Documents","nameDocuments":"{name}\'s {access}Documents","allDocuments":"All {access}Documents","mustBeVerified":"You must be a verified journalist to upload documents","upload":"Upload","dropFile":"Drop file to upload"},"document":{"open":"Open","updating":"Updating document...","processing":"Processing","processingError":"An error occurred trying to process your document","remove":"Remove","improper":"Your document was uploaded improperly","project":"Project","totalMatchingPages":"{n} of {m} pages matching the query","showAll":"Show all","matchingPages":"{n} pages matching the query","pageAbbrev":"p.","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source","noteCount":"{n, plural, one {# note} other {# notes}}"},"documentThumbnail":{"pages":"pages","loading":"Loading progress information..."},"mainContainer":{"error":"Error","errorMsg":"We could not reach the DocumentCloud server. Please try refreshing the page later.","refresh":"Refresh"},"editMenu":{"editDocInfo":"Edit Document Information","changeAccess":"Change Access","editDocData":"Edit Document Data","cancelProcessing":"Cancel Processing","forceReprocess":"Force Reprocess","entities":"Entities BETA","changeOwner":"Change Owner","delete":"Delete","diagnosticInfo":"Diagnostic Info"},"metaFields":{"defaultFieldInvalidText":"The document already has this {fieldName}","titleFieldTitle":"Title","titleFieldName":"name","titleFieldNameUppercase":"Name","titleFieldHeader":"Rename {n, plural, one {# document} other {# documents}}","titleFieldDescription":"Enter a name below for the {n, plural, one {selected document} other {# selected documents}}","titleFieldButton":"Rename","titleFieldInvalidSameName":"The document already has this name","titleFieldInvalidEmptyName":"Enter a valid name","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Edit source for {n, plural, one {# document} other {# documents}}","sourceFieldDescription":"Enter a source below for the {n, plural, one {selected document} other {# selected documents}}","sourceFieldButton":"Edit","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Edit description for {n, plural, one {# document} other {# documents}}","descriptionFieldDescription":"Enter the description below for the {n, plural, one {selected document} other {# selected documents}}","descriptionFieldButton":"Edit","relatedArticleFieldTitle":"Related Article URL","relatedArticleFieldName":"related article URL","relatedArticleFieldNameUppercase":"Related Article URL","relatedArticleFieldHeader":"Edit the related article URL for {n, plural, one {# document} other {# documents}}","relatedArticleFieldDescription":"Enter the related article URL below for the {n, plural, one {selected document} other {# selected documents}}","relatedArticleFieldButton":"Edit","publishedUrlFieldTitle":"Published URL","publishedUrlFieldName":"published URL","publishedUrlFieldNameUppercase":"Published URL","publishedUrlFieldHeader":"Edit the published URL for {n, plural, one {# document} other {# documents}}","publishedUrlFieldDescription":"Enter the published URL below for the {n, plural, one {selected document} other {# selected documents}}","publishedUrlFieldButton":"Edit"},"projectsMenu":{"newProject":"+ New Project","projMembership":"Project Membership","selectDocs":"Select documents to place them in projects","createProj":"Create a project to organize and share documents"},"addonsMenu":{"newAddon":"Request new Add-on from Staff","selectDocs":"Select documents to dispatch them in add-ons","addonsList":"List of Add-Ons","createAddon":"Choose more documents to use add-ons","addon":"Add-on","learnMore":"Learn more about Add-Ons","browseAll":"Browse All Add-Ons","addonRuns":"See past and future Add-On runs"},"noDocuments":{"noSearchResults":"No search results","queryNoResults":"Your search query returned no results. Try again with a broader search query.","welcome":"Welcome to DocumentCloud!","verify1":"Note that currently your account is not verified to upload. You can search through the public repository, organize documents you\'re interested in into projects, leave private notes, and collaborate on editing and annotating documents other users invite you to.","verify2":"If you’d like to upload or publish documents and you\'re a working journalist or other organization interested in publishing primary source materials in the public interest, you\'ll need to have your account verified or added to a verified organization. This is a simple process:","verify3":"First, see if your organization already exists and, if you find it, click \\"Request to Join\\" on its page.","verify4":"If your organization has not been verified yet, or if you\'re a freelancer, request verification here. Requests usually take two business days to process.","uploadFirst":"Upload your first document","upload1":"Upload a document file to get started using DocumentCloud. You can drag the file into this window, or click on the blue “Upload” button above.","upload2":"Once you upload a file, DocumentCloud will process the document and extract its contents. It may take a few minutes for this to complete, but once it’s done your document will be optimized for analysis and sharing on the web.","requestVerificationAction":"Request Verification to Upload"},"paginator":{"of":"of","document":"{n, plural, one {Document} other {Documents}}","next":"Next","previous":"Previous"},"processingBar":{"doneProcessing":"Done processing","processingDocuments":"Processing {n, plural, one {document} other {# documents}}"},"searchBar":{"tips":"Search tips: add filters by typing user:, project:, or organization:, etc. Use sort: to order results.","learnMore":"Learn more","search":"Search"},"searchLink":{"search":"Search this document collection"},"projects":{"header":"Projects","allDocuments":"All Documents","yourDocuments":"Your Documents","yourPubDocuments":"Your Public Documents","orgDocuments":"{name}’s Documents","newProject":"+ New Project","createProject":"Create your first project by clicking “New Project” above."},"organizations":{"sameOrgUsers":"Users in organization"},"uploadDialog":{"docUpload":"Document Upload","docUploadProj":"Document Upload to {title}","selectDocument":"Select or drag a document to begin the document upload process. You will then be able to edit document information.","pdfSizeWarning":"You can only upload PDF files under {size}.","nonPdfSizeWarning":"You can only upload non-PDF document files under {size}.","fileReady":"{n, plural, one {file} other {files}} ready to upload","fileLimitWarning":"You can only upload {limit} files at once.","moreOptions":"More options","beginUpload":"Begin upload","selectFiles":"+ Select files","dragDrop":"Drag and drop files here","publicMsg":"Document will be publicly visible.","collabMsg":"Document will be visible to your organization.","privateMsg":"Document will be visible to you alone.","collabName":"Organization","submitting":"Almost done... submitting uploaded files for processing ({percent})","uploading":"Uploading ... ({uploaded}/{length})","gettingInfo":"Getting upload information ({percent})","pleaseLeaveOpen":"Please leave this page open while your documents upload. This dialog will automatically close when they have finished uploading.","errorHeading":"Error occurred while uploading","errorMsg":"We failed to {errorMessage}. Please try again later.","editDocInfo":"Edit document information:","untitled":"Untitled","uploadFiles":"Upload additional files","selectMore":"+ Select more files","dragDropMore":"Drag and drop additional files here"},"embedNote":{"viewTheNote":"View the note ‘{title}‘ in its original document context on DocumentCloud in a new window or tab","viewDoc":"View the entire document with DocumentCloud"},"embedPage":{"viewDoc":"View entire {title} on DocumentCloud in new window or tab","pageOf":"Page {page} of {title}","gotoDocCloud":"Go to DocumentCloud in new window or tab"},"entities":{"back":"Back","page":"Page","of":"of","totalEntityResult":"{n, plural, one {# total entity result} other {# total entity results}} ","filter":"Filter","applyFilters":"Apply filters","kind":"Kind","clear":"Clear","person":"Person","org":"Organization","location":"Location","event":"Event","workOfArt":"Work of Art","consumerGood":"Consumer Good","address":"Address","date":"Date","number":"Number","phoneNumber":"Phone Number","price":"Price","unknown":"Unknown","other":"Other","occurrences":"Occurrences","proper":"Proper","common":"Common","advanced":"Advanced","relevanceThreshold":"Relevance threshold:","knowledgeGraph":"Knowledge graph:","hasKG":"Has a knowledge graph ID","noKG":"Does not have a knowledge graph ID","wikiUrl":"Wikipedia URL:","hasWiki":"Has a Wikipedia URL","noWiki":"Does not have a Wikipedia URL","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipedia","entityExtraction":"Entity extraction for “{title}”","extractingEntities":"Extracting entities...","welcome":"Welcome to entity extraction! This feature is very much in progress but we want it in your hands early to welcome any feedback you might have.","manual":"Right now the process for extracting entities is manual. This document has not had entities extracted yet, so click below to get started.","error":"An unexpected error occurred","extract":"Extract entities","noEntities":"There are no entities. This could happen if the document doesn’t have text, is non-English (only English is supported for now), or some error occurred.","starting":"Starting extaction..."},"home":{"about":"DocumentCloud is an all-in-one platform for documents: upload, organize, analyze, annotate, search, and embed.","viewPublicDocs":"View public documents"},"annotation":{"title":"Note Title","description":"Note Description (optional)","unchanged":"Note remains unchanged","noTitle":"Enter a title for the note","org":"This note is only visible to you and others with edit access to this document","private":"This private note is only visible to you","by":"Note by {name}","byOrg":"Note by {name}, {org}","addPageNote":"Add page note"},"viewDropdown":{"document":"Document","plainText":"Plain Text","thumbnail":"Thumbnail","notes":"Notes","search":"Search Results"},"zoom":{"fitWidth":"Fit width","fitHeight":"Fit height"},"drawer":{"close":"Close Drawer"},"titleHeader":{"contributedBy":"Contributed by {name}"},"annotatePane":{"annotateDocument":"Add Note","desc":"Highlight a portion of the page, or click between pages to create a note."},"modifyPane":{"pagesSelected":"{n, plural, one {# Page} other {# Pages}} Selected","applyModifications":"Apply Modifications","duplicate":"Duplicate","move":"Move","rotate":"Rotate","unselect":"Unselect","remove":"Remove","insertPages":"Insert {n, plural, one {# Page} other {# Pages}}","pagesPending":"{n, plural, one {# Page} other {# Pages}} Pending Insertion","insertBegin":"Insert {n, plural, one {# page} other {# pages}} at beginning.","insertEnd":"Insert {n, plural, one {# page} other {# pages}} at end.","insertBetween":"Insert {n, plural, one {# page} other {# pages}} in between page {p0} and {p1}.","click":"Click in-between pages below to mark where to paste {n, plural, one {# page} other {# pages}}.","insert":"Insert","insertAtEnd":"Insert at end","insertPosition":"Insert pages at position","insertOtherDoc":"Insert from other document","modifyPages":"Modify Pages","select":"Select pages below to apply modifications (page rotation, rearranging, and deletion). Click in-between pages to insert.","undo":"Undo","redo":"Redo"},"redactPane":{"redactDoc":"Redact Document","desc":"Click and drag to draw a black rectangle over each portion of the document you’d like to redact. Associated text will be removed when you save your redactions.","confirm":"Confirm Redactions","undo":"Undo"},"searchPane":{"yourQuery":"Your query {search} was found on {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Select a note","desc":"Select the note that you want to share."},"searchResults":{"resultPages":"{results, plural, one {# result} other {# results}} across {pages, plural, one {# page} other {# pages}}","noSearchResults":"No search results. Try again with a broader query.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Updating docucment...","original":"Original Document (PDF) »","related":"Related Article »","contributed":"Contributed by {name}","source":"Source: {source}","actions":"Document Actions","share":"Share","shareDesc":"Create an embed or share on social media.","annotate":"Add Note","annotateDesc":"Leave a public, private or shared note, which can be embedded within an article.","redact":"Redact","redactDesc":"Create redactions on the document to hide text. The document will reprocess afterwards.","modify":"Modify Pages","modifyDesc":"Rearrange, rotate, delete, insert, and split pages.","info":"Edit Document Info","infoDesc":"Modify document information like description and related URL.","data":"Edit Tags and Data","dataDesc":"Add tags and key/value pairs to categorize your document.","sections":"Edit Sections","sectionsDesc":"Add sections to organize your document with a table of contents.","privateNote":"Add Private Note","privateNoteDesc":"Leave a public, private or shared note, which can be embedded within an article."},"viewer":{"notFound":"Document not found","notFoundDesc":"The document you requested either does not exist or you lack permission to access it","processing":"Document is processing","processingDesc":"The document you requested is processing and will automatically refresh when it is ready","error":"Document has encountered an error","errorDesc":"A processing error has been encountered in the document you requested","accessible":"Document not accessible","accessibleDesc":"The document you requested is still processing or you lack permission to access to it"},"addonDispatchDialog":{"addons":"Add-Ons","backButton":"Browse Add-Ons","select":"Documents to run this Add-On against:","queryNoSelected":"This Add-On will try to run against the {n, plural, one {# document} other {# documents}} currently included in your search results. To run it against only selected documents, cancel this and select some, then select the Add-On again.","noSelected":"You must select some documents to run against. Cancel this and select some, then select the Add-On again.","runSelected":"This Add-On will try to run against the {n, plural, one {# currently selected document} other {# currently selected documents}}.","runQuery":"This Add-On will try to run against the {n, plural, one {# document} other {# documents}} currently included in your search results.","labelSelected":"The {n, plural, one {# currently selected document} other {# currently selected documents}}","labelQuery":"The {n, plural, one {# document} other {# documents}} from the current search results","learnMore":"Learn more.","hideAddons":"Hide Scheduled Add-Ons","showRuns":"Show Runs","hideRuns":"Hide Runs","showAddons":"Show Scheduled Add-Ons ({n})","runSchedule":"Run on a schedule:","runOnce":"Run once","disable":"Disable","signIn":"Sign in to use Add-Ons","createdBy":"Created by","categories":"Categories","viewsource":"View Source","share":"Share","shareClipboardSuccess":"Copied add-on URL to your clipboard","scheduleSuccess":"Add-on is now scheduled","runSuccess":"Add-on is now running","selectionHelp":"From the main list, select individual documents or run a search for the documents you want, for example “+project:mueller-docs-200005”.","selectionLearnMore":"Learn more about how Add-Ons work"},"addonBrowserDialog":{"title":"Browse Add-Ons","subtitle":"Free automations, shortcuts and power-ups from the DocumentCloud community","categories":"Categories","browseAll":"Browse All Add-Ons","searchPlaceholder":"Search…","loading":"Loading…","empty":"No add-ons found","retry":"Retry","active":"Active","inactive":"Inactive","next":"Next","previous":"Previous","viewsource":"View Source","usage":"Usage","pinnedTip":"Quickly access your favorite Add-Ons by clicking the “Pin” icon next to its name. They’ll then be available to run from the Add-Ons dropdown menu.","featuredTip":"Here’s some of the DocumentCloud team’s favorite Add-Ons, including both new additions as well as classics we think every user should try."},"addonRuns":{"scheduled":"Scheduled Add-Ons","previous":"Previous Runs","runsOn":"Runs {schedule}","upcoming":{"empty":"Scheduled add-ons will appear here","loading":"Loading…","retry":"Retry"},"history":{"empty":"Previous add-on runs will appear here","loading":"Loading…","retry":"Retry"}},"addonProgress":{"timedOut":"Timed out","feedback":"Feedback on this Add-On run","progress":"Add-Ons in progress","thanks":"Thanks for the feedback!","download":"Download file"},"addonSidebar":{"title":"Add-Ons","runs":"Schedule & history"},"uploadEmailDialog":{"uploadEmailAddress":"Upload via email","bodyText":"You can upload documents to your account by sending them to to a special email address as attachments. For security reasons, this email is only shown to you once. Please copy it to a secure location: It will accept attachments from any email account. You can generate a new upload address at any time (which will disable the old one) or turn off this feature entirely. Documents are uploaded as private.
We’d love your feedback and to hear about creative use cases at info@documentcloud.org.","createMsg":"Upload email address succesfully created: {mailkey}@uploads.documentcloud.org","destroyMsg":"Any upload email address has been removed from your account.","disable":"Disable upload via email"},"anonymous":{"title":"Welcome to DocumentCloud, an open document archive from MuckRock!","p1":"This site helps organize, analyze and host millions of records contributed by verified newsrooms, research organizations and other groups that help inform the public through the user of primary source materials. Using the search bar above, you can browse through {n} publicly published documents, with thousands more added ever day.","p2":"If you\'re part of a newsroom, academic organization, or other public-interest organization that vets and publishes materials in the public interest, you can register here and request verification to upload materials, or learn more about DocumentCloud and it\'s powerful suite of hosting, analysis and publication tools.","p3":"Want more fascinating documents, open data and original reporting to your inbox? Subscribe to MuckRock\'s newsletter:","p4":"DocumentCloud is part of a suite of transparency tools from the MuckRock Foundation, a 501c3 registered non-profit. This archive is open to the public and advertisement free thanks to support from readers like you — you can learn more about our work or make a donation.","subscribe":"Subscribe"}}')}}]);
-./public/6619.ae40a50e8283e7fcca7e.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="ad623635-4016-44c2-802a-23d1281ede41",e._sentryDebugIdIdentifier="sentry-dbid-ad623635-4016-44c2-802a-23d1281ede41")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[6619],{6619:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"Adresse e-mail","loading":"Chargement...","documentCloud":"DocumentCloud","home":"Page d\'accueil"},"homeTemplate":{"signedIn":"Connecté en tant que {name}","signOut":"Se déconnecter","signIn":"Se connecter","signUp":"S\'enregistrer","goToApp":"Aller à l\'application"},"accessToggle":{"public":"La note sera visible pour toute personne ayant accès au document.","collaborator":"La note sera visible par toute personne pouvant modifier le document.","private":"La note ne sera visible que par vous.","publicName":"Public","collaboratorName":"Collaborateur","privateName":"Privé"},"accessIcon":{"private":"Accès privé","organization":"Accès réservé à votre organisation","public":"Accès public","privateExplanation":"Seul vous pouvez voir ce document","organizationExplanation":"Seuls les membres de votre organisation peuvent voir ce document","publicExplanation":"Tout le monde peut chercher et voir ce document"},"appearanceCustomizer":{"customizeAppearance":"Personnaliser l\'apparence","hide":"Masquer le texte de l\'aide","show":"Montrer le texte de l\'aide"},"appearanceDimension":{"responsive":"Automatique (par défaut)","fixed":"Fixée"},"calendar":{"jan":"Janvier","feb":"Février","mar":"Mars","apr":"Avril","may":"Mai","jun":"Juin","jul":"Juillet","aug":"Août","sep":"Septembre","oct":"Octobre","nov":"Novembre","dec":"Décembre","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Annuler","delete":"Supprimer","done":"Fait","edit":"Modifier","remove":"Enlever","save":"Sauvegarder","create":"Créer","ok":"Ok","update":"Mettre à jour","dismiss":"Annuler","continue":"Continuer"},"dialogAccessDialog":{"changeAccess":"Changer l\'accès pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","selectAccess":"Sélectionnez un niveau d\'accès pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","public":"Accès public","publicDesc":"N\'importe qui sur Internet peut rechercher et consulter le document.","verifiedHelp":"Seuls les utilisateurs vérifiés ou les membres d\'organisations vérifiées peuvent rendre publics les documents téléchargés. Si vous êtes journaliste ou que vous travaillez par ailleurs à la publication de matériel révisé pour informer le public, en savoir plus et demander la vérification ici.","privateToOrg":"Vous ne pouvez pas changer le niveau d\'accès à “Réservé à votre organisation” car {n, plural, one {ce document est} other {un ou plusieurs de ces documents sont}} associés à votre compte individuel et pas à une organisation. Pour ajouter {n, plural, one {ce document} other {ces documents}} à votre organisation, sélectionnez {n, plural, one {le} other {les}} depuis la liste de gestion et sélectionnez “Changer le propriétaire.” Vous pouvez rejoindre ou créer une organisation sur cette page.","private":"Accès privé","privateDesc":"Seules les personnes ayant une autorisation explicite (par le biais de la collaboration) ont accès.","organization":"Accès réservé à votre organisation","organizationDesc":"Seules les personnes de votre organisation ont accès.","schedulePublication":"Planification de la publication","scheduleHelp":"Ce document sera rendu public à la date et heure indiquées. L\'heure de publication est localisée à {timezone}.","unchanged":"L\'accès n\'a pas été modifié. Sélectionnez un niveau d\'accès différent.","future":"Vous devez sélectionner une date dans le futur","change":"Modifier"},"dialogCollaboratorDialog":{"confirm":"Confirmer la suppression de l\'utilisateur","confirmMsg":"Continuer supprimera {name} de {title}. Voulez-vous continuer ?","addCollaborators":"Ajouter des collaborateurs","invite":"Entrer les adresses email d\'utilisateurs DocumentCloud existants ci-dessous. S\'ils n\'ont pas de compte, faites-les s\'inscrire gratuitement, puis demandez-leur de se connecter à DocumentCloud au moins une fois.","admin":"Administration","view":"Vue","adminHelp":"Les collaborateurs peuvent modifier ce projet et ses documents","editHelp":"Les collaborateurs peuvent modifier les documents de ce projet","viewHelp":"Les collaborateurs peuvent voir les documents de ce projet","add":"Ajouter","empty":"Vous n\'avez pas encore ajouté de collaborateur à ce projet. Invitez des collaborateurs afin d\'accorder à d\'autres utilisateurs l\'accès aux documents partagés dans ce projet. Vous pouvez contrôler si les collaborateurs ont accès pour voir/modifier les documents du projet ou être des administrateurs avec les permissions d\'inviter d\'autres utilisateurs et de modifier le projet lui-même.","manageCollaborators":"Gérer les collaborateurs","name":"Nom","access":"Accès","you":"(vous)"},"dialogDataDialog":{"confirm":"Confirmer la suppression du point de données","removeMsg":"Continuer supprimera la paire {key} / {value} des documents spécifiés. Voulez-vous continuer ?","addData":"Ajouter des données pour {n, plural, one {le document} other {# les documents}}","tag":"Étiquette","value":"Valeur","key":"Clé","keyValue":"Clé / Valeur","tagInfo":"Ajoutez des étiquettes personnalisées pour catégoriser vos documents.","eg":"p. ex.","exampleTagReport":"signaler","exampleTagLawsuit":"litige","exampleTagEmail":"courriel","keyValueInfo":"Ajoutez des paires clé / valeur personnalisées pour une catégorisation précise de vos documents.","exampleKVState":"État : Californie","exampleKVYear":"Année : 2016","exampleKVType":"type: mémo","enterTag":"Entrez une étiquette","enterKey":"Entrez une clé","keyInvalid":"Les clés ne peuvent contenir que des lettres, des chiffres, des tirets bas (_) et des tirets (-)","emptyMsg":"Vous n\'avez pas encore ajouté de données au(x) document(s) spécifié(s). Ajoutez des paires clés / valeurs pour catégoriser et organiser vos documents. Vous pouvez filtrer et rechercher dans les données des documents pour un meilleur contrôle sur votre gestion documentaire.","manageDocumentData":"Gérer les données du document","valueUnchanged":"Les valeurs restent inchangées","kvCannotBeEmpty":"La paire clé / valeur ne peut être vide"},"dialogReprocessDialog":{"title":"Confirmez le retraitement","reprocessDocs":"Continuer forcera {n, plural, one {le document sélectionné} other {# les documents sélectionnés}} à retraiter le texte de la page et de l\'image. Voulez-vous continuer ?","reprocessSingleDoc":"Continuer obligera le document à retraiter le texte de la page et de l\'image. Voulez-vous continuer ?","confirm":"Retraiter"},"dialogDeleteDialog":{"title":"Confirmez le retraitement","deleteDocs":"Continuer supprimera définitivement {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}. Voulez-vous continuer ?"},"dialogCancelProcessingDialog":{"title":"Annuler le retraitement","deleteDocs":"Continuer forcera {n, plural, one {le document sélectionné} other {# les documents sélectionnés}} à annuler le traitement. Une fois le traitement stoppé, une erreur va s\'afficher, vous pourrez alors “Forcer le retraitement” et supprimer {n, plural, one {le document} other {les documents}} en utilisant le menu Modifier. Voulez-vous continuer ?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Infos réservées aux membres de l\'équipe pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","id":"ID","title":"Titre","actions":"Actions","debug":"Débug","viewErrors":"Voir les erreurs","viewS3":"Voir en S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"Activé (Par défaut)","respOnHelp":"Remplir avec la même largeur que l\'article (fonctionne généralement le mieux)","respOff":"Désactivée","respOffHelp":"Le document va correspondre aux tailles spécifiées ci-dessous","width":"Largeur","widthAuto":"Remplira l\'espace disponible si le document est réglé sur \\"responsive\\", sinon par défaut à 700 pixels","widthFixed":"Définissez une largeur maximale si le document est \\"responsive\\", ou définissez une taille fixe s\'il n\'est pas \\"responsive\\"","height":"Hauteur","heightAuto":"La hauteur est basée sur la taille du document, sans maximum. Si le document est \\"responsive\\", elle sera réglée sur la hauteur de la fenêtre du navigateur moins 100 pixels","heightFixed":"Définissez une largeur maximale si le document est \\"responsive\\", ou définissez une taille fixe s\'il n\'est pas \\"responsive\\"","sidebarBehavior":"Comportement de la barre latérale","sbResponsive":"Responsive (par défaut)","sbResponsiveHelp":"Afficher automatiquement la barre latérale sur les grands écrans et masquer sur les appareils mobiles. En mode intégré, la barre latérale sera masquée.","hidden":"Masqué","visible":"Visible","visibleDefault":"Visible (par défaut)","sbHiddenHelp":"Masquer la barre latérale par défaut","sbVisibleHelp":"Afficher la barre latérale par défaut","titleBehavior":"Comportement du titre","tVisibleHelp":"Afficher le titre et l\'attribution dans l\'en-tête de la visionneuse","tHiddenHelp":"Cacher le titre dans l\'en-tête de la visionneuse (toujours visible dans la barre latérale)","pdfLink":"Lien du PDF","plVisibleHelp":"Afficher un lien vers le document en PDF dans la barre latérale","plHiddenHelp":"Masquer le lien vers le PDF de la barre latérale (le fichier est toujours accessible si l\'URL est connue)","fullscreenOption":"Option plein écran","fsVisibleHelp":"Afficher l\'icône pour le plein écran dans le coin inférieur droit","fsHiddenHelp":"Masquer l\'option plein écran","textMode":"Mode Texte","tmVisibleHelp":"Afficher une option pour afficher le texte du document dans la liste déroulante","tmHiddenHelp":"Masquer le mode texte","contributedByFormat":"Contribué par format","cbfUserAndOrg":"Utilisateur et organisation (par défaut)","cbfUserAndOrgHelp":"Afficher l\'attribution d\'un document avec le nom d\'utilisateur suivi par celui de l\'organisation","cbfOrgOnly":"Organisation uniquement","cbfOrgOnlyHelp":"Attribuer le document seulement à l\'organisation","share":"Partager « {title} »","embedDesc":"Copiez le code HTML pour intégrer ce document dans un article :"},"dialogDocumentInformationDialog":{"editInformation":"Modifier la description pour {n, plural, one {# le document} other {# les documents}}"},"dialogRedactDialog":{"title":"Confirmer les masquages","description":"Êtes-vous sûr de vouloir appliquer les masques au document en cours ? Si vous continuez, la visionneuse de document sera inaccessible temporairement pendant que le document se retraitera afin d\'appliquer les masques. Ce changement est irréversible."},"dialogModifyDialog":{"title":"Application des modifications","description":"Êtes-vous sûr de vouloir modifier le document en cours ? Si vous continuez, la visionneuse de document sera inaccessible temporairement pendant que le document se retraitera afin d\'appliquer les modifications. Ce changement est irréversible.","closeTitle":"Confirmer la fermeture","closeWarning":"Vous perdrez toutes les modifications non enregistrées. Êtes-vous sûr de vouloir continuer ?"},"dialogDeleteNoteDialog":{"title":"Confirmer la suppression","description":"Êtes-vous sûr de vouloir supprimer cette note ?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirmer la suppression","proceedingWillRemove":"Continuer supprimera la section spécifiée (p. {page} {title}). Voulez-vous continuer ?","editSections":"Modifier les sections","manageSections":"Ajoutez des sections pour organiser votre document avec une table des matières.","pageAbbrevNo":"p. {n}","pageAbbrev":"p. ","empty":"Vous n\'avez ajouté aucune section.","edit":"Modifier la section sélectionnée","add":"Ajouter une nouvelle section","title":"Titre","missingTitle":"Veuillez saisir un titre","updateTitle":"Entrez un nouveau titre ou un numéro de page","uniquePageNumber":"Vous devez entrer un numéro de page unique","invalidPageNumber":"Le numéro de page est invalide"},"dialogEmbedDialog":{"updatingDocument":"Mise à jour du document...","makingPublic":"Le document est en cours de publication. Cela peut prendre une ou deux minutes.","wouldMakePublic":"Voulez-vous rendre ce document public avant de le partager ?","notPublic":"Le document n\'est pas public pour le moment. Si vous l\'intégrez ou le liez, vous et vos collaborateurs serez seuls en mesure de le voir jusqu\'à ce qu\'il soit rendu public. Cliquez ci-dessous lorsque vous êtes prêt à rendre ce document public.","makePublic":"Rendre le document public","leave":"Laisser tel quel","selectShare":"Sélectionnez une option de partage","selectShareHelp":"Choisissez si vous voulez partager le document entier ou seulement une page ou bien une note.","shareDoc":"Partager le document entier","shareDocHelp":"Lier ou intégrer le document entier (c\'est l\'option de partage la plus couramment utilisée)","sharePage":"Partager une page spécifique","sharePageHelp":"Lier ou intégrer une seule page du document. Utile pour mettre en évidence un extrait de page.","shareNote":"Partager une note spécifique","shareNoteHelpHasNote":"Lier ou intégrer une seule page du document. Utile pour mettre en évidence un extrait d\'une page.","shareNoteHelpNoNote":"Une fois que vous ajoutez des notes au document, utilisez cette fonctionnalité pour les lier ou les intégrer."},"dialogErrorDialog":{"errorOccurred":"Un erreur est survenue","unexpectedErrorOccurred":"Une erreur inattendue est survenue","tryAgain":"Veuillez réessayer ultérieurement.","close":"Fermer","refresh":"Actualiser"},"dialogNoteEmbedDialog":{"embedNote":"Intégrer une note de « {title} »","embedDesc":"Copiez le code HTML pour intégrer cette note dans un article :"},"dialogPageEmbedDialog":{"embedPage":"Intégrer une page de « {title} »","embedDesc":"Copiez le code HTML pour intégrer cette note dans un article :","selectPage":"Sélectionnez la page à intégrer :","page":"Page {n} (actuellement à l\'écran)","otherPage":"Autre page","enterPageNumber":"Entrez le numéro de page à intégrer :"},"dialogProjectAccessDialog":{"changeAccessFor":"Modifier l\'accès pour {name}","selectAccess":"Sélectionnez un niveau d\'accès ci-dessous pour {name} dans {title}","adminAccess":"Accès Administrateur","editAccess":"Modifier les accès","viewAccess":"Voir les accès","adminHelp":"Ce collaborateur peut modifier ce projet et ses documents. Le collaborateur peut inviter des utilisateurs, supprimer des utilisateurs et supprimer le projet.","editHelp":"Ce collaborateur peut modifier les documents de ce projet mais ne peut pas modifier le projet lui-même.","viewHelp":"Ce collaborateur peut voir les documents de ce projet mais ne peut pas les modifier ni modifier le projet.","invalidAccess":"L\'accès est déjà réglé sur {access}. Sélectionnez un niveau d\'accès différent.","changeAccess":"Modifier le niveau d\'accès"},"dialogOwnerDialog":{"selectUser":"Un utilisateur doit être sélectionné","selectOrg":"Une organisation doit être sélectionnée","changeOwner":"Changer le propriétaire pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","accessWarning":"Avertissement : Vous pouvez perdre l\'accès {n, plural, one {au document} other {# aux documents}} en raison de la modification du propriétaire.","user":"Utilisateur :","filterUsers":"Tapez du texte pour filtrer les utilisateurs...","filterOrgs":"Tapez du texte pour filtrer les organisations..."},"dialogProjectDialog":{"confirmDelete":"Confirmer la suppression","deleteProject":"Êtes-vous certain de vouloir supprimer ce projet ({project}) ?","editProject":"Modifier le projet","createProject":"Créer un nouveau projet","title":"Titre...","projectDesc":"Description du projet (optionnel)","manageCollabs":"Gérer les collaborateurs","share":"Partager / Intégrer le projet","enterTitle":"Saisir un titre","changeTitle":"Modifier le titre ou la description"},"dialogProjectEmbedDialog":{"share":"Partager « {title} »","embedDesc":"Copiez le code HTML pour intégrer ce document dans un article :","invalid":"Projet invalide","cannotEmbed":"Impossible d\'intégrer ce projet, car il ne semble pas exister."},"htmlEditor":{"preview":"Prévisualisation :"},"image":{"error":"Une erreur est survenue. Essayez de rafraîchir la page."},"omniselect":{"filter":"Tapez pour filtrer la langue","noResults":"Aucun résultat. Cliquez pour effacer le filtre."},"shareOptions":{"errorText":"Une erreur inattendue est survenue. Veuillez réessayer ultérieurement.","copyHtml":"Copier le code HTML","addShortcode":"Ajoutez ce code court à votre contenu WordPress —","pluginRequired":"Extension requise","copyShortcode":"Copier le code court","copyUrl":"Copier l\'URL"},"specialMessage":{"contactUs":"Contactez-nous avec des rapports de bugs, des questions et des suggestions."},"uploadOptions":{"documentLang":"Langue du document :","forceOcr":"Forcer l’OCR:"},"actionBar":{"selectDocs":"Sélectionnez des documents pour accéder à des options d\'édition","noPerms":"Vous n\'avez pas la permission de modifier tous les documents sélectionnés","editMenu":"Modifier","projectsMenu":"Projets"},"authSection":{"help":"Aide","language":"Langue","tips":"Trucs et astuces","searchDocs":"Rechercher dans la documentation","apiDocs":"Documentation pour l\'API","emailUs":"Écrivez-nous par mail","acctSettings":"Réglages du compte","signOut":"Se déconnecter","changeOrg":"Changer l\'organisation","personalAcct":"Compte personnel","signIn":"Se connecter"},"documents":{"yourDocuments":"Vos Documents","searchResults":"Résultats de la recherche","accessDocuments":"Vos documents {access}","nameDocuments":"Les documents {access} pour {name}","allDocuments":"Tous les documents {access}","mustBeVerified":"Vous devez être un journaliste vérifié pour envoyer des documents","upload":"Envoyer","dropFile":"Déposer un fichier à envoyer "},"document":{"open":"Ouvrir","updating":"Mise à jour du document...","processing":"Traitement","processingError":"Une erreur est survenue lors du traitement de votre document","remove":"Supprimer","improper":"Votre document n\'a pas été envoyé correctement","project":"Projet","totalMatchingPages":"{n} sur {m} pages correspondent à la requête","showAll":"Afficher tout","matchingPages":"{n} pages correspondent à la requête","pageAbbrev":"p. ","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source"},"documentThumbnail":{"pages":"pages","loading":"Chargement des informations d\'avancement..."},"mainContainer":{"error":"Erreur","errorMsg":"Impossible d\'accéder au serveur DocumentCloud. Veuillez actualiser la page plus tard.","refresh":"Actualiser"},"editMenu":{"editDocInfo":"Modifier les informations du document","changeAccess":"Modifier le niveau d\'accès","editDocData":"Modifier les données du document","cancelProcessing":"Annuler le retraitement","forceReprocess":"Forcer le retraitement","entities":"Entités BETA","changeOwner":"Changer le propriétaire","delete":"Supprimer","diagnosticInfo":"Informations de diagnostic"},"metaFields":{"defaultFieldInvalidText":"Le document a déjà ce {fieldName}","titleFieldTitle":"Titre","titleFieldName":"nom","titleFieldNameUppercase":"Nom","titleFieldHeader":"Renommer {n, plural, one {le document} other {# les documents}}","titleFieldDescription":"Entrez un nom ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","titleFieldButton":"Renommer","titleFieldInvalidSameName":"Le document a déjà ce nom","titleFieldInvalidEmptyName":"Entrez un nom valide","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Modifier la source pour {n, plural, one {# le document} other {# les documents}}","sourceFieldDescription":"Entrez une source ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","sourceFieldButton":"Modifier","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Modifier la description pour {n, plural, one {# le document} other {# les documents}}","descriptionFieldDescription":"Entrez une description ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","descriptionFieldButton":"Modifier","relatedArticleFieldTitle":"Adresse (url) de l\'article apparenté","relatedArticleFieldName":"adresse (url) de l\'article apparenté","relatedArticleFieldNameUppercase":"Adresse (url) de l\'article apparenté","relatedArticleFieldHeader":"Modifier l\'adresse (URL) de l\'article apparenté pour {n, plural, one {# le document} other {# les documents}}","relatedArticleFieldDescription":"Entrez l\'adresse (URL) de l\'article apparenté ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","relatedArticleFieldButton":"Modifier","publishedUrlFieldTitle":"Adresse (URL) publiée","publishedUrlFieldName":"adresse (URL) publiée","publishedUrlFieldNameUppercase":"Adresse (URL) publiée","publishedUrlFieldHeader":"Modifier l\'adresse (URL) pour {n, plural, one {# le document} other {# les documents}}","publishedUrlFieldDescription":"Entrez l\'adresse (URL) ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","publishedUrlFieldButton":"Modifier"},"projectsMenu":{"newProject":"+ Nouveau Projet","projMembership":"Adhésion au projet","selectDocs":"Sélectionnez les documents pour les ajouter à des projets","createProj":"Créer un projet pour organiser et partager des documents"},"noDocuments":{"noSearchResults":"Aucun résultat pour cette recherche","queryNoResults":"Votre recherche n\'a donné aucun résultat. Réessayez avec une requête de recherche plus large.","welcome":"Bienvenue sur DocumentCloud !","verify1":"Notez que votre compte n\'est pas actuellement vérifié pour envoyer des documents. Vous pouvez rechercher dans la base publique, organiser les documents qui vous intéressent dans des projets, laisser des notes privées, et collaborer à l\'édition et à l\'annotation de documents pour lesquels d\'autres utilisateurs vous ont invité.","verify2":"Si vous souhaitez envoyer ou publier des documents et que vous êtes un journaliste en activité ou membre d\'une organisation intéressée par la publication de documents d\'intérêt public, vous devrez faire vérifier votre compte ou l\'ajouter à une organisation vérifiée. Ce processus est simple :","verify3":"Tout d\'abord, vérifiez si votre organisation existe déjà et, si vous la trouvez, cliquez sur \\"Demander à rejoindre\\" sur sa page.","verify4":"Si votre organisation n\'a pas encore été vérifiée, ou si vous êtes un indépendant, demandez la vérification ici. Les demandes de vérification prennent généralement deux jours ouvrables pour être traitées.","uploadFirst":"Téléchargez votre premier document","upload1":"Envoyez un document pour commencer à utiliser DocumentCloud. Vous pouvez faire glisser le fichier dans cette fenêtre, ou cliquez sur le bouton bleu “Envoyer” ci-dessus.","upload2":"Une fois que vous avez envoyé un fichier, DocumentCloud traitera le document et traitera son contenu. Cela peut prendre quelques minutes, mais une fois que cela sera fait, votre document sera optimisé pour l\'analyse et le partage sur le Web."},"paginator":{"of":"de","document":"{n, plural, one {Document} other {Documents}}"},"processingBar":{"doneProcessing":"Traitement terminé","processingDocuments":"Traitement {n, plural, one {d\'un document} other {# de plusieurs documents}}"},"searchBar":{"tips":"Conseils de recherche : ajoutez des filtres en tapant user:, project:, ou organization:, etc. Utilisez sort: pour trier les résultats.","learnMore":"En savoir plus","search":"Rechercher"},"searchLink":{"search":"Rechercher dans cette collection de documents"},"projects":{"header":"Projets","allDocuments":"Tous les documents","yourDocuments":"Vos documents","yourPubDocuments":"Vos documents publics","orgDocuments":"Les documents de {name}","newProject":"+ Nouveau Projet","createProject":"Créez votre premier projet en cliquant sur « Nouveau projet » ci-dessus."},"uploadDialog":{"docUpload":"Envoi du document","docUploadProj":"Envoyer le document vers {title}","beginUpload":"Commencer le chargement","pdfSizeWarning":"Vous ne pouvez télécharger des fichiers PDF de moins de {size}.","nonPdfSizeWarning":"Vous ne pouvez charger des documents non-PDF de moins de {size}.","fileReady":"{n, plural, one {fichier prêt} other {fichiers prêts}} pour le chargement","fileLimitWarning":"Vous ne pouvez télécharger que {limit} fichiers à la fois.","moreOptions":"Plus d\'options","selectFiles":"+ Sélectionner les fichiers","dragDrop":"Glisser et déposer les fichiers ici","publicMsg":"Le document sera publiquement visible.","collabMsg":"Le document sera visible par votre organisation.","privateMsg":"Le document ne sera visible que de vous seul.","collabName":"Organisation","submitting":"Presque terminé... les fichiers envoyés sont soumis au traitement ({percent})","uploading":"Envoi en cours... ({uploaded}/{length})","gettingInfo":"Récupération des informations de chargement ({percent})","pleaseLeaveOpen":"Veuillez laisser cette page ouverte pendant le chargement de vos documents. Cette boîte de dialogue se fermera automatiquement une fois les envois terminés.","errorHeading":"Une erreur s\'est produite lors du chargement","errorMsg":"Nous n\'avons pas pu {errorMessage}. Veuillez réessayer plus tard.","editDocInfo":"Modifier les informations du document :","untitled":"Sans titre","uploadFiles":"Envoyer des documents supplémentaires","selectMore":"+ Sélectionner plus de fichiers","dragDropMore":"Glisser et déposer les fichiers supplémentaires ici"},"embedNote":{"viewTheNote":"Voir la note \\"{title}\\" dans son contexte sur DocumentCloud dans un nouvel onglet","viewDoc":"Voir le document entier avec DocumentCloud"},"embedPage":{"viewDoc":"Afficher l\'intégralité de {title} sur DocumentCloud dans un nouvel onglet","pageOf":"Page {page} de {title}","gotoDocCloud":"Aller à DocumentCloud dans un nouvel onglet"},"entities":{"back":"Retour","page":"Page","of":"de","totalEntityResult":"{n, plural, one {# résultat total de l\'entité} other {# résultats totaux de l\'entité}} ","filter":"Filtre","applyFilters":"Appliquer les filtres","kind":"Type","clear":"Effacer","person":"Personne","org":"Organisation","location":"Emplacement","event":"Événement","workOfArt":"Oeuvre d\'art","consumerGood":"Produits de consommation","address":"Adresse","date":"Date","number":"Numéro","phoneNumber":"Numéro de téléphone","price":"Prix","unknown":"Inconnu","other":"Autre","occurrences":"Occurrences","proper":"Correct","common":"Commun","advanced":"Avancé","relevanceThreshold":"Seuil de pertinence :","knowledgeGraph":"Graphique de connaissance :","hasKG":"A un ID de graphique de connaissance","noKG":"N\'a pas d\'ID de graphique de connaissance","wikiUrl":"URL Wikipédia :","hasWiki":"A une URL Wikipédia","noWiki":"N\'a pas d\'URL Wikipedia","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipédia","entityExtraction":"Extraction de l\'entité pour « {title} »","extractingEntities":"Extraction des entités...","welcome":"Bienvenue dans l\'extraction d\'entité ! Cette fonctionnalité est en cours de développement, mais nous voulons qu\'elle soit disponible en avance pour recueillir les avis que vous pourriez avoir.","manual":"Pour l\'instant, le processus d\'extraction des entités est manuel. Ce document n\'a pas encore vu ses entités extraites, alors cliquez ci-dessous pour commencer.","error":"Une erreur inconnue s\'est produite","extract":"Extraction des entités","noEntities":"Il n\'y a pas d\'entités. Cela peut se produire lorsque le document n\'a pas de texte, n\'est pas rédigé en anglais (seul l\'anglais est reconnu pour l\'instant), ou une erreur est survenue.","starting":"Démarrage de l\'extraction..."},"home":{"about":"DocumentCloud est une plateforme tout-en-un pour les documents : envoyer, organiser, analyser, annoter, rechercher et intégrer.","viewPublicDocs":"Voir les documents publics"},"annotation":{"title":"Titre de l\'annotation","description":"Description de l\'annotation (facultatif)","unchanged":"La note reste inchangée","noTitle":"Saisissez un titre pour l\'annotation","org":"Cette note n\'est visible que pour vous et tous ceux qui peuvent modifier ce document","private":"Cette note privée n\'est visible que par vous","by":"Annoté par {name}","byOrg":"Annoté par {name}, {org}","addPageNote":"Ajouter une note de page"},"viewDropdown":{"document":"Document","plainText":"Texte brut","thumbnail":"Vignette","notes":"Notes","search":"Résultats de la recherche"},"zoom":{"fitWidth":"Ajuster la largeur","fitHeight":"Ajuster la hauteur"},"titleHeader":{"contributedBy":"Apporté par {name}"},"annotatePane":{"annotateDocument":"Annoter le document","desc":"Mettez en surbrillance une partie de la page, ou cliquez entre les pages pour créer une note."},"modifyPane":{"pagesSelected":"{n, plural, one {# page sélectionnée} other {# pages sélectionnées}}","applyModifications":"Appliquer les modifications","duplicate":"Dupliquer","move":"Déplacer","unselect":"Désélectionner","remove":"Supprimer","insertPages":"Insérer {n, plural, one {# page} other {# pages}}","pagesPending":"{n, plural, one {# page attend} other {# pages attendent}} d\'être insérées","insertBegin":"Insérer {n, plural, one {# page} other {# pages}}.","insertEnd":"Insérer {n, plural, one {# page} other {# pages}} à la fin.","insertBetween":"Insérez {n, plural, one {# page} other {# pages}} entre les pages {p0} et {p1}.","click":"Cliquez entre les pages ci-dessous pour indiquer où coller {n, plural, one {# la page} other {# les pages}}.","insert":"Insérer","insertAtEnd":"Insérer à la fin","insertPosition":"Insérer les pages à cet endroit","insertOtherDoc":"Insérer depuis un autre document","modifyPages":"Modifier les pages","select":"Sélectionnez les pages ci-dessous pour appliquer les modifications (rotation de page, réorganisation et suppression). Cliquez entre les pages pour en insérer.","undo":"Annuler","redo":"Refaire"},"redactPane":{"redactDoc":"Masquer des portions du document","desc":"Cliquez et faites glisser pour dessiner un rectangle noir sur chaque portion du document que vous souhaitez masquer. Le texte associé sera supprimé lorsque vous enregistrez vos masquages.","confirm":"Confirmer les masquages","undo":"Annuler"},"searchPane":{"yourQuery":"Votre requête {search} a été trouvée sur {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Sélectionner une note","desc":"Sélectionnez l\'annotation que vous voulez partager."},"searchResults":{"resultPages":"{results, plural, one {# résultat} other {# résultats}} à travers {pages, plural, one {# page} other {# pages}}","noSearchResults":"Aucun résultat de recherche. Réessayez avec une requête plus large.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Mise à jour du document...","original":"Document original (PDF) »","related":"Adresse (url) de l\'article apparenté »","contributed":"Apporté par {name}","source":"Source : {source}","actions":"Actions sur le document","share":"Partager","shareDesc":"Créez une intégration ou un partage sur les réseaux sociaux.","annotate":"Annoter","annotateDesc":"Faites des annotations pour garder des notes sur le document.","redact":"Masquer","redactDesc":"Créez des blocs noirs sur le document pour masquer le texte. Le document sera retraité par la suite.","modify":"Modifier les pages","modifyDesc":"Réorganiser, tourner, supprimer, insérer et diviser des pages.","info":"Modifier les données du document","infoDesc":"Modifier les informations du document comme la description et l\'URL associée.","data":"Modifier les étiquettes et les données","dataDesc":"Ajoutez des étiquettes et des paires clé / valeur pour catégoriser votre document.","sections":"Modifier les sections","sectionsDesc":"Ajoutez des sections pour organiser votre document avec une table des matières.","privateNote":"Ajoutez une note personnelle","privateNoteDesc":"Faites des annotations pour garder des notes sur le document."},"viewer":{"notFound":"Document introuvable","notFoundDesc":"Le document que vous avez demandé n\'existe pas ou vous n\'avez pas la permission d\'y accéder","processing":"Traitement du document","processingDesc":"Le document que vous avez demandé est en cours de traitement et la page sera automatiquement actualisée lorsqu\'il sera prêt","error":"Le document a rencontré une erreur","errorDesc":"Une erreur de traitement a été rencontrée dans le document que vous avez demandé","accessible":"Document non accessible","accessibleDesc":"Le document que vous avez demandé n\'existe pas ou vous n\'avez pas la permission d\'y accéder"}}')}}]);
-./public/src_langs_json_fr_json.30fdfb2918019c33cae2.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"Adresse e-mail","loading":"Chargement...","documentCloud":"DocumentCloud","home":"Page d\'accueil"},"homeTemplate":{"signedIn":"Connecté en tant que {name}","signOut":"Se déconnecter","signIn":"Se connecter","signUp":"S\'enregistrer","goToApp":"Aller à l\'application"},"accessToggle":{"public":"La note sera visible pour toute personne ayant accès au document.","collaborator":"La note sera visible par toute personne pouvant modifier le document.","private":"La note ne sera visible que par vous.","publicName":"Public","collaboratorName":"Collaborateur","privateName":"Privé"},"accessIcon":{"private":"Accès privé","organization":"Accès réservé à votre organisation","public":"Accès public","privateExplanation":"Seul vous pouvez voir ce document","organizationExplanation":"Seuls les membres de votre organisation peuvent voir ce document","publicExplanation":"Tout le monde peut chercher et voir ce document"},"appearanceCustomizer":{"customizeAppearance":"Personnaliser l\'apparence","hide":"Masquer le texte de l\'aide","show":"Montrer le texte de l\'aide"},"appearanceDimension":{"responsive":"Automatique (par défaut)","fixed":"Fixée"},"calendar":{"jan":"Janvier","feb":"Février","mar":"Mars","apr":"Avril","may":"Mai","jun":"Juin","jul":"Juillet","aug":"Août","sep":"Septembre","oct":"Octobre","nov":"Novembre","dec":"Décembre","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Annuler","delete":"Supprimer","done":"Fait","edit":"Modifier","remove":"Enlever","save":"Sauvegarder","create":"Créer","ok":"Ok","update":"Mettre à jour","dismiss":"Annuler","continue":"Continuer"},"dialogAccessDialog":{"changeAccess":"Changer l\'accès pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","selectAccess":"Sélectionnez un niveau d\'accès pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","public":"Accès public","publicDesc":"N\'importe qui sur Internet peut rechercher et consulter le document.","verifiedHelp":"Seuls les utilisateurs vérifiés ou les membres d\'organisations vérifiées peuvent rendre publics les documents téléchargés. Si vous êtes journaliste ou que vous travaillez par ailleurs à la publication de matériel révisé pour informer le public, en savoir plus et demander la vérification ici.","privateToOrg":"Vous ne pouvez pas changer le niveau d\'accès à “Réservé à votre organisation” car {n, plural, one {ce document est} other {un ou plusieurs de ces documents sont}} associés à votre compte individuel et pas à une organisation. Pour ajouter {n, plural, one {ce document} other {ces documents}} à votre organisation, sélectionnez {n, plural, one {le} other {les}} depuis la liste de gestion et sélectionnez “Changer le propriétaire.” Vous pouvez rejoindre ou créer une organisation sur cette page.","private":"Accès privé","privateDesc":"Seules les personnes ayant une autorisation explicite (par le biais de la collaboration) ont accès.","organization":"Accès réservé à votre organisation","organizationDesc":"Seules les personnes de votre organisation ont accès.","schedulePublication":"Planification de la publication","scheduleHelp":"Ce document sera rendu public à la date et heure indiquées. L\'heure de publication est localisée à {timezone}.","unchanged":"L\'accès n\'a pas été modifié. Sélectionnez un niveau d\'accès différent.","future":"Vous devez sélectionner une date dans le futur","change":"Modifier"},"dialogCollaboratorDialog":{"confirm":"Confirmer la suppression de l\'utilisateur","confirmMsg":"Continuer supprimera {name} de {title}. Voulez-vous continuer ?","addCollaborators":"Ajouter des collaborateurs","invite":"Entrer les adresses email d\'utilisateurs DocumentCloud existants ci-dessous. S\'ils n\'ont pas de compte, faites-les s\'inscrire gratuitement, puis demandez-leur de se connecter à DocumentCloud au moins une fois.","admin":"Administration","view":"Vue","adminHelp":"Les collaborateurs peuvent modifier ce projet et ses documents","editHelp":"Les collaborateurs peuvent modifier les documents de ce projet","viewHelp":"Les collaborateurs peuvent voir les documents de ce projet","add":"Ajouter","empty":"Vous n\'avez pas encore ajouté de collaborateur à ce projet. Invitez des collaborateurs afin d\'accorder à d\'autres utilisateurs l\'accès aux documents partagés dans ce projet. Vous pouvez contrôler si les collaborateurs ont accès pour voir/modifier les documents du projet ou être des administrateurs avec les permissions d\'inviter d\'autres utilisateurs et de modifier le projet lui-même.","manageCollaborators":"Gérer les collaborateurs","name":"Nom","access":"Accès","you":"(vous)"},"dialogDataDialog":{"confirm":"Confirmer la suppression du point de données","removeMsg":"Continuer supprimera la paire {key} / {value} des documents spécifiés. Voulez-vous continuer ?","addData":"Ajouter des données pour {n, plural, one {le document} other {# les documents}}","tag":"Étiquette","value":"Valeur","key":"Clé","keyValue":"Clé / Valeur","tagInfo":"Ajoutez des étiquettes personnalisées pour catégoriser vos documents.","eg":"p. ex.","exampleTagReport":"signaler","exampleTagLawsuit":"litige","exampleTagEmail":"courriel","keyValueInfo":"Ajoutez des paires clé / valeur personnalisées pour une catégorisation précise de vos documents.","exampleKVState":"État : Californie","exampleKVYear":"Année : 2016","exampleKVType":"type: mémo","enterTag":"Entrez une étiquette","enterKey":"Entrez une clé","keyInvalid":"Les clés ne peuvent contenir que des lettres, des chiffres, des tirets bas (_) et des tirets (-)","emptyMsg":"Vous n\'avez pas encore ajouté de données au(x) document(s) spécifié(s). Ajoutez des paires clés / valeurs pour catégoriser et organiser vos documents. Vous pouvez filtrer et rechercher dans les données des documents pour un meilleur contrôle sur votre gestion documentaire.","manageDocumentData":"Gérer les données du document","valueUnchanged":"Les valeurs restent inchangées","kvCannotBeEmpty":"La paire clé / valeur ne peut être vide"},"dialogReprocessDialog":{"title":"Confirmez le retraitement","reprocessDocs":"Continuer forcera {n, plural, one {le document sélectionné} other {# les documents sélectionnés}} à retraiter le texte de la page et de l\'image. Voulez-vous continuer ?","reprocessSingleDoc":"Continuer obligera le document à retraiter le texte de la page et de l\'image. Voulez-vous continuer ?","confirm":"Retraiter"},"dialogDeleteDialog":{"title":"Confirmez le retraitement","deleteDocs":"Continuer supprimera définitivement {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}. Voulez-vous continuer ?"},"dialogCancelProcessingDialog":{"title":"Annuler le retraitement","deleteDocs":"Continuer forcera {n, plural, one {le document sélectionné} other {# les documents sélectionnés}} à annuler le traitement. Une fois le traitement stoppé, une erreur va s\'afficher, vous pourrez alors “Forcer le retraitement” et supprimer {n, plural, one {le document} other {les documents}} en utilisant le menu Modifier. Voulez-vous continuer ?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Infos réservées aux membres de l\'équipe pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","id":"ID","title":"Titre","actions":"Actions","debug":"Débug","viewErrors":"Voir les erreurs","viewS3":"Voir en S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"Activé (Par défaut)","respOnHelp":"Remplir avec la même largeur que l\'article (fonctionne généralement le mieux)","respOff":"Désactivée","respOffHelp":"Le document va correspondre aux tailles spécifiées ci-dessous","width":"Largeur","widthAuto":"Remplira l\'espace disponible si le document est réglé sur \\"responsive\\", sinon par défaut à 700 pixels","widthFixed":"Définissez une largeur maximale si le document est \\"responsive\\", ou définissez une taille fixe s\'il n\'est pas \\"responsive\\"","height":"Hauteur","heightAuto":"La hauteur est basée sur la taille du document, sans maximum. Si le document est \\"responsive\\", elle sera réglée sur la hauteur de la fenêtre du navigateur moins 100 pixels","heightFixed":"Définissez une largeur maximale si le document est \\"responsive\\", ou définissez une taille fixe s\'il n\'est pas \\"responsive\\"","sidebarBehavior":"Comportement de la barre latérale","sbResponsive":"Responsive (par défaut)","sbResponsiveHelp":"Afficher automatiquement la barre latérale sur les grands écrans et masquer sur les appareils mobiles. En mode intégré, la barre latérale sera masquée.","hidden":"Masqué","visible":"Visible","visibleDefault":"Visible (par défaut)","sbHiddenHelp":"Masquer la barre latérale par défaut","sbVisibleHelp":"Afficher la barre latérale par défaut","titleBehavior":"Comportement du titre","tVisibleHelp":"Afficher le titre et l\'attribution dans l\'en-tête de la visionneuse","tHiddenHelp":"Cacher le titre dans l\'en-tête de la visionneuse (toujours visible dans la barre latérale)","pdfLink":"Lien du PDF","plVisibleHelp":"Afficher un lien vers le document en PDF dans la barre latérale","plHiddenHelp":"Masquer le lien vers le PDF de la barre latérale (le fichier est toujours accessible si l\'URL est connue)","fullscreenOption":"Option plein écran","fsVisibleHelp":"Afficher l\'icône pour le plein écran dans le coin inférieur droit","fsHiddenHelp":"Masquer l\'option plein écran","textMode":"Mode Texte","tmVisibleHelp":"Afficher une option pour afficher le texte du document dans la liste déroulante","tmHiddenHelp":"Masquer le mode texte","contributedByFormat":"Contribué par format","cbfUserAndOrg":"Utilisateur et organisation (par défaut)","cbfUserAndOrgHelp":"Afficher l\'attribution d\'un document avec le nom d\'utilisateur suivi par celui de l\'organisation","cbfOrgOnly":"Organisation uniquement","cbfOrgOnlyHelp":"Attribuer le document seulement à l\'organisation","share":"Partager « {title} »","embedDesc":"Copiez le code HTML pour intégrer ce document dans un article :"},"dialogDocumentInformationDialog":{"editInformation":"Modifier la description pour {n, plural, one {# le document} other {# les documents}}"},"dialogRedactDialog":{"title":"Confirmer les masquages","description":"Êtes-vous sûr de vouloir appliquer les masques au document en cours ? Si vous continuez, la visionneuse de document sera inaccessible temporairement pendant que le document se retraitera afin d\'appliquer les masques. Ce changement est irréversible."},"dialogModifyDialog":{"title":"Application des modifications","description":"Êtes-vous sûr de vouloir modifier le document en cours ? Si vous continuez, la visionneuse de document sera inaccessible temporairement pendant que le document se retraitera afin d\'appliquer les modifications. Ce changement est irréversible.","closeTitle":"Confirmer la fermeture","closeWarning":"Vous perdrez toutes les modifications non enregistrées. Êtes-vous sûr de vouloir continuer ?"},"dialogDeleteNoteDialog":{"title":"Confirmer la suppression","description":"Êtes-vous sûr de vouloir supprimer cette note ?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirmer la suppression","proceedingWillRemove":"Continuer supprimera la section spécifiée (p. {page} {title}). Voulez-vous continuer ?","editSections":"Modifier les sections","manageSections":"Ajoutez des sections pour organiser votre document avec une table des matières.","pageAbbrevNo":"p. {n}","pageAbbrev":"p. ","empty":"Vous n\'avez ajouté aucune section.","edit":"Modifier la section sélectionnée","add":"Ajouter une nouvelle section","title":"Titre","missingTitle":"Veuillez saisir un titre","updateTitle":"Entrez un nouveau titre ou un numéro de page","uniquePageNumber":"Vous devez entrer un numéro de page unique","invalidPageNumber":"Le numéro de page est invalide"},"dialogEmbedDialog":{"updatingDocument":"Mise à jour du document...","makingPublic":"Le document est en cours de publication. Cela peut prendre une ou deux minutes.","wouldMakePublic":"Voulez-vous rendre ce document public avant de le partager ?","notPublic":"Le document n\'est pas public pour le moment. Si vous l\'intégrez ou le liez, vous et vos collaborateurs serez seuls en mesure de le voir jusqu\'à ce qu\'il soit rendu public. Cliquez ci-dessous lorsque vous êtes prêt à rendre ce document public.","makePublic":"Rendre le document public","leave":"Laisser tel quel","selectShare":"Sélectionnez une option de partage","selectShareHelp":"Choisissez si vous voulez partager le document entier ou seulement une page ou bien une note.","shareDoc":"Partager le document entier","shareDocHelp":"Lier ou intégrer le document entier (c\'est l\'option de partage la plus couramment utilisée)","sharePage":"Partager une page spécifique","sharePageHelp":"Lier ou intégrer une seule page du document. Utile pour mettre en évidence un extrait de page.","shareNote":"Partager une note spécifique","shareNoteHelpHasNote":"Lier ou intégrer une seule page du document. Utile pour mettre en évidence un extrait d\'une page.","shareNoteHelpNoNote":"Une fois que vous ajoutez des notes au document, utilisez cette fonctionnalité pour les lier ou les intégrer."},"dialogErrorDialog":{"errorOccurred":"Un erreur est survenue","unexpectedErrorOccurred":"Une erreur inattendue est survenue","tryAgain":"Veuillez réessayer ultérieurement.","close":"Fermer","refresh":"Actualiser"},"dialogNoteEmbedDialog":{"embedNote":"Intégrer une note de « {title} »","embedDesc":"Copiez le code HTML pour intégrer cette note dans un article :"},"dialogPageEmbedDialog":{"embedPage":"Intégrer une page de « {title} »","embedDesc":"Copiez le code HTML pour intégrer cette note dans un article :","selectPage":"Sélectionnez la page à intégrer :","page":"Page {n} (actuellement à l\'écran)","otherPage":"Autre page","enterPageNumber":"Entrez le numéro de page à intégrer :"},"dialogProjectAccessDialog":{"changeAccessFor":"Modifier l\'accès pour {name}","selectAccess":"Sélectionnez un niveau d\'accès ci-dessous pour {name} dans {title}","adminAccess":"Accès Administrateur","editAccess":"Modifier les accès","viewAccess":"Voir les accès","adminHelp":"Ce collaborateur peut modifier ce projet et ses documents. Le collaborateur peut inviter des utilisateurs, supprimer des utilisateurs et supprimer le projet.","editHelp":"Ce collaborateur peut modifier les documents de ce projet mais ne peut pas modifier le projet lui-même.","viewHelp":"Ce collaborateur peut voir les documents de ce projet mais ne peut pas les modifier ni modifier le projet.","invalidAccess":"L\'accès est déjà réglé sur {access}. Sélectionnez un niveau d\'accès différent.","changeAccess":"Modifier le niveau d\'accès"},"dialogOwnerDialog":{"selectUser":"Un utilisateur doit être sélectionné","selectOrg":"Une organisation doit être sélectionnée","changeOwner":"Changer le propriétaire pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","accessWarning":"Avertissement : Vous pouvez perdre l\'accès {n, plural, one {au document} other {# aux documents}} en raison de la modification du propriétaire.","user":"Utilisateur :","filterUsers":"Tapez du texte pour filtrer les utilisateurs...","filterOrgs":"Tapez du texte pour filtrer les organisations..."},"dialogProjectDialog":{"confirmDelete":"Confirmer la suppression","deleteProject":"Êtes-vous certain de vouloir supprimer ce projet ({project}) ?","editProject":"Modifier le projet","createProject":"Créer un nouveau projet","title":"Titre...","projectDesc":"Description du projet (optionnel)","manageCollabs":"Gérer les collaborateurs","share":"Partager / Intégrer le projet","enterTitle":"Saisir un titre","changeTitle":"Modifier le titre ou la description"},"dialogProjectEmbedDialog":{"share":"Partager « {title} »","embedDesc":"Copiez le code HTML pour intégrer ce document dans un article :","invalid":"Projet invalide","cannotEmbed":"Impossible d\'intégrer ce projet, car il ne semble pas exister."},"htmlEditor":{"preview":"Prévisualisation :"},"image":{"error":"Une erreur est survenue. Essayez de rafraîchir la page."},"omniselect":{"filter":"Tapez pour filtrer la langue","noResults":"Aucun résultat. Cliquez pour effacer le filtre."},"shareOptions":{"errorText":"Une erreur inattendue est survenue. Veuillez réessayer ultérieurement.","copyHtml":"Copier le code HTML","addShortcode":"Ajoutez ce code court à votre contenu WordPress —","pluginRequired":"Extension requise","copyShortcode":"Copier le code court","copyUrl":"Copier l\'URL"},"specialMessage":{"contactUs":"Contactez-nous avec des rapports de bugs, des questions et des suggestions."},"uploadOptions":{"documentLang":"Langue du document :","forceOcr":"Forcer l’OCR:"},"actionBar":{"selectDocs":"Sélectionnez des documents pour accéder à des options d\'édition","noPerms":"Vous n\'avez pas la permission de modifier tous les documents sélectionnés","editMenu":"Modifier","projectsMenu":"Projets"},"authSection":{"help":"Aide","language":"Langue","tips":"Trucs et astuces","searchDocs":"Rechercher dans la documentation","apiDocs":"Documentation pour l\'API","emailUs":"Écrivez-nous par mail","acctSettings":"Réglages du compte","signOut":"Se déconnecter","changeOrg":"Changer l\'organisation","personalAcct":"Compte personnel","signIn":"Se connecter"},"documents":{"yourDocuments":"Vos Documents","searchResults":"Résultats de la recherche","accessDocuments":"Vos documents {access}","nameDocuments":"Les documents {access} pour {name}","allDocuments":"Tous les documents {access}","mustBeVerified":"Vous devez être un journaliste vérifié pour envoyer des documents","upload":"Envoyer","dropFile":"Déposer un fichier à envoyer "},"document":{"open":"Ouvrir","updating":"Mise à jour du document...","processing":"Traitement","processingError":"Une erreur est survenue lors du traitement de votre document","remove":"Supprimer","improper":"Votre document n\'a pas été envoyé correctement","project":"Projet","totalMatchingPages":"{n} sur {m} pages correspondent à la requête","showAll":"Afficher tout","matchingPages":"{n} pages correspondent à la requête","pageAbbrev":"p. ","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source"},"documentThumbnail":{"pages":"pages","loading":"Chargement des informations d\'avancement..."},"mainContainer":{"error":"Erreur","errorMsg":"Impossible d\'accéder au serveur DocumentCloud. Veuillez actualiser la page plus tard.","refresh":"Actualiser"},"editMenu":{"editDocInfo":"Modifier les informations du document","changeAccess":"Modifier le niveau d\'accès","editDocData":"Modifier les données du document","cancelProcessing":"Annuler le retraitement","forceReprocess":"Forcer le retraitement","entities":"Entités BETA","changeOwner":"Changer le propriétaire","delete":"Supprimer","diagnosticInfo":"Informations de diagnostic"},"metaFields":{"defaultFieldInvalidText":"Le document a déjà ce {fieldName}","titleFieldTitle":"Titre","titleFieldName":"nom","titleFieldNameUppercase":"Nom","titleFieldHeader":"Renommer {n, plural, one {le document} other {# les documents}}","titleFieldDescription":"Entrez un nom ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","titleFieldButton":"Renommer","titleFieldInvalidSameName":"Le document a déjà ce nom","titleFieldInvalidEmptyName":"Entrez un nom valide","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Modifier la source pour {n, plural, one {# le document} other {# les documents}}","sourceFieldDescription":"Entrez une source ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","sourceFieldButton":"Modifier","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Modifier la description pour {n, plural, one {# le document} other {# les documents}}","descriptionFieldDescription":"Entrez une description ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","descriptionFieldButton":"Modifier","relatedArticleFieldTitle":"Adresse (url) de l\'article apparenté","relatedArticleFieldName":"adresse (url) de l\'article apparenté","relatedArticleFieldNameUppercase":"Adresse (url) de l\'article apparenté","relatedArticleFieldHeader":"Modifier l\'adresse (URL) de l\'article apparenté pour {n, plural, one {# le document} other {# les documents}}","relatedArticleFieldDescription":"Entrez l\'adresse (URL) de l\'article apparenté ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","relatedArticleFieldButton":"Modifier","publishedUrlFieldTitle":"Adresse (URL) publiée","publishedUrlFieldName":"adresse (URL) publiée","publishedUrlFieldNameUppercase":"Adresse (URL) publiée","publishedUrlFieldHeader":"Modifier l\'adresse (URL) pour {n, plural, one {# le document} other {# les documents}}","publishedUrlFieldDescription":"Entrez l\'adresse (URL) ci-dessous pour {n, plural, one {le document sélectionné} other {# les documents sélectionnés}}","publishedUrlFieldButton":"Modifier"},"projectsMenu":{"newProject":"+ Nouveau Projet","projMembership":"Adhésion au projet","selectDocs":"Sélectionnez les documents pour les ajouter à des projets","createProj":"Créer un projet pour organiser et partager des documents"},"noDocuments":{"noSearchResults":"Aucun résultat pour cette recherche","queryNoResults":"Votre recherche n\'a donné aucun résultat. Réessayez avec une requête de recherche plus large.","welcome":"Bienvenue sur DocumentCloud !","verify1":"Notez que votre compte n\'est pas actuellement vérifié pour envoyer des documents. Vous pouvez rechercher dans la base publique, organiser les documents qui vous intéressent dans des projets, laisser des notes privées, et collaborer à l\'édition et à l\'annotation de documents pour lesquels d\'autres utilisateurs vous ont invité.","verify2":"Si vous souhaitez envoyer ou publier des documents et que vous êtes un journaliste en activité ou membre d\'une organisation intéressée par la publication de documents d\'intérêt public, vous devrez faire vérifier votre compte ou l\'ajouter à une organisation vérifiée. Ce processus est simple :","verify3":"Tout d\'abord, vérifiez si votre organisation existe déjà et, si vous la trouvez, cliquez sur \\"Demander à rejoindre\\" sur sa page.","verify4":"Si votre organisation n\'a pas encore été vérifiée, ou si vous êtes un indépendant, demandez la vérification ici. Les demandes de vérification prennent généralement deux jours ouvrables pour être traitées.","uploadFirst":"Téléchargez votre premier document","upload1":"Envoyez un document pour commencer à utiliser DocumentCloud. Vous pouvez faire glisser le fichier dans cette fenêtre, ou cliquez sur le bouton bleu “Envoyer” ci-dessus.","upload2":"Une fois que vous avez envoyé un fichier, DocumentCloud traitera le document et traitera son contenu. Cela peut prendre quelques minutes, mais une fois que cela sera fait, votre document sera optimisé pour l\'analyse et le partage sur le Web."},"paginator":{"of":"de","document":"{n, plural, one {Document} other {Documents}}"},"processingBar":{"doneProcessing":"Traitement terminé","processingDocuments":"Traitement {n, plural, one {d\'un document} other {# de plusieurs documents}}"},"searchBar":{"tips":"Conseils de recherche : ajoutez des filtres en tapant user:, project:, ou organization:, etc. Utilisez sort: pour trier les résultats.","learnMore":"En savoir plus","search":"Rechercher"},"searchLink":{"search":"Rechercher dans cette collection de documents"},"projects":{"header":"Projets","allDocuments":"Tous les documents","yourDocuments":"Vos documents","yourPubDocuments":"Vos documents publics","orgDocuments":"Les documents de {name}","newProject":"+ Nouveau Projet","createProject":"Créez votre premier projet en cliquant sur « Nouveau projet » ci-dessus."},"uploadDialog":{"docUpload":"Envoi du document","docUploadProj":"Envoyer le document vers {title}","beginUpload":"Commencer le chargement","pdfSizeWarning":"Vous ne pouvez télécharger des fichiers PDF de moins de {size}.","nonPdfSizeWarning":"Vous ne pouvez charger des documents non-PDF de moins de {size}.","fileReady":"{n, plural, one {fichier prêt} other {fichiers prêts}} pour le chargement","fileLimitWarning":"Vous ne pouvez télécharger que {limit} fichiers à la fois.","moreOptions":"Plus d\'options","selectFiles":"+ Sélectionner les fichiers","dragDrop":"Glisser et déposer les fichiers ici","publicMsg":"Le document sera publiquement visible.","collabMsg":"Le document sera visible par votre organisation.","privateMsg":"Le document ne sera visible que de vous seul.","collabName":"Organisation","submitting":"Presque terminé... les fichiers envoyés sont soumis au traitement ({percent})","uploading":"Envoi en cours... ({uploaded}/{length})","gettingInfo":"Récupération des informations de chargement ({percent})","pleaseLeaveOpen":"Veuillez laisser cette page ouverte pendant le chargement de vos documents. Cette boîte de dialogue se fermera automatiquement une fois les envois terminés.","errorHeading":"Une erreur s\'est produite lors du chargement","errorMsg":"Nous n\'avons pas pu {errorMessage}. Veuillez réessayer plus tard.","editDocInfo":"Modifier les informations du document :","untitled":"Sans titre","uploadFiles":"Envoyer des documents supplémentaires","selectMore":"+ Sélectionner plus de fichiers","dragDropMore":"Glisser et déposer les fichiers supplémentaires ici"},"embedNote":{"viewTheNote":"Voir la note \\"{title}\\" dans son contexte sur DocumentCloud dans un nouvel onglet","viewDoc":"Voir le document entier avec DocumentCloud"},"embedPage":{"viewDoc":"Afficher l\'intégralité de {title} sur DocumentCloud dans un nouvel onglet","pageOf":"Page {page} de {title}","gotoDocCloud":"Aller à DocumentCloud dans un nouvel onglet"},"entities":{"back":"Retour","page":"Page","of":"de","totalEntityResult":"{n, plural, one {# résultat total de l\'entité} other {# résultats totaux de l\'entité}} ","filter":"Filtre","applyFilters":"Appliquer les filtres","kind":"Type","clear":"Effacer","person":"Personne","org":"Organisation","location":"Emplacement","event":"Événement","workOfArt":"Oeuvre d\'art","consumerGood":"Produits de consommation","address":"Adresse","date":"Date","number":"Numéro","phoneNumber":"Numéro de téléphone","price":"Prix","unknown":"Inconnu","other":"Autre","occurrences":"Occurrences","proper":"Correct","common":"Commun","advanced":"Avancé","relevanceThreshold":"Seuil de pertinence :","knowledgeGraph":"Graphique de connaissance :","hasKG":"A un ID de graphique de connaissance","noKG":"N\'a pas d\'ID de graphique de connaissance","wikiUrl":"URL Wikipédia :","hasWiki":"A une URL Wikipédia","noWiki":"N\'a pas d\'URL Wikipedia","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipédia","entityExtraction":"Extraction de l\'entité pour « {title} »","extractingEntities":"Extraction des entités...","welcome":"Bienvenue dans l\'extraction d\'entité ! Cette fonctionnalité est en cours de développement, mais nous voulons qu\'elle soit disponible en avance pour recueillir les avis que vous pourriez avoir.","manual":"Pour l\'instant, le processus d\'extraction des entités est manuel. Ce document n\'a pas encore vu ses entités extraites, alors cliquez ci-dessous pour commencer.","error":"Une erreur inconnue s\'est produite","extract":"Extraction des entités","noEntities":"Il n\'y a pas d\'entités. Cela peut se produire lorsque le document n\'a pas de texte, n\'est pas rédigé en anglais (seul l\'anglais est reconnu pour l\'instant), ou une erreur est survenue.","starting":"Démarrage de l\'extraction..."},"home":{"about":"DocumentCloud est une plateforme tout-en-un pour les documents : envoyer, organiser, analyser, annoter, rechercher et intégrer.","viewPublicDocs":"Voir les documents publics"},"annotation":{"title":"Titre de l\'annotation","description":"Description de l\'annotation (facultatif)","unchanged":"La note reste inchangée","noTitle":"Saisissez un titre pour l\'annotation","org":"Cette note n\'est visible que pour vous et tous ceux qui peuvent modifier ce document","private":"Cette note privée n\'est visible que par vous","by":"Annoté par {name}","byOrg":"Annoté par {name}, {org}","addPageNote":"Ajouter une note de page"},"viewDropdown":{"document":"Document","plainText":"Texte brut","thumbnail":"Vignette","notes":"Notes","search":"Résultats de la recherche"},"zoom":{"fitWidth":"Ajuster la largeur","fitHeight":"Ajuster la hauteur"},"titleHeader":{"contributedBy":"Apporté par {name}"},"annotatePane":{"annotateDocument":"Annoter le document","desc":"Mettez en surbrillance une partie de la page, ou cliquez entre les pages pour créer une note."},"modifyPane":{"pagesSelected":"{n, plural, one {# page sélectionnée} other {# pages sélectionnées}}","applyModifications":"Appliquer les modifications","duplicate":"Dupliquer","move":"Déplacer","unselect":"Désélectionner","remove":"Supprimer","insertPages":"Insérer {n, plural, one {# page} other {# pages}}","pagesPending":"{n, plural, one {# page attend} other {# pages attendent}} d\'être insérées","insertBegin":"Insérer {n, plural, one {# page} other {# pages}}.","insertEnd":"Insérer {n, plural, one {# page} other {# pages}} à la fin.","insertBetween":"Insérez {n, plural, one {# page} other {# pages}} entre les pages {p0} et {p1}.","click":"Cliquez entre les pages ci-dessous pour indiquer où coller {n, plural, one {# la page} other {# les pages}}.","insert":"Insérer","insertAtEnd":"Insérer à la fin","insertPosition":"Insérer les pages à cet endroit","insertOtherDoc":"Insérer depuis un autre document","modifyPages":"Modifier les pages","select":"Sélectionnez les pages ci-dessous pour appliquer les modifications (rotation de page, réorganisation et suppression). Cliquez entre les pages pour en insérer.","undo":"Annuler","redo":"Refaire"},"redactPane":{"redactDoc":"Masquer des portions du document","desc":"Cliquez et faites glisser pour dessiner un rectangle noir sur chaque portion du document que vous souhaitez masquer. Le texte associé sera supprimé lorsque vous enregistrez vos masquages.","confirm":"Confirmer les masquages","undo":"Annuler"},"searchPane":{"yourQuery":"Votre requête {search} a été trouvée sur {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Sélectionner une note","desc":"Sélectionnez l\'annotation que vous voulez partager."},"searchResults":{"resultPages":"{results, plural, one {# résultat} other {# résultats}} à travers {pages, plural, one {# page} other {# pages}}","noSearchResults":"Aucun résultat de recherche. Réessayez avec une requête plus large.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Mise à jour du document...","original":"Document original (PDF) »","related":"Adresse (url) de l\'article apparenté »","contributed":"Apporté par {name}","source":"Source : {source}","actions":"Actions sur le document","share":"Partager","shareDesc":"Créez une intégration ou un partage sur les réseaux sociaux.","annotate":"Annoter","annotateDesc":"Faites des annotations pour garder des notes sur le document.","redact":"Masquer","redactDesc":"Créez des blocs noirs sur le document pour masquer le texte. Le document sera retraité par la suite.","modify":"Modifier les pages","modifyDesc":"Réorganiser, tourner, supprimer, insérer et diviser des pages.","info":"Modifier les données du document","infoDesc":"Modifier les informations du document comme la description et l\'URL associée.","data":"Modifier les étiquettes et les données","dataDesc":"Ajoutez des étiquettes et des paires clé / valeur pour catégoriser votre document.","sections":"Modifier les sections","sectionsDesc":"Ajoutez des sections pour organiser votre document avec une table des matières.","privateNote":"Ajoutez une note personnelle","privateNoteDesc":"Faites des annotations pour garder des notes sur le document."},"viewer":{"notFound":"Document introuvable","notFoundDesc":"Le document que vous avez demandé n\'existe pas ou vous n\'avez pas la permission d\'y accéder","processing":"Traitement du document","processingDesc":"Le document que vous avez demandé est en cours de traitement et la page sera automatiquement actualisée lorsqu\'il sera prêt","error":"Le document a rencontré une erreur","errorDesc":"Une erreur de traitement a été rencontrée dans le document que vous avez demandé","accessible":"Document non accessible","accessibleDesc":"Le document que vous avez demandé n\'existe pas ou vous n\'avez pas la permission d\'y accéder"}}');
-./public/src_langs_json_doublestruck_json.8a724ea4b945f1d75c0d.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"𝔼𝕞𝕒𝕚𝕝 𝕒𝕕𝕕𝕣𝕖𝕤𝕤","loading":"𝕃𝕠𝕒𝕕𝕚𝕟𝕘...","documentCloud":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕","home":"ℍ𝕠𝕞𝕖"},"homeTemplate":{"signedIn":"𝕊𝕚𝕘𝕟𝕖𝕕 𝕚𝕟 𝕒𝕤 {name}","signOut":"𝕊𝕚𝕘𝕟 𝕠𝕦𝕥","signIn":"𝕊𝕚𝕘𝕟 𝕚𝕟","signUp":"𝕊𝕚𝕘𝕟 𝕦𝕡","goToApp":"𝔾𝕠 𝕥𝕠 𝕒𝕡𝕡"},"accessToggle":{"public":"ℕ𝕠𝕥𝕖 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕒𝕟𝕪𝕠𝕟𝕖 𝕨𝕚𝕥𝕙 𝕒𝕔𝕔𝕖𝕤𝕤 𝕥𝕠 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥.","collaborator":"ℕ𝕠𝕥𝕖 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕒𝕟𝕪𝕠𝕟𝕖 𝕨𝕙𝕠 𝕔𝕒𝕟 𝕖𝕕𝕚𝕥 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥.","private":"ℕ𝕠𝕥𝕖 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕪𝕠𝕦 𝕒𝕝𝕠𝕟𝕖.","publicName":"ℙ𝕦𝕓𝕝𝕚𝕔","collaboratorName":"ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣","privateName":"ℙ𝕣𝕚𝕧𝕒𝕥𝕖"},"accessIcon":{"private":"ℙ𝕣𝕚𝕧𝕒𝕥𝕖 𝔸𝕔𝕔𝕖𝕤𝕤","organization":"ℙ𝕣𝕚𝕧𝕒𝕥𝕖 𝕥𝕠 𝕐𝕠𝕦𝕣 𝕆𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","public":"ℙ𝕦𝕓𝕝𝕚𝕔 𝔸𝕔𝕔𝕖𝕤𝕤","privateExplanation":"𝕆𝕟𝕝𝕪 𝕪𝕠𝕦 𝕔𝕒𝕟 𝕧𝕚𝕖𝕨 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","organizationExplanation":"𝕆𝕟𝕝𝕪 𝕞𝕖𝕞𝕓𝕖𝕣𝕤 𝕠𝕗 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕔𝕒𝕟 𝕧𝕚𝕖𝕨 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","publicExplanation":"𝔸𝕟𝕪𝕠𝕟𝕖 𝕔𝕒𝕟 𝕤𝕖𝕒𝕣𝕔𝕙 𝕒𝕟𝕕 𝕧𝕚𝕖𝕨 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥"},"appearanceCustomizer":{"customizeAppearance":"ℂ𝕦𝕤𝕥𝕠𝕞𝕚𝕫𝕖 𝔸𝕡𝕡𝕖𝕒𝕣𝕒𝕟𝕔𝕖","hide":"ℍ𝕚𝕕𝕖 𝕙𝕖𝕝𝕡 𝕥𝕖𝕩𝕥","show":"𝕊𝕙𝕠𝕨 𝕙𝕖𝕝𝕡 𝕥𝕖𝕩𝕥"},"appearanceDimension":{"responsive":"𝔸𝕦𝕥𝕠𝕞𝕒𝕥𝕚𝕔 (𝕕𝕖𝕗𝕒𝕦𝕝𝕥)","fixed":"𝔽𝕚𝕩𝕖𝕕"},"calendar":{"jan":"𝕁𝕒𝕟𝕦𝕒𝕣𝕪","feb":"𝔽𝕖𝕓𝕣𝕦𝕒𝕣𝕪","mar":"𝕄𝕒𝕣𝕔𝕙","apr":"𝔸𝕡𝕣𝕚𝕝","may":"𝕄𝕒𝕪","jun":"𝕁𝕦𝕟𝕖","jul":"𝕁𝕦𝕝𝕪","aug":"𝔸𝕦𝕘𝕦𝕤𝕥","sep":"𝕊𝕖𝕡𝕥𝕖𝕞𝕓𝕖𝕣","oct":"𝕆𝕔𝕥𝕠𝕓𝕖𝕣","nov":"ℕ𝕠𝕧𝕖𝕞𝕓𝕖𝕣","dec":"𝔻𝕖𝕔𝕖𝕞𝕓𝕖𝕣","hourShortcode":"ℍℍ","minuteShortcode":"𝕄𝕄"},"dialog":{"cancel":"ℂ𝕒𝕟𝕔𝕖𝕝","delete":"𝔻𝕖𝕝𝕖𝕥𝕖","done":"𝔻𝕠𝕟𝕖","edit":"𝔼𝕕𝕚𝕥","remove":"ℝ𝕖𝕞𝕠𝕧𝕖","save":"𝕊𝕒𝕧𝕖","create":"ℂ𝕣𝕖𝕒𝕥𝕖","ok":"𝕆𝕜","update":"𝕌𝕡𝕕𝕒𝕥𝕖","dismiss":"𝔻𝕚𝕤𝕞𝕚𝕤𝕤","continue":"ℂ𝕠𝕟𝕥𝕚𝕟𝕦𝕖"},"dialogAccessDialog":{"changeAccess":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕒𝕔𝕔𝕖𝕤𝕤 𝕗𝕠𝕣 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","selectAccess":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕒𝕟 𝕒𝕔𝕔𝕖𝕤𝕤 𝕝𝕖𝕧𝕖𝕝 𝕗𝕠𝕣 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","public":"ℙ𝕦𝕓𝕝𝕚𝕔 𝕒𝕔𝕔𝕖𝕤𝕤","publicDesc":"𝔸𝕟𝕪𝕠𝕟𝕖 𝕠𝕟 𝕥𝕙𝕖 𝕚𝕟𝕥𝕖𝕣𝕟𝕖𝕥 𝕔𝕒𝕟 𝕤𝕖𝕒𝕣𝕔𝕙 𝕗𝕠𝕣 𝕒𝕟𝕕 𝕧𝕚𝕖𝕨 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥.","verifiedHelp":"𝕆𝕟𝕝𝕪 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕦𝕤𝕖𝕣𝕤 𝕠𝕣 𝕞𝕖𝕞𝕓𝕖𝕣𝕤 𝕠𝕗 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟𝕤 𝕔𝕒𝕟 𝕞𝕒𝕜𝕖 𝕦𝕡𝕝𝕠𝕒𝕕𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕡𝕦𝕓𝕝𝕚𝕔. 𝕀𝕗 𝕪𝕠𝕦\'𝕣𝕖 𝕒 𝕛𝕠𝕦𝕣𝕟𝕒𝕝𝕚𝕤𝕥 𝕠𝕣 𝕠𝕥𝕙𝕖𝕣𝕨𝕚𝕤𝕖 𝕨𝕠𝕣𝕜 𝕚𝕟 𝕡𝕦𝕓𝕝𝕚𝕤𝕙𝕚𝕟𝕘 𝕧𝕖𝕥𝕥𝕖𝕕 𝕞𝕒𝕥𝕖𝕣𝕚𝕒𝕝𝕤 𝕥𝕠 𝕚𝕟𝕗𝕠𝕣𝕞 𝕥𝕙𝕖 𝕡𝕦𝕓𝕝𝕚𝕔, 𝕝𝕖𝕒𝕣𝕟 𝕞𝕠𝕣𝕖 𝕒𝕟𝕕 𝕣𝕖𝕢𝕦𝕖𝕤𝕥 𝕧𝕖𝕣𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟 𝕙𝕖𝕣𝕖.","privateToOrg":"𝕐𝕠𝕦 𝕔𝕒𝕟’𝕥 𝕔𝕙𝕒𝕟𝕘𝕖 𝕥𝕙𝕖 𝕒𝕔𝕔𝕖𝕤𝕤 𝕝𝕖𝕧𝕖𝕝 𝕥𝕠 “ℙ𝕣𝕚𝕧𝕒𝕥𝕖 𝕥𝕠 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟” 𝕓𝕖𝕔𝕒𝕦𝕤𝕖 {n, plural, one {𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤} other {𝕠𝕟𝕖 𝕠𝕣 𝕞𝕠𝕣𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕒𝕣𝕖}} 𝕒𝕤𝕤𝕠𝕔𝕚𝕒𝕥𝕖𝕕 𝕨𝕚𝕥𝕙 𝕪𝕠𝕦𝕣 𝕚𝕟𝕕𝕚𝕧𝕚𝕕𝕦𝕒𝕝 𝕒𝕔𝕔𝕠𝕦𝕟𝕥, 𝕟𝕠𝕥 𝕒𝕟 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟. 𝕋𝕠 𝕒𝕕𝕕 {n, plural, one {𝕚𝕥} other {𝕥𝕙𝕖𝕞}} 𝕥𝕠 𝕒𝕟 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟, 𝕤𝕖𝕝𝕖𝕔𝕥 {n, plural, one {𝕚𝕥} other {𝕥𝕙𝕖𝕞}} 𝕗𝕣𝕠𝕞 𝕥𝕙𝕖 𝕞𝕒𝕟𝕒𝕘𝕖𝕞𝕖𝕟𝕥 𝕧𝕚𝕖𝕨 𝕒𝕟𝕕 𝕔𝕝𝕚𝕔𝕜 “ℂ𝕙𝕒𝕟𝕘𝕖 𝕆𝕨𝕟𝕖𝕣.” 𝕐𝕠𝕦 𝕔𝕒𝕟 𝕛𝕠𝕚𝕟 𝕠𝕣 𝕔𝕣𝕖𝕒𝕥𝕖 𝕒𝕟 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕠𝕟 𝕥𝕙𝕚𝕤 𝕡𝕒𝕘𝕖.","private":"ℙ𝕣𝕚𝕧𝕒𝕥𝕖 𝕒𝕔𝕔𝕖𝕤𝕤","privateDesc":"𝕆𝕟𝕝𝕪 𝕡𝕖𝕠𝕡𝕝𝕖 𝕨𝕚𝕥𝕙 𝕖𝕩𝕡𝕝𝕚𝕔𝕚𝕥 𝕡𝕖𝕣𝕞𝕚𝕤𝕤𝕚𝕠𝕟 (𝕧𝕚𝕒 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕚𝕠𝕟) 𝕙𝕒𝕧𝕖 𝕒𝕔𝕔𝕖𝕤𝕤.","organization":"ℙ𝕣𝕚𝕧𝕒𝕥𝕖 𝕥𝕠 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","organizationDesc":"𝕆𝕟𝕝𝕪 𝕥𝕙𝕖 𝕡𝕖𝕠𝕡𝕝𝕖 𝕚𝕟 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕙𝕒𝕧𝕖 𝕒𝕔𝕔𝕖𝕤𝕤.","schedulePublication":"𝕊𝕔𝕙𝕖𝕕𝕦𝕝𝕖 𝕡𝕦𝕓𝕝𝕚𝕔𝕒𝕥𝕚𝕠𝕟","scheduleHelp":"𝕋𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕞𝕒𝕕𝕖 𝕡𝕦𝕓𝕝𝕚𝕔 𝕒𝕥 𝕥𝕙𝕖 𝕘𝕚𝕧𝕖𝕟 𝕕𝕒𝕥𝕖 𝕒𝕟𝕕 𝕥𝕚𝕞𝕖. ℙ𝕦𝕓𝕝𝕚𝕔𝕒𝕥𝕚𝕠𝕟 𝕥𝕚𝕞𝕖 𝕚𝕤 𝕝𝕠𝕔𝕒𝕝{timezone}.","unchanged":"𝔸𝕔𝕔𝕖𝕤𝕤 𝕚𝕤 𝕦𝕟𝕔𝕙𝕒𝕟𝕘𝕖𝕕. 𝕊𝕖𝕝𝕖𝕔𝕥 𝕒 𝕕𝕚𝕗𝕗𝕖𝕣𝕖𝕟𝕥 𝕒𝕔𝕔𝕖𝕤𝕤 𝕝𝕖𝕧𝕖𝕝.","future":"𝕄𝕦𝕤𝕥 𝕤𝕖𝕝𝕖𝕔𝕥 𝕒 𝕥𝕚𝕞𝕖 𝕚𝕟 𝕥𝕙𝕖 𝕗𝕦𝕥𝕦𝕣𝕖","change":"ℂ𝕙𝕒𝕟𝕘𝕖"},"dialogCollaboratorDialog":{"confirm":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕣𝕖𝕞𝕠𝕧𝕖 𝕦𝕤𝕖𝕣","confirmMsg":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕣𝕖𝕞𝕠𝕧𝕖 {name} 𝕗𝕣𝕠𝕞 {title}. 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔","addCollaborators":"𝔸𝕕𝕕 ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤","invite":"ℙ𝕦𝕥 𝕚𝕟 𝕥𝕙𝕖 𝕖𝕞𝕒𝕚𝕝 𝕠𝕗 𝕒𝕟 𝕖𝕩𝕚𝕤𝕥𝕚𝕟𝕘 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕦𝕤𝕖𝕣 𝕓𝕖𝕝𝕠𝕨. 𝕀𝕗 𝕥𝕙𝕖𝕪 𝕕𝕠𝕟\'𝕥 𝕙𝕒𝕧𝕖 𝕒𝕟 𝕒𝕔𝕔𝕠𝕦𝕟𝕥, 𝕙𝕒𝕧𝕖 𝕥𝕙𝕖𝕞 𝕣𝕖𝕘𝕚𝕤𝕥𝕖𝕣 𝕙𝕖𝕣𝕖 𝕗𝕠𝕣 𝕗𝕣𝕖𝕖, 𝕒𝕟𝕕 𝕥𝕙𝕖𝕟 𝕒𝕤𝕜 𝕥𝕙𝕖𝕞 𝕥𝕠 𝕝𝕠𝕘 𝕚𝕟 𝕥𝕠 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕒𝕥 𝕝𝕖𝕒𝕤𝕥 𝕠𝕟𝕔𝕖.","admin":"𝔸𝕕𝕞𝕚𝕟","view":"𝕍𝕚𝕖𝕨","adminHelp":"ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕔𝕒𝕟 𝕖𝕕𝕚𝕥 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕒𝕟𝕕 𝕚𝕥𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","editHelp":"ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕔𝕒𝕟 𝕖𝕕𝕚𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕚𝕟 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥","viewHelp":"ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕔𝕒𝕟 𝕧𝕚𝕖𝕨 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕚𝕟 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥","add":"𝔸𝕕𝕕","empty":"𝕐𝕠𝕦 𝕙𝕒𝕧𝕖 𝕟𝕠𝕥 𝕪𝕖𝕥 𝕒𝕕𝕕𝕖𝕕 𝕒𝕟𝕪 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕥𝕠 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥. 𝕀𝕟𝕧𝕚𝕥𝕖 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕥𝕠 𝕘𝕣𝕒𝕟𝕥 𝕠𝕥𝕙𝕖𝕣 𝕦𝕤𝕖𝕣𝕤 𝕒𝕔𝕔𝕖𝕤𝕤 𝕥𝕠 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕤𝕙𝕒𝕣𝕖𝕕 𝕚𝕟 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥. 𝕐𝕠𝕦 𝕔𝕒𝕟 𝕔𝕠𝕟𝕥𝕣𝕠𝕝 𝕨𝕙𝕖𝕥𝕙𝕖𝕣 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕙𝕒𝕧𝕖 𝕒𝕔𝕔𝕖𝕤𝕤 𝕥𝕠 𝕧𝕚𝕖𝕨/𝕖𝕕𝕚𝕥 𝕥𝕙𝕖 𝕡𝕣𝕠𝕛𝕖𝕔𝕥’𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕠𝕣 𝕓𝕖 𝕒𝕟 𝕒𝕕𝕞𝕚𝕟 𝕨𝕚𝕥𝕙 𝕡𝕖𝕣𝕞𝕚𝕤𝕤𝕚𝕠𝕟𝕤 𝕥𝕠 𝕚𝕟𝕧𝕚𝕥𝕖 𝕠𝕥𝕙𝕖𝕣 𝕦𝕤𝕖𝕣𝕤 𝕒𝕟𝕕 𝕖𝕕𝕚𝕥 𝕥𝕙𝕖 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕚𝕥𝕤𝕖𝕝𝕗.","manageCollaborators":"𝕄𝕒𝕟𝕒𝕘𝕖 ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤","name":"ℕ𝕒𝕞𝕖","access":"𝔸𝕔𝕔𝕖𝕤𝕤","you":"(𝕪𝕠𝕦)"},"dialogDataDialog":{"confirm":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕣𝕖𝕞𝕠𝕧𝕖 𝕕𝕒𝕥𝕒 𝕡𝕠𝕚𝕟𝕥","removeMsg":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕣𝕖𝕞𝕠𝕧𝕖 𝕥𝕙𝕖 {key}{value} 𝕕𝕒𝕥𝕒 𝕡𝕠𝕚𝕟𝕥 𝕗𝕣𝕠𝕞 𝕥𝕙𝕖 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤. 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔","addData":"𝔸𝕕𝕕 𝔻𝕒𝕥𝕒 𝕗𝕠𝕣 {n, plural, one {𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","tag":"𝕋𝕒𝕘","value":"𝕍𝕒𝕝𝕦𝕖","key":"𝕂𝕖𝕪","keyValue":"𝕂𝕖𝕪 / 𝕍𝕒𝕝𝕦𝕖","tagInfo":"𝔸𝕕𝕕 𝕔𝕦𝕤𝕥𝕠𝕞 𝕥𝕒𝕘𝕤 𝕥𝕠 𝕔𝕒𝕥𝕖𝕘𝕠𝕣𝕚𝕫𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤.","eg":"𝕖.𝕘.","exampleTagReport":"𝕣𝕖𝕡𝕠𝕣𝕥","exampleTagLawsuit":"𝕝𝕒𝕨𝕤𝕦𝕚𝕥","exampleTagEmail":"𝕖𝕞𝕒𝕚𝕝","keyValueInfo":"𝔸𝕕𝕕 𝕔𝕦𝕤𝕥𝕠𝕞 𝕜𝕖𝕪 / 𝕧𝕒𝕝𝕦𝕖 𝕡𝕒𝕚𝕣𝕤 𝕗𝕠𝕣 𝕡𝕣𝕖𝕔𝕚𝕤𝕖 𝕔𝕒𝕥𝕖𝕘𝕠𝕣𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕠𝕗 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤.","exampleKVState":"𝕤𝕥𝕒𝕥𝕖:&𝕟𝕓𝕤𝕡;ℂ𝕒𝕝𝕚𝕗𝕠𝕣𝕟𝕚𝕒","exampleKVYear":"𝕪𝕖𝕒𝕣:&𝕟𝕓𝕤𝕡;𝟚𝟘𝟙𝟞","exampleKVType":"𝕥𝕪𝕡𝕖:&𝕟𝕓𝕤𝕡;𝕞𝕖𝕞𝕠","enterTag":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕥𝕒𝕘","enterKey":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕜𝕖𝕪","keyInvalid":"𝕂𝕖𝕪𝕤 𝕔𝕒𝕟 𝕠𝕟𝕝𝕪 𝕔𝕠𝕟𝕥𝕒𝕚𝕟 𝕝𝕖𝕥𝕥𝕖𝕣𝕤, 𝕟𝕦𝕞𝕓𝕖𝕣𝕤, 𝕦𝕟𝕕𝕖𝕣𝕤𝕔𝕠𝕣𝕖𝕤 (_), 𝕒𝕟𝕕 𝕕𝕒𝕤𝕙𝕖𝕤 (-)","emptyMsg":"𝕐𝕠𝕦 𝕙𝕒𝕧𝕖 𝕟𝕠𝕥 𝕪𝕖𝕥 𝕒𝕕𝕕𝕖𝕕 𝕒𝕟𝕪 𝕕𝕒𝕥𝕒 𝕥𝕠 𝕥𝕙𝕖 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤. 𝔸𝕕𝕕 𝕥𝕒𝕘𝕤 𝕒𝕟𝕕 𝕜𝕖𝕪/𝕧𝕒𝕝𝕦𝕖 𝕡𝕒𝕚𝕣𝕤 𝕥𝕠 𝕔𝕒𝕥𝕖𝕘𝕠𝕣𝕚𝕫𝕖 𝕒𝕟𝕕 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤. 𝕐𝕠𝕦 𝕔𝕒𝕟 𝕗𝕚𝕝𝕥𝕖𝕣 𝕒𝕟𝕕 𝕤𝕖𝕒𝕣𝕔𝕙 𝕠𝕟 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕕𝕒𝕥𝕒 𝕥𝕠 𝕘𝕚𝕧𝕖 𝕪𝕠𝕦 𝕡𝕠𝕨𝕖𝕣𝕗𝕦𝕝 𝕔𝕠𝕟𝕥𝕣𝕠𝕝 𝕠𝕧𝕖𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕞𝕒𝕟𝕒𝕘𝕖𝕞𝕖𝕟𝕥.","manageDocumentData":"𝕄𝕒𝕟𝕒𝕘𝕖 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝔻𝕒𝕥𝕒","valueUnchanged":"𝕍𝕒𝕝𝕦𝕖 𝕣𝕖𝕞𝕒𝕚𝕟𝕤 𝕦𝕟𝕔𝕙𝕒𝕟𝕘𝕖𝕕","kvCannotBeEmpty":"𝕂𝕖𝕪/𝕧𝕒𝕝𝕦𝕖 𝕔𝕒𝕟𝕟𝕠𝕥 𝕓𝕖 𝕖𝕞𝕡𝕥𝕪"},"dialogReprocessDialog":{"title":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤","reprocessDocs":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕗𝕠𝕣𝕔𝕖 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}} 𝕥𝕠 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤 𝕡𝕒𝕘𝕖 𝕒𝕟𝕕 𝕚𝕞𝕒𝕘𝕖 𝕥𝕖𝕩𝕥. 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔","reprocessSingleDoc":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕗𝕠𝕣𝕔𝕖 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕥𝕠 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤 𝕡𝕒𝕘𝕖 𝕒𝕟𝕕 𝕚𝕞𝕒𝕘𝕖 𝕥𝕖𝕩𝕥. 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔","confirm":"ℝ𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤"},"dialogDeleteDialog":{"title":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤","deleteDocs":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕡𝕖𝕣𝕞𝕒𝕟𝕖𝕟𝕥𝕝𝕪 𝕕𝕖𝕝𝕖𝕥𝕖 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}. 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔"},"dialogCancelProcessingDialog":{"title":"ℂ𝕒𝕟𝕔𝕖𝕝 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘","deleteDocs":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕗𝕠𝕣𝕔𝕖 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}} 𝕥𝕠 𝕤𝕥𝕠𝕡 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘. 𝔸𝕗𝕥𝕖𝕣 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘 𝕙𝕒𝕤 𝕓𝕖𝕖𝕟 𝕤𝕥𝕠𝕡𝕡𝕖𝕕, 𝕒𝕟 𝕖𝕣𝕣𝕠𝕣 𝕨𝕚𝕝𝕝 𝕤𝕙𝕠𝕨 𝕒𝕗𝕥𝕖𝕣 𝕨𝕙𝕚𝕔𝕙 𝕪𝕠𝕦 𝕔𝕒𝕟 “𝔽𝕠𝕣𝕔𝕖 ℝ𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤” 𝕠𝕣 𝕕𝕖𝕝𝕖𝕥𝕖 𝕥𝕙𝕖 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}} 𝕦𝕤𝕚𝕟𝕘 𝕥𝕙𝕖 𝔼𝕕𝕚𝕥 𝕞𝕖𝕟𝕦. 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝕊𝕥𝕒𝕗𝕗-𝕠𝕟𝕝𝕪 𝕚𝕟𝕗𝕠 𝕗𝕠𝕣 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","id":"𝕀𝔻","title":"𝕋𝕚𝕥𝕝𝕖","actions":"𝔸𝕔𝕥𝕚𝕠𝕟𝕤","debug":"𝔻𝕖𝕓𝕦𝕘","viewErrors":"𝕍𝕚𝕖𝕨 𝕖𝕣𝕣𝕠𝕣𝕤","viewS3":"𝕍𝕚𝕖𝕨 𝕚𝕟 𝕊𝟛"},"dialogDocumentEmbedDialog":{"responsive":"ℝ𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖","respOn":"𝕆𝕟 (𝕕𝕖𝕗𝕒𝕦𝕝𝕥)","respOnHelp":"𝔽𝕚𝕝𝕝 𝕥𝕙𝕖 𝕨𝕚𝕕𝕥𝕙 𝕠𝕗 𝕥𝕙𝕖 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕔𝕠𝕟𝕥𝕒𝕚𝕟𝕖𝕣 (𝕦𝕤𝕦𝕒𝕝𝕝𝕪 𝕨𝕠𝕣𝕜𝕤 𝕓𝕖𝕤𝕥)","respOff":"𝕆𝕗𝕗","respOffHelp":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕗𝕚𝕥 𝕥𝕙𝕖 𝕤𝕚𝕫𝕖𝕤 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕖𝕕 𝕓𝕖𝕝𝕠𝕨","width":"𝕎𝕚𝕕𝕥𝕙","widthAuto":"𝕎𝕚𝕝𝕝 𝕗𝕚𝕝𝕝 𝕥𝕙𝕖 𝕒𝕧𝕒𝕚𝕝𝕒𝕓𝕝𝕖 𝕤𝕡𝕒𝕔𝕖 𝕚𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤 𝕤𝕖𝕥 𝕥𝕠 𝕣𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖, 𝕠𝕥𝕙𝕖𝕣𝕨𝕚𝕤𝕖 𝕕𝕖𝕗𝕒𝕦𝕝𝕥𝕤 𝕥𝕠 𝟟𝟘𝟘𝕡𝕩","widthFixed":"𝕊𝕖𝕥 𝕒 𝕞𝕒𝕩𝕚𝕞𝕦𝕞 𝕨𝕚𝕕𝕥𝕙 𝕚𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤 𝕣𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖, 𝕠𝕣 𝕤𝕖𝕥 𝕒 𝕗𝕚𝕩𝕖𝕕 𝕤𝕚𝕫𝕖 𝕚𝕗 𝕟𝕠𝕥 𝕣𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖","height":"ℍ𝕖𝕚𝕘𝕙𝕥","heightAuto":"𝕋𝕙𝕖 𝕙𝕖𝕚𝕘𝕙𝕥 𝕚𝕤 𝕓𝕒𝕤𝕖𝕕 𝕠𝕟 𝕥𝕙𝕖 𝕤𝕚𝕫𝕖 𝕠𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥, 𝕨𝕚𝕥𝕙 𝕟𝕠 𝕞𝕒𝕩𝕚𝕞𝕦𝕞 𝕤𝕚𝕫𝕖. 𝕀𝕗 𝕣𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖, 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕤𝕖𝕥 𝕥𝕠 𝕥𝕙𝕖 𝕙𝕖𝕚𝕘𝕙𝕥 𝕠𝕗 𝕥𝕙𝕖 𝕓𝕣𝕠𝕨𝕤𝕖𝕣 𝕨𝕚𝕟𝕕𝕠𝕨 𝕞𝕚𝕟𝕦𝕤 𝟙𝟘𝟘𝕡𝕩","heightFixed":"𝕊𝕖𝕥 𝕒 𝕞𝕒𝕩𝕚𝕞𝕦𝕞 𝕙𝕖𝕚𝕘𝕙𝕥 𝕚𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤 𝕣𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖, 𝕠𝕣 𝕤𝕖𝕥 𝕒 𝕗𝕚𝕩𝕖𝕕 𝕤𝕚𝕫𝕖 𝕚𝕗 𝕟𝕠𝕥 𝕣𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖","sidebarBehavior":"𝕊𝕚𝕕𝕖𝕓𝕒𝕣 𝕓𝕖𝕙𝕒𝕧𝕚𝕠𝕣","sbResponsive":"ℝ𝕖𝕤𝕡𝕠𝕟𝕤𝕚𝕧𝕖 (𝕕𝕖𝕗𝕒𝕦𝕝𝕥)","sbResponsiveHelp":"𝕊𝕙𝕠𝕨 𝕤𝕚𝕕𝕖𝕓𝕒𝕣 𝕒𝕦𝕥𝕠𝕞𝕒𝕥𝕚𝕔𝕒𝕝𝕝𝕪 𝕠𝕟 𝕝𝕒𝕣𝕘𝕖 𝕤𝕔𝕣𝕖𝕖𝕟𝕤 𝕒𝕟𝕕 𝕙𝕚𝕕𝕖 𝕠𝕟 𝕞𝕠𝕓𝕚𝕝𝕖 𝕕𝕖𝕧𝕚𝕔𝕖𝕤. 𝕀𝕟 𝕖𝕞𝕓𝕖𝕕 𝕞𝕠𝕕𝕖, 𝕥𝕙𝕖 𝕤𝕚𝕕𝕖𝕓𝕒𝕣 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕙𝕚𝕕𝕕𝕖𝕟","hidden":"ℍ𝕚𝕕𝕕𝕖𝕟","visible":"𝕍𝕚𝕤𝕚𝕓𝕝𝕖","visibleDefault":"𝕍𝕚𝕤𝕚𝕓𝕝𝕖 (𝕕𝕖𝕗𝕒𝕦𝕝𝕥)","sbHiddenHelp":"ℍ𝕚𝕕𝕖 𝕥𝕙𝕖 𝕤𝕚𝕕𝕖𝕓𝕒𝕣 𝕓𝕪 𝕕𝕖𝕗𝕒𝕦𝕝𝕥","sbVisibleHelp":"𝕊𝕙𝕠𝕨 𝕥𝕙𝕖 𝕤𝕚𝕕𝕖𝕓𝕒𝕣 𝕓𝕪 𝕕𝕖𝕗𝕒𝕦𝕝𝕥","titleBehavior":"𝕋𝕚𝕥𝕝𝕖 𝕓𝕖𝕙𝕒𝕧𝕚𝕠𝕣","tVisibleHelp":"𝔻𝕚𝕤𝕡𝕝𝕒𝕪 𝕥𝕙𝕖 𝕥𝕚𝕥𝕝𝕖 𝕒𝕟𝕕 𝕒𝕥𝕥𝕣𝕚𝕓𝕦𝕥𝕚𝕠𝕟 𝕚𝕟 𝕥𝕙𝕖 𝕙𝕖𝕒𝕕𝕖𝕣 𝕠𝕗 𝕥𝕙𝕖 𝕧𝕚𝕖𝕨𝕖𝕣","tHiddenHelp":"ℍ𝕚𝕕𝕖 𝕥𝕙𝕖 𝕥𝕚𝕥𝕝𝕖 𝕚𝕟 𝕥𝕙𝕖 𝕙𝕖𝕒𝕕𝕖𝕣 𝕠𝕗 𝕥𝕙𝕖 𝕧𝕚𝕖𝕨𝕖𝕣 (𝕤𝕥𝕚𝕝𝕝 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕚𝕟 𝕥𝕙𝕖 𝕤𝕚𝕕𝕖𝕓𝕒𝕣)","pdfLink":"ℙ𝔻𝔽 𝕝𝕚𝕟𝕜","plVisibleHelp":"𝕊𝕙𝕠𝕨 𝕒 𝕝𝕚𝕟𝕜 𝕥𝕠 𝕥𝕙𝕖 𝕣𝕒𝕨 ℙ𝔻𝔽 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕟 𝕥𝕙𝕖 𝕤𝕚𝕕𝕖𝕓𝕒𝕣","plHiddenHelp":"ℍ𝕚𝕕𝕖 𝕥𝕙𝕖 𝕤𝕚𝕕𝕖𝕓𝕒𝕣 ℙ𝔻𝔽 𝕝𝕚𝕟𝕜 (𝕗𝕚𝕝𝕖 𝕚𝕤 𝕤𝕥𝕚𝕝𝕝 𝕒𝕔𝕔𝕖𝕤𝕤𝕚𝕓𝕝𝕖 𝕚𝕗 𝕥𝕙𝕖 𝕌ℝ𝕃 𝕚𝕤 𝕜𝕟𝕠𝕨𝕟)","fullscreenOption":"𝔽𝕦𝕝𝕝𝕤𝕔𝕣𝕖𝕖𝕟 𝕠𝕡𝕥𝕚𝕠𝕟","fsVisibleHelp":"𝕊𝕙𝕠𝕨 𝕒 𝕗𝕦𝕝𝕝𝕤𝕔𝕣𝕖𝕖𝕟 𝕚𝕔𝕠𝕟 𝕚𝕟 𝕥𝕙𝕖 𝕓𝕠𝕥𝕥𝕠𝕞-𝕣𝕚𝕘𝕙𝕥 𝕔𝕠𝕣𝕟𝕖𝕣","fsHiddenHelp":"ℍ𝕚𝕕𝕖 𝕥𝕙𝕖 𝕗𝕦𝕝𝕝𝕤𝕔𝕣𝕖𝕖𝕟 𝕠𝕡𝕥𝕚𝕠𝕟","textMode":"𝕋𝕖𝕩𝕥 𝕞𝕠𝕕𝕖","tmVisibleHelp":"𝕊𝕙𝕠𝕨 𝕒𝕟 𝕠𝕡𝕥𝕚𝕠𝕟 𝕥𝕠 𝕧𝕚𝕖𝕨 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥’𝕤 𝕥𝕖𝕩𝕥 𝕚𝕟 𝕥𝕙𝕖 𝕧𝕚𝕖𝕨 𝕕𝕣𝕠𝕡𝕕𝕠𝕨𝕟","tmHiddenHelp":"ℍ𝕚𝕕𝕖 𝕥𝕖𝕩𝕥 𝕞𝕠𝕕𝕖","contributedByFormat":"ℂ𝕠𝕟𝕥𝕣𝕚𝕓𝕦𝕥𝕖𝕕 𝕓𝕪 𝕗𝕠𝕣𝕞𝕒𝕥","cbfUserAndOrg":"𝕌𝕤𝕖𝕣 𝕒𝕟𝕕 𝕠𝕣𝕘 (𝕕𝕖𝕗𝕒𝕦𝕝𝕥)","cbfUserAndOrgHelp":"𝕊𝕙𝕠𝕨 𝕒 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥’𝕤 𝕒𝕥𝕥𝕣𝕚𝕓𝕦𝕥𝕚𝕠𝕟 𝕒𝕤 𝕥𝕙𝕖 𝕦𝕤𝕖𝕣 𝕟𝕒𝕞𝕖 𝕗𝕠𝕝𝕝𝕠𝕨𝕖𝕕 𝕓𝕪 𝕥𝕙𝕖 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","cbfOrgOnly":"𝕆𝕣𝕘 𝕠𝕟𝕝𝕪","cbfOrgOnlyHelp":"𝔸𝕥𝕥𝕣𝕚𝕓𝕦𝕥𝕖 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕥𝕠 𝕛𝕦𝕤𝕥 𝕥𝕙𝕖 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","share":"𝕊𝕙𝕒𝕣𝕖 “{title}”","embedDesc":"ℂ𝕠𝕡𝕪 𝕥𝕙𝕖 ℍ𝕋𝕄𝕃 𝕔𝕠𝕕𝕖 𝕥𝕠 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕥𝕙𝕚𝕟 𝕒𝕟 𝕒𝕣𝕥𝕚𝕔𝕝𝕖"},"dialogDocumentInformationDialog":{"editInformation":"𝔼𝕕𝕚𝕥 𝕀𝕟𝕗𝕠𝕣𝕞𝕒𝕥𝕚𝕠𝕟 𝕗𝕠𝕣 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}"},"dialogRedactDialog":{"title":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕣𝕖𝕕𝕒𝕔𝕥𝕚𝕠𝕟𝕤","description":"𝔸𝕣𝕖 𝕪𝕠𝕦 𝕤𝕦𝕣𝕖 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕣𝕖𝕕𝕒𝕔𝕥 𝕥𝕙𝕖 𝕔𝕦𝕣𝕣𝕖𝕟𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥❔ 𝕀𝕗 𝕪𝕠𝕦 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖, 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕧𝕚𝕖𝕨𝕖𝕣 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕚𝕟𝕒𝕔𝕔𝕖𝕤𝕤𝕚𝕓𝕝𝕖 𝕥𝕖𝕞𝕡𝕠𝕣𝕒𝕣𝕚𝕝𝕪 𝕨𝕙𝕚𝕝𝕖 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕖𝕤 𝕨𝕚𝕥𝕙 𝕥𝕙𝕖 𝕣𝕖𝕕𝕒𝕔𝕥𝕚𝕠𝕟𝕤 𝕚𝕟 𝕡𝕝𝕒𝕔𝕖. 𝕋𝕙𝕚𝕤 𝕔𝕙𝕒𝕟𝕘𝕖 𝕚𝕤 𝕚𝕣𝕣𝕖𝕧𝕖𝕣𝕤𝕚𝕓𝕝𝕖."},"dialogModifyDialog":{"title":"𝔸𝕡𝕡𝕝𝕪 𝕞𝕠𝕕𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟𝕤","description":"𝔸𝕣𝕖 𝕪𝕠𝕦 𝕤𝕦𝕣𝕖 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕞𝕠𝕕𝕚𝕗𝕪 𝕥𝕙𝕖 𝕔𝕦𝕣𝕣𝕖𝕟𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥❔ 𝕀𝕗 𝕪𝕠𝕦 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖, 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕧𝕚𝕖𝕨𝕖𝕣 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕚𝕟𝕒𝕔𝕔𝕖𝕤𝕤𝕚𝕓𝕝𝕖 𝕥𝕖𝕞𝕡𝕠𝕣𝕒𝕣𝕚𝕝𝕪 𝕨𝕙𝕚𝕝𝕖 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕖𝕤 𝕨𝕚𝕥𝕙 𝕥𝕙𝕖 𝕞𝕠𝕕𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟𝕤. 𝕋𝕙𝕚𝕤 𝕔𝕙𝕒𝕟𝕘𝕖 𝕚𝕤 𝕚𝕣𝕣𝕖𝕧𝕖𝕣𝕤𝕚𝕓𝕝𝕖.","closeTitle":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕔𝕝𝕠𝕤𝕖","closeWarning":"𝕐𝕠𝕦 𝕨𝕚𝕝𝕝 𝕝𝕠𝕤𝕖 𝕒𝕝𝕝 𝕪𝕠𝕦𝕣 𝕦𝕟𝕒𝕡𝕡𝕝𝕚𝕖𝕕 𝕞𝕠𝕕𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟𝕤. 𝔸𝕣𝕖 𝕪𝕠𝕦 𝕤𝕦𝕣𝕖 𝕪𝕠𝕦 𝕨𝕒𝕟𝕥 𝕥𝕠 𝕡𝕣𝕠𝕔𝕖𝕖𝕕❔"},"dialogDeleteNoteDialog":{"title":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕕𝕖𝕝𝕖𝕥𝕖","description":"𝔸𝕣𝕖 𝕪𝕠𝕦 𝕤𝕦𝕣𝕖 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕕𝕖𝕝𝕖𝕥𝕖 𝕥𝕙𝕖 𝕔𝕦𝕣𝕣𝕖𝕟𝕥 𝕟𝕠𝕥𝕖❔"},"dialogEditSectionsDialog":{"confirmDelete":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕕𝕖𝕝𝕖𝕥𝕖","proceedingWillRemove":"ℙ𝕣𝕠𝕔𝕖𝕖𝕕𝕚𝕟𝕘 𝕨𝕚𝕝𝕝 𝕣𝕖𝕞𝕠𝕧𝕖 𝕥𝕙𝕖 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕖𝕕 𝕤𝕖𝕔𝕥𝕚𝕠𝕟 (𝕡. {page} {title}). 𝔻𝕠 𝕪𝕠𝕦 𝕨𝕚𝕤𝕙 𝕥𝕠 𝕔𝕠𝕟𝕥𝕚𝕟𝕦𝕖❔","editSections":"𝔼𝕕𝕚𝕥 𝕊𝕖𝕔𝕥𝕚𝕠𝕟𝕤","manageSections":"𝕄𝕒𝕟𝕒𝕘𝕖 𝕤𝕖𝕔𝕥𝕚𝕠𝕟𝕤 𝕥𝕠 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕥𝕙 𝕒 𝕥𝕒𝕓𝕝𝕖 𝕠𝕗 𝕔𝕠𝕟𝕥𝕖𝕟𝕥𝕤.","pageAbbrevNo":"𝕡. {n}","pageAbbrev":"𝕡.","empty":"𝕐𝕠𝕦 𝕙𝕒𝕧𝕖 𝕟𝕠𝕥 𝕒𝕕𝕕𝕖𝕕 𝕒𝕟𝕪 𝕤𝕖𝕔𝕥𝕚𝕠𝕟𝕤","edit":"𝔼𝕕𝕚𝕥 𝕥𝕙𝕖 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕤𝕖𝕔𝕥𝕚𝕠𝕟","add":"𝔸𝕕𝕕 𝕒 𝕟𝕖𝕨 𝕤𝕖𝕔𝕥𝕚𝕠𝕟","title":"𝕋𝕚𝕥𝕝𝕖","missingTitle":"ℙ𝕝𝕖𝕒𝕤𝕖 𝕖𝕟𝕥𝕖𝕣 𝕒 𝕥𝕚𝕥𝕝𝕖","updateTitle":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕟𝕖𝕨 𝕥𝕚𝕥𝕝𝕖 𝕠𝕣 𝕡𝕒𝕘𝕖 𝕟𝕦𝕞𝕓𝕖𝕣","uniquePageNumber":"𝕐𝕠𝕦 𝕞𝕦𝕤𝕥 𝕖𝕟𝕥𝕖𝕣 𝕒 𝕦𝕟𝕚𝕢𝕦𝕖 𝕡𝕒𝕘𝕖 𝕟𝕦𝕞𝕓𝕖𝕣","invalidPageNumber":"ℙ𝕒𝕘𝕖 𝕟𝕦𝕞𝕓𝕖𝕣 𝕚𝕤 𝕚𝕟𝕧𝕒𝕝𝕚𝕕"},"dialogEmbedDialog":{"updatingDocument":"𝕌𝕡𝕕𝕒𝕥𝕚𝕟𝕘 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥...","makingPublic":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤 𝕔𝕦𝕣𝕣𝕖𝕟𝕥𝕝𝕪 𝕓𝕖𝕚𝕟𝕘 𝕞𝕒𝕕𝕖 𝕡𝕦𝕓𝕝𝕚𝕔. 𝕋𝕙𝕚𝕤 𝕞𝕒𝕪 𝕥𝕒𝕜𝕖 𝕒 𝕞𝕚𝕟𝕦𝕥𝕖 𝕠𝕣 𝕥𝕨𝕠.","wouldMakePublic":"𝕎𝕠𝕦𝕝𝕕 𝕪𝕠𝕦 𝕝𝕚𝕜𝕖 𝕥𝕠 𝕞𝕒𝕜𝕖 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕡𝕦𝕓𝕝𝕚𝕔 𝕓𝕖𝕗𝕠𝕣𝕖 𝕤𝕙𝕒𝕣𝕚𝕟𝕘❔","notPublic":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤 𝕟𝕠𝕥 𝕔𝕦𝕣𝕣𝕖𝕟𝕥𝕝𝕪 𝕡𝕦𝕓𝕝𝕚𝕔. 𝕀𝕗 𝕪𝕠𝕦 𝕖𝕞𝕓𝕖𝕕 𝕠𝕣 𝕝𝕚𝕟𝕜 𝕚𝕥, 𝕠𝕟𝕝𝕪 𝕪𝕠𝕦 𝕒𝕟𝕕 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕒𝕓𝕝𝕖 𝕥𝕠 𝕧𝕚𝕖𝕨 𝕚𝕥 𝕦𝕟𝕥𝕚𝕝 𝕚𝕥 𝕚𝕤 𝕞𝕒𝕕𝕖 𝕡𝕦𝕓𝕝𝕚𝕔. ℂ𝕝𝕚𝕔𝕜 𝕓𝕖𝕝𝕠𝕨 𝕨𝕙𝕖𝕟 𝕪𝕠𝕦’𝕣𝕖 𝕣𝕖𝕒𝕕𝕪 𝕥𝕠 𝕡𝕦𝕓𝕝𝕚𝕤𝕙 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕥𝕠 𝕥𝕙𝕖 𝕡𝕦𝕓𝕝𝕚𝕔.","makePublic":"𝕄𝕒𝕜𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕡𝕦𝕓𝕝𝕚𝕔","leave":"𝕃𝕖𝕒𝕧𝕖 𝕒𝕤 𝕚𝕤","selectShare":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕤𝕙𝕒𝕣𝕖 𝕠𝕡𝕥𝕚𝕠𝕟","selectShareHelp":"ℂ𝕙𝕠𝕠𝕤𝕖 𝕨𝕙𝕖𝕥𝕙𝕖𝕣 𝕥𝕠 𝕤𝕙𝕒𝕣𝕖 𝕥𝕙𝕖 𝕖𝕟𝕥𝕚𝕣𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕠𝕣 𝕛𝕦𝕤𝕥 𝕒 𝕡𝕒𝕘𝕖 𝕠𝕣 𝕟𝕠𝕥𝕖.","shareDoc":"𝕊𝕙𝕒𝕣𝕖 𝕖𝕟𝕥𝕚𝕣𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","shareDocHelp":"𝕃𝕚𝕟𝕜 𝕠𝕣 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕖 𝕖𝕟𝕥𝕚𝕣𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥. (𝕋𝕙𝕚𝕤 𝕚𝕤 𝕥𝕙𝕖 𝕞𝕠𝕤𝕥 𝕔𝕠𝕞𝕞𝕠𝕟𝕝𝕪 𝕦𝕤𝕖𝕕 𝕤𝕙𝕒𝕣𝕖 𝕠𝕡𝕥𝕚𝕠𝕟.)","sharePage":"𝕊𝕙𝕒𝕣𝕖 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕔 𝕡𝕒𝕘𝕖","sharePageHelp":"𝕃𝕚𝕟𝕜 𝕠𝕣 𝕖𝕞𝕓𝕖𝕕 𝕒 𝕤𝕚𝕟𝕘𝕝𝕖 𝕡𝕒𝕘𝕖 𝕠𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥. 𝕌𝕤𝕖𝕗𝕦𝕝 𝕗𝕠𝕣 𝕙𝕚𝕘𝕙𝕝𝕚𝕘𝕙𝕥𝕚𝕟𝕘 𝕒 𝕡𝕒𝕘𝕖 𝕖𝕩𝕔𝕖𝕣𝕡𝕥.","shareNote":"𝕊𝕙𝕒𝕣𝕖 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕔 𝕟𝕠𝕥𝕖","shareNoteHelpHasNote":"𝕃𝕚𝕟𝕜 𝕠𝕣 𝕖𝕞𝕓𝕖𝕕 𝕒 𝕟𝕠𝕥𝕖 𝕨𝕚𝕥𝕙𝕚𝕟 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥. 𝕌𝕤𝕖𝕗𝕦𝕝 𝕗𝕠𝕣 𝕙𝕚𝕘𝕙𝕝𝕚𝕘𝕙𝕥𝕚𝕟𝕘 𝕒 𝕣𝕖𝕘𝕚𝕠𝕟 𝕠𝕗 𝕒 𝕡𝕒𝕘𝕖.","shareNoteHelpNoNote":"𝕆𝕟𝕔𝕖 𝕪𝕠𝕦 𝕒𝕕𝕕 𝕟𝕠𝕥𝕖𝕤 𝕥𝕠 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥, 𝕦𝕤𝕖 𝕥𝕙𝕚𝕤 𝕗𝕖𝕒𝕥𝕦𝕣𝕖 𝕥𝕠 𝕝𝕚𝕟𝕜 𝕠𝕣 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕖𝕞."},"dialogErrorDialog":{"errorOccurred":"𝔸𝕟 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕","unexpectedErrorOccurred":"𝔸𝕟 𝕦𝕟𝕖𝕩𝕡𝕖𝕔𝕥𝕖𝕕 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕","tryAgain":"ℙ𝕝𝕖𝕒𝕤𝕖 𝕥𝕣𝕪 𝕒𝕘𝕒𝕚𝕟 𝕝𝕒𝕥𝕖𝕣.","close":"ℂ𝕝𝕠𝕤𝕖","refresh":"ℝ𝕖𝕗𝕣𝕖𝕤𝕙"},"dialogNoteEmbedDialog":{"embedNote":"𝔼𝕞𝕓𝕖𝕕 𝕒 𝕟𝕠𝕥𝕖 𝕠𝕗 “{title}”","embedDesc":"ℂ𝕠𝕡𝕪 𝕥𝕙𝕖 ℍ𝕋𝕄𝕃 𝕔𝕠𝕕𝕖 𝕥𝕠 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕚𝕤 𝕟𝕠𝕥𝕖 𝕨𝕚𝕥𝕙𝕚𝕟 𝕒𝕟 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕠𝕣 𝕡𝕠𝕤𝕥:"},"dialogPageEmbedDialog":{"embedPage":"𝔼𝕞𝕓𝕖𝕕 𝕒 𝕡𝕒𝕘𝕖 𝕠𝕗 “{title}”","embedDesc":"ℂ𝕠𝕡𝕪 𝕥𝕙𝕖 ℍ𝕋𝕄𝕃 𝕔𝕠𝕕𝕖 𝕥𝕠 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕚𝕤 𝕡𝕒𝕘𝕖 𝕨𝕚𝕥𝕙𝕚𝕟 𝕒𝕟 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕠𝕣 𝕡𝕠𝕤𝕥:","selectPage":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕥𝕙𝕖 𝕡𝕒𝕘𝕖 𝕥𝕠 𝕖𝕞𝕓𝕖𝕕:","page":"ℙ𝕒𝕘𝕖 {n} (𝕔𝕦𝕣𝕣𝕖𝕟𝕥𝕝𝕪 𝕧𝕚𝕤𝕚𝕓𝕝𝕖)","otherPage":"𝕆𝕥𝕙𝕖𝕣 𝕡𝕒𝕘𝕖","enterPageNumber":"𝔼𝕟𝕥𝕖𝕣 𝕥𝕙𝕖 𝕡𝕒𝕘𝕖 𝕟𝕦𝕞𝕓𝕖𝕣 𝕥𝕠 𝕖𝕞𝕓𝕖𝕕:"},"dialogProjectAccessDialog":{"changeAccessFor":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕒𝕔𝕔𝕖𝕤𝕤 𝕗𝕠𝕣 {name}","selectAccess":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕒𝕟 𝕒𝕔𝕔𝕖𝕤𝕤 𝕝𝕖𝕧𝕖𝕝 𝕓𝕖𝕝𝕠𝕨 𝕗𝕠𝕣 {name} 𝕚𝕟 {title}","adminAccess":"𝔸𝕕𝕞𝕚𝕟 𝔸𝕔𝕔𝕖𝕤𝕤","editAccess":"𝔼𝕕𝕚𝕥 𝔸𝕔𝕔𝕖𝕤𝕤","viewAccess":"𝕍𝕚𝕖𝕨 𝔸𝕔𝕔𝕖𝕤𝕤","adminHelp":"𝕋𝕙𝕚𝕤 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣 𝕔𝕒𝕟 𝕖𝕕𝕚𝕥 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕒𝕟𝕕 𝕚𝕥𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤. 𝕋𝕙𝕖 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣 𝕔𝕒𝕟 𝕚𝕟𝕧𝕚𝕥𝕖 𝕦𝕤𝕖𝕣𝕤, 𝕕𝕖𝕝𝕖𝕥𝕖 𝕦𝕤𝕖𝕣𝕤, 𝕒𝕟𝕕 𝕣𝕖𝕞𝕠𝕧𝕖 𝕥𝕙𝕖 𝕡𝕣𝕠𝕛𝕖𝕔𝕥.","editHelp":"𝕋𝕙𝕚𝕤 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣 𝕔𝕒𝕟 𝕖𝕕𝕚𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕚𝕟 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕓𝕦𝕥 𝕔𝕒𝕟𝕟𝕠𝕥 𝕖𝕕𝕚𝕥 𝕥𝕙𝕖 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕚𝕥𝕤𝕖𝕝𝕗.","viewHelp":"𝕋𝕙𝕚𝕤 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣 𝕔𝕒𝕟 𝕧𝕚𝕖𝕨 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕚𝕟 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕓𝕦𝕥 𝕔𝕒𝕟𝕟𝕠𝕥 𝕖𝕕𝕚𝕥 𝕥𝕙𝕖𝕞 𝕠𝕣 𝕥𝕙𝕖 𝕡𝕣𝕠𝕛𝕖𝕔𝕥.","invalidAccess":"𝔸𝕔𝕔𝕖𝕤𝕤 𝕚𝕤 𝕒𝕝𝕣𝕖𝕒𝕕𝕪 𝕤𝕖𝕥 𝕥𝕠 {access}. 𝕊𝕖𝕝𝕖𝕔𝕥 𝕒 𝕕𝕚𝕗𝕗𝕖𝕣𝕖𝕟𝕥 𝕒𝕔𝕔𝕖𝕤𝕤 𝕝𝕖𝕧𝕖𝕝.","changeAccess":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕒𝕔𝕔𝕖𝕤𝕤"},"dialogOwnerDialog":{"selectUser":"𝕌𝕤𝕖𝕣 𝕞𝕦𝕤𝕥 𝕓𝕖 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕","selectOrg":"𝕆𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕞𝕦𝕤𝕥 𝕓𝕖 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕","changeOwner":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕠𝕨𝕟𝕖𝕣 𝕗𝕠𝕣 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","accessWarning":"𝕎𝕒𝕣𝕟𝕚𝕟𝕘: 𝕐𝕠𝕦 𝕞𝕒𝕪 𝕝𝕠𝕤𝕥 𝕒𝕔𝕔𝕖𝕤𝕤 𝕥𝕠 𝕥𝕙𝕖 𝕤𝕡𝕖𝕔𝕚𝕗𝕚𝕖𝕕 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}} 𝕒𝕤 𝕒 𝕣𝕖𝕤𝕦𝕝𝕥 𝕠𝕗 𝕔𝕙𝕒𝕟𝕘𝕚𝕟𝕘 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕠𝕨𝕟𝕖𝕣","user":"𝕌𝕤𝕖𝕣:","filterUsers":"𝕋𝕪𝕡𝕖 𝕥𝕠 𝕗𝕚𝕝𝕥𝕖𝕣 𝕦𝕤𝕖𝕣𝕤...","filterOrgs":"𝕋𝕪𝕡𝕖 𝕥𝕠 𝕗𝕚𝕝𝕥𝕖𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟𝕤..."},"dialogProjectDialog":{"confirmDelete":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 𝕕𝕖𝕝𝕖𝕥𝕖","deleteProject":"𝔸𝕣𝕖 𝕪𝕠𝕦 𝕤𝕦𝕣𝕖 𝕪𝕠𝕦 𝕨𝕒𝕟𝕥 𝕥𝕠 𝕕𝕖𝕝𝕖𝕥𝕖 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 ({project})❔","editProject":"𝔼𝕕𝕚𝕥 ℙ𝕣𝕠𝕛𝕖𝕔𝕥","createProject":"ℂ𝕣𝕖𝕒𝕥𝕖 ℕ𝕖𝕨 ℙ𝕣𝕠𝕛𝕖𝕔𝕥","title":"𝕋𝕚𝕥𝕝𝕖...","projectDesc":"ℙ𝕣𝕠𝕛𝕖𝕔𝕥 𝔻𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟 (𝕠𝕡𝕥𝕚𝕠𝕟𝕒𝕝)","manageCollabs":"𝕄𝕒𝕟𝕒𝕘𝕖 ℂ𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕠𝕣𝕤","share":"𝕊𝕙𝕒𝕣𝕖 / 𝔼𝕞𝕓𝕖𝕕 ℙ𝕣𝕠𝕛𝕖𝕔𝕥","enterTitle":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕥𝕚𝕥𝕝𝕖","changeTitle":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕥𝕙𝕖 𝕥𝕚𝕥𝕝𝕖 𝕠𝕣 𝕕𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟"},"dialogProjectEmbedDialog":{"share":"𝕊𝕙𝕒𝕣𝕖 “{title}”","embedDesc":"ℂ𝕠𝕡𝕪 𝕥𝕙𝕖 ℍ𝕋𝕄𝕃 𝕔𝕠𝕕𝕖 𝕥𝕠 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕥𝕙𝕚𝕟 𝕒𝕟 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕠𝕣 𝕡𝕠𝕤𝕥:","invalid":"𝕀𝕟𝕧𝕒𝕝𝕚𝕕 𝕡𝕣𝕠𝕛𝕖𝕔𝕥","cannotEmbed":"ℂ𝕒𝕟𝕟𝕠𝕥 𝕖𝕞𝕓𝕖𝕕 𝕥𝕙𝕚𝕤 𝕡𝕣𝕠𝕛𝕖𝕔𝕥, 𝕒𝕤 𝕚𝕥 𝕕𝕠𝕖𝕤 𝕟𝕠𝕥 𝕒𝕡𝕡𝕖𝕒𝕣 𝕥𝕠 𝕖𝕩𝕚𝕤𝕥."},"htmlEditor":{"preview":"ℙ𝕣𝕖𝕧𝕚𝕖𝕨:"},"image":{"error":"𝔸𝕟 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕. 𝕋𝕣𝕪 𝕣𝕖𝕗𝕣𝕖𝕤𝕙𝕚𝕟𝕘 𝕥𝕙𝕖 𝕡𝕒𝕘𝕖"},"omniselect":{"filter":"𝕋𝕪𝕡𝕖 𝕥𝕠 𝕗𝕚𝕝𝕥𝕖𝕣 𝕝𝕒𝕟𝕘𝕦𝕒𝕘𝕖","noResults":"ℕ𝕠 𝕣𝕖𝕤𝕦𝕝𝕥𝕤. ℂ𝕝𝕚𝕔𝕜 𝕥𝕠 𝕔𝕝𝕖𝕒𝕣 𝕗𝕚𝕝𝕥𝕖𝕣."},"shareOptions":{"errorText":"𝔸𝕟 𝕦𝕟𝕖𝕩𝕡𝕖𝕔𝕥𝕖𝕕 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕. ℙ𝕝𝕖𝕒𝕤𝕖 𝕥𝕣𝕪 𝕒𝕘𝕒𝕚𝕟 𝕝𝕒𝕥𝕖𝕣.","copyHtml":"ℂ𝕠𝕡𝕪 ℍ𝕋𝕄𝕃 𝕔𝕠𝕕𝕖","addShortcode":"𝔸𝕕𝕕 𝕥𝕙𝕚𝕤 𝕤𝕙𝕠𝕣𝕥𝕔𝕠𝕕𝕖 𝕥𝕠 𝕪𝕠𝕦𝕣 𝕎𝕠𝕣𝕕ℙ𝕣𝕖𝕤𝕤 𝕔𝕠𝕟𝕥𝕖𝕟𝕥 —","pluginRequired":"𝕡𝕝𝕦𝕘𝕚𝕟 𝕣𝕖𝕢𝕦𝕚𝕣𝕖𝕕","copyShortcode":"ℂ𝕠𝕡𝕪 𝕤𝕙𝕠𝕣𝕥𝕔𝕠𝕕𝕖","copyUrl":"ℂ𝕠𝕡𝕪 𝕌ℝ𝕃"},"specialMessage":{"contactUs":"ℂ𝕠𝕟𝕥𝕒𝕔𝕥 𝕦𝕤 𝕨𝕚𝕥𝕙 𝕓𝕦𝕘 𝕣𝕖𝕡𝕠𝕣𝕥𝕤, 𝕢𝕦𝕖𝕤𝕥𝕚𝕠𝕟𝕤, 𝕒𝕟𝕕 𝕤𝕦𝕘𝕘𝕖𝕤𝕥𝕚𝕠𝕟𝕤."},"uploadOptions":{"documentLang":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕝𝕒𝕟𝕘𝕦𝕒𝕘𝕖:","forceOcr":"𝔽𝕠𝕣𝕔𝕖 𝕆ℂℝ:"},"actionBar":{"selectDocs":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕤𝕠𝕞𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕥𝕠 𝕣𝕖𝕧𝕖𝕒𝕝 𝕖𝕕𝕚𝕥 𝕒𝕔𝕥𝕚𝕠𝕟𝕤","noPerms":"𝕐𝕠𝕦 𝕕𝕠 𝕟𝕠𝕥 𝕙𝕒𝕧𝕖 𝕡𝕖𝕣𝕞𝕚𝕤𝕤𝕚𝕠𝕟 𝕥𝕠 𝕖𝕕𝕚𝕥 𝕒𝕝𝕝 𝕠𝕗 𝕥𝕙𝕖 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","editMenu":"𝔼𝕕𝕚𝕥","projectsMenu":"ℙ𝕣𝕠𝕛𝕖𝕔𝕥𝕤"},"authSection":{"help":"ℍ𝕖𝕝𝕡","language":"𝕃𝕒𝕟𝕘𝕦𝕒𝕘𝕖","tips":"𝕋𝕚𝕡𝕤 𝕒𝕟𝕕 𝕋𝕣𝕚𝕔𝕜𝕤","searchDocs":"𝕊𝕖𝕒𝕣𝕔𝕙 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕒𝕥𝕚𝕠𝕟","apiDocs":"𝔸ℙ𝕀 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕒𝕥𝕚𝕠𝕟","emailUs":"𝔼𝕞𝕒𝕚𝕝 𝕌𝕤","acctSettings":"𝔸𝕔𝕔𝕠𝕦𝕟𝕥 𝕊𝕖𝕥𝕥𝕚𝕟𝕘𝕤","signOut":"𝕊𝕚𝕘𝕟 𝕠𝕦𝕥","changeOrg":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","personalAcct":"ℙ𝕖𝕣𝕤𝕠𝕟𝕒𝕝 𝔸𝕔𝕔𝕠𝕦𝕟𝕥","signIn":"𝕊𝕚𝕘𝕟 𝕚𝕟"},"documents":{"yourDocuments":"𝕐𝕠𝕦𝕣 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","searchResults":"𝕊𝕖𝕒𝕣𝕔𝕙 ℝ𝕖𝕤𝕦𝕝𝕥𝕤","accessDocuments":"𝕐𝕠𝕦𝕣 {access}𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","nameDocuments":"{name}\'𝕤 {access}𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","allDocuments":"𝔸𝕝𝕝 {access}𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","mustBeVerified":"𝕐𝕠𝕦 𝕞𝕦𝕤𝕥 𝕓𝕖 𝕒 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕛𝕠𝕦𝕣𝕟𝕒𝕝𝕚𝕤𝕥 𝕥𝕠 𝕦𝕡𝕝𝕠𝕒𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","upload":"𝕌𝕡𝕝𝕠𝕒𝕕","dropFile":"𝔻𝕣𝕠𝕡 𝕗𝕚𝕝𝕖 𝕥𝕠 𝕦𝕡𝕝𝕠𝕒𝕕"},"document":{"open":"𝕆𝕡𝕖𝕟","updating":"𝕌𝕡𝕕𝕒𝕥𝕚𝕟𝕘 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥...","processing":"ℙ𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘","processingError":"𝔸𝕟 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕 𝕥𝕣𝕪𝕚𝕟𝕘 𝕥𝕠 𝕡𝕣𝕠𝕔𝕖𝕤𝕤 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","remove":"ℝ𝕖𝕞𝕠𝕧𝕖","improper":"𝕐𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕒𝕤 𝕦𝕡𝕝𝕠𝕒𝕕𝕖𝕕 𝕚𝕞𝕡𝕣𝕠𝕡𝕖𝕣𝕝𝕪","project":"ℙ𝕣𝕠𝕛𝕖𝕔𝕥","totalMatchingPages":"{n} 𝕠𝕗 {m} 𝕡𝕒𝕘𝕖𝕤 𝕞𝕒𝕥𝕔𝕙𝕚𝕟𝕘 𝕥𝕙𝕖 𝕢𝕦𝕖𝕣𝕪","showAll":"𝕊𝕙𝕠𝕨 𝕒𝕝𝕝","matchingPages":"{n} 𝕡𝕒𝕘𝕖𝕤 𝕞𝕒𝕥𝕔𝕙𝕚𝕟𝕘 𝕥𝕙𝕖 𝕢𝕦𝕖𝕣𝕪","pageAbbrev":"𝕡.","pageCount":"{n, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}}","source":"𝕊𝕠𝕦𝕣𝕔𝕖"},"documentThumbnail":{"pages":"𝕡𝕒𝕘𝕖𝕤","loading":"𝕃𝕠𝕒𝕕𝕚𝕟𝕘 𝕡𝕣𝕠𝕘𝕣𝕖𝕤𝕤 𝕚𝕟𝕗𝕠𝕣𝕞𝕒𝕥𝕚𝕠𝕟..."},"mainContainer":{"error":"𝔼𝕣𝕣𝕠𝕣","errorMsg":"𝕎𝕖 𝕔𝕠𝕦𝕝𝕕 𝕟𝕠𝕥 𝕣𝕖𝕒𝕔𝕙 𝕥𝕙𝕖 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕤𝕖𝕣𝕧𝕖𝕣. ℙ𝕝𝕖𝕒𝕤𝕖 𝕥𝕣𝕪 𝕣𝕖𝕗𝕣𝕖𝕤𝕙𝕚𝕟𝕘 𝕥𝕙𝕖 𝕡𝕒𝕘𝕖 𝕝𝕒𝕥𝕖𝕣.","refresh":"ℝ𝕖𝕗𝕣𝕖𝕤𝕙"},"editMenu":{"editDocInfo":"𝔼𝕕𝕚𝕥 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕀𝕟𝕗𝕠𝕣𝕞𝕒𝕥𝕚𝕠𝕟","changeAccess":"ℂ𝕙𝕒𝕟𝕘𝕖 𝔸𝕔𝕔𝕖𝕤𝕤","editDocData":"𝔼𝕕𝕚𝕥 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝔻𝕒𝕥𝕒","cancelProcessing":"ℂ𝕒𝕟𝕔𝕖𝕝 ℙ𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘","forceReprocess":"𝔽𝕠𝕣𝕔𝕖 ℝ𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤","entities":"𝔼𝕟𝕥𝕚𝕥𝕚𝕖𝕤 𝔹𝔼𝕋𝔸","changeOwner":"ℂ𝕙𝕒𝕟𝕘𝕖 𝕆𝕨𝕟𝕖𝕣","delete":"𝔻𝕖𝕝𝕖𝕥𝕖","diagnosticInfo":"𝔻𝕚𝕒𝕘𝕟𝕠𝕤𝕥𝕚𝕔 𝕀𝕟𝕗𝕠"},"metaFields":{"defaultFieldInvalidText":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕒𝕝𝕣𝕖𝕒𝕕𝕪 𝕙𝕒𝕤 𝕥𝕙𝕚𝕤 {fieldName}","titleFieldTitle":"𝕋𝕚𝕥𝕝𝕖","titleFieldName":"𝕟𝕒𝕞𝕖","titleFieldNameUppercase":"ℕ𝕒𝕞𝕖","titleFieldHeader":"ℝ𝕖𝕟𝕒𝕞𝕖 {n, plural, one {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","titleFieldDescription":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕟𝕒𝕞𝕖 𝕓𝕖𝕝𝕠𝕨 𝕗𝕠𝕣 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","titleFieldButton":"ℝ𝕖𝕟𝕒𝕞𝕖","titleFieldInvalidSameName":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕒𝕝𝕣𝕖𝕒𝕕𝕪 𝕙𝕒𝕤 𝕥𝕙𝕚𝕤 𝕟𝕒𝕞𝕖","titleFieldInvalidEmptyName":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕧𝕒𝕝𝕚𝕕 𝕟𝕒𝕞𝕖","sourceFieldTitle":"𝕊𝕠𝕦𝕣𝕔𝕖","sourceFieldName":"𝕤𝕠𝕦𝕣𝕔𝕖","sourceFieldNameUppercase":"𝕊𝕠𝕦𝕣𝕔𝕖","sourceFieldHeader":"𝔼𝕕𝕚𝕥 𝕤𝕠𝕦𝕣𝕔𝕖 𝕗𝕠𝕣 {n, plural, one {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","sourceFieldDescription":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕤𝕠𝕦𝕣𝕔𝕖 𝕓𝕖𝕝𝕠𝕨 𝕗𝕠𝕣 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","sourceFieldButton":"𝔼𝕕𝕚𝕥","descriptionFieldTitle":"𝔻𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟","descriptionFieldName":"𝕕𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟","descriptionFieldNameUppercase":"𝔻𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟","descriptionFieldHeader":"𝔼𝕕𝕚𝕥 𝕕𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟 𝕗𝕠𝕣 {n, plural, one {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","descriptionFieldDescription":"𝔼𝕟𝕥𝕖𝕣 𝕥𝕙𝕖 𝕕𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟 𝕓𝕖𝕝𝕠𝕨 𝕗𝕠𝕣 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","descriptionFieldButton":"𝔼𝕕𝕚𝕥","relatedArticleFieldTitle":"ℝ𝕖𝕝𝕒𝕥𝕖𝕕 𝔸𝕣𝕥𝕚𝕔𝕝𝕖 𝕌ℝ𝕃","relatedArticleFieldName":"𝕣𝕖𝕝𝕒𝕥𝕖𝕕 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕌ℝ𝕃","relatedArticleFieldNameUppercase":"ℝ𝕖𝕝𝕒𝕥𝕖𝕕 𝔸𝕣𝕥𝕚𝕔𝕝𝕖 𝕌ℝ𝕃","relatedArticleFieldHeader":"𝔼𝕕𝕚𝕥 𝕥𝕙𝕖 𝕣𝕖𝕝𝕒𝕥𝕖𝕕 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕌ℝ𝕃 𝕗𝕠𝕣 {n, plural, one {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","relatedArticleFieldDescription":"𝔼𝕟𝕥𝕖𝕣 𝕥𝕙𝕖 𝕣𝕖𝕝𝕒𝕥𝕖𝕕 𝕒𝕣𝕥𝕚𝕔𝕝𝕖 𝕌ℝ𝕃 𝕓𝕖𝕝𝕠𝕨 𝕗𝕠𝕣 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","relatedArticleFieldButton":"𝔼𝕕𝕚𝕥","publishedUrlFieldTitle":"ℙ𝕦𝕓𝕝𝕚𝕤𝕙𝕖𝕕 𝕌ℝ𝕃","publishedUrlFieldName":"𝕡𝕦𝕓𝕝𝕚𝕤𝕙𝕖𝕕 𝕌ℝ𝕃","publishedUrlFieldNameUppercase":"ℙ𝕦𝕓𝕝𝕚𝕤𝕙𝕖𝕕 𝕌ℝ𝕃","publishedUrlFieldHeader":"𝔼𝕕𝕚𝕥 𝕥𝕙𝕖 𝕡𝕦𝕓𝕝𝕚𝕤𝕙𝕖𝕕 𝕌ℝ𝕃 𝕗𝕠𝕣 {n, plural, one {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","publishedUrlFieldDescription":"𝔼𝕟𝕥𝕖𝕣 𝕥𝕙𝕖 𝕡𝕦𝕓𝕝𝕚𝕤𝕙𝕖𝕕 𝕌ℝ𝕃 𝕓𝕖𝕝𝕠𝕨 𝕗𝕠𝕣 𝕥𝕙𝕖 {n, plural, one {𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕤𝕖𝕝𝕖𝕔𝕥𝕖𝕕 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}","publishedUrlFieldButton":"𝔼𝕕𝕚𝕥"},"projectsMenu":{"newProject":"+ ℕ𝕖𝕨 ℙ𝕣𝕠𝕛𝕖𝕔𝕥","projMembership":"ℙ𝕣𝕠𝕛𝕖𝕔𝕥 𝕄𝕖𝕞𝕓𝕖𝕣𝕤𝕙𝕚𝕡","selectDocs":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕥𝕠 𝕡𝕝𝕒𝕔𝕖 𝕥𝕙𝕖𝕞 𝕚𝕟 𝕡𝕣𝕠𝕛𝕖𝕔𝕥𝕤","createProj":"ℂ𝕣𝕖𝕒𝕥𝕖 𝕒 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕥𝕠 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕖 𝕒𝕟𝕕 𝕤𝕙𝕒𝕣𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤"},"noDocuments":{"noSearchResults":"ℕ𝕠 𝕤𝕖𝕒𝕣𝕔𝕙 𝕣𝕖𝕤𝕦𝕝𝕥𝕤","queryNoResults":"𝕐𝕠𝕦𝕣 𝕤𝕖𝕒𝕣𝕔𝕙 𝕢𝕦𝕖𝕣𝕪 𝕣𝕖𝕥𝕦𝕣𝕟𝕖𝕕 𝕟𝕠 𝕣𝕖𝕤𝕦𝕝𝕥𝕤. 𝕋𝕣𝕪 𝕒𝕘𝕒𝕚𝕟 𝕨𝕚𝕥𝕙 𝕒 𝕓𝕣𝕠𝕒𝕕𝕖𝕣 𝕤𝕖𝕒𝕣𝕔𝕙 𝕢𝕦𝕖𝕣𝕪.","welcome":"𝕎𝕖𝕝𝕔𝕠𝕞𝕖 𝕥𝕠 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕❕","verify1":"ℕ𝕠𝕥𝕖 𝕥𝕙𝕒𝕥 𝕔𝕦𝕣𝕣𝕖𝕟𝕥𝕝𝕪 𝕪𝕠𝕦𝕣 𝕒𝕔𝕔𝕠𝕦𝕟𝕥 𝕚𝕤 𝕟𝕠𝕥 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕥𝕠 𝕦𝕡𝕝𝕠𝕒𝕕. 𝕐𝕠𝕦 𝕔𝕒𝕟 𝕤𝕖𝕒𝕣𝕔𝕙 𝕥𝕙𝕣𝕠𝕦𝕘𝕙 𝕥𝕙𝕖 𝕡𝕦𝕓𝕝𝕚𝕔 𝕣𝕖𝕡𝕠𝕤𝕚𝕥𝕠𝕣𝕪, 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕪𝕠𝕦\'𝕣𝕖 𝕚𝕟𝕥𝕖𝕣𝕖𝕤𝕥𝕖𝕕 𝕚𝕟 𝕚𝕟𝕥𝕠 𝕡𝕣𝕠𝕛𝕖𝕔𝕥𝕤, 𝕝𝕖𝕒𝕧𝕖 𝕡𝕣𝕚𝕧𝕒𝕥𝕖 𝕟𝕠𝕥𝕖𝕤, 𝕒𝕟𝕕 𝕔𝕠𝕝𝕝𝕒𝕓𝕠𝕣𝕒𝕥𝕖 𝕠𝕟 𝕖𝕕𝕚𝕥𝕚𝕟𝕘 𝕒𝕟𝕕 𝕒𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕟𝕘 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕠𝕥𝕙𝕖𝕣 𝕦𝕤𝕖𝕣𝕤 𝕚𝕟𝕧𝕚𝕥𝕖 𝕪𝕠𝕦 𝕥𝕠.","verify2":"𝕀𝕗 𝕪𝕠𝕦’𝕕 𝕝𝕚𝕜𝕖 𝕥𝕠 𝕦𝕡𝕝𝕠𝕒𝕕 𝕠𝕣 𝕡𝕦𝕓𝕝𝕚𝕤𝕙 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕒𝕟𝕕 𝕪𝕠𝕦\'𝕣𝕖 𝕒 𝕨𝕠𝕣𝕜𝕚𝕟𝕘 𝕛𝕠𝕦𝕣𝕟𝕒𝕝𝕚𝕤𝕥 𝕠𝕣 𝕠𝕥𝕙𝕖𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕚𝕟𝕥𝕖𝕣𝕖𝕤𝕥𝕖𝕕 𝕚𝕟 𝕡𝕦𝕓𝕝𝕚𝕤𝕙𝕚𝕟𝕘 𝕡𝕣𝕚𝕞𝕒𝕣𝕪 𝕤𝕠𝕦𝕣𝕔𝕖 𝕞𝕒𝕥𝕖𝕣𝕚𝕒𝕝𝕤 𝕚𝕟 𝕥𝕙𝕖 𝕡𝕦𝕓𝕝𝕚𝕔 𝕚𝕟𝕥𝕖𝕣𝕖𝕤𝕥, 𝕪𝕠𝕦\'𝕝𝕝 𝕟𝕖𝕖𝕕 𝕥𝕠 𝕙𝕒𝕧𝕖 𝕪𝕠𝕦𝕣 𝕒𝕔𝕔𝕠𝕦𝕟𝕥 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕠𝕣 𝕒𝕕𝕕𝕖𝕕 𝕥𝕠 𝕒 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟. 𝕋𝕙𝕚𝕤 𝕚𝕤 𝕒 𝕤𝕚𝕞𝕡𝕝𝕖 𝕡𝕣𝕠𝕔𝕖𝕤𝕤:","verify3":"𝔽𝕚𝕣𝕤𝕥, 𝕤𝕖𝕖 𝕚𝕗 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕒𝕝𝕣𝕖𝕒𝕕𝕪 𝕖𝕩𝕚𝕤𝕥𝕤 𝕒𝕟𝕕, 𝕚𝕗 𝕪𝕠𝕦 𝕗𝕚𝕟𝕕 𝕚𝕥, 𝕔𝕝𝕚𝕔𝕜 \\"ℝ𝕖𝕢𝕦𝕖𝕤𝕥 𝕥𝕠 𝕁𝕠𝕚𝕟\\" 𝕠𝕟 𝕚𝕥𝕤 𝕡𝕒𝕘𝕖.","verify4":"𝕀𝕗 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟 𝕙𝕒𝕤 𝕟𝕠𝕥 𝕓𝕖𝕖𝕟 𝕧𝕖𝕣𝕚𝕗𝕚𝕖𝕕 𝕪𝕖𝕥, 𝕠𝕣 𝕚𝕗 𝕪𝕠𝕦\'𝕣𝕖 𝕒 𝕗𝕣𝕖𝕖𝕝𝕒𝕟𝕔𝕖𝕣, 𝕣𝕖𝕢𝕦𝕖𝕤𝕥 𝕧𝕖𝕣𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟 𝕙𝕖𝕣𝕖. ℝ𝕖𝕢𝕦𝕖𝕤𝕥𝕤 𝕦𝕤𝕦𝕒𝕝𝕝𝕪 𝕥𝕒𝕜𝕖 𝕥𝕨𝕠 𝕓𝕦𝕤𝕚𝕟𝕖𝕤𝕤 𝕕𝕒𝕪𝕤 𝕥𝕠 𝕡𝕣𝕠𝕔𝕖𝕤𝕤.","uploadFirst":"𝕌𝕡𝕝𝕠𝕒𝕕 𝕪𝕠𝕦𝕣 𝕗𝕚𝕣𝕤𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","upload1":"𝕌𝕡𝕝𝕠𝕒𝕕 𝕒 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕗𝕚𝕝𝕖 𝕥𝕠 𝕘𝕖𝕥 𝕤𝕥𝕒𝕣𝕥𝕖𝕕 𝕦𝕤𝕚𝕟𝕘 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕. 𝕐𝕠𝕦 𝕔𝕒𝕟 𝕕𝕣𝕒𝕘 𝕥𝕙𝕖 𝕗𝕚𝕝𝕖 𝕚𝕟𝕥𝕠 𝕥𝕙𝕚𝕤 𝕨𝕚𝕟𝕕𝕠𝕨, 𝕠𝕣 𝕔𝕝𝕚𝕔𝕜 𝕠𝕟 𝕥𝕙𝕖 𝕓𝕝𝕦𝕖 “𝕌𝕡𝕝𝕠𝕒𝕕” 𝕓𝕦𝕥𝕥𝕠𝕟 𝕒𝕓𝕠𝕧𝕖.","upload2":"𝕆𝕟𝕔𝕖 𝕪𝕠𝕦 𝕦𝕡𝕝𝕠𝕒𝕕 𝕒 𝕗𝕚𝕝𝕖, 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕨𝕚𝕝𝕝 𝕡𝕣𝕠𝕔𝕖𝕤𝕤 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕒𝕟𝕕 𝕖𝕩𝕥𝕣𝕒𝕔𝕥 𝕚𝕥𝕤 𝕔𝕠𝕟𝕥𝕖𝕟𝕥𝕤. 𝕀𝕥 𝕞𝕒𝕪 𝕥𝕒𝕜𝕖 𝕒 𝕗𝕖𝕨 𝕞𝕚𝕟𝕦𝕥𝕖𝕤 𝕗𝕠𝕣 𝕥𝕙𝕚𝕤 𝕥𝕠 𝕔𝕠𝕞𝕡𝕝𝕖𝕥𝕖, 𝕓𝕦𝕥 𝕠𝕟𝕔𝕖 𝕚𝕥’𝕤 𝕕𝕠𝕟𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕠𝕡𝕥𝕚𝕞𝕚𝕫𝕖𝕕 𝕗𝕠𝕣 𝕒𝕟𝕒𝕝𝕪𝕤𝕚𝕤 𝕒𝕟𝕕 𝕤𝕙𝕒𝕣𝕚𝕟𝕘 𝕠𝕟 𝕥𝕙𝕖 𝕨𝕖𝕓."},"paginator":{"of":"𝕠𝕗","document":"{n, plural, one {𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}"},"processingBar":{"doneProcessing":"𝔻𝕠𝕟𝕖 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘","processingDocuments":"ℙ𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘 {n, plural, one {𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥} other {# 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤}}"},"searchBar":{"tips":"𝕊𝕖𝕒𝕣𝕔𝕙 𝕥𝕚𝕡𝕤: 𝕒𝕕𝕕 𝕗𝕚𝕝𝕥𝕖𝕣𝕤 𝕓𝕪 𝕥𝕪𝕡𝕚𝕟𝕘 𝕦𝕤𝕖𝕣:, 𝕡𝕣𝕠𝕛𝕖𝕔𝕥:, 𝕠𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟:, 𝕖𝕥𝕔. 𝕌𝕤𝕖 𝕤𝕠𝕣𝕥: 𝕥𝕠 𝕠𝕣𝕕𝕖𝕣 𝕣𝕖𝕤𝕦𝕝𝕥𝕤.","learnMore":"𝕃𝕖𝕒𝕣𝕟 𝕞𝕠𝕣𝕖","search":"𝕊𝕖𝕒𝕣𝕔𝕙"},"searchLink":{"search":"𝕊𝕖𝕒𝕣𝕔𝕙 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕔𝕠𝕝𝕝𝕖𝕔𝕥𝕚𝕠𝕟"},"projects":{"header":"ℙ𝕣𝕠𝕛𝕖𝕔𝕥𝕤","allDocuments":"𝔸𝕝𝕝 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","yourDocuments":"𝕐𝕠𝕦𝕣 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","yourPubDocuments":"𝕐𝕠𝕦𝕣 ℙ𝕦𝕓𝕝𝕚𝕔 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","orgDocuments":"{name}’𝕤 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤","newProject":"+ ℕ𝕖𝕨 ℙ𝕣𝕠𝕛𝕖𝕔𝕥","createProject":"ℂ𝕣𝕖𝕒𝕥𝕖 𝕪𝕠𝕦𝕣 𝕗𝕚𝕣𝕤𝕥 𝕡𝕣𝕠𝕛𝕖𝕔𝕥 𝕓𝕪 𝕔𝕝𝕚𝕔𝕜𝕚𝕟𝕘 “ℕ𝕖𝕨 ℙ𝕣𝕠𝕛𝕖𝕔𝕥” 𝕒𝕓𝕠𝕧𝕖."},"uploadDialog":{"docUpload":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕌𝕡𝕝𝕠𝕒𝕕","docUploadProj":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕌𝕡𝕝𝕠𝕒𝕕 𝕥𝕠 {title}","beginUpload":"𝔹𝕖𝕘𝕚𝕟 𝕦𝕡𝕝𝕠𝕒𝕕","pdfSizeWarning":"𝕐𝕠𝕦 𝕔𝕒𝕟 𝕠𝕟𝕝𝕪 𝕦𝕡𝕝𝕠𝕒𝕕 ℙ𝔻𝔽 𝕗𝕚𝕝𝕖𝕤 𝕦𝕟𝕕𝕖𝕣 {size}.","nonPdfSizeWarning":"𝕐𝕠𝕦 𝕔𝕒𝕟 𝕠𝕟𝕝𝕪 𝕦𝕡𝕝𝕠𝕒𝕕 𝕟𝕠𝕟-ℙ𝔻𝔽 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕗𝕚𝕝𝕖𝕤 𝕦𝕟𝕕𝕖𝕣 {size}.","fileReady":"{n, plural, one {𝕗𝕚𝕝𝕖} other {𝕗𝕚𝕝𝕖𝕤}} 𝕣𝕖𝕒𝕕𝕪 𝕥𝕠 𝕦𝕡𝕝𝕠𝕒𝕕","fileLimitWarning":"𝕐𝕠𝕦 𝕔𝕒𝕟 𝕠𝕟𝕝𝕪 𝕦𝕡𝕝𝕠𝕒𝕕 {limit} 𝕗𝕚𝕝𝕖𝕤 𝕒𝕥 𝕠𝕟𝕔𝕖.","moreOptions":"𝕄𝕠𝕣𝕖 𝕠𝕡𝕥𝕚𝕠𝕟𝕤","selectFiles":"+ 𝕊𝕖𝕝𝕖𝕔𝕥 𝕗𝕚𝕝𝕖𝕤","dragDrop":"𝔻𝕣𝕒𝕘 𝕒𝕟𝕕 𝕕𝕣𝕠𝕡 𝕗𝕚𝕝𝕖𝕤 𝕙𝕖𝕣𝕖","publicMsg":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕡𝕦𝕓𝕝𝕚𝕔𝕝𝕪 𝕧𝕚𝕤𝕚𝕓𝕝𝕖.","collabMsg":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕪𝕠𝕦𝕣 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟.","privateMsg":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕪𝕠𝕦 𝕒𝕝𝕠𝕟𝕖.","collabName":"𝕆𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","submitting":"𝔸𝕝𝕞𝕠𝕤𝕥 𝕕𝕠𝕟𝕖... 𝕤𝕦𝕓𝕞𝕚𝕥𝕥𝕚𝕟𝕘 𝕦𝕡𝕝𝕠𝕒𝕕𝕖𝕕 𝕗𝕚𝕝𝕖𝕤 𝕗𝕠𝕣 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘 ({percent})","uploading":"𝕌𝕡𝕝𝕠𝕒𝕕𝕚𝕟𝕘 ... ({uploaded}/{length})","gettingInfo":"𝔾𝕖𝕥𝕥𝕚𝕟𝕘 𝕦𝕡𝕝𝕠𝕒𝕕 𝕚𝕟𝕗𝕠𝕣𝕞𝕒𝕥𝕚𝕠𝕟 ({percent})","pleaseLeaveOpen":"ℙ𝕝𝕖𝕒𝕤𝕖 𝕝𝕖𝕒𝕧𝕖 𝕥𝕙𝕚𝕤 𝕡𝕒𝕘𝕖 𝕠𝕡𝕖𝕟 𝕨𝕙𝕚𝕝𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤 𝕦𝕡𝕝𝕠𝕒𝕕. 𝕋𝕙𝕚𝕤 𝕕𝕚𝕒𝕝𝕠𝕘 𝕨𝕚𝕝𝕝 𝕒𝕦𝕥𝕠𝕞𝕒𝕥𝕚𝕔𝕒𝕝𝕝𝕪 𝕔𝕝𝕠𝕤𝕖 𝕨𝕙𝕖𝕟 𝕥𝕙𝕖𝕪 𝕙𝕒𝕧𝕖 𝕗𝕚𝕟𝕚𝕤𝕙𝕖𝕕 𝕦𝕡𝕝𝕠𝕒𝕕𝕚𝕟𝕘.","errorHeading":"𝔼𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕 𝕨𝕙𝕚𝕝𝕖 𝕦𝕡𝕝𝕠𝕒𝕕𝕚𝕟𝕘","errorMsg":"𝕎𝕖 𝕗𝕒𝕚𝕝𝕖𝕕 𝕥𝕠 {errorMessage}. ℙ𝕝𝕖𝕒𝕤𝕖 𝕥𝕣𝕪 𝕒𝕘𝕒𝕚𝕟 𝕝𝕒𝕥𝕖𝕣.","editDocInfo":"𝔼𝕕𝕚𝕥 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕟𝕗𝕠𝕣𝕞𝕒𝕥𝕚𝕠𝕟:","untitled":"𝕌𝕟𝕥𝕚𝕥𝕝𝕖𝕕","uploadFiles":"𝕌𝕡𝕝𝕠𝕒𝕕 𝕒𝕕𝕕𝕚𝕥𝕚𝕠𝕟𝕒𝕝 𝕗𝕚𝕝𝕖𝕤","selectMore":"+ 𝕊𝕖𝕝𝕖𝕔𝕥 𝕞𝕠𝕣𝕖 𝕗𝕚𝕝𝕖𝕤","dragDropMore":"𝔻𝕣𝕒𝕘 𝕒𝕟𝕕 𝕕𝕣𝕠𝕡 𝕒𝕕𝕕𝕚𝕥𝕚𝕠𝕟𝕒𝕝 𝕗𝕚𝕝𝕖𝕤 𝕙𝕖𝕣𝕖"},"embedNote":{"viewTheNote":"𝕍𝕚𝕖𝕨 𝕥𝕙𝕖 𝕟𝕠𝕥𝕖 ‘{title}‘ 𝕚𝕟 𝕚𝕥𝕤 𝕠𝕣𝕚𝕘𝕚𝕟𝕒𝕝 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕔𝕠𝕟𝕥𝕖𝕩𝕥 𝕠𝕟 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕚𝕟 𝕒 𝕟𝕖𝕨 𝕨𝕚𝕟𝕕𝕠𝕨 𝕠𝕣 𝕥𝕒𝕓","viewDoc":"𝕍𝕚𝕖𝕨 𝕥𝕙𝕖 𝕖𝕟𝕥𝕚𝕣𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕥𝕙 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕"},"embedPage":{"viewDoc":"𝕍𝕚𝕖𝕨 𝕖𝕟𝕥𝕚𝕣𝕖 {title} 𝕠𝕟 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕚𝕟 𝕟𝕖𝕨 𝕨𝕚𝕟𝕕𝕠𝕨 𝕠𝕣 𝕥𝕒𝕓","pageOf":"ℙ𝕒𝕘𝕖 {page} 𝕠𝕗 {title}","gotoDocCloud":"𝔾𝕠 𝕥𝕠 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕚𝕟 𝕟𝕖𝕨 𝕨𝕚𝕟𝕕𝕠𝕨 𝕠𝕣 𝕥𝕒𝕓"},"entities":{"back":"𝔹𝕒𝕔𝕜","page":"ℙ𝕒𝕘𝕖","of":"𝕠𝕗","totalEntityResult":"{n, plural, one {# 𝕥𝕠𝕥𝕒𝕝 𝕖𝕟𝕥𝕚𝕥𝕪 𝕣𝕖𝕤𝕦𝕝𝕥} other {# 𝕥𝕠𝕥𝕒𝕝 𝕖𝕟𝕥𝕚𝕥𝕪 𝕣𝕖𝕤𝕦𝕝𝕥𝕤}} ","filter":"𝔽𝕚𝕝𝕥𝕖𝕣","applyFilters":"𝔸𝕡𝕡𝕝𝕪 𝕗𝕚𝕝𝕥𝕖𝕣𝕤","kind":"𝕂𝕚𝕟𝕕","clear":"ℂ𝕝𝕖𝕒𝕣","person":"ℙ𝕖𝕣𝕤𝕠𝕟","org":"𝕆𝕣𝕘𝕒𝕟𝕚𝕫𝕒𝕥𝕚𝕠𝕟","location":"𝕃𝕠𝕔𝕒𝕥𝕚𝕠𝕟","event":"𝔼𝕧𝕖𝕟𝕥","workOfArt":"𝕎𝕠𝕣𝕜 𝕠𝕗 𝔸𝕣𝕥","consumerGood":"ℂ𝕠𝕟𝕤𝕦𝕞𝕖𝕣 𝔾𝕠𝕠𝕕","address":"𝔸𝕕𝕕𝕣𝕖𝕤𝕤","date":"𝔻𝕒𝕥𝕖","number":"ℕ𝕦𝕞𝕓𝕖𝕣","phoneNumber":"ℙ𝕙𝕠𝕟𝕖 ℕ𝕦𝕞𝕓𝕖𝕣","price":"ℙ𝕣𝕚𝕔𝕖","unknown":"𝕌𝕟𝕜𝕟𝕠𝕨𝕟","other":"𝕆𝕥𝕙𝕖𝕣","occurrences":"𝕆𝕔𝕔𝕦𝕣𝕣𝕖𝕟𝕔𝕖𝕤","proper":"ℙ𝕣𝕠𝕡𝕖𝕣","common":"ℂ𝕠𝕞𝕞𝕠𝕟","advanced":"𝔸𝕕𝕧𝕒𝕟𝕔𝕖𝕕","relevanceThreshold":"ℝ𝕖𝕝𝕖𝕧𝕒𝕟𝕔𝕖 𝕥𝕙𝕣𝕖𝕤𝕙𝕠𝕝𝕕:","knowledgeGraph":"𝕂𝕟𝕠𝕨𝕝𝕖𝕕𝕘𝕖 𝕘𝕣𝕒𝕡𝕙:","hasKG":"ℍ𝕒𝕤 𝕒 𝕜𝕟𝕠𝕨𝕝𝕖𝕕𝕘𝕖 𝕘𝕣𝕒𝕡𝕙 𝕀𝔻","noKG":"𝔻𝕠𝕖𝕤 𝕟𝕠𝕥 𝕙𝕒𝕧𝕖 𝕒 𝕜𝕟𝕠𝕨𝕝𝕖𝕕𝕘𝕖 𝕘𝕣𝕒𝕡𝕙 𝕀𝔻","wikiUrl":"𝕎𝕚𝕜𝕚𝕡𝕖𝕕𝕚𝕒 𝕌ℝ𝕃:","hasWiki":"ℍ𝕒𝕤 𝕒 𝕎𝕚𝕜𝕚𝕡𝕖𝕕𝕚𝕒 𝕌ℝ𝕃","noWiki":"𝔻𝕠𝕖𝕤 𝕟𝕠𝕥 𝕙𝕒𝕧𝕖 𝕒 𝕎𝕚𝕜𝕚𝕡𝕖𝕕𝕚𝕒 𝕌ℝ𝕃","occurrence":"{n, plural, zero {} one {# 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕟𝕔𝕖} other {# 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕟𝕔𝕖𝕤}}","wikipedia":"𝕎𝕚𝕜𝕚𝕡𝕖𝕕𝕚𝕒","entityExtraction":"𝔼𝕟𝕥𝕚𝕥𝕪 𝕖𝕩𝕥𝕣𝕒𝕔𝕥𝕚𝕠𝕟 𝕗𝕠𝕣 “{title}”","extractingEntities":"𝔼𝕩𝕥𝕣𝕒𝕔𝕥𝕚𝕟𝕘 𝕖𝕟𝕥𝕚𝕥𝕚𝕖𝕤...","welcome":"𝕎𝕖𝕝𝕔𝕠𝕞𝕖 𝕥𝕠 𝕖𝕟𝕥𝕚𝕥𝕪 𝕖𝕩𝕥𝕣𝕒𝕔𝕥𝕚𝕠𝕟❕ 𝕋𝕙𝕚𝕤 𝕗𝕖𝕒𝕥𝕦𝕣𝕖 𝕚𝕤 𝕧𝕖𝕣𝕪 𝕞𝕦𝕔𝕙 𝕚𝕟 𝕡𝕣𝕠𝕘𝕣𝕖𝕤𝕤 𝕓𝕦𝕥 𝕨𝕖 𝕨𝕒𝕟𝕥 𝕚𝕥 𝕚𝕟 𝕪𝕠𝕦𝕣 𝕙𝕒𝕟𝕕𝕤 𝕖𝕒𝕣𝕝𝕪 𝕥𝕠 𝕨𝕖𝕝𝕔𝕠𝕞𝕖 𝕒𝕟𝕪 𝕗𝕖𝕖𝕕𝕓𝕒𝕔𝕜 𝕪𝕠𝕦 𝕞𝕚𝕘𝕙𝕥 𝕙𝕒𝕧𝕖.","manual":"ℝ𝕚𝕘𝕙𝕥 𝕟𝕠𝕨 𝕥𝕙𝕖 𝕡𝕣𝕠𝕔𝕖𝕤𝕤 𝕗𝕠𝕣 𝕖𝕩𝕥𝕣𝕒𝕔𝕥𝕚𝕟𝕘 𝕖𝕟𝕥𝕚𝕥𝕚𝕖𝕤 𝕚𝕤 𝕞𝕒𝕟𝕦𝕒𝕝. 𝕋𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕙𝕒𝕤 𝕟𝕠𝕥 𝕙𝕒𝕕 𝕖𝕟𝕥𝕚𝕥𝕚𝕖𝕤 𝕖𝕩𝕥𝕣𝕒𝕔𝕥𝕖𝕕 𝕪𝕖𝕥, 𝕤𝕠 𝕔𝕝𝕚𝕔𝕜 𝕓𝕖𝕝𝕠𝕨 𝕥𝕠 𝕘𝕖𝕥 𝕤𝕥𝕒𝕣𝕥𝕖𝕕.","error":"𝔸𝕟 𝕦𝕟𝕖𝕩𝕡𝕖𝕔𝕥𝕖𝕕 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕","extract":"𝔼𝕩𝕥𝕣𝕒𝕔𝕥 𝕖𝕟𝕥𝕚𝕥𝕚𝕖𝕤","noEntities":"𝕋𝕙𝕖𝕣𝕖 𝕒𝕣𝕖 𝕟𝕠 𝕖𝕟𝕥𝕚𝕥𝕚𝕖𝕤. 𝕋𝕙𝕚𝕤 𝕔𝕠𝕦𝕝𝕕 𝕙𝕒𝕡𝕡𝕖𝕟 𝕚𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕕𝕠𝕖𝕤𝕟’𝕥 𝕙𝕒𝕧𝕖 𝕥𝕖𝕩𝕥, 𝕚𝕤 𝕟𝕠𝕟-𝔼𝕟𝕘𝕝𝕚𝕤𝕙 (𝕠𝕟𝕝𝕪 𝔼𝕟𝕘𝕝𝕚𝕤𝕙 𝕚𝕤 𝕤𝕦𝕡𝕡𝕠𝕣𝕥𝕖𝕕 𝕗𝕠𝕣 𝕟𝕠𝕨), 𝕠𝕣 𝕤𝕠𝕞𝕖 𝕖𝕣𝕣𝕠𝕣 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕕.","starting":"𝕊𝕥𝕒𝕣𝕥𝕚𝕟𝕘 𝕖𝕩𝕥𝕒𝕔𝕥𝕚𝕠𝕟..."},"home":{"about":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥ℂ𝕝𝕠𝕦𝕕 𝕚𝕤 𝕒𝕟 𝕒𝕝𝕝-𝕚𝕟-𝕠𝕟𝕖 𝕡𝕝𝕒𝕥𝕗𝕠𝕣𝕞 𝕗𝕠𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤: 𝕦𝕡𝕝𝕠𝕒𝕕, 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕖, 𝕒𝕟𝕒𝕝𝕪𝕫𝕖, 𝕒𝕟𝕟𝕠𝕥𝕒𝕥𝕖, 𝕤𝕖𝕒𝕣𝕔𝕙, 𝕒𝕟𝕕 𝕖𝕞𝕓𝕖𝕕.","viewPublicDocs":"𝕍𝕚𝕖𝕨 𝕡𝕦𝕓𝕝𝕚𝕔 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥𝕤"},"annotation":{"title":"𝔸𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕠𝕟 𝕋𝕚𝕥𝕝𝕖","description":"𝔸𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕠𝕟 𝔻𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟 (𝕠𝕡𝕥𝕚𝕠𝕟𝕒𝕝)","unchanged":"ℕ𝕠𝕥𝕖 𝕣𝕖𝕞𝕒𝕚𝕟𝕤 𝕦𝕟𝕔𝕙𝕒𝕟𝕘𝕖𝕕","noTitle":"𝔼𝕟𝕥𝕖𝕣 𝕒 𝕥𝕚𝕥𝕝𝕖 𝕗𝕠𝕣 𝕥𝕙𝕖 𝕒𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕠𝕟","org":"𝕋𝕙𝕚𝕤 𝕟𝕠𝕥𝕖 𝕚𝕤 𝕠𝕟𝕝𝕪 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕪𝕠𝕦 𝕒𝕟𝕕 𝕠𝕥𝕙𝕖𝕣𝕤 𝕨𝕚𝕥𝕙 𝕖𝕕𝕚𝕥 𝕒𝕔𝕔𝕖𝕤𝕤 𝕥𝕠 𝕥𝕙𝕚𝕤 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","private":"𝕋𝕙𝕚𝕤 𝕡𝕣𝕚𝕧𝕒𝕥𝕖 𝕟𝕠𝕥𝕖 𝕚𝕤 𝕠𝕟𝕝𝕪 𝕧𝕚𝕤𝕚𝕓𝕝𝕖 𝕥𝕠 𝕪𝕠𝕦","by":"𝔸𝕟𝕟𝕠𝕥𝕒𝕥𝕖𝕕 𝕓𝕪 {name}","byOrg":"𝔸𝕟𝕟𝕠𝕥𝕒𝕥𝕖𝕕 𝕓𝕪 {name}, {org}","addPageNote":"𝔸𝕕𝕕 𝕡𝕒𝕘𝕖 𝕟𝕠𝕥𝕖"},"viewDropdown":{"document":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥","plainText":"ℙ𝕝𝕒𝕚𝕟 𝕋𝕖𝕩𝕥","thumbnail":"𝕋𝕙𝕦𝕞𝕓𝕟𝕒𝕚𝕝","notes":"ℕ𝕠𝕥𝕖𝕤","search":"𝕊𝕖𝕒𝕣𝕔𝕙 ℝ𝕖𝕤𝕦𝕝𝕥𝕤"},"zoom":{"fitWidth":"𝔽𝕚𝕥 𝕨𝕚𝕕𝕥𝕙","fitHeight":"𝔽𝕚𝕥 𝕙𝕖𝕚𝕘𝕙𝕥"},"titleHeader":{"contributedBy":"ℂ𝕠𝕟𝕥𝕣𝕚𝕓𝕦𝕥𝕖𝕕 𝕓𝕪 {name}"},"annotatePane":{"annotateDocument":"𝔸𝕟𝕟𝕠𝕥𝕒𝕥𝕖 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥","desc":"ℍ𝕚𝕘𝕙𝕝𝕚𝕘𝕙𝕥 𝕒 𝕡𝕠𝕣𝕥𝕚𝕠𝕟 𝕠𝕗 𝕥𝕙𝕖 𝕡𝕒𝕘𝕖, 𝕠𝕣 𝕔𝕝𝕚𝕔𝕜 𝕓𝕖𝕥𝕨𝕖𝕖𝕟 𝕡𝕒𝕘𝕖𝕤 𝕥𝕠 𝕔𝕣𝕖𝕒𝕥𝕖 𝕒 𝕟𝕠𝕥𝕖."},"modifyPane":{"pagesSelected":"{n, plural, one {# ℙ𝕒𝕘𝕖} other {# ℙ𝕒𝕘𝕖𝕤}} 𝕊𝕖𝕝𝕖𝕔𝕥𝕖𝕕","applyModifications":"𝔸𝕡𝕡𝕝𝕪 𝕄𝕠𝕕𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟𝕤","duplicate":"𝔻𝕦𝕡𝕝𝕚𝕔𝕒𝕥𝕖","move":"𝕄𝕠𝕧𝕖","unselect":"𝕌𝕟𝕤𝕖𝕝𝕖𝕔𝕥","remove":"ℝ𝕖𝕞𝕠𝕧𝕖","insertPages":"𝕀𝕟𝕤𝕖𝕣𝕥 {n, plural, one {# ℙ𝕒𝕘𝕖} other {# ℙ𝕒𝕘𝕖𝕤}}","pagesPending":"{n, plural, one {# ℙ𝕒𝕘𝕖} other {# ℙ𝕒𝕘𝕖𝕤}} ℙ𝕖𝕟𝕕𝕚𝕟𝕘 𝕀𝕟𝕤𝕖𝕣𝕥𝕚𝕠𝕟","insertBegin":"𝕀𝕟𝕤𝕖𝕣𝕥 {n, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}} 𝕒𝕥 𝕓𝕖𝕘𝕚𝕟𝕟𝕚𝕟𝕘.","insertEnd":"𝕀𝕟𝕤𝕖𝕣𝕥 {n, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}} 𝕒𝕥 𝕖𝕟𝕕.","insertBetween":"𝕀𝕟𝕤𝕖𝕣𝕥 {n, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}} 𝕚𝕟 𝕓𝕖𝕥𝕨𝕖𝕖𝕟 𝕡𝕒𝕘𝕖 {p0} 𝕒𝕟𝕕 {p1}.","click":"ℂ𝕝𝕚𝕔𝕜 𝕚𝕟-𝕓𝕖𝕥𝕨𝕖𝕖𝕟 𝕡𝕒𝕘𝕖𝕤 𝕓𝕖𝕝𝕠𝕨 𝕥𝕠 𝕞𝕒𝕣𝕜 𝕨𝕙𝕖𝕣𝕖 𝕥𝕠 𝕡𝕒𝕤𝕥𝕖 {n, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}}.","insert":"𝕀𝕟𝕤𝕖𝕣𝕥","insertAtEnd":"𝕀𝕟𝕤𝕖𝕣𝕥 𝕒𝕥 𝕖𝕟𝕕","insertPosition":"𝕀𝕟𝕤𝕖𝕣𝕥 𝕡𝕒𝕘𝕖𝕤 𝕒𝕥 𝕡𝕠𝕤𝕚𝕥𝕚𝕠𝕟","insertOtherDoc":"𝕀𝕟𝕤𝕖𝕣𝕥 𝕗𝕣𝕠𝕞 𝕠𝕥𝕙𝕖𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥","modifyPages":"𝕄𝕠𝕕𝕚𝕗𝕪 ℙ𝕒𝕘𝕖𝕤","select":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕡𝕒𝕘𝕖𝕤 𝕓𝕖𝕝𝕠𝕨 𝕥𝕠 𝕒𝕡𝕡𝕝𝕪 𝕞𝕠𝕕𝕚𝕗𝕚𝕔𝕒𝕥𝕚𝕠𝕟𝕤 (𝕡𝕒𝕘𝕖 𝕣𝕠𝕥𝕒𝕥𝕚𝕠𝕟, 𝕣𝕖𝕒𝕣𝕣𝕒𝕟𝕘𝕚𝕟𝕘, 𝕒𝕟𝕕 𝕕𝕖𝕝𝕖𝕥𝕚𝕠𝕟). ℂ𝕝𝕚𝕔𝕜 𝕚𝕟-𝕓𝕖𝕥𝕨𝕖𝕖𝕟 𝕡𝕒𝕘𝕖𝕤 𝕥𝕠 𝕚𝕟𝕤𝕖𝕣𝕥.","undo":"𝕌𝕟𝕕𝕠","redo":"ℝ𝕖𝕕𝕠"},"redactPane":{"redactDoc":"ℝ𝕖𝕕𝕒𝕔𝕥 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥","desc":"ℂ𝕝𝕚𝕔𝕜 𝕒𝕟𝕕 𝕕𝕣𝕒𝕘 𝕥𝕠 𝕕𝕣𝕒𝕨 𝕒 𝕓𝕝𝕒𝕔𝕜 𝕣𝕖𝕔𝕥𝕒𝕟𝕘𝕝𝕖 𝕠𝕧𝕖𝕣 𝕖𝕒𝕔𝕙 𝕡𝕠𝕣𝕥𝕚𝕠𝕟 𝕠𝕗 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕪𝕠𝕦’𝕕 𝕝𝕚𝕜𝕖 𝕥𝕠 𝕣𝕖𝕕𝕒𝕔𝕥. 𝔸𝕤𝕤𝕠𝕔𝕚𝕒𝕥𝕖𝕕 𝕥𝕖𝕩𝕥 𝕨𝕚𝕝𝕝 𝕓𝕖 𝕣𝕖𝕞𝕠𝕧𝕖𝕕 𝕨𝕙𝕖𝕟 𝕪𝕠𝕦 𝕤𝕒𝕧𝕖 𝕪𝕠𝕦𝕣 𝕣𝕖𝕕𝕒𝕔𝕥𝕚𝕠𝕟𝕤.","confirm":"ℂ𝕠𝕟𝕗𝕚𝕣𝕞 ℝ𝕖𝕕𝕒𝕔𝕥𝕚𝕠𝕟𝕤","undo":"𝕌𝕟𝕕𝕠"},"searchPane":{"yourQuery":"𝕐𝕠𝕦𝕣 𝕢𝕦𝕖𝕣𝕪 {search} 𝕨𝕒𝕤 𝕗𝕠𝕦𝕟𝕕 𝕠𝕟 {n, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}}"},"selectNotePane":{"selectNote":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕒 𝕟𝕠𝕥𝕖","desc":"𝕊𝕖𝕝𝕖𝕔𝕥 𝕥𝕙𝕖 𝕒𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕠𝕟 𝕥𝕙𝕒𝕥 𝕪𝕠𝕦 𝕨𝕒𝕟𝕥 𝕥𝕠 𝕤𝕙𝕒𝕣𝕖."},"searchResults":{"resultPages":"{results, plural, one {# 𝕣𝕖𝕤𝕦𝕝𝕥} other {# 𝕣𝕖𝕤𝕦𝕝𝕥𝕤}} 𝕒𝕔𝕣𝕠𝕤𝕤 {pages, plural, one {# 𝕡𝕒𝕘𝕖} other {# 𝕡𝕒𝕘𝕖𝕤}}","noSearchResults":"ℕ𝕠 𝕤𝕖𝕒𝕣𝕔𝕙 𝕣𝕖𝕤𝕦𝕝𝕥𝕤. 𝕋𝕣𝕪 𝕒𝕘𝕒𝕚𝕟 𝕨𝕚𝕥𝕙 𝕒 𝕓𝕣𝕠𝕒𝕕𝕖𝕣 𝕢𝕦𝕖𝕣𝕪.","occurrences":"{n, plural, one {# 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕟𝕔𝕖} other {# 𝕠𝕔𝕔𝕦𝕣𝕣𝕖𝕟𝕔𝕖𝕤}}"},"sidebar":{"updating":"𝕌𝕡𝕕𝕒𝕥𝕚𝕟𝕘 𝕕𝕠𝕔𝕦𝕔𝕞𝕖𝕟𝕥...","original":"𝕆𝕣𝕚𝕘𝕚𝕟𝕒𝕝 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 (ℙ𝔻𝔽) »","related":"ℝ𝕖𝕝𝕒𝕥𝕖𝕕 𝔸𝕣𝕥𝕚𝕔𝕝𝕖 »","contributed":"ℂ𝕠𝕟𝕥𝕣𝕚𝕓𝕦𝕥𝕖𝕕 𝕓𝕪 {name}","source":"𝕊𝕠𝕦𝕣𝕔𝕖: {source}","actions":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝔸𝕔𝕥𝕚𝕠𝕟𝕤","share":"𝕊𝕙𝕒𝕣𝕖","shareDesc":"ℂ𝕣𝕖𝕒𝕥𝕖 𝕒𝕟 𝕖𝕞𝕓𝕖𝕕 𝕠𝕣 𝕤𝕙𝕒𝕣𝕖 𝕠𝕟 𝕤𝕠𝕔𝕚𝕒𝕝 𝕞𝕖𝕕𝕚𝕒.","annotate":"𝔸𝕟𝕟𝕠𝕥𝕒𝕥𝕖","annotateDesc":"𝕄𝕒𝕜𝕖 𝕒𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕠𝕟𝕤 𝕥𝕠 𝕜𝕖𝕖𝕡 𝕟𝕠𝕥𝕖𝕤 𝕠𝕟 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥.","redact":"ℝ𝕖𝕕𝕒𝕔𝕥","redactDesc":"ℂ𝕣𝕖𝕒𝕥𝕖 𝕣𝕖𝕕𝕒𝕔𝕥𝕚𝕠𝕟𝕤 𝕠𝕟 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕥𝕠 𝕙𝕚𝕕𝕖 𝕥𝕖𝕩𝕥. 𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕝𝕝 𝕣𝕖𝕡𝕣𝕠𝕔𝕖𝕤𝕤 𝕒𝕗𝕥𝕖𝕣𝕨𝕒𝕣𝕕𝕤.","modify":"𝕄𝕠𝕕𝕚𝕗𝕪 ℙ𝕒𝕘𝕖𝕤","modifyDesc":"ℝ𝕖𝕒𝕣𝕣𝕒𝕟𝕘𝕖, 𝕣𝕠𝕥𝕒𝕥𝕖, 𝕕𝕖𝕝𝕖𝕥𝕖, 𝕚𝕟𝕤𝕖𝕣𝕥, 𝕒𝕟𝕕 𝕤𝕡𝕝𝕚𝕥 𝕡𝕒𝕘𝕖𝕤.","info":"𝔼𝕕𝕚𝕥 𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕀𝕟𝕗𝕠","infoDesc":"𝕄𝕠𝕕𝕚𝕗𝕪 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕟𝕗𝕠𝕣𝕞𝕒𝕥𝕚𝕠𝕟 𝕝𝕚𝕜𝕖 𝕕𝕖𝕤𝕔𝕣𝕚𝕡𝕥𝕚𝕠𝕟 𝕒𝕟𝕕 𝕣𝕖𝕝𝕒𝕥𝕖𝕕 𝕌ℝ𝕃.","data":"𝔼𝕕𝕚𝕥 𝕋𝕒𝕘𝕤 𝕒𝕟𝕕 𝔻𝕒𝕥𝕒","dataDesc":"𝔸𝕕𝕕 𝕥𝕒𝕘𝕤 𝕒𝕟𝕕 𝕜𝕖𝕪/𝕧𝕒𝕝𝕦𝕖 𝕡𝕒𝕚𝕣𝕤 𝕥𝕠 𝕔𝕒𝕥𝕖𝕘𝕠𝕣𝕚𝕫𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥.","sections":"𝔼𝕕𝕚𝕥 𝕊𝕖𝕔𝕥𝕚𝕠𝕟𝕤","sectionsDesc":"𝔸𝕕𝕕 𝕤𝕖𝕔𝕥𝕚𝕠𝕟𝕤 𝕥𝕠 𝕠𝕣𝕘𝕒𝕟𝕚𝕫𝕖 𝕪𝕠𝕦𝕣 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕨𝕚𝕥𝕙 𝕒 𝕥𝕒𝕓𝕝𝕖 𝕠𝕗 𝕔𝕠𝕟𝕥𝕖𝕟𝕥𝕤.","privateNote":"𝔸𝕕𝕕 ℙ𝕣𝕚𝕧𝕒𝕥𝕖 ℕ𝕠𝕥𝕖","privateNoteDesc":"𝕄𝕒𝕜𝕖 𝕒𝕟𝕟𝕠𝕥𝕒𝕥𝕚𝕠𝕟𝕤 𝕥𝕠 𝕜𝕖𝕖𝕡 𝕟𝕠𝕥𝕖𝕤 𝕠𝕟 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥."},"viewer":{"notFound":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕟𝕠𝕥 𝕗𝕠𝕦𝕟𝕕","notFoundDesc":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕪𝕠𝕦 𝕣𝕖𝕢𝕦𝕖𝕤𝕥𝕖𝕕 𝕖𝕚𝕥𝕙𝕖𝕣 𝕕𝕠𝕖𝕤 𝕟𝕠𝕥 𝕖𝕩𝕚𝕤𝕥 𝕠𝕣 𝕪𝕠𝕦 𝕝𝕒𝕔𝕜 𝕡𝕖𝕣𝕞𝕚𝕤𝕤𝕚𝕠𝕟 𝕥𝕠 𝕒𝕔𝕔𝕖𝕤𝕤 𝕚𝕥","processing":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕚𝕤 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘","processingDesc":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕪𝕠𝕦 𝕣𝕖𝕢𝕦𝕖𝕤𝕥𝕖𝕕 𝕚𝕤 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘 𝕒𝕟𝕕 𝕨𝕚𝕝𝕝 𝕒𝕦𝕥𝕠𝕞𝕒𝕥𝕚𝕔𝕒𝕝𝕝𝕪 𝕣𝕖𝕗𝕣𝕖𝕤𝕙 𝕨𝕙𝕖𝕟 𝕚𝕥 𝕚𝕤 𝕣𝕖𝕒𝕕𝕪","error":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕙𝕒𝕤 𝕖𝕟𝕔𝕠𝕦𝕟𝕥𝕖𝕣𝕖𝕕 𝕒𝕟 𝕖𝕣𝕣𝕠𝕣","errorDesc":"𝔸 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘 𝕖𝕣𝕣𝕠𝕣 𝕙𝕒𝕤 𝕓𝕖𝕖𝕟 𝕖𝕟𝕔𝕠𝕦𝕟𝕥𝕖𝕣𝕖𝕕 𝕚𝕟 𝕥𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕪𝕠𝕦 𝕣𝕖𝕢𝕦𝕖𝕤𝕥𝕖𝕕","accessible":"𝔻𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕟𝕠𝕥 𝕒𝕔𝕔𝕖𝕤𝕤𝕚𝕓𝕝𝕖","accessibleDesc":"𝕋𝕙𝕖 𝕕𝕠𝕔𝕦𝕞𝕖𝕟𝕥 𝕪𝕠𝕦 𝕣𝕖𝕢𝕦𝕖𝕤𝕥𝕖𝕕 𝕚𝕤 𝕤𝕥𝕚𝕝𝕝 𝕡𝕣𝕠𝕔𝕖𝕤𝕤𝕚𝕟𝕘 𝕠𝕣 𝕪𝕠𝕦 𝕝𝕒𝕔𝕜 𝕡𝕖𝕣𝕞𝕚𝕤𝕤𝕚𝕠𝕟 𝕥𝕠 𝕒𝕔𝕔𝕖𝕤𝕤 𝕥𝕠 𝕚𝕥"}}');
-./public/3433.66bb3926cfdc006918e8.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="8ecc5f6e-8bf5-490a-9d00-884385cb13de",e._sentryDebugIdIdentifier="sentry-dbid-8ecc5f6e-8bf5-490a-9d00-884385cb13de")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[3433],{3433:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"Ⓔⓜⓐⓘⓛ ⓐⓓⓓⓡⓔⓢⓢ","loading":"Ⓛⓞⓐⓓⓘⓝⓖ...","documentCloud":"ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ","home":"Ⓗⓞⓜⓔ"},"homeTemplate":{"signedIn":"Ⓢⓘⓖⓝⓔⓓ ⓘⓝ ⓐⓢ {name}","signOut":"Ⓢⓘⓖⓝ ⓞⓤⓣ","signIn":"Ⓢⓘⓖⓝ ⓘⓝ","signUp":"Ⓢⓘⓖⓝ ⓤⓟ","goToApp":"Ⓖⓞ ⓣⓞ ⓐⓟⓟ"},"accessToggle":{"public":"Ⓝⓞⓣⓔ ⓦⓘⓛⓛ ⓑⓔ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓐⓝⓨⓞⓝⓔ ⓦⓘⓣⓗ ⓐⓒⓒⓔⓢⓢ ⓣⓞ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ.","collaborator":"Ⓝⓞⓣⓔ ⓦⓘⓛⓛ ⓑⓔ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓐⓝⓨⓞⓝⓔ ⓦⓗⓞ ⓒⓐⓝ ⓔⓓⓘⓣ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ.","private":"Ⓝⓞⓣⓔ ⓦⓘⓛⓛ ⓑⓔ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓨⓞⓤ ⓐⓛⓞⓝⓔ.","publicName":"Ⓟⓤⓑⓛⓘⓒ","collaboratorName":"Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡ","privateName":"Ⓟⓡⓘⓥⓐⓣⓔ"},"accessIcon":{"private":"Ⓟⓡⓘⓥⓐⓣⓔ Ⓐⓒⓒⓔⓢⓢ","organization":"Ⓟⓡⓘⓥⓐⓣⓔ ⓣⓞ Ⓨⓞⓤⓡ Ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","public":"Ⓟⓤⓑⓛⓘⓒ Ⓐⓒⓒⓔⓢⓢ","privateExplanation":"Ⓞⓝⓛⓨ ⓨⓞⓤ ⓒⓐⓝ ⓥⓘⓔⓦ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ","organizationExplanation":"Ⓞⓝⓛⓨ ⓜⓔⓜⓑⓔⓡⓢ ⓞⓕ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓒⓐⓝ ⓥⓘⓔⓦ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ","publicExplanation":"Ⓐⓝⓨⓞⓝⓔ ⓒⓐⓝ ⓢⓔⓐⓡⓒⓗ ⓐⓝⓓ ⓥⓘⓔⓦ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ"},"appearanceCustomizer":{"customizeAppearance":"Ⓒⓤⓢⓣⓞⓜⓘⓩⓔ Ⓐⓟⓟⓔⓐⓡⓐⓝⓒⓔ","hide":"Ⓗⓘⓓⓔ ⓗⓔⓛⓟ ⓣⓔⓧⓣ","show":"Ⓢⓗⓞⓦ ⓗⓔⓛⓟ ⓣⓔⓧⓣ"},"appearanceDimension":{"responsive":"Ⓐⓤⓣⓞⓜⓐⓣⓘⓒ (ⓓⓔⓕⓐⓤⓛⓣ)","fixed":"Ⓕⓘⓧⓔⓓ"},"calendar":{"jan":"Ⓙⓐⓝⓤⓐⓡⓨ","feb":"Ⓕⓔⓑⓡⓤⓐⓡⓨ","mar":"Ⓜⓐⓡⓒⓗ","apr":"Ⓐⓟⓡⓘⓛ","may":"Ⓜⓐⓨ","jun":"Ⓙⓤⓝⓔ","jul":"Ⓙⓤⓛⓨ","aug":"Ⓐⓤⓖⓤⓢⓣ","sep":"Ⓢⓔⓟⓣⓔⓜⓑⓔⓡ","oct":"Ⓞⓒⓣⓞⓑⓔⓡ","nov":"Ⓝⓞⓥⓔⓜⓑⓔⓡ","dec":"Ⓓⓔⓒⓔⓜⓑⓔⓡ","hourShortcode":"ⒽⒽ","minuteShortcode":"ⓂⓂ"},"dialog":{"cancel":"Ⓒⓐⓝⓒⓔⓛ","delete":"Ⓓⓔⓛⓔⓣⓔ","done":"Ⓓⓞⓝⓔ","edit":"Ⓔⓓⓘⓣ","remove":"Ⓡⓔⓜⓞⓥⓔ","save":"Ⓢⓐⓥⓔ","create":"Ⓒⓡⓔⓐⓣⓔ","ok":"Ⓞⓚ","update":"Ⓤⓟⓓⓐⓣⓔ","dismiss":"Ⓓⓘⓢⓜⓘⓢⓢ","continue":"Ⓒⓞⓝⓣⓘⓝⓤⓔ"},"dialogAccessDialog":{"changeAccess":"Ⓒⓗⓐⓝⓖⓔ ⓐⓒⓒⓔⓢⓢ ⓕⓞⓡ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","selectAccess":"Ⓢⓔⓛⓔⓒⓣ ⓐⓝ ⓐⓒⓒⓔⓢⓢ ⓛⓔⓥⓔⓛ ⓕⓞⓡ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","public":"Ⓟⓤⓑⓛⓘⓒ ⓐⓒⓒⓔⓢⓢ","publicDesc":"Ⓐⓝⓨⓞⓝⓔ ⓞⓝ ⓣⓗⓔ ⓘⓝⓣⓔⓡⓝⓔⓣ ⓒⓐⓝ ⓢⓔⓐⓡⓒⓗ ⓕⓞⓡ ⓐⓝⓓ ⓥⓘⓔⓦ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ.","verifiedHelp":"Ⓞⓝⓛⓨ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓤⓢⓔⓡⓢ ⓞⓡ ⓜⓔⓜⓑⓔⓡⓢ ⓞⓕ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝⓢ ⓒⓐⓝ ⓜⓐⓚⓔ ⓤⓟⓛⓞⓐⓓⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓟⓤⓑⓛⓘⓒ. Ⓘⓕ ⓨⓞⓤ\'ⓡⓔ ⓐ ⓙⓞⓤⓡⓝⓐⓛⓘⓢⓣ ⓞⓡ ⓞⓣⓗⓔⓡⓦⓘⓢⓔ ⓦⓞⓡⓚ ⓘⓝ ⓟⓤⓑⓛⓘⓢⓗⓘⓝⓖ ⓥⓔⓣⓣⓔⓓ ⓜⓐⓣⓔⓡⓘⓐⓛⓢ ⓣⓞ ⓘⓝⓕⓞⓡⓜ ⓣⓗⓔ ⓟⓤⓑⓛⓘⓒ, ⓛⓔⓐⓡⓝ ⓜⓞⓡⓔ ⓐⓝⓓ ⓡⓔⓠⓤⓔⓢⓣ ⓥⓔⓡⓘⓕⓘⓒⓐⓣⓘⓞⓝ ⓗⓔⓡⓔ.","privateToOrg":"Ⓨⓞⓤ ⓒⓐⓝ’ⓣ ⓒⓗⓐⓝⓖⓔ ⓣⓗⓔ ⓐⓒⓒⓔⓢⓢ ⓛⓔⓥⓔⓛ ⓣⓞ “Ⓟⓡⓘⓥⓐⓣⓔ ⓣⓞ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ” ⓑⓔⓒⓐⓤⓢⓔ {n, plural, one {ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ} other {ⓞⓝⓔ ⓞⓡ ⓜⓞⓡⓔ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓐⓡⓔ}} ⓐⓢⓢⓞⓒⓘⓐⓣⓔⓓ ⓦⓘⓣⓗ ⓨⓞⓤⓡ ⓘⓝⓓⓘⓥⓘⓓⓤⓐⓛ ⓐⓒⓒⓞⓤⓝⓣ, ⓝⓞⓣ ⓐⓝ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ. Ⓣⓞ ⓐⓓⓓ {n, plural, one {ⓘⓣ} other {ⓣⓗⓔⓜ}} ⓣⓞ ⓐⓝ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ, ⓢⓔⓛⓔⓒⓣ {n, plural, one {ⓘⓣ} other {ⓣⓗⓔⓜ}} ⓕⓡⓞⓜ ⓣⓗⓔ ⓜⓐⓝⓐⓖⓔⓜⓔⓝⓣ ⓥⓘⓔⓦ ⓐⓝⓓ ⓒⓛⓘⓒⓚ “Ⓒⓗⓐⓝⓖⓔ Ⓞⓦⓝⓔⓡ.” Ⓨⓞⓤ ⓒⓐⓝ ⓙⓞⓘⓝ ⓞⓡ ⓒⓡⓔⓐⓣⓔ ⓐⓝ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓞⓝ ⓣⓗⓘⓢ ⓟⓐⓖⓔ.","private":"Ⓟⓡⓘⓥⓐⓣⓔ ⓐⓒⓒⓔⓢⓢ","privateDesc":"Ⓞⓝⓛⓨ ⓟⓔⓞⓟⓛⓔ ⓦⓘⓣⓗ ⓔⓧⓟⓛⓘⓒⓘⓣ ⓟⓔⓡⓜⓘⓢⓢⓘⓞⓝ (ⓥⓘⓐ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓘⓞⓝ) ⓗⓐⓥⓔ ⓐⓒⓒⓔⓢⓢ.","organization":"Ⓟⓡⓘⓥⓐⓣⓔ ⓣⓞ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","organizationDesc":"Ⓞⓝⓛⓨ ⓣⓗⓔ ⓟⓔⓞⓟⓛⓔ ⓘⓝ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓗⓐⓥⓔ ⓐⓒⓒⓔⓢⓢ.","schedulePublication":"Ⓢⓒⓗⓔⓓⓤⓛⓔ ⓟⓤⓑⓛⓘⓒⓐⓣⓘⓞⓝ","scheduleHelp":"Ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓑⓔ ⓜⓐⓓⓔ ⓟⓤⓑⓛⓘⓒ ⓐⓣ ⓣⓗⓔ ⓖⓘⓥⓔⓝ ⓓⓐⓣⓔ ⓐⓝⓓ ⓣⓘⓜⓔ. Ⓟⓤⓑⓛⓘⓒⓐⓣⓘⓞⓝ ⓣⓘⓜⓔ ⓘⓢ ⓛⓞⓒⓐⓛ{timezone}.","unchanged":"Ⓐⓒⓒⓔⓢⓢ ⓘⓢ ⓤⓝⓒⓗⓐⓝⓖⓔⓓ. Ⓢⓔⓛⓔⓒⓣ ⓐ ⓓⓘⓕⓕⓔⓡⓔⓝⓣ ⓐⓒⓒⓔⓢⓢ ⓛⓔⓥⓔⓛ.","future":"Ⓜⓤⓢⓣ ⓢⓔⓛⓔⓒⓣ ⓐ ⓣⓘⓜⓔ ⓘⓝ ⓣⓗⓔ ⓕⓤⓣⓤⓡⓔ","change":"Ⓒⓗⓐⓝⓖⓔ"},"dialogCollaboratorDialog":{"confirm":"Ⓒⓞⓝⓕⓘⓡⓜ ⓡⓔⓜⓞⓥⓔ ⓤⓢⓔⓡ","confirmMsg":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓡⓔⓜⓞⓥⓔ {name} ⓕⓡⓞⓜ {title}. Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?","addCollaborators":"Ⓐⓓⓓ Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ","invite":"Ⓟⓤⓣ ⓘⓝ ⓣⓗⓔ ⓔⓜⓐⓘⓛ ⓞⓕ ⓐⓝ ⓔⓧⓘⓢⓣⓘⓝⓖ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓤⓢⓔⓡ ⓑⓔⓛⓞⓦ. Ⓘⓕ ⓣⓗⓔⓨ ⓓⓞⓝ\'ⓣ ⓗⓐⓥⓔ ⓐⓝ ⓐⓒⓒⓞⓤⓝⓣ, ⓗⓐⓥⓔ ⓣⓗⓔⓜ ⓡⓔⓖⓘⓢⓣⓔⓡ ⓗⓔⓡⓔ ⓕⓞⓡ ⓕⓡⓔⓔ, ⓐⓝⓓ ⓣⓗⓔⓝ ⓐⓢⓚ ⓣⓗⓔⓜ ⓣⓞ ⓛⓞⓖ ⓘⓝ ⓣⓞ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓐⓣ ⓛⓔⓐⓢⓣ ⓞⓝⓒⓔ.","admin":"Ⓐⓓⓜⓘⓝ","view":"Ⓥⓘⓔⓦ","adminHelp":"Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓒⓐⓝ ⓔⓓⓘⓣ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ ⓐⓝⓓ ⓘⓣⓢ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","editHelp":"Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓒⓐⓝ ⓔⓓⓘⓣ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓘⓝ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ","viewHelp":"Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓒⓐⓝ ⓥⓘⓔⓦ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓘⓝ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ","add":"Ⓐⓓⓓ","empty":"Ⓨⓞⓤ ⓗⓐⓥⓔ ⓝⓞⓣ ⓨⓔⓣ ⓐⓓⓓⓔⓓ ⓐⓝⓨ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓣⓞ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ. Ⓘⓝⓥⓘⓣⓔ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓣⓞ ⓖⓡⓐⓝⓣ ⓞⓣⓗⓔⓡ ⓤⓢⓔⓡⓢ ⓐⓒⓒⓔⓢⓢ ⓣⓞ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓢⓗⓐⓡⓔⓓ ⓘⓝ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ. Ⓨⓞⓤ ⓒⓐⓝ ⓒⓞⓝⓣⓡⓞⓛ ⓦⓗⓔⓣⓗⓔⓡ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓗⓐⓥⓔ ⓐⓒⓒⓔⓢⓢ ⓣⓞ ⓥⓘⓔⓦ/ⓔⓓⓘⓣ ⓣⓗⓔ ⓟⓡⓞⓙⓔⓒⓣ’ⓢ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓞⓡ ⓑⓔ ⓐⓝ ⓐⓓⓜⓘⓝ ⓦⓘⓣⓗ ⓟⓔⓡⓜⓘⓢⓢⓘⓞⓝⓢ ⓣⓞ ⓘⓝⓥⓘⓣⓔ ⓞⓣⓗⓔⓡ ⓤⓢⓔⓡⓢ ⓐⓝⓓ ⓔⓓⓘⓣ ⓣⓗⓔ ⓟⓡⓞⓙⓔⓒⓣ ⓘⓣⓢⓔⓛⓕ.","manageCollaborators":"Ⓜⓐⓝⓐⓖⓔ Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ","name":"Ⓝⓐⓜⓔ","access":"Ⓐⓒⓒⓔⓢⓢ","you":"(ⓨⓞⓤ)"},"dialogDataDialog":{"confirm":"Ⓒⓞⓝⓕⓘⓡⓜ ⓡⓔⓜⓞⓥⓔ ⓓⓐⓣⓐ ⓟⓞⓘⓝⓣ","removeMsg":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓡⓔⓜⓞⓥⓔ ⓣⓗⓔ {key}{value} ⓓⓐⓣⓐ ⓟⓞⓘⓝⓣ ⓕⓡⓞⓜ ⓣⓗⓔ ⓢⓟⓔⓒⓘⓕⓘⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ. Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?","addData":"Ⓐⓓⓓ Ⓓⓐⓣⓐ ⓕⓞⓡ {n, plural, one {Ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","tag":"Ⓣⓐⓖ","value":"Ⓥⓐⓛⓤⓔ","key":"Ⓚⓔⓨ","keyValue":"Ⓚⓔⓨ / Ⓥⓐⓛⓤⓔ","tagInfo":"Ⓐⓓⓓ ⓒⓤⓢⓣⓞⓜ ⓣⓐⓖⓢ ⓣⓞ ⓒⓐⓣⓔⓖⓞⓡⓘⓩⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ.","eg":"ⓔ.ⓖ.","exampleTagReport":"ⓡⓔⓟⓞⓡⓣ","exampleTagLawsuit":"ⓛⓐⓦⓢⓤⓘⓣ","exampleTagEmail":"ⓔⓜⓐⓘⓛ","keyValueInfo":"Ⓐⓓⓓ ⓒⓤⓢⓣⓞⓜ ⓚⓔⓨ / ⓥⓐⓛⓤⓔ ⓟⓐⓘⓡⓢ ⓕⓞⓡ ⓟⓡⓔⓒⓘⓢⓔ ⓒⓐⓣⓔⓖⓞⓡⓘⓩⓐⓣⓘⓞⓝ ⓞⓕ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ.","exampleKVState":"ⓢⓣⓐⓣⓔ:&ⓝⓑⓢⓟ;Ⓒⓐⓛⓘⓕⓞⓡⓝⓘⓐ","exampleKVYear":"ⓨⓔⓐⓡ:&ⓝⓑⓢⓟ;②⓪①⑥","exampleKVType":"ⓣⓨⓟⓔ:&ⓝⓑⓢⓟ;ⓜⓔⓜⓞ","enterTag":"Ⓔⓝⓣⓔⓡ ⓐ ⓣⓐⓖ","enterKey":"Ⓔⓝⓣⓔⓡ ⓐ ⓚⓔⓨ","keyInvalid":"Ⓚⓔⓨⓢ ⓒⓐⓝ ⓞⓝⓛⓨ ⓒⓞⓝⓣⓐⓘⓝ ⓛⓔⓣⓣⓔⓡⓢ, ⓝⓤⓜⓑⓔⓡⓢ, ⓤⓝⓓⓔⓡⓢⓒⓞⓡⓔⓢ (_), ⓐⓝⓓ ⓓⓐⓢⓗⓔⓢ (-)","emptyMsg":"Ⓨⓞⓤ ⓗⓐⓥⓔ ⓝⓞⓣ ⓨⓔⓣ ⓐⓓⓓⓔⓓ ⓐⓝⓨ ⓓⓐⓣⓐ ⓣⓞ ⓣⓗⓔ ⓢⓟⓔⓒⓘⓕⓘⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ. Ⓐⓓⓓ ⓣⓐⓖⓢ ⓐⓝⓓ ⓚⓔⓨ/ⓥⓐⓛⓤⓔ ⓟⓐⓘⓡⓢ ⓣⓞ ⓒⓐⓣⓔⓖⓞⓡⓘⓩⓔ ⓐⓝⓓ ⓞⓡⓖⓐⓝⓘⓩⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ. Ⓨⓞⓤ ⓒⓐⓝ ⓕⓘⓛⓣⓔⓡ ⓐⓝⓓ ⓢⓔⓐⓡⓒⓗ ⓞⓝ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓓⓐⓣⓐ ⓣⓞ ⓖⓘⓥⓔ ⓨⓞⓤ ⓟⓞⓦⓔⓡⓕⓤⓛ ⓒⓞⓝⓣⓡⓞⓛ ⓞⓥⓔⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓜⓐⓝⓐⓖⓔⓜⓔⓝⓣ.","manageDocumentData":"Ⓜⓐⓝⓐⓖⓔ Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓓⓐⓣⓐ","valueUnchanged":"Ⓥⓐⓛⓤⓔ ⓡⓔⓜⓐⓘⓝⓢ ⓤⓝⓒⓗⓐⓝⓖⓔⓓ","kvCannotBeEmpty":"Ⓚⓔⓨ/ⓥⓐⓛⓤⓔ ⓒⓐⓝⓝⓞⓣ ⓑⓔ ⓔⓜⓟⓣⓨ"},"dialogReprocessDialog":{"title":"Ⓒⓞⓝⓕⓘⓡⓜ ⓡⓔⓟⓡⓞⓒⓔⓢⓢ","reprocessDocs":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓕⓞⓡⓒⓔ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}} ⓣⓞ ⓡⓔⓟⓡⓞⓒⓔⓢⓢ ⓟⓐⓖⓔ ⓐⓝⓓ ⓘⓜⓐⓖⓔ ⓣⓔⓧⓣ. Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?","reprocessSingleDoc":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓕⓞⓡⓒⓔ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓣⓞ ⓡⓔⓟⓡⓞⓒⓔⓢⓢ ⓟⓐⓖⓔ ⓐⓝⓓ ⓘⓜⓐⓖⓔ ⓣⓔⓧⓣ. Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?","confirm":"Ⓡⓔⓟⓡⓞⓒⓔⓢⓢ"},"dialogDeleteDialog":{"title":"Ⓒⓞⓝⓕⓘⓡⓜ ⓡⓔⓟⓡⓞⓒⓔⓢⓢ","deleteDocs":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓟⓔⓡⓜⓐⓝⓔⓝⓣⓛⓨ ⓓⓔⓛⓔⓣⓔ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}. Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?"},"dialogCancelProcessingDialog":{"title":"Ⓒⓐⓝⓒⓔⓛ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ","deleteDocs":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓕⓞⓡⓒⓔ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}} ⓣⓞ ⓢⓣⓞⓟ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ. Ⓐⓕⓣⓔⓡ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ ⓗⓐⓢ ⓑⓔⓔⓝ ⓢⓣⓞⓟⓟⓔⓓ, ⓐⓝ ⓔⓡⓡⓞⓡ ⓦⓘⓛⓛ ⓢⓗⓞⓦ ⓐⓕⓣⓔⓡ ⓦⓗⓘⓒⓗ ⓨⓞⓤ ⓒⓐⓝ “Ⓕⓞⓡⓒⓔ Ⓡⓔⓟⓡⓞⓒⓔⓢⓢ” ⓞⓡ ⓓⓔⓛⓔⓣⓔ ⓣⓗⓔ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}} ⓤⓢⓘⓝⓖ ⓣⓗⓔ Ⓔⓓⓘⓣ ⓜⓔⓝⓤ. Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Ⓢⓣⓐⓕⓕ-ⓞⓝⓛⓨ ⓘⓝⓕⓞ ⓕⓞⓡ ⓢⓔⓛⓔⓒⓣⓔⓓ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","id":"ⒾⒹ","title":"Ⓣⓘⓣⓛⓔ","actions":"Ⓐⓒⓣⓘⓞⓝⓢ","debug":"Ⓓⓔⓑⓤⓖ","viewErrors":"Ⓥⓘⓔⓦ ⓔⓡⓡⓞⓡⓢ","viewS3":"Ⓥⓘⓔⓦ ⓘⓝ Ⓢ③"},"dialogDocumentEmbedDialog":{"responsive":"Ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ","respOn":"Ⓞⓝ (ⓓⓔⓕⓐⓤⓛⓣ)","respOnHelp":"Ⓕⓘⓛⓛ ⓣⓗⓔ ⓦⓘⓓⓣⓗ ⓞⓕ ⓣⓗⓔ ⓐⓡⓣⓘⓒⓛⓔ ⓒⓞⓝⓣⓐⓘⓝⓔⓡ (ⓤⓢⓤⓐⓛⓛⓨ ⓦⓞⓡⓚⓢ ⓑⓔⓢⓣ)","respOff":"Ⓞⓕⓕ","respOffHelp":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓕⓘⓣ ⓣⓗⓔ ⓢⓘⓩⓔⓢ ⓢⓟⓔⓒⓘⓕⓘⓔⓓ ⓑⓔⓛⓞⓦ","width":"Ⓦⓘⓓⓣⓗ","widthAuto":"Ⓦⓘⓛⓛ ⓕⓘⓛⓛ ⓣⓗⓔ ⓐⓥⓐⓘⓛⓐⓑⓛⓔ ⓢⓟⓐⓒⓔ ⓘⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ ⓢⓔⓣ ⓣⓞ ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ, ⓞⓣⓗⓔⓡⓦⓘⓢⓔ ⓓⓔⓕⓐⓤⓛⓣⓢ ⓣⓞ ⑦⓪⓪ⓟⓧ","widthFixed":"Ⓢⓔⓣ ⓐ ⓜⓐⓧⓘⓜⓤⓜ ⓦⓘⓓⓣⓗ ⓘⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ, ⓞⓡ ⓢⓔⓣ ⓐ ⓕⓘⓧⓔⓓ ⓢⓘⓩⓔ ⓘⓕ ⓝⓞⓣ ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ","height":"Ⓗⓔⓘⓖⓗⓣ","heightAuto":"Ⓣⓗⓔ ⓗⓔⓘⓖⓗⓣ ⓘⓢ ⓑⓐⓢⓔⓓ ⓞⓝ ⓣⓗⓔ ⓢⓘⓩⓔ ⓞⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ, ⓦⓘⓣⓗ ⓝⓞ ⓜⓐⓧⓘⓜⓤⓜ ⓢⓘⓩⓔ. Ⓘⓕ ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ, ⓦⓘⓛⓛ ⓑⓔ ⓢⓔⓣ ⓣⓞ ⓣⓗⓔ ⓗⓔⓘⓖⓗⓣ ⓞⓕ ⓣⓗⓔ ⓑⓡⓞⓦⓢⓔⓡ ⓦⓘⓝⓓⓞⓦ ⓜⓘⓝⓤⓢ ①⓪⓪ⓟⓧ","heightFixed":"Ⓢⓔⓣ ⓐ ⓜⓐⓧⓘⓜⓤⓜ ⓗⓔⓘⓖⓗⓣ ⓘⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ, ⓞⓡ ⓢⓔⓣ ⓐ ⓕⓘⓧⓔⓓ ⓢⓘⓩⓔ ⓘⓕ ⓝⓞⓣ ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ","sidebarBehavior":"Ⓢⓘⓓⓔⓑⓐⓡ ⓑⓔⓗⓐⓥⓘⓞⓡ","sbResponsive":"Ⓡⓔⓢⓟⓞⓝⓢⓘⓥⓔ (ⓓⓔⓕⓐⓤⓛⓣ)","sbResponsiveHelp":"Ⓢⓗⓞⓦ ⓢⓘⓓⓔⓑⓐⓡ ⓐⓤⓣⓞⓜⓐⓣⓘⓒⓐⓛⓛⓨ ⓞⓝ ⓛⓐⓡⓖⓔ ⓢⓒⓡⓔⓔⓝⓢ ⓐⓝⓓ ⓗⓘⓓⓔ ⓞⓝ ⓜⓞⓑⓘⓛⓔ ⓓⓔⓥⓘⓒⓔⓢ. Ⓘⓝ ⓔⓜⓑⓔⓓ ⓜⓞⓓⓔ, ⓣⓗⓔ ⓢⓘⓓⓔⓑⓐⓡ ⓦⓘⓛⓛ ⓑⓔ ⓗⓘⓓⓓⓔⓝ","hidden":"Ⓗⓘⓓⓓⓔⓝ","visible":"Ⓥⓘⓢⓘⓑⓛⓔ","visibleDefault":"Ⓥⓘⓢⓘⓑⓛⓔ (ⓓⓔⓕⓐⓤⓛⓣ)","sbHiddenHelp":"Ⓗⓘⓓⓔ ⓣⓗⓔ ⓢⓘⓓⓔⓑⓐⓡ ⓑⓨ ⓓⓔⓕⓐⓤⓛⓣ","sbVisibleHelp":"Ⓢⓗⓞⓦ ⓣⓗⓔ ⓢⓘⓓⓔⓑⓐⓡ ⓑⓨ ⓓⓔⓕⓐⓤⓛⓣ","titleBehavior":"Ⓣⓘⓣⓛⓔ ⓑⓔⓗⓐⓥⓘⓞⓡ","tVisibleHelp":"Ⓓⓘⓢⓟⓛⓐⓨ ⓣⓗⓔ ⓣⓘⓣⓛⓔ ⓐⓝⓓ ⓐⓣⓣⓡⓘⓑⓤⓣⓘⓞⓝ ⓘⓝ ⓣⓗⓔ ⓗⓔⓐⓓⓔⓡ ⓞⓕ ⓣⓗⓔ ⓥⓘⓔⓦⓔⓡ","tHiddenHelp":"Ⓗⓘⓓⓔ ⓣⓗⓔ ⓣⓘⓣⓛⓔ ⓘⓝ ⓣⓗⓔ ⓗⓔⓐⓓⓔⓡ ⓞⓕ ⓣⓗⓔ ⓥⓘⓔⓦⓔⓡ (ⓢⓣⓘⓛⓛ ⓥⓘⓢⓘⓑⓛⓔ ⓘⓝ ⓣⓗⓔ ⓢⓘⓓⓔⓑⓐⓡ)","pdfLink":"ⓅⒹⒻ ⓛⓘⓝⓚ","plVisibleHelp":"Ⓢⓗⓞⓦ ⓐ ⓛⓘⓝⓚ ⓣⓞ ⓣⓗⓔ ⓡⓐⓦ ⓅⒹⒻ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓝ ⓣⓗⓔ ⓢⓘⓓⓔⓑⓐⓡ","plHiddenHelp":"Ⓗⓘⓓⓔ ⓣⓗⓔ ⓢⓘⓓⓔⓑⓐⓡ ⓅⒹⒻ ⓛⓘⓝⓚ (ⓕⓘⓛⓔ ⓘⓢ ⓢⓣⓘⓛⓛ ⓐⓒⓒⓔⓢⓢⓘⓑⓛⓔ ⓘⓕ ⓣⓗⓔ ⓊⓇⓁ ⓘⓢ ⓚⓝⓞⓦⓝ)","fullscreenOption":"Ⓕⓤⓛⓛⓢⓒⓡⓔⓔⓝ ⓞⓟⓣⓘⓞⓝ","fsVisibleHelp":"Ⓢⓗⓞⓦ ⓐ ⓕⓤⓛⓛⓢⓒⓡⓔⓔⓝ ⓘⓒⓞⓝ ⓘⓝ ⓣⓗⓔ ⓑⓞⓣⓣⓞⓜ-ⓡⓘⓖⓗⓣ ⓒⓞⓡⓝⓔⓡ","fsHiddenHelp":"Ⓗⓘⓓⓔ ⓣⓗⓔ ⓕⓤⓛⓛⓢⓒⓡⓔⓔⓝ ⓞⓟⓣⓘⓞⓝ","textMode":"Ⓣⓔⓧⓣ ⓜⓞⓓⓔ","tmVisibleHelp":"Ⓢⓗⓞⓦ ⓐⓝ ⓞⓟⓣⓘⓞⓝ ⓣⓞ ⓥⓘⓔⓦ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ’ⓢ ⓣⓔⓧⓣ ⓘⓝ ⓣⓗⓔ ⓥⓘⓔⓦ ⓓⓡⓞⓟⓓⓞⓦⓝ","tmHiddenHelp":"Ⓗⓘⓓⓔ ⓣⓔⓧⓣ ⓜⓞⓓⓔ","contributedByFormat":"Ⓒⓞⓝⓣⓡⓘⓑⓤⓣⓔⓓ ⓑⓨ ⓕⓞⓡⓜⓐⓣ","cbfUserAndOrg":"Ⓤⓢⓔⓡ ⓐⓝⓓ ⓞⓡⓖ (ⓓⓔⓕⓐⓤⓛⓣ)","cbfUserAndOrgHelp":"Ⓢⓗⓞⓦ ⓐ ⓓⓞⓒⓤⓜⓔⓝⓣ’ⓢ ⓐⓣⓣⓡⓘⓑⓤⓣⓘⓞⓝ ⓐⓢ ⓣⓗⓔ ⓤⓢⓔⓡ ⓝⓐⓜⓔ ⓕⓞⓛⓛⓞⓦⓔⓓ ⓑⓨ ⓣⓗⓔ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","cbfOrgOnly":"Ⓞⓡⓖ ⓞⓝⓛⓨ","cbfOrgOnlyHelp":"Ⓐⓣⓣⓡⓘⓑⓤⓣⓔ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓣⓞ ⓙⓤⓢⓣ ⓣⓗⓔ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","share":"Ⓢⓗⓐⓡⓔ “{title}”","embedDesc":"Ⓒⓞⓟⓨ ⓣⓗⓔ ⒽⓉⓂⓁ ⓒⓞⓓⓔ ⓣⓞ ⓔⓜⓑⓔⓓ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓣⓗⓘⓝ ⓐⓝ ⓐⓡⓣⓘⓒⓛⓔ"},"dialogDocumentInformationDialog":{"editInformation":"Ⓔⓓⓘⓣ Ⓘⓝⓕⓞⓡⓜⓐⓣⓘⓞⓝ ⓕⓞⓡ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}"},"dialogRedactDialog":{"title":"Ⓒⓞⓝⓕⓘⓡⓜ ⓡⓔⓓⓐⓒⓣⓘⓞⓝⓢ","description":"Ⓐⓡⓔ ⓨⓞⓤ ⓢⓤⓡⓔ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓡⓔⓓⓐⓒⓣ ⓣⓗⓔ ⓒⓤⓡⓡⓔⓝⓣ ⓓⓞⓒⓤⓜⓔⓝⓣ? Ⓘⓕ ⓨⓞⓤ ⓒⓞⓝⓣⓘⓝⓤⓔ, ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓥⓘⓔⓦⓔⓡ ⓦⓘⓛⓛ ⓑⓔ ⓘⓝⓐⓒⓒⓔⓢⓢⓘⓑⓛⓔ ⓣⓔⓜⓟⓞⓡⓐⓡⓘⓛⓨ ⓦⓗⓘⓛⓔ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓡⓔⓟⓡⓞⓒⓔⓢⓢⓔⓢ ⓦⓘⓣⓗ ⓣⓗⓔ ⓡⓔⓓⓐⓒⓣⓘⓞⓝⓢ ⓘⓝ ⓟⓛⓐⓒⓔ. Ⓣⓗⓘⓢ ⓒⓗⓐⓝⓖⓔ ⓘⓢ ⓘⓡⓡⓔⓥⓔⓡⓢⓘⓑⓛⓔ."},"dialogModifyDialog":{"title":"Ⓐⓟⓟⓛⓨ ⓜⓞⓓⓘⓕⓘⓒⓐⓣⓘⓞⓝⓢ","description":"Ⓐⓡⓔ ⓨⓞⓤ ⓢⓤⓡⓔ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓜⓞⓓⓘⓕⓨ ⓣⓗⓔ ⓒⓤⓡⓡⓔⓝⓣ ⓓⓞⓒⓤⓜⓔⓝⓣ? Ⓘⓕ ⓨⓞⓤ ⓒⓞⓝⓣⓘⓝⓤⓔ, ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓥⓘⓔⓦⓔⓡ ⓦⓘⓛⓛ ⓑⓔ ⓘⓝⓐⓒⓒⓔⓢⓢⓘⓑⓛⓔ ⓣⓔⓜⓟⓞⓡⓐⓡⓘⓛⓨ ⓦⓗⓘⓛⓔ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓡⓔⓟⓡⓞⓒⓔⓢⓢⓔⓢ ⓦⓘⓣⓗ ⓣⓗⓔ ⓜⓞⓓⓘⓕⓘⓒⓐⓣⓘⓞⓝⓢ. Ⓣⓗⓘⓢ ⓒⓗⓐⓝⓖⓔ ⓘⓢ ⓘⓡⓡⓔⓥⓔⓡⓢⓘⓑⓛⓔ.","closeTitle":"Ⓒⓞⓝⓕⓘⓡⓜ ⓒⓛⓞⓢⓔ","closeWarning":"Ⓨⓞⓤ ⓦⓘⓛⓛ ⓛⓞⓢⓔ ⓐⓛⓛ ⓨⓞⓤⓡ ⓤⓝⓐⓟⓟⓛⓘⓔⓓ ⓜⓞⓓⓘⓕⓘⓒⓐⓣⓘⓞⓝⓢ. Ⓐⓡⓔ ⓨⓞⓤ ⓢⓤⓡⓔ ⓨⓞⓤ ⓦⓐⓝⓣ ⓣⓞ ⓟⓡⓞⓒⓔⓔⓓ?"},"dialogDeleteNoteDialog":{"title":"Ⓒⓞⓝⓕⓘⓡⓜ ⓓⓔⓛⓔⓣⓔ","description":"Ⓐⓡⓔ ⓨⓞⓤ ⓢⓤⓡⓔ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓓⓔⓛⓔⓣⓔ ⓣⓗⓔ ⓒⓤⓡⓡⓔⓝⓣ ⓝⓞⓣⓔ?"},"dialogEditSectionsDialog":{"confirmDelete":"Ⓒⓞⓝⓕⓘⓡⓜ ⓓⓔⓛⓔⓣⓔ","proceedingWillRemove":"Ⓟⓡⓞⓒⓔⓔⓓⓘⓝⓖ ⓦⓘⓛⓛ ⓡⓔⓜⓞⓥⓔ ⓣⓗⓔ ⓢⓟⓔⓒⓘⓕⓘⓔⓓ ⓢⓔⓒⓣⓘⓞⓝ (ⓟ. {page} {title}). Ⓓⓞ ⓨⓞⓤ ⓦⓘⓢⓗ ⓣⓞ ⓒⓞⓝⓣⓘⓝⓤⓔ?","editSections":"Ⓔⓓⓘⓣ Ⓢⓔⓒⓣⓘⓞⓝⓢ","manageSections":"Ⓜⓐⓝⓐⓖⓔ ⓢⓔⓒⓣⓘⓞⓝⓢ ⓣⓞ ⓞⓡⓖⓐⓝⓘⓩⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓣⓗ ⓐ ⓣⓐⓑⓛⓔ ⓞⓕ ⓒⓞⓝⓣⓔⓝⓣⓢ.","pageAbbrevNo":"ⓟ. {n}","pageAbbrev":"ⓟ.","empty":"Ⓨⓞⓤ ⓗⓐⓥⓔ ⓝⓞⓣ ⓐⓓⓓⓔⓓ ⓐⓝⓨ ⓢⓔⓒⓣⓘⓞⓝⓢ","edit":"Ⓔⓓⓘⓣ ⓣⓗⓔ ⓢⓔⓛⓔⓒⓣⓔⓓ ⓢⓔⓒⓣⓘⓞⓝ","add":"Ⓐⓓⓓ ⓐ ⓝⓔⓦ ⓢⓔⓒⓣⓘⓞⓝ","title":"Ⓣⓘⓣⓛⓔ","missingTitle":"Ⓟⓛⓔⓐⓢⓔ ⓔⓝⓣⓔⓡ ⓐ ⓣⓘⓣⓛⓔ","updateTitle":"Ⓔⓝⓣⓔⓡ ⓐ ⓝⓔⓦ ⓣⓘⓣⓛⓔ ⓞⓡ ⓟⓐⓖⓔ ⓝⓤⓜⓑⓔⓡ","uniquePageNumber":"Ⓨⓞⓤ ⓜⓤⓢⓣ ⓔⓝⓣⓔⓡ ⓐ ⓤⓝⓘⓠⓤⓔ ⓟⓐⓖⓔ ⓝⓤⓜⓑⓔⓡ","invalidPageNumber":"Ⓟⓐⓖⓔ ⓝⓤⓜⓑⓔⓡ ⓘⓢ ⓘⓝⓥⓐⓛⓘⓓ"},"dialogEmbedDialog":{"updatingDocument":"Ⓤⓟⓓⓐⓣⓘⓝⓖ ⓓⓞⓒⓤⓜⓔⓝⓣ...","makingPublic":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ ⓒⓤⓡⓡⓔⓝⓣⓛⓨ ⓑⓔⓘⓝⓖ ⓜⓐⓓⓔ ⓟⓤⓑⓛⓘⓒ. Ⓣⓗⓘⓢ ⓜⓐⓨ ⓣⓐⓚⓔ ⓐ ⓜⓘⓝⓤⓣⓔ ⓞⓡ ⓣⓦⓞ.","wouldMakePublic":"Ⓦⓞⓤⓛⓓ ⓨⓞⓤ ⓛⓘⓚⓔ ⓣⓞ ⓜⓐⓚⓔ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓟⓤⓑⓛⓘⓒ ⓑⓔⓕⓞⓡⓔ ⓢⓗⓐⓡⓘⓝⓖ?","notPublic":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ ⓝⓞⓣ ⓒⓤⓡⓡⓔⓝⓣⓛⓨ ⓟⓤⓑⓛⓘⓒ. Ⓘⓕ ⓨⓞⓤ ⓔⓜⓑⓔⓓ ⓞⓡ ⓛⓘⓝⓚ ⓘⓣ, ⓞⓝⓛⓨ ⓨⓞⓤ ⓐⓝⓓ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ ⓦⓘⓛⓛ ⓑⓔ ⓐⓑⓛⓔ ⓣⓞ ⓥⓘⓔⓦ ⓘⓣ ⓤⓝⓣⓘⓛ ⓘⓣ ⓘⓢ ⓜⓐⓓⓔ ⓟⓤⓑⓛⓘⓒ. Ⓒⓛⓘⓒⓚ ⓑⓔⓛⓞⓦ ⓦⓗⓔⓝ ⓨⓞⓤ’ⓡⓔ ⓡⓔⓐⓓⓨ ⓣⓞ ⓟⓤⓑⓛⓘⓢⓗ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓣⓞ ⓣⓗⓔ ⓟⓤⓑⓛⓘⓒ.","makePublic":"Ⓜⓐⓚⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓟⓤⓑⓛⓘⓒ","leave":"Ⓛⓔⓐⓥⓔ ⓐⓢ ⓘⓢ","selectShare":"Ⓢⓔⓛⓔⓒⓣ ⓢⓗⓐⓡⓔ ⓞⓟⓣⓘⓞⓝ","selectShareHelp":"Ⓒⓗⓞⓞⓢⓔ ⓦⓗⓔⓣⓗⓔⓡ ⓣⓞ ⓢⓗⓐⓡⓔ ⓣⓗⓔ ⓔⓝⓣⓘⓡⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓞⓡ ⓙⓤⓢⓣ ⓐ ⓟⓐⓖⓔ ⓞⓡ ⓝⓞⓣⓔ.","shareDoc":"Ⓢⓗⓐⓡⓔ ⓔⓝⓣⓘⓡⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ","shareDocHelp":"Ⓛⓘⓝⓚ ⓞⓡ ⓔⓜⓑⓔⓓ ⓣⓗⓔ ⓔⓝⓣⓘⓡⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ. (Ⓣⓗⓘⓢ ⓘⓢ ⓣⓗⓔ ⓜⓞⓢⓣ ⓒⓞⓜⓜⓞⓝⓛⓨ ⓤⓢⓔⓓ ⓢⓗⓐⓡⓔ ⓞⓟⓣⓘⓞⓝ.)","sharePage":"Ⓢⓗⓐⓡⓔ ⓢⓟⓔⓒⓘⓕⓘⓒ ⓟⓐⓖⓔ","sharePageHelp":"Ⓛⓘⓝⓚ ⓞⓡ ⓔⓜⓑⓔⓓ ⓐ ⓢⓘⓝⓖⓛⓔ ⓟⓐⓖⓔ ⓞⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ. Ⓤⓢⓔⓕⓤⓛ ⓕⓞⓡ ⓗⓘⓖⓗⓛⓘⓖⓗⓣⓘⓝⓖ ⓐ ⓟⓐⓖⓔ ⓔⓧⓒⓔⓡⓟⓣ.","shareNote":"Ⓢⓗⓐⓡⓔ ⓢⓟⓔⓒⓘⓕⓘⓒ ⓝⓞⓣⓔ","shareNoteHelpHasNote":"Ⓛⓘⓝⓚ ⓞⓡ ⓔⓜⓑⓔⓓ ⓐ ⓝⓞⓣⓔ ⓦⓘⓣⓗⓘⓝ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ. Ⓤⓢⓔⓕⓤⓛ ⓕⓞⓡ ⓗⓘⓖⓗⓛⓘⓖⓗⓣⓘⓝⓖ ⓐ ⓡⓔⓖⓘⓞⓝ ⓞⓕ ⓐ ⓟⓐⓖⓔ.","shareNoteHelpNoNote":"Ⓞⓝⓒⓔ ⓨⓞⓤ ⓐⓓⓓ ⓝⓞⓣⓔⓢ ⓣⓞ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ, ⓤⓢⓔ ⓣⓗⓘⓢ ⓕⓔⓐⓣⓤⓡⓔ ⓣⓞ ⓛⓘⓝⓚ ⓞⓡ ⓔⓜⓑⓔⓓ ⓣⓗⓔⓜ."},"dialogErrorDialog":{"errorOccurred":"Ⓐⓝ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ","unexpectedErrorOccurred":"Ⓐⓝ ⓤⓝⓔⓧⓟⓔⓒⓣⓔⓓ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ","tryAgain":"Ⓟⓛⓔⓐⓢⓔ ⓣⓡⓨ ⓐⓖⓐⓘⓝ ⓛⓐⓣⓔⓡ.","close":"Ⓒⓛⓞⓢⓔ","refresh":"Ⓡⓔⓕⓡⓔⓢⓗ"},"dialogNoteEmbedDialog":{"embedNote":"Ⓔⓜⓑⓔⓓ ⓐ ⓝⓞⓣⓔ ⓞⓕ “{title}”","embedDesc":"Ⓒⓞⓟⓨ ⓣⓗⓔ ⒽⓉⓂⓁ ⓒⓞⓓⓔ ⓣⓞ ⓔⓜⓑⓔⓓ ⓣⓗⓘⓢ ⓝⓞⓣⓔ ⓦⓘⓣⓗⓘⓝ ⓐⓝ ⓐⓡⓣⓘⓒⓛⓔ ⓞⓡ ⓟⓞⓢⓣ:"},"dialogPageEmbedDialog":{"embedPage":"Ⓔⓜⓑⓔⓓ ⓐ ⓟⓐⓖⓔ ⓞⓕ “{title}”","embedDesc":"Ⓒⓞⓟⓨ ⓣⓗⓔ ⒽⓉⓂⓁ ⓒⓞⓓⓔ ⓣⓞ ⓔⓜⓑⓔⓓ ⓣⓗⓘⓢ ⓟⓐⓖⓔ ⓦⓘⓣⓗⓘⓝ ⓐⓝ ⓐⓡⓣⓘⓒⓛⓔ ⓞⓡ ⓟⓞⓢⓣ:","selectPage":"Ⓢⓔⓛⓔⓒⓣ ⓣⓗⓔ ⓟⓐⓖⓔ ⓣⓞ ⓔⓜⓑⓔⓓ:","page":"Ⓟⓐⓖⓔ {n} (ⓒⓤⓡⓡⓔⓝⓣⓛⓨ ⓥⓘⓢⓘⓑⓛⓔ)","otherPage":"Ⓞⓣⓗⓔⓡ ⓟⓐⓖⓔ","enterPageNumber":"Ⓔⓝⓣⓔⓡ ⓣⓗⓔ ⓟⓐⓖⓔ ⓝⓤⓜⓑⓔⓡ ⓣⓞ ⓔⓜⓑⓔⓓ:"},"dialogProjectAccessDialog":{"changeAccessFor":"Ⓒⓗⓐⓝⓖⓔ ⓐⓒⓒⓔⓢⓢ ⓕⓞⓡ {name}","selectAccess":"Ⓢⓔⓛⓔⓒⓣ ⓐⓝ ⓐⓒⓒⓔⓢⓢ ⓛⓔⓥⓔⓛ ⓑⓔⓛⓞⓦ ⓕⓞⓡ {name} ⓘⓝ {title}","adminAccess":"Ⓐⓓⓜⓘⓝ Ⓐⓒⓒⓔⓢⓢ","editAccess":"Ⓔⓓⓘⓣ Ⓐⓒⓒⓔⓢⓢ","viewAccess":"Ⓥⓘⓔⓦ Ⓐⓒⓒⓔⓢⓢ","adminHelp":"Ⓣⓗⓘⓢ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡ ⓒⓐⓝ ⓔⓓⓘⓣ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ ⓐⓝⓓ ⓘⓣⓢ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ. Ⓣⓗⓔ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡ ⓒⓐⓝ ⓘⓝⓥⓘⓣⓔ ⓤⓢⓔⓡⓢ, ⓓⓔⓛⓔⓣⓔ ⓤⓢⓔⓡⓢ, ⓐⓝⓓ ⓡⓔⓜⓞⓥⓔ ⓣⓗⓔ ⓟⓡⓞⓙⓔⓒⓣ.","editHelp":"Ⓣⓗⓘⓢ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡ ⓒⓐⓝ ⓔⓓⓘⓣ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓘⓝ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ ⓑⓤⓣ ⓒⓐⓝⓝⓞⓣ ⓔⓓⓘⓣ ⓣⓗⓔ ⓟⓡⓞⓙⓔⓒⓣ ⓘⓣⓢⓔⓛⓕ.","viewHelp":"Ⓣⓗⓘⓢ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡ ⓒⓐⓝ ⓥⓘⓔⓦ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓘⓝ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ ⓑⓤⓣ ⓒⓐⓝⓝⓞⓣ ⓔⓓⓘⓣ ⓣⓗⓔⓜ ⓞⓡ ⓣⓗⓔ ⓟⓡⓞⓙⓔⓒⓣ.","invalidAccess":"Ⓐⓒⓒⓔⓢⓢ ⓘⓢ ⓐⓛⓡⓔⓐⓓⓨ ⓢⓔⓣ ⓣⓞ {access}. Ⓢⓔⓛⓔⓒⓣ ⓐ ⓓⓘⓕⓕⓔⓡⓔⓝⓣ ⓐⓒⓒⓔⓢⓢ ⓛⓔⓥⓔⓛ.","changeAccess":"Ⓒⓗⓐⓝⓖⓔ ⓐⓒⓒⓔⓢⓢ"},"dialogOwnerDialog":{"selectUser":"Ⓤⓢⓔⓡ ⓜⓤⓢⓣ ⓑⓔ ⓢⓔⓛⓔⓒⓣⓔⓓ","selectOrg":"Ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓜⓤⓢⓣ ⓑⓔ ⓢⓔⓛⓔⓒⓣⓔⓓ","changeOwner":"Ⓒⓗⓐⓝⓖⓔ ⓞⓦⓝⓔⓡ ⓕⓞⓡ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","accessWarning":"Ⓦⓐⓡⓝⓘⓝⓖ: Ⓨⓞⓤ ⓜⓐⓨ ⓛⓞⓢⓣ ⓐⓒⓒⓔⓢⓢ ⓣⓞ ⓣⓗⓔ ⓢⓟⓔⓒⓘⓕⓘⓔⓓ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}} ⓐⓢ ⓐ ⓡⓔⓢⓤⓛⓣ ⓞⓕ ⓒⓗⓐⓝⓖⓘⓝⓖ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓞⓦⓝⓔⓡ","user":"Ⓤⓢⓔⓡ:","filterUsers":"Ⓣⓨⓟⓔ ⓣⓞ ⓕⓘⓛⓣⓔⓡ ⓤⓢⓔⓡⓢ...","filterOrgs":"Ⓣⓨⓟⓔ ⓣⓞ ⓕⓘⓛⓣⓔⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝⓢ..."},"dialogProjectDialog":{"confirmDelete":"Ⓒⓞⓝⓕⓘⓡⓜ ⓓⓔⓛⓔⓣⓔ","deleteProject":"Ⓐⓡⓔ ⓨⓞⓤ ⓢⓤⓡⓔ ⓨⓞⓤ ⓦⓐⓝⓣ ⓣⓞ ⓓⓔⓛⓔⓣⓔ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ ({project})?","editProject":"Ⓔⓓⓘⓣ Ⓟⓡⓞⓙⓔⓒⓣ","createProject":"Ⓒⓡⓔⓐⓣⓔ Ⓝⓔⓦ Ⓟⓡⓞⓙⓔⓒⓣ","title":"Ⓣⓘⓣⓛⓔ...","projectDesc":"Ⓟⓡⓞⓙⓔⓒⓣ Ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ (ⓞⓟⓣⓘⓞⓝⓐⓛ)","manageCollabs":"Ⓜⓐⓝⓐⓖⓔ Ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓞⓡⓢ","share":"Ⓢⓗⓐⓡⓔ / Ⓔⓜⓑⓔⓓ Ⓟⓡⓞⓙⓔⓒⓣ","enterTitle":"Ⓔⓝⓣⓔⓡ ⓐ ⓣⓘⓣⓛⓔ","changeTitle":"Ⓒⓗⓐⓝⓖⓔ ⓣⓗⓔ ⓣⓘⓣⓛⓔ ⓞⓡ ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ"},"dialogProjectEmbedDialog":{"share":"Ⓢⓗⓐⓡⓔ “{title}”","embedDesc":"Ⓒⓞⓟⓨ ⓣⓗⓔ ⒽⓉⓂⓁ ⓒⓞⓓⓔ ⓣⓞ ⓔⓜⓑⓔⓓ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓣⓗⓘⓝ ⓐⓝ ⓐⓡⓣⓘⓒⓛⓔ ⓞⓡ ⓟⓞⓢⓣ:","invalid":"Ⓘⓝⓥⓐⓛⓘⓓ ⓟⓡⓞⓙⓔⓒⓣ","cannotEmbed":"Ⓒⓐⓝⓝⓞⓣ ⓔⓜⓑⓔⓓ ⓣⓗⓘⓢ ⓟⓡⓞⓙⓔⓒⓣ, ⓐⓢ ⓘⓣ ⓓⓞⓔⓢ ⓝⓞⓣ ⓐⓟⓟⓔⓐⓡ ⓣⓞ ⓔⓧⓘⓢⓣ."},"htmlEditor":{"preview":"Ⓟⓡⓔⓥⓘⓔⓦ:"},"image":{"error":"Ⓐⓝ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ. Ⓣⓡⓨ ⓡⓔⓕⓡⓔⓢⓗⓘⓝⓖ ⓣⓗⓔ ⓟⓐⓖⓔ"},"omniselect":{"filter":"Ⓣⓨⓟⓔ ⓣⓞ ⓕⓘⓛⓣⓔⓡ ⓛⓐⓝⓖⓤⓐⓖⓔ","noResults":"Ⓝⓞ ⓡⓔⓢⓤⓛⓣⓢ. Ⓒⓛⓘⓒⓚ ⓣⓞ ⓒⓛⓔⓐⓡ ⓕⓘⓛⓣⓔⓡ."},"shareOptions":{"errorText":"Ⓐⓝ ⓤⓝⓔⓧⓟⓔⓒⓣⓔⓓ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ. Ⓟⓛⓔⓐⓢⓔ ⓣⓡⓨ ⓐⓖⓐⓘⓝ ⓛⓐⓣⓔⓡ.","copyHtml":"Ⓒⓞⓟⓨ ⒽⓉⓂⓁ ⓒⓞⓓⓔ","addShortcode":"Ⓐⓓⓓ ⓣⓗⓘⓢ ⓢⓗⓞⓡⓣⓒⓞⓓⓔ ⓣⓞ ⓨⓞⓤⓡ ⓌⓞⓡⓓⓅⓡⓔⓢⓢ ⓒⓞⓝⓣⓔⓝⓣ —","pluginRequired":"ⓟⓛⓤⓖⓘⓝ ⓡⓔⓠⓤⓘⓡⓔⓓ","copyShortcode":"Ⓒⓞⓟⓨ ⓢⓗⓞⓡⓣⓒⓞⓓⓔ","copyUrl":"Ⓒⓞⓟⓨ ⓊⓇⓁ"},"specialMessage":{"contactUs":"Ⓒⓞⓝⓣⓐⓒⓣ ⓤⓢ ⓦⓘⓣⓗ ⓑⓤⓖ ⓡⓔⓟⓞⓡⓣⓢ, ⓠⓤⓔⓢⓣⓘⓞⓝⓢ, ⓐⓝⓓ ⓢⓤⓖⓖⓔⓢⓣⓘⓞⓝⓢ."},"uploadOptions":{"documentLang":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓛⓐⓝⓖⓤⓐⓖⓔ:","forceOcr":"Ⓕⓞⓡⓒⓔ ⓄⒸⓇ:"},"actionBar":{"selectDocs":"Ⓢⓔⓛⓔⓒⓣ ⓢⓞⓜⓔ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓣⓞ ⓡⓔⓥⓔⓐⓛ ⓔⓓⓘⓣ ⓐⓒⓣⓘⓞⓝⓢ","noPerms":"Ⓨⓞⓤ ⓓⓞ ⓝⓞⓣ ⓗⓐⓥⓔ ⓟⓔⓡⓜⓘⓢⓢⓘⓞⓝ ⓣⓞ ⓔⓓⓘⓣ ⓐⓛⓛ ⓞⓕ ⓣⓗⓔ ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","editMenu":"Ⓔⓓⓘⓣ","projectsMenu":"Ⓟⓡⓞⓙⓔⓒⓣⓢ"},"authSection":{"help":"Ⓗⓔⓛⓟ","language":"Ⓛⓐⓝⓖⓤⓐⓖⓔ","tips":"Ⓣⓘⓟⓢ ⓐⓝⓓ Ⓣⓡⓘⓒⓚⓢ","searchDocs":"Ⓢⓔⓐⓡⓒⓗ Ⓓⓞⓒⓤⓜⓔⓝⓣⓐⓣⓘⓞⓝ","apiDocs":"ⒶⓅⒾ Ⓓⓞⓒⓤⓜⓔⓝⓣⓐⓣⓘⓞⓝ","emailUs":"Ⓔⓜⓐⓘⓛ Ⓤⓢ","acctSettings":"Ⓐⓒⓒⓞⓤⓝⓣ Ⓢⓔⓣⓣⓘⓝⓖⓢ","signOut":"Ⓢⓘⓖⓝ ⓞⓤⓣ","changeOrg":"Ⓒⓗⓐⓝⓖⓔ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","personalAcct":"Ⓟⓔⓡⓢⓞⓝⓐⓛ Ⓐⓒⓒⓞⓤⓝⓣ","signIn":"Ⓢⓘⓖⓝ ⓘⓝ"},"documents":{"yourDocuments":"Ⓨⓞⓤⓡ Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","searchResults":"Ⓢⓔⓐⓡⓒⓗ Ⓡⓔⓢⓤⓛⓣⓢ","accessDocuments":"Ⓨⓞⓤⓡ {access}Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","nameDocuments":"{name}\'ⓢ {access}Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","allDocuments":"Ⓐⓛⓛ {access}Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","mustBeVerified":"Ⓨⓞⓤ ⓜⓤⓢⓣ ⓑⓔ ⓐ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓙⓞⓤⓡⓝⓐⓛⓘⓢⓣ ⓣⓞ ⓤⓟⓛⓞⓐⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","upload":"Ⓤⓟⓛⓞⓐⓓ","dropFile":"Ⓓⓡⓞⓟ ⓕⓘⓛⓔ ⓣⓞ ⓤⓟⓛⓞⓐⓓ"},"document":{"open":"Ⓞⓟⓔⓝ","updating":"Ⓤⓟⓓⓐⓣⓘⓝⓖ ⓓⓞⓒⓤⓜⓔⓝⓣ...","processing":"Ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ","processingError":"Ⓐⓝ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ ⓣⓡⓨⓘⓝⓖ ⓣⓞ ⓟⓡⓞⓒⓔⓢⓢ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ","remove":"Ⓡⓔⓜⓞⓥⓔ","improper":"Ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓐⓢ ⓤⓟⓛⓞⓐⓓⓔⓓ ⓘⓜⓟⓡⓞⓟⓔⓡⓛⓨ","project":"Ⓟⓡⓞⓙⓔⓒⓣ","totalMatchingPages":"{n} ⓞⓕ {m} ⓟⓐⓖⓔⓢ ⓜⓐⓣⓒⓗⓘⓝⓖ ⓣⓗⓔ ⓠⓤⓔⓡⓨ","showAll":"Ⓢⓗⓞⓦ ⓐⓛⓛ","matchingPages":"{n} ⓟⓐⓖⓔⓢ ⓜⓐⓣⓒⓗⓘⓝⓖ ⓣⓗⓔ ⓠⓤⓔⓡⓨ","pageAbbrev":"ⓟ.","pageCount":"{n, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}}","source":"Ⓢⓞⓤⓡⓒⓔ"},"documentThumbnail":{"pages":"ⓟⓐⓖⓔⓢ","loading":"Ⓛⓞⓐⓓⓘⓝⓖ ⓟⓡⓞⓖⓡⓔⓢⓢ ⓘⓝⓕⓞⓡⓜⓐⓣⓘⓞⓝ..."},"mainContainer":{"error":"Ⓔⓡⓡⓞⓡ","errorMsg":"Ⓦⓔ ⓒⓞⓤⓛⓓ ⓝⓞⓣ ⓡⓔⓐⓒⓗ ⓣⓗⓔ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓢⓔⓡⓥⓔⓡ. Ⓟⓛⓔⓐⓢⓔ ⓣⓡⓨ ⓡⓔⓕⓡⓔⓢⓗⓘⓝⓖ ⓣⓗⓔ ⓟⓐⓖⓔ ⓛⓐⓣⓔⓡ.","refresh":"Ⓡⓔⓕⓡⓔⓢⓗ"},"editMenu":{"editDocInfo":"Ⓔⓓⓘⓣ Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓘⓝⓕⓞⓡⓜⓐⓣⓘⓞⓝ","changeAccess":"Ⓒⓗⓐⓝⓖⓔ Ⓐⓒⓒⓔⓢⓢ","editDocData":"Ⓔⓓⓘⓣ Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓓⓐⓣⓐ","cancelProcessing":"Ⓒⓐⓝⓒⓔⓛ Ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ","forceReprocess":"Ⓕⓞⓡⓒⓔ Ⓡⓔⓟⓡⓞⓒⓔⓢⓢ","entities":"Ⓔⓝⓣⓘⓣⓘⓔⓢ ⒷⒺⓉⒶ","changeOwner":"Ⓒⓗⓐⓝⓖⓔ Ⓞⓦⓝⓔⓡ","delete":"Ⓓⓔⓛⓔⓣⓔ","diagnosticInfo":"Ⓓⓘⓐⓖⓝⓞⓢⓣⓘⓒ Ⓘⓝⓕⓞ"},"metaFields":{"defaultFieldInvalidText":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓐⓛⓡⓔⓐⓓⓨ ⓗⓐⓢ ⓣⓗⓘⓢ {fieldName}","titleFieldTitle":"Ⓣⓘⓣⓛⓔ","titleFieldName":"ⓝⓐⓜⓔ","titleFieldNameUppercase":"Ⓝⓐⓜⓔ","titleFieldHeader":"Ⓡⓔⓝⓐⓜⓔ {n, plural, one {# ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","titleFieldDescription":"Ⓔⓝⓣⓔⓡ ⓐ ⓝⓐⓜⓔ ⓑⓔⓛⓞⓦ ⓕⓞⓡ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","titleFieldButton":"Ⓡⓔⓝⓐⓜⓔ","titleFieldInvalidSameName":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓐⓛⓡⓔⓐⓓⓨ ⓗⓐⓢ ⓣⓗⓘⓢ ⓝⓐⓜⓔ","titleFieldInvalidEmptyName":"Ⓔⓝⓣⓔⓡ ⓐ ⓥⓐⓛⓘⓓ ⓝⓐⓜⓔ","sourceFieldTitle":"Ⓢⓞⓤⓡⓒⓔ","sourceFieldName":"ⓢⓞⓤⓡⓒⓔ","sourceFieldNameUppercase":"Ⓢⓞⓤⓡⓒⓔ","sourceFieldHeader":"Ⓔⓓⓘⓣ ⓢⓞⓤⓡⓒⓔ ⓕⓞⓡ {n, plural, one {# ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","sourceFieldDescription":"Ⓔⓝⓣⓔⓡ ⓐ ⓢⓞⓤⓡⓒⓔ ⓑⓔⓛⓞⓦ ⓕⓞⓡ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","sourceFieldButton":"Ⓔⓓⓘⓣ","descriptionFieldTitle":"Ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ","descriptionFieldName":"ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ","descriptionFieldNameUppercase":"Ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ","descriptionFieldHeader":"Ⓔⓓⓘⓣ ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ ⓕⓞⓡ {n, plural, one {# ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","descriptionFieldDescription":"Ⓔⓝⓣⓔⓡ ⓣⓗⓔ ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ ⓑⓔⓛⓞⓦ ⓕⓞⓡ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","descriptionFieldButton":"Ⓔⓓⓘⓣ","relatedArticleFieldTitle":"Ⓡⓔⓛⓐⓣⓔⓓ Ⓐⓡⓣⓘⓒⓛⓔ ⓊⓇⓁ","relatedArticleFieldName":"ⓡⓔⓛⓐⓣⓔⓓ ⓐⓡⓣⓘⓒⓛⓔ ⓊⓇⓁ","relatedArticleFieldNameUppercase":"Ⓡⓔⓛⓐⓣⓔⓓ Ⓐⓡⓣⓘⓒⓛⓔ ⓊⓇⓁ","relatedArticleFieldHeader":"Ⓔⓓⓘⓣ ⓣⓗⓔ ⓡⓔⓛⓐⓣⓔⓓ ⓐⓡⓣⓘⓒⓛⓔ ⓊⓇⓁ ⓕⓞⓡ {n, plural, one {# ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","relatedArticleFieldDescription":"Ⓔⓝⓣⓔⓡ ⓣⓗⓔ ⓡⓔⓛⓐⓣⓔⓓ ⓐⓡⓣⓘⓒⓛⓔ ⓊⓇⓁ ⓑⓔⓛⓞⓦ ⓕⓞⓡ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","relatedArticleFieldButton":"Ⓔⓓⓘⓣ","publishedUrlFieldTitle":"Ⓟⓤⓑⓛⓘⓢⓗⓔⓓ ⓊⓇⓁ","publishedUrlFieldName":"ⓟⓤⓑⓛⓘⓢⓗⓔⓓ ⓊⓇⓁ","publishedUrlFieldNameUppercase":"Ⓟⓤⓑⓛⓘⓢⓗⓔⓓ ⓊⓇⓁ","publishedUrlFieldHeader":"Ⓔⓓⓘⓣ ⓣⓗⓔ ⓟⓤⓑⓛⓘⓢⓗⓔⓓ ⓊⓇⓁ ⓕⓞⓡ {n, plural, one {# ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","publishedUrlFieldDescription":"Ⓔⓝⓣⓔⓡ ⓣⓗⓔ ⓟⓤⓑⓛⓘⓢⓗⓔⓓ ⓊⓇⓁ ⓑⓔⓛⓞⓦ ⓕⓞⓡ ⓣⓗⓔ {n, plural, one {ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓢⓔⓛⓔⓒⓣⓔⓓ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}","publishedUrlFieldButton":"Ⓔⓓⓘⓣ"},"projectsMenu":{"newProject":"+ Ⓝⓔⓦ Ⓟⓡⓞⓙⓔⓒⓣ","projMembership":"Ⓟⓡⓞⓙⓔⓒⓣ Ⓜⓔⓜⓑⓔⓡⓢⓗⓘⓟ","selectDocs":"Ⓢⓔⓛⓔⓒⓣ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓣⓞ ⓟⓛⓐⓒⓔ ⓣⓗⓔⓜ ⓘⓝ ⓟⓡⓞⓙⓔⓒⓣⓢ","createProj":"Ⓒⓡⓔⓐⓣⓔ ⓐ ⓟⓡⓞⓙⓔⓒⓣ ⓣⓞ ⓞⓡⓖⓐⓝⓘⓩⓔ ⓐⓝⓓ ⓢⓗⓐⓡⓔ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ"},"noDocuments":{"noSearchResults":"Ⓝⓞ ⓢⓔⓐⓡⓒⓗ ⓡⓔⓢⓤⓛⓣⓢ","queryNoResults":"Ⓨⓞⓤⓡ ⓢⓔⓐⓡⓒⓗ ⓠⓤⓔⓡⓨ ⓡⓔⓣⓤⓡⓝⓔⓓ ⓝⓞ ⓡⓔⓢⓤⓛⓣⓢ. Ⓣⓡⓨ ⓐⓖⓐⓘⓝ ⓦⓘⓣⓗ ⓐ ⓑⓡⓞⓐⓓⓔⓡ ⓢⓔⓐⓡⓒⓗ ⓠⓤⓔⓡⓨ.","welcome":"Ⓦⓔⓛⓒⓞⓜⓔ ⓣⓞ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ!","verify1":"Ⓝⓞⓣⓔ ⓣⓗⓐⓣ ⓒⓤⓡⓡⓔⓝⓣⓛⓨ ⓨⓞⓤⓡ ⓐⓒⓒⓞⓤⓝⓣ ⓘⓢ ⓝⓞⓣ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓣⓞ ⓤⓟⓛⓞⓐⓓ. Ⓨⓞⓤ ⓒⓐⓝ ⓢⓔⓐⓡⓒⓗ ⓣⓗⓡⓞⓤⓖⓗ ⓣⓗⓔ ⓟⓤⓑⓛⓘⓒ ⓡⓔⓟⓞⓢⓘⓣⓞⓡⓨ, ⓞⓡⓖⓐⓝⓘⓩⓔ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓨⓞⓤ\'ⓡⓔ ⓘⓝⓣⓔⓡⓔⓢⓣⓔⓓ ⓘⓝ ⓘⓝⓣⓞ ⓟⓡⓞⓙⓔⓒⓣⓢ, ⓛⓔⓐⓥⓔ ⓟⓡⓘⓥⓐⓣⓔ ⓝⓞⓣⓔⓢ, ⓐⓝⓓ ⓒⓞⓛⓛⓐⓑⓞⓡⓐⓣⓔ ⓞⓝ ⓔⓓⓘⓣⓘⓝⓖ ⓐⓝⓓ ⓐⓝⓝⓞⓣⓐⓣⓘⓝⓖ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓞⓣⓗⓔⓡ ⓤⓢⓔⓡⓢ ⓘⓝⓥⓘⓣⓔ ⓨⓞⓤ ⓣⓞ.","verify2":"Ⓘⓕ ⓨⓞⓤ’ⓓ ⓛⓘⓚⓔ ⓣⓞ ⓤⓟⓛⓞⓐⓓ ⓞⓡ ⓟⓤⓑⓛⓘⓢⓗ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓐⓝⓓ ⓨⓞⓤ\'ⓡⓔ ⓐ ⓦⓞⓡⓚⓘⓝⓖ ⓙⓞⓤⓡⓝⓐⓛⓘⓢⓣ ⓞⓡ ⓞⓣⓗⓔⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓘⓝⓣⓔⓡⓔⓢⓣⓔⓓ ⓘⓝ ⓟⓤⓑⓛⓘⓢⓗⓘⓝⓖ ⓟⓡⓘⓜⓐⓡⓨ ⓢⓞⓤⓡⓒⓔ ⓜⓐⓣⓔⓡⓘⓐⓛⓢ ⓘⓝ ⓣⓗⓔ ⓟⓤⓑⓛⓘⓒ ⓘⓝⓣⓔⓡⓔⓢⓣ, ⓨⓞⓤ\'ⓛⓛ ⓝⓔⓔⓓ ⓣⓞ ⓗⓐⓥⓔ ⓨⓞⓤⓡ ⓐⓒⓒⓞⓤⓝⓣ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓞⓡ ⓐⓓⓓⓔⓓ ⓣⓞ ⓐ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ. Ⓣⓗⓘⓢ ⓘⓢ ⓐ ⓢⓘⓜⓟⓛⓔ ⓟⓡⓞⓒⓔⓢⓢ:","verify3":"Ⓕⓘⓡⓢⓣ, ⓢⓔⓔ ⓘⓕ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓐⓛⓡⓔⓐⓓⓨ ⓔⓧⓘⓢⓣⓢ ⓐⓝⓓ, ⓘⓕ ⓨⓞⓤ ⓕⓘⓝⓓ ⓘⓣ, ⓒⓛⓘⓒⓚ \\"Ⓡⓔⓠⓤⓔⓢⓣ ⓣⓞ Ⓙⓞⓘⓝ\\" ⓞⓝ ⓘⓣⓢ ⓟⓐⓖⓔ.","verify4":"Ⓘⓕ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ ⓗⓐⓢ ⓝⓞⓣ ⓑⓔⓔⓝ ⓥⓔⓡⓘⓕⓘⓔⓓ ⓨⓔⓣ, ⓞⓡ ⓘⓕ ⓨⓞⓤ\'ⓡⓔ ⓐ ⓕⓡⓔⓔⓛⓐⓝⓒⓔⓡ, ⓡⓔⓠⓤⓔⓢⓣ ⓥⓔⓡⓘⓕⓘⓒⓐⓣⓘⓞⓝ ⓗⓔⓡⓔ. Ⓡⓔⓠⓤⓔⓢⓣⓢ ⓤⓢⓤⓐⓛⓛⓨ ⓣⓐⓚⓔ ⓣⓦⓞ ⓑⓤⓢⓘⓝⓔⓢⓢ ⓓⓐⓨⓢ ⓣⓞ ⓟⓡⓞⓒⓔⓢⓢ.","uploadFirst":"Ⓤⓟⓛⓞⓐⓓ ⓨⓞⓤⓡ ⓕⓘⓡⓢⓣ ⓓⓞⓒⓤⓜⓔⓝⓣ","upload1":"Ⓤⓟⓛⓞⓐⓓ ⓐ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓕⓘⓛⓔ ⓣⓞ ⓖⓔⓣ ⓢⓣⓐⓡⓣⓔⓓ ⓤⓢⓘⓝⓖ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ. Ⓨⓞⓤ ⓒⓐⓝ ⓓⓡⓐⓖ ⓣⓗⓔ ⓕⓘⓛⓔ ⓘⓝⓣⓞ ⓣⓗⓘⓢ ⓦⓘⓝⓓⓞⓦ, ⓞⓡ ⓒⓛⓘⓒⓚ ⓞⓝ ⓣⓗⓔ ⓑⓛⓤⓔ “Ⓤⓟⓛⓞⓐⓓ” ⓑⓤⓣⓣⓞⓝ ⓐⓑⓞⓥⓔ.","upload2":"Ⓞⓝⓒⓔ ⓨⓞⓤ ⓤⓟⓛⓞⓐⓓ ⓐ ⓕⓘⓛⓔ, ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓦⓘⓛⓛ ⓟⓡⓞⓒⓔⓢⓢ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓐⓝⓓ ⓔⓧⓣⓡⓐⓒⓣ ⓘⓣⓢ ⓒⓞⓝⓣⓔⓝⓣⓢ. Ⓘⓣ ⓜⓐⓨ ⓣⓐⓚⓔ ⓐ ⓕⓔⓦ ⓜⓘⓝⓤⓣⓔⓢ ⓕⓞⓡ ⓣⓗⓘⓢ ⓣⓞ ⓒⓞⓜⓟⓛⓔⓣⓔ, ⓑⓤⓣ ⓞⓝⓒⓔ ⓘⓣ’ⓢ ⓓⓞⓝⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓑⓔ ⓞⓟⓣⓘⓜⓘⓩⓔⓓ ⓕⓞⓡ ⓐⓝⓐⓛⓨⓢⓘⓢ ⓐⓝⓓ ⓢⓗⓐⓡⓘⓝⓖ ⓞⓝ ⓣⓗⓔ ⓦⓔⓑ."},"paginator":{"of":"ⓞⓕ","document":"{n, plural, one {Ⓓⓞⓒⓤⓜⓔⓝⓣ} other {Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}"},"processingBar":{"doneProcessing":"Ⓓⓞⓝⓔ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ","processingDocuments":"Ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ {n, plural, one {ⓓⓞⓒⓤⓜⓔⓝⓣ} other {# ⓓⓞⓒⓤⓜⓔⓝⓣⓢ}}"},"searchBar":{"tips":"Ⓢⓔⓐⓡⓒⓗ ⓣⓘⓟⓢ: ⓐⓓⓓ ⓕⓘⓛⓣⓔⓡⓢ ⓑⓨ ⓣⓨⓟⓘⓝⓖ ⓤⓢⓔⓡ:, ⓟⓡⓞⓙⓔⓒⓣ:, ⓞⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ:, ⓔⓣⓒ. Ⓤⓢⓔ ⓢⓞⓡⓣ: ⓣⓞ ⓞⓡⓓⓔⓡ ⓡⓔⓢⓤⓛⓣⓢ.","learnMore":"Ⓛⓔⓐⓡⓝ ⓜⓞⓡⓔ","search":"Ⓢⓔⓐⓡⓒⓗ"},"searchLink":{"search":"Ⓢⓔⓐⓡⓒⓗ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓒⓞⓛⓛⓔⓒⓣⓘⓞⓝ"},"projects":{"header":"Ⓟⓡⓞⓙⓔⓒⓣⓢ","allDocuments":"Ⓐⓛⓛ Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","yourDocuments":"Ⓨⓞⓤⓡ Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","yourPubDocuments":"Ⓨⓞⓤⓡ Ⓟⓤⓑⓛⓘⓒ Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","orgDocuments":"{name}’ⓢ Ⓓⓞⓒⓤⓜⓔⓝⓣⓢ","newProject":"+ Ⓝⓔⓦ Ⓟⓡⓞⓙⓔⓒⓣ","createProject":"Ⓒⓡⓔⓐⓣⓔ ⓨⓞⓤⓡ ⓕⓘⓡⓢⓣ ⓟⓡⓞⓙⓔⓒⓣ ⓑⓨ ⓒⓛⓘⓒⓚⓘⓝⓖ “Ⓝⓔⓦ Ⓟⓡⓞⓙⓔⓒⓣ” ⓐⓑⓞⓥⓔ."},"uploadDialog":{"docUpload":"Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓤⓟⓛⓞⓐⓓ","docUploadProj":"Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓤⓟⓛⓞⓐⓓ ⓣⓞ {title}","beginUpload":"Ⓑⓔⓖⓘⓝ ⓤⓟⓛⓞⓐⓓ","pdfSizeWarning":"Ⓨⓞⓤ ⓒⓐⓝ ⓞⓝⓛⓨ ⓤⓟⓛⓞⓐⓓ ⓅⒹⒻ ⓕⓘⓛⓔⓢ ⓤⓝⓓⓔⓡ {size}.","nonPdfSizeWarning":"Ⓨⓞⓤ ⓒⓐⓝ ⓞⓝⓛⓨ ⓤⓟⓛⓞⓐⓓ ⓝⓞⓝ-ⓅⒹⒻ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓕⓘⓛⓔⓢ ⓤⓝⓓⓔⓡ {size}.","fileReady":"{n, plural, one {ⓕⓘⓛⓔ} other {ⓕⓘⓛⓔⓢ}} ⓡⓔⓐⓓⓨ ⓣⓞ ⓤⓟⓛⓞⓐⓓ","fileLimitWarning":"Ⓨⓞⓤ ⓒⓐⓝ ⓞⓝⓛⓨ ⓤⓟⓛⓞⓐⓓ {limit} ⓕⓘⓛⓔⓢ ⓐⓣ ⓞⓝⓒⓔ.","moreOptions":"Ⓜⓞⓡⓔ ⓞⓟⓣⓘⓞⓝⓢ","selectFiles":"+ Ⓢⓔⓛⓔⓒⓣ ⓕⓘⓛⓔⓢ","dragDrop":"Ⓓⓡⓐⓖ ⓐⓝⓓ ⓓⓡⓞⓟ ⓕⓘⓛⓔⓢ ⓗⓔⓡⓔ","publicMsg":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓑⓔ ⓟⓤⓑⓛⓘⓒⓛⓨ ⓥⓘⓢⓘⓑⓛⓔ.","collabMsg":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓑⓔ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓨⓞⓤⓡ ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ.","privateMsg":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓑⓔ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓨⓞⓤ ⓐⓛⓞⓝⓔ.","collabName":"Ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","submitting":"Ⓐⓛⓜⓞⓢⓣ ⓓⓞⓝⓔ... ⓢⓤⓑⓜⓘⓣⓣⓘⓝⓖ ⓤⓟⓛⓞⓐⓓⓔⓓ ⓕⓘⓛⓔⓢ ⓕⓞⓡ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ ({percent})","uploading":"Ⓤⓟⓛⓞⓐⓓⓘⓝⓖ ... ({uploaded}/{length})","gettingInfo":"Ⓖⓔⓣⓣⓘⓝⓖ ⓤⓟⓛⓞⓐⓓ ⓘⓝⓕⓞⓡⓜⓐⓣⓘⓞⓝ ({percent})","pleaseLeaveOpen":"Ⓟⓛⓔⓐⓢⓔ ⓛⓔⓐⓥⓔ ⓣⓗⓘⓢ ⓟⓐⓖⓔ ⓞⓟⓔⓝ ⓦⓗⓘⓛⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ ⓤⓟⓛⓞⓐⓓ. Ⓣⓗⓘⓢ ⓓⓘⓐⓛⓞⓖ ⓦⓘⓛⓛ ⓐⓤⓣⓞⓜⓐⓣⓘⓒⓐⓛⓛⓨ ⓒⓛⓞⓢⓔ ⓦⓗⓔⓝ ⓣⓗⓔⓨ ⓗⓐⓥⓔ ⓕⓘⓝⓘⓢⓗⓔⓓ ⓤⓟⓛⓞⓐⓓⓘⓝⓖ.","errorHeading":"Ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ ⓦⓗⓘⓛⓔ ⓤⓟⓛⓞⓐⓓⓘⓝⓖ","errorMsg":"Ⓦⓔ ⓕⓐⓘⓛⓔⓓ ⓣⓞ {errorMessage}. Ⓟⓛⓔⓐⓢⓔ ⓣⓡⓨ ⓐⓖⓐⓘⓝ ⓛⓐⓣⓔⓡ.","editDocInfo":"Ⓔⓓⓘⓣ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓝⓕⓞⓡⓜⓐⓣⓘⓞⓝ:","untitled":"Ⓤⓝⓣⓘⓣⓛⓔⓓ","uploadFiles":"Ⓤⓟⓛⓞⓐⓓ ⓐⓓⓓⓘⓣⓘⓞⓝⓐⓛ ⓕⓘⓛⓔⓢ","selectMore":"+ Ⓢⓔⓛⓔⓒⓣ ⓜⓞⓡⓔ ⓕⓘⓛⓔⓢ","dragDropMore":"Ⓓⓡⓐⓖ ⓐⓝⓓ ⓓⓡⓞⓟ ⓐⓓⓓⓘⓣⓘⓞⓝⓐⓛ ⓕⓘⓛⓔⓢ ⓗⓔⓡⓔ"},"embedNote":{"viewTheNote":"Ⓥⓘⓔⓦ ⓣⓗⓔ ⓝⓞⓣⓔ ‘{title}‘ ⓘⓝ ⓘⓣⓢ ⓞⓡⓘⓖⓘⓝⓐⓛ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓒⓞⓝⓣⓔⓧⓣ ⓞⓝ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓘⓝ ⓐ ⓝⓔⓦ ⓦⓘⓝⓓⓞⓦ ⓞⓡ ⓣⓐⓑ","viewDoc":"Ⓥⓘⓔⓦ ⓣⓗⓔ ⓔⓝⓣⓘⓡⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓣⓗ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ"},"embedPage":{"viewDoc":"Ⓥⓘⓔⓦ ⓔⓝⓣⓘⓡⓔ {title} ⓞⓝ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓘⓝ ⓝⓔⓦ ⓦⓘⓝⓓⓞⓦ ⓞⓡ ⓣⓐⓑ","pageOf":"Ⓟⓐⓖⓔ {page} ⓞⓕ {title}","gotoDocCloud":"Ⓖⓞ ⓣⓞ ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓘⓝ ⓝⓔⓦ ⓦⓘⓝⓓⓞⓦ ⓞⓡ ⓣⓐⓑ"},"entities":{"back":"Ⓑⓐⓒⓚ","page":"Ⓟⓐⓖⓔ","of":"ⓞⓕ","totalEntityResult":"{n, plural, one {# ⓣⓞⓣⓐⓛ ⓔⓝⓣⓘⓣⓨ ⓡⓔⓢⓤⓛⓣ} other {# ⓣⓞⓣⓐⓛ ⓔⓝⓣⓘⓣⓨ ⓡⓔⓢⓤⓛⓣⓢ}} ","filter":"Ⓕⓘⓛⓣⓔⓡ","applyFilters":"Ⓐⓟⓟⓛⓨ ⓕⓘⓛⓣⓔⓡⓢ","kind":"Ⓚⓘⓝⓓ","clear":"Ⓒⓛⓔⓐⓡ","person":"Ⓟⓔⓡⓢⓞⓝ","org":"Ⓞⓡⓖⓐⓝⓘⓩⓐⓣⓘⓞⓝ","location":"Ⓛⓞⓒⓐⓣⓘⓞⓝ","event":"Ⓔⓥⓔⓝⓣ","workOfArt":"Ⓦⓞⓡⓚ ⓞⓕ Ⓐⓡⓣ","consumerGood":"Ⓒⓞⓝⓢⓤⓜⓔⓡ Ⓖⓞⓞⓓ","address":"Ⓐⓓⓓⓡⓔⓢⓢ","date":"Ⓓⓐⓣⓔ","number":"Ⓝⓤⓜⓑⓔⓡ","phoneNumber":"Ⓟⓗⓞⓝⓔ Ⓝⓤⓜⓑⓔⓡ","price":"Ⓟⓡⓘⓒⓔ","unknown":"Ⓤⓝⓚⓝⓞⓦⓝ","other":"Ⓞⓣⓗⓔⓡ","occurrences":"Ⓞⓒⓒⓤⓡⓡⓔⓝⓒⓔⓢ","proper":"Ⓟⓡⓞⓟⓔⓡ","common":"Ⓒⓞⓜⓜⓞⓝ","advanced":"Ⓐⓓⓥⓐⓝⓒⓔⓓ","relevanceThreshold":"Ⓡⓔⓛⓔⓥⓐⓝⓒⓔ ⓣⓗⓡⓔⓢⓗⓞⓛⓓ:","knowledgeGraph":"Ⓚⓝⓞⓦⓛⓔⓓⓖⓔ ⓖⓡⓐⓟⓗ:","hasKG":"Ⓗⓐⓢ ⓐ ⓚⓝⓞⓦⓛⓔⓓⓖⓔ ⓖⓡⓐⓟⓗ ⒾⒹ","noKG":"Ⓓⓞⓔⓢ ⓝⓞⓣ ⓗⓐⓥⓔ ⓐ ⓚⓝⓞⓦⓛⓔⓓⓖⓔ ⓖⓡⓐⓟⓗ ⒾⒹ","wikiUrl":"Ⓦⓘⓚⓘⓟⓔⓓⓘⓐ ⓊⓇⓁ:","hasWiki":"Ⓗⓐⓢ ⓐ Ⓦⓘⓚⓘⓟⓔⓓⓘⓐ ⓊⓇⓁ","noWiki":"Ⓓⓞⓔⓢ ⓝⓞⓣ ⓗⓐⓥⓔ ⓐ Ⓦⓘⓚⓘⓟⓔⓓⓘⓐ ⓊⓇⓁ","occurrence":"{n, plural, zero {} one {# ⓞⓒⓒⓤⓡⓡⓔⓝⓒⓔ} other {# ⓞⓒⓒⓤⓡⓡⓔⓝⓒⓔⓢ}}","wikipedia":"Ⓦⓘⓚⓘⓟⓔⓓⓘⓐ","entityExtraction":"Ⓔⓝⓣⓘⓣⓨ ⓔⓧⓣⓡⓐⓒⓣⓘⓞⓝ ⓕⓞⓡ “{title}”","extractingEntities":"Ⓔⓧⓣⓡⓐⓒⓣⓘⓝⓖ ⓔⓝⓣⓘⓣⓘⓔⓢ...","welcome":"Ⓦⓔⓛⓒⓞⓜⓔ ⓣⓞ ⓔⓝⓣⓘⓣⓨ ⓔⓧⓣⓡⓐⓒⓣⓘⓞⓝ! Ⓣⓗⓘⓢ ⓕⓔⓐⓣⓤⓡⓔ ⓘⓢ ⓥⓔⓡⓨ ⓜⓤⓒⓗ ⓘⓝ ⓟⓡⓞⓖⓡⓔⓢⓢ ⓑⓤⓣ ⓦⓔ ⓦⓐⓝⓣ ⓘⓣ ⓘⓝ ⓨⓞⓤⓡ ⓗⓐⓝⓓⓢ ⓔⓐⓡⓛⓨ ⓣⓞ ⓦⓔⓛⓒⓞⓜⓔ ⓐⓝⓨ ⓕⓔⓔⓓⓑⓐⓒⓚ ⓨⓞⓤ ⓜⓘⓖⓗⓣ ⓗⓐⓥⓔ.","manual":"Ⓡⓘⓖⓗⓣ ⓝⓞⓦ ⓣⓗⓔ ⓟⓡⓞⓒⓔⓢⓢ ⓕⓞⓡ ⓔⓧⓣⓡⓐⓒⓣⓘⓝⓖ ⓔⓝⓣⓘⓣⓘⓔⓢ ⓘⓢ ⓜⓐⓝⓤⓐⓛ. Ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓗⓐⓢ ⓝⓞⓣ ⓗⓐⓓ ⓔⓝⓣⓘⓣⓘⓔⓢ ⓔⓧⓣⓡⓐⓒⓣⓔⓓ ⓨⓔⓣ, ⓢⓞ ⓒⓛⓘⓒⓚ ⓑⓔⓛⓞⓦ ⓣⓞ ⓖⓔⓣ ⓢⓣⓐⓡⓣⓔⓓ.","error":"Ⓐⓝ ⓤⓝⓔⓧⓟⓔⓒⓣⓔⓓ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ","extract":"Ⓔⓧⓣⓡⓐⓒⓣ ⓔⓝⓣⓘⓣⓘⓔⓢ","noEntities":"Ⓣⓗⓔⓡⓔ ⓐⓡⓔ ⓝⓞ ⓔⓝⓣⓘⓣⓘⓔⓢ. Ⓣⓗⓘⓢ ⓒⓞⓤⓛⓓ ⓗⓐⓟⓟⓔⓝ ⓘⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓓⓞⓔⓢⓝ’ⓣ ⓗⓐⓥⓔ ⓣⓔⓧⓣ, ⓘⓢ ⓝⓞⓝ-Ⓔⓝⓖⓛⓘⓢⓗ (ⓞⓝⓛⓨ Ⓔⓝⓖⓛⓘⓢⓗ ⓘⓢ ⓢⓤⓟⓟⓞⓡⓣⓔⓓ ⓕⓞⓡ ⓝⓞⓦ), ⓞⓡ ⓢⓞⓜⓔ ⓔⓡⓡⓞⓡ ⓞⓒⓒⓤⓡⓡⓔⓓ.","starting":"Ⓢⓣⓐⓡⓣⓘⓝⓖ ⓔⓧⓣⓐⓒⓣⓘⓞⓝ..."},"home":{"about":"ⒹⓞⓒⓤⓜⓔⓝⓣⒸⓛⓞⓤⓓ ⓘⓢ ⓐⓝ ⓐⓛⓛ-ⓘⓝ-ⓞⓝⓔ ⓟⓛⓐⓣⓕⓞⓡⓜ ⓕⓞⓡ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ: ⓤⓟⓛⓞⓐⓓ, ⓞⓡⓖⓐⓝⓘⓩⓔ, ⓐⓝⓐⓛⓨⓩⓔ, ⓐⓝⓝⓞⓣⓐⓣⓔ, ⓢⓔⓐⓡⓒⓗ, ⓐⓝⓓ ⓔⓜⓑⓔⓓ.","viewPublicDocs":"Ⓥⓘⓔⓦ ⓟⓤⓑⓛⓘⓒ ⓓⓞⓒⓤⓜⓔⓝⓣⓢ"},"annotation":{"title":"Ⓐⓝⓝⓞⓣⓐⓣⓘⓞⓝ Ⓣⓘⓣⓛⓔ","description":"Ⓐⓝⓝⓞⓣⓐⓣⓘⓞⓝ Ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ (ⓞⓟⓣⓘⓞⓝⓐⓛ)","unchanged":"Ⓝⓞⓣⓔ ⓡⓔⓜⓐⓘⓝⓢ ⓤⓝⓒⓗⓐⓝⓖⓔⓓ","noTitle":"Ⓔⓝⓣⓔⓡ ⓐ ⓣⓘⓣⓛⓔ ⓕⓞⓡ ⓣⓗⓔ ⓐⓝⓝⓞⓣⓐⓣⓘⓞⓝ","org":"Ⓣⓗⓘⓢ ⓝⓞⓣⓔ ⓘⓢ ⓞⓝⓛⓨ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓨⓞⓤ ⓐⓝⓓ ⓞⓣⓗⓔⓡⓢ ⓦⓘⓣⓗ ⓔⓓⓘⓣ ⓐⓒⓒⓔⓢⓢ ⓣⓞ ⓣⓗⓘⓢ ⓓⓞⓒⓤⓜⓔⓝⓣ","private":"Ⓣⓗⓘⓢ ⓟⓡⓘⓥⓐⓣⓔ ⓝⓞⓣⓔ ⓘⓢ ⓞⓝⓛⓨ ⓥⓘⓢⓘⓑⓛⓔ ⓣⓞ ⓨⓞⓤ","by":"Ⓐⓝⓝⓞⓣⓐⓣⓔⓓ ⓑⓨ {name}","byOrg":"Ⓐⓝⓝⓞⓣⓐⓣⓔⓓ ⓑⓨ {name}, {org}","addPageNote":"Ⓐⓓⓓ ⓟⓐⓖⓔ ⓝⓞⓣⓔ"},"viewDropdown":{"document":"Ⓓⓞⓒⓤⓜⓔⓝⓣ","plainText":"Ⓟⓛⓐⓘⓝ Ⓣⓔⓧⓣ","thumbnail":"Ⓣⓗⓤⓜⓑⓝⓐⓘⓛ","notes":"Ⓝⓞⓣⓔⓢ","search":"Ⓢⓔⓐⓡⓒⓗ Ⓡⓔⓢⓤⓛⓣⓢ"},"zoom":{"fitWidth":"Ⓕⓘⓣ ⓦⓘⓓⓣⓗ","fitHeight":"Ⓕⓘⓣ ⓗⓔⓘⓖⓗⓣ"},"titleHeader":{"contributedBy":"Ⓒⓞⓝⓣⓡⓘⓑⓤⓣⓔⓓ ⓑⓨ {name}"},"annotatePane":{"annotateDocument":"Ⓐⓝⓝⓞⓣⓐⓣⓔ Ⓓⓞⓒⓤⓜⓔⓝⓣ","desc":"Ⓗⓘⓖⓗⓛⓘⓖⓗⓣ ⓐ ⓟⓞⓡⓣⓘⓞⓝ ⓞⓕ ⓣⓗⓔ ⓟⓐⓖⓔ, ⓞⓡ ⓒⓛⓘⓒⓚ ⓑⓔⓣⓦⓔⓔⓝ ⓟⓐⓖⓔⓢ ⓣⓞ ⓒⓡⓔⓐⓣⓔ ⓐ ⓝⓞⓣⓔ."},"modifyPane":{"pagesSelected":"{n, plural, one {# Ⓟⓐⓖⓔ} other {# Ⓟⓐⓖⓔⓢ}} Ⓢⓔⓛⓔⓒⓣⓔⓓ","applyModifications":"Ⓐⓟⓟⓛⓨ Ⓜⓞⓓⓘⓕⓘⓒⓐⓣⓘⓞⓝⓢ","duplicate":"Ⓓⓤⓟⓛⓘⓒⓐⓣⓔ","move":"Ⓜⓞⓥⓔ","unselect":"Ⓤⓝⓢⓔⓛⓔⓒⓣ","remove":"Ⓡⓔⓜⓞⓥⓔ","insertPages":"Ⓘⓝⓢⓔⓡⓣ {n, plural, one {# Ⓟⓐⓖⓔ} other {# Ⓟⓐⓖⓔⓢ}}","pagesPending":"{n, plural, one {# Ⓟⓐⓖⓔ} other {# Ⓟⓐⓖⓔⓢ}} Ⓟⓔⓝⓓⓘⓝⓖ Ⓘⓝⓢⓔⓡⓣⓘⓞⓝ","insertBegin":"Ⓘⓝⓢⓔⓡⓣ {n, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}} ⓐⓣ ⓑⓔⓖⓘⓝⓝⓘⓝⓖ.","insertEnd":"Ⓘⓝⓢⓔⓡⓣ {n, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}} ⓐⓣ ⓔⓝⓓ.","insertBetween":"Ⓘⓝⓢⓔⓡⓣ {n, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}} ⓘⓝ ⓑⓔⓣⓦⓔⓔⓝ ⓟⓐⓖⓔ {p0} ⓐⓝⓓ {p1}.","click":"Ⓒⓛⓘⓒⓚ ⓘⓝ-ⓑⓔⓣⓦⓔⓔⓝ ⓟⓐⓖⓔⓢ ⓑⓔⓛⓞⓦ ⓣⓞ ⓜⓐⓡⓚ ⓦⓗⓔⓡⓔ ⓣⓞ ⓟⓐⓢⓣⓔ {n, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}}.","insert":"Ⓘⓝⓢⓔⓡⓣ","insertAtEnd":"Ⓘⓝⓢⓔⓡⓣ ⓐⓣ ⓔⓝⓓ","insertPosition":"Ⓘⓝⓢⓔⓡⓣ ⓟⓐⓖⓔⓢ ⓐⓣ ⓟⓞⓢⓘⓣⓘⓞⓝ","insertOtherDoc":"Ⓘⓝⓢⓔⓡⓣ ⓕⓡⓞⓜ ⓞⓣⓗⓔⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ","modifyPages":"Ⓜⓞⓓⓘⓕⓨ Ⓟⓐⓖⓔⓢ","select":"Ⓢⓔⓛⓔⓒⓣ ⓟⓐⓖⓔⓢ ⓑⓔⓛⓞⓦ ⓣⓞ ⓐⓟⓟⓛⓨ ⓜⓞⓓⓘⓕⓘⓒⓐⓣⓘⓞⓝⓢ (ⓟⓐⓖⓔ ⓡⓞⓣⓐⓣⓘⓞⓝ, ⓡⓔⓐⓡⓡⓐⓝⓖⓘⓝⓖ, ⓐⓝⓓ ⓓⓔⓛⓔⓣⓘⓞⓝ). Ⓒⓛⓘⓒⓚ ⓘⓝ-ⓑⓔⓣⓦⓔⓔⓝ ⓟⓐⓖⓔⓢ ⓣⓞ ⓘⓝⓢⓔⓡⓣ.","undo":"Ⓤⓝⓓⓞ","redo":"Ⓡⓔⓓⓞ"},"redactPane":{"redactDoc":"Ⓡⓔⓓⓐⓒⓣ Ⓓⓞⓒⓤⓜⓔⓝⓣ","desc":"Ⓒⓛⓘⓒⓚ ⓐⓝⓓ ⓓⓡⓐⓖ ⓣⓞ ⓓⓡⓐⓦ ⓐ ⓑⓛⓐⓒⓚ ⓡⓔⓒⓣⓐⓝⓖⓛⓔ ⓞⓥⓔⓡ ⓔⓐⓒⓗ ⓟⓞⓡⓣⓘⓞⓝ ⓞⓕ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓨⓞⓤ’ⓓ ⓛⓘⓚⓔ ⓣⓞ ⓡⓔⓓⓐⓒⓣ. Ⓐⓢⓢⓞⓒⓘⓐⓣⓔⓓ ⓣⓔⓧⓣ ⓦⓘⓛⓛ ⓑⓔ ⓡⓔⓜⓞⓥⓔⓓ ⓦⓗⓔⓝ ⓨⓞⓤ ⓢⓐⓥⓔ ⓨⓞⓤⓡ ⓡⓔⓓⓐⓒⓣⓘⓞⓝⓢ.","confirm":"Ⓒⓞⓝⓕⓘⓡⓜ Ⓡⓔⓓⓐⓒⓣⓘⓞⓝⓢ","undo":"Ⓤⓝⓓⓞ"},"searchPane":{"yourQuery":"Ⓨⓞⓤⓡ ⓠⓤⓔⓡⓨ {search} ⓦⓐⓢ ⓕⓞⓤⓝⓓ ⓞⓝ {n, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}}"},"selectNotePane":{"selectNote":"Ⓢⓔⓛⓔⓒⓣ ⓐ ⓝⓞⓣⓔ","desc":"Ⓢⓔⓛⓔⓒⓣ ⓣⓗⓔ ⓐⓝⓝⓞⓣⓐⓣⓘⓞⓝ ⓣⓗⓐⓣ ⓨⓞⓤ ⓦⓐⓝⓣ ⓣⓞ ⓢⓗⓐⓡⓔ."},"searchResults":{"resultPages":"{results, plural, one {# ⓡⓔⓢⓤⓛⓣ} other {# ⓡⓔⓢⓤⓛⓣⓢ}} ⓐⓒⓡⓞⓢⓢ {pages, plural, one {# ⓟⓐⓖⓔ} other {# ⓟⓐⓖⓔⓢ}}","noSearchResults":"Ⓝⓞ ⓢⓔⓐⓡⓒⓗ ⓡⓔⓢⓤⓛⓣⓢ. Ⓣⓡⓨ ⓐⓖⓐⓘⓝ ⓦⓘⓣⓗ ⓐ ⓑⓡⓞⓐⓓⓔⓡ ⓠⓤⓔⓡⓨ.","occurrences":"{n, plural, one {# ⓞⓒⓒⓤⓡⓡⓔⓝⓒⓔ} other {# ⓞⓒⓒⓤⓡⓡⓔⓝⓒⓔⓢ}}"},"sidebar":{"updating":"Ⓤⓟⓓⓐⓣⓘⓝⓖ ⓓⓞⓒⓤⓒⓜⓔⓝⓣ...","original":"Ⓞⓡⓘⓖⓘⓝⓐⓛ Ⓓⓞⓒⓤⓜⓔⓝⓣ (ⓅⒹⒻ) »","related":"Ⓡⓔⓛⓐⓣⓔⓓ Ⓐⓡⓣⓘⓒⓛⓔ »","contributed":"Ⓒⓞⓝⓣⓡⓘⓑⓤⓣⓔⓓ ⓑⓨ {name}","source":"Ⓢⓞⓤⓡⓒⓔ: {source}","actions":"Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓐⓒⓣⓘⓞⓝⓢ","share":"Ⓢⓗⓐⓡⓔ","shareDesc":"Ⓒⓡⓔⓐⓣⓔ ⓐⓝ ⓔⓜⓑⓔⓓ ⓞⓡ ⓢⓗⓐⓡⓔ ⓞⓝ ⓢⓞⓒⓘⓐⓛ ⓜⓔⓓⓘⓐ.","annotate":"Ⓐⓝⓝⓞⓣⓐⓣⓔ","annotateDesc":"Ⓜⓐⓚⓔ ⓐⓝⓝⓞⓣⓐⓣⓘⓞⓝⓢ ⓣⓞ ⓚⓔⓔⓟ ⓝⓞⓣⓔⓢ ⓞⓝ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ.","redact":"Ⓡⓔⓓⓐⓒⓣ","redactDesc":"Ⓒⓡⓔⓐⓣⓔ ⓡⓔⓓⓐⓒⓣⓘⓞⓝⓢ ⓞⓝ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓣⓞ ⓗⓘⓓⓔ ⓣⓔⓧⓣ. Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓛⓛ ⓡⓔⓟⓡⓞⓒⓔⓢⓢ ⓐⓕⓣⓔⓡⓦⓐⓡⓓⓢ.","modify":"Ⓜⓞⓓⓘⓕⓨ Ⓟⓐⓖⓔⓢ","modifyDesc":"Ⓡⓔⓐⓡⓡⓐⓝⓖⓔ, ⓡⓞⓣⓐⓣⓔ, ⓓⓔⓛⓔⓣⓔ, ⓘⓝⓢⓔⓡⓣ, ⓐⓝⓓ ⓢⓟⓛⓘⓣ ⓟⓐⓖⓔⓢ.","info":"Ⓔⓓⓘⓣ Ⓓⓞⓒⓤⓜⓔⓝⓣ Ⓘⓝⓕⓞ","infoDesc":"Ⓜⓞⓓⓘⓕⓨ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓝⓕⓞⓡⓜⓐⓣⓘⓞⓝ ⓛⓘⓚⓔ ⓓⓔⓢⓒⓡⓘⓟⓣⓘⓞⓝ ⓐⓝⓓ ⓡⓔⓛⓐⓣⓔⓓ ⓊⓇⓁ.","data":"Ⓔⓓⓘⓣ Ⓣⓐⓖⓢ ⓐⓝⓓ Ⓓⓐⓣⓐ","dataDesc":"Ⓐⓓⓓ ⓣⓐⓖⓢ ⓐⓝⓓ ⓚⓔⓨ/ⓥⓐⓛⓤⓔ ⓟⓐⓘⓡⓢ ⓣⓞ ⓒⓐⓣⓔⓖⓞⓡⓘⓩⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ.","sections":"Ⓔⓓⓘⓣ Ⓢⓔⓒⓣⓘⓞⓝⓢ","sectionsDesc":"Ⓐⓓⓓ ⓢⓔⓒⓣⓘⓞⓝⓢ ⓣⓞ ⓞⓡⓖⓐⓝⓘⓩⓔ ⓨⓞⓤⓡ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓦⓘⓣⓗ ⓐ ⓣⓐⓑⓛⓔ ⓞⓕ ⓒⓞⓝⓣⓔⓝⓣⓢ.","privateNote":"Ⓐⓓⓓ Ⓟⓡⓘⓥⓐⓣⓔ Ⓝⓞⓣⓔ","privateNoteDesc":"Ⓜⓐⓚⓔ ⓐⓝⓝⓞⓣⓐⓣⓘⓞⓝⓢ ⓣⓞ ⓚⓔⓔⓟ ⓝⓞⓣⓔⓢ ⓞⓝ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ."},"viewer":{"notFound":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓝⓞⓣ ⓕⓞⓤⓝⓓ","notFoundDesc":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓨⓞⓤ ⓡⓔⓠⓤⓔⓢⓣⓔⓓ ⓔⓘⓣⓗⓔⓡ ⓓⓞⓔⓢ ⓝⓞⓣ ⓔⓧⓘⓢⓣ ⓞⓡ ⓨⓞⓤ ⓛⓐⓒⓚ ⓟⓔⓡⓜⓘⓢⓢⓘⓞⓝ ⓣⓞ ⓐⓒⓒⓔⓢⓢ ⓘⓣ","processing":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓘⓢ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ","processingDesc":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓨⓞⓤ ⓡⓔⓠⓤⓔⓢⓣⓔⓓ ⓘⓢ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ ⓐⓝⓓ ⓦⓘⓛⓛ ⓐⓤⓣⓞⓜⓐⓣⓘⓒⓐⓛⓛⓨ ⓡⓔⓕⓡⓔⓢⓗ ⓦⓗⓔⓝ ⓘⓣ ⓘⓢ ⓡⓔⓐⓓⓨ","error":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓗⓐⓢ ⓔⓝⓒⓞⓤⓝⓣⓔⓡⓔⓓ ⓐⓝ ⓔⓡⓡⓞⓡ","errorDesc":"Ⓐ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ ⓔⓡⓡⓞⓡ ⓗⓐⓢ ⓑⓔⓔⓝ ⓔⓝⓒⓞⓤⓝⓣⓔⓡⓔⓓ ⓘⓝ ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓨⓞⓤ ⓡⓔⓠⓤⓔⓢⓣⓔⓓ","accessible":"Ⓓⓞⓒⓤⓜⓔⓝⓣ ⓝⓞⓣ ⓐⓒⓒⓔⓢⓢⓘⓑⓛⓔ","accessibleDesc":"Ⓣⓗⓔ ⓓⓞⓒⓤⓜⓔⓝⓣ ⓨⓞⓤ ⓡⓔⓠⓤⓔⓢⓣⓔⓓ ⓘⓢ ⓢⓣⓘⓛⓛ ⓟⓡⓞⓒⓔⓢⓢⓘⓝⓖ ⓞⓡ ⓨⓞⓤ ⓛⓐⓒⓚ ⓟⓔⓡⓜⓘⓢⓢⓘⓞⓝ ⓣⓞ ⓐⓒⓒⓔⓢⓢ ⓣⓞ ⓘⓣ"}}')}}]);
-./public/src_langs_json_fullwidth_json.a4ddebecaf3aa5255c27.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"Email address","loading":"Loading...","documentCloud":"DocumentCloud","home":"Home"},"homeTemplate":{"signedIn":"Signed in as {name}","signOut":"Sign out","signIn":"Sign in","signUp":"Sign up","goToApp":"Go to app"},"accessToggle":{"public":"Note will be visible to anyone with access to the document.","collaborator":"Note will be visible to anyone who can edit this document.","private":"Note will be visible to you alone.","publicName":"Public","collaboratorName":"Collaborator","privateName":"Private"},"accessIcon":{"private":"Private Access","organization":"Private to Your Organization","public":"Public Access","privateExplanation":"Only you can view this document","organizationExplanation":"Only members of your organization can view this document","publicExplanation":"Anyone can search and view this document"},"appearanceCustomizer":{"customizeAppearance":"Customize Appearance","hide":"Hide help text","show":"Show help text"},"appearanceDimension":{"responsive":"Automatic (default)","fixed":"Fixed"},"calendar":{"jan":"January","feb":"February","mar":"March","apr":"April","may":"May","jun":"June","jul":"July","aug":"August","sep":"September","oct":"October","nov":"November","dec":"December","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Cancel","delete":"Delete","done":"Done","edit":"Edit","remove":"Remove","save":"Save","create":"Create","ok":"Ok","update":"Update","dismiss":"Dismiss","continue":"Continue"},"dialogAccessDialog":{"changeAccess":"Change access for {n, plural, one {document} other {# documents}}","selectAccess":"Select an access level for the {n, plural, one {selected document} other {# selected documents}}","public":"Public access","publicDesc":"Anyone on the internet can search for and view the document.","verifiedHelp":"Only verified users or members of verified organizations can make uploaded documents public. If you're a journalist or otherwise work in publishing vetted materials to inform the public, learn more and request verification here.","privateToOrg":"You can’t change the access level to “Private to your organization” because {n, plural, one {this document is} other {one or more documents are}} associated with your individual account, not an organization. To add {n, plural, one {it} other {them}} to an organization, select {n, plural, one {it} other {them}} from the management view and click “Change Owner.” You can join or create an organization on this page.","private":"Private access","privateDesc":"Only people with explicit permission (via collaboration) have access.","organization":"Private to your organization","organizationDesc":"Only the people in your organization have access.","schedulePublication":"Schedule publication","scheduleHelp":"This document will be made public at the given date and time. Publication time is local{timezone}.","unchanged":"Access is unchanged. Select a different access level.","future":"Must select a time in the future","change":"Change"},"dialogCollaboratorDialog":{"confirm":"Confirm remove user","confirmMsg":"Proceeding will remove {name} from {title}. Do you wish to continue?","addCollaborators":"Add Collaborators","invite":"Put in the email of an existing DocumentCloud user below. If they don't have an account, have them register here for free, and then ask them to log in to DocumentCloud at least once.","admin":"Admin","view":"View","adminHelp":"Collaborators can edit this project and its documents","editHelp":"Collaborators can edit documents in this project","viewHelp":"Collaborators can view documents in this project","add":"Add","empty":"You have not yet added any collaborators to this project. Invite collaborators to grant other users access to the documents shared in this project. You can control whether collaborators have access to view/edit the project’s documents or be an admin with permissions to invite other users and edit the project itself.","manageCollaborators":"Manage Collaborators","name":"Name","access":"Access","you":"(you)"},"dialogDataDialog":{"confirm":"Confirm remove data point","removeMsg":"Proceeding will remove the {key}{value} data point from the specified documents. Do you wish to continue?","addData":"Add Data for {n, plural, one {Document} other {# Documents}}","tag":"Tag","value":"Value","key":"Key","keyValue":"Key / Value","tagInfo":"Add custom tags to categorize your documents.","eg":"e.g.","exampleTagReport":"report","exampleTagLawsuit":"lawsuit","exampleTagEmail":"email","keyValueInfo":"Add custom key / value pairs for precise categorization of your documents.","exampleKVState":"state:&nbsp;California","exampleKVYear":"year:&nbsp;2016","exampleKVType":"type:&nbsp;memo","enterTag":"Enter a tag","enterKey":"Enter a key","keyInvalid":"Keys can only contain letters, numbers, underscores (_), and dashes (-)","emptyMsg":"You have not yet added any data to the specified documents. Add tags and key/value pairs to categorize and organize your documents. You can filter and search on document data to give you powerful control over document management.","manageDocumentData":"Manage Document Data","valueUnchanged":"Value remains unchanged","kvCannotBeEmpty":"Key/value cannot be empty"},"dialogReprocessDialog":{"title":"Confirm reprocess","reprocessDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to reprocess page and image text. Do you wish to continue?","reprocessSingleDoc":"Proceeding will force the document to reprocess page and image text. Do you wish to continue?","confirm":"Reprocess"},"dialogDeleteDialog":{"title":"Confirm reprocess","deleteDocs":"Proceeding will permanently delete the {n, plural, one {selected document} other {# selected documents}}. Do you wish to continue?"},"dialogCancelProcessingDialog":{"title":"Cancel processing","deleteDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to stop processing. After processing has been stopped, an error will show after which you can “Force Reprocess” or delete the {n, plural, one {document} other {documents}} using the Edit menu. Do you wish to continue?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Staff-only info for selected {n, plural, one {document} other {# documents}}","id":"ID","title":"Title","actions":"Actions","debug":"Debug","viewErrors":"View errors","viewS3":"View in S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"On (default)","respOnHelp":"Fill the width of the article container (usually works best)","respOff":"Off","respOffHelp":"The document will fit the sizes specified below","width":"Width","widthAuto":"Will fill the available space if the document is set to responsive, otherwise defaults to 700px","widthFixed":"Set a maximum width if the document is responsive, or set a fixed size if not responsive","height":"Height","heightAuto":"The height is based on the size of the document, with no maximum size. If responsive, will be set to the height of the browser window minus 100px","heightFixed":"Set a maximum height if the document is responsive, or set a fixed size if not responsive","sidebarBehavior":"Sidebar behavior","sbResponsive":"Responsive (default)","sbResponsiveHelp":"Show sidebar automatically on large screens and hide on mobile devices. In embed mode, the sidebar will be hidden","hidden":"Hidden","visible":"Visible","visibleDefault":"Visible (default)","sbHiddenHelp":"Hide the sidebar by default","sbVisibleHelp":"Show the sidebar by default","titleBehavior":"Title behavior","tVisibleHelp":"Display the title and attribution in the header of the viewer","tHiddenHelp":"Hide the title in the header of the viewer (still visible in the sidebar)","pdfLink":"PDF link","plVisibleHelp":"Show a link to the raw PDF document in the sidebar","plHiddenHelp":"Hide the sidebar PDF link (file is still accessible if the URL is known)","fullscreenOption":"Fullscreen option","fsVisibleHelp":"Show a fullscreen icon in the bottom-right corner","fsHiddenHelp":"Hide the fullscreen option","textMode":"Text mode","tmVisibleHelp":"Show an option to view the document’s text in the view dropdown","tmHiddenHelp":"Hide text mode","contributedByFormat":"Contributed by format","cbfUserAndOrg":"User and org (default)","cbfUserAndOrgHelp":"Show a document’s attribution as the user name followed by the organization","cbfOrgOnly":"Org only","cbfOrgOnlyHelp":"Attribute the document to just the organization","share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article"},"dialogDocumentInformationDialog":{"editInformation":"Edit Information for {n, plural, one {document} other {# documents}}"},"dialogRedactDialog":{"title":"Confirm redactions","description":"Are you sure you wish to redact the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the redactions in place. This change is irreversible."},"dialogModifyDialog":{"title":"Apply modifications","description":"Are you sure you wish to modify the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the modifications. This change is irreversible.","closeTitle":"Confirm close","closeWarning":"You will lose all your unapplied modifications. Are you sure you want to proceed?"},"dialogDeleteNoteDialog":{"title":"Confirm delete","description":"Are you sure you wish to delete the current note?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirm delete","proceedingWillRemove":"Proceeding will remove the specified section (p. {page} {title}). Do you wish to continue?","editSections":"Edit Sections","manageSections":"Manage sections to organize your document with a table of contents.","pageAbbrevNo":"p. {n}","pageAbbrev":"p.","empty":"You have not added any sections","edit":"Edit the selected section","add":"Add a new section","title":"Title","missingTitle":"Please enter a title","updateTitle":"Enter a new title or page number","uniquePageNumber":"You must enter a unique page number","invalidPageNumber":"Page number is invalid"},"dialogEmbedDialog":{"updatingDocument":"Updating document...","makingPublic":"The document is currently being made public. This may take a minute or two.","wouldMakePublic":"Would you like to make this document public before sharing?","notPublic":"The document is not currently public. If you embed or link it, only you and collaborators will be able to view it until it is made public. Click below when you’re ready to publish this document to the public.","makePublic":"Make document public","leave":"Leave as is","selectShare":"Select share option","selectShareHelp":"Choose whether to share the entire document or just a page or note.","shareDoc":"Share entire document","shareDocHelp":"Link or embed the entire document. (This is the most commonly used share option.)","sharePage":"Share specific page","sharePageHelp":"Link or embed a single page of the document. Useful for highlighting a page excerpt.","shareNote":"Share specific note","shareNoteHelpHasNote":"Link or embed a note within the document. Useful for highlighting a region of a page.","shareNoteHelpNoNote":"Once you add notes to the document, use this feature to link or embed them."},"dialogErrorDialog":{"errorOccurred":"An error occurred","unexpectedErrorOccurred":"An unexpected error occurred","tryAgain":"Please try again later.","close":"Close","refresh":"Refresh"},"dialogNoteEmbedDialog":{"embedNote":"Embed a note of “{title}”","embedDesc":"Copy the HTML code to embed this note within an article or post:"},"dialogPageEmbedDialog":{"embedPage":"Embed a page of “{title}”","embedDesc":"Copy the HTML code to embed this page within an article or post:","selectPage":"Select the page to embed:","page":"Page {n} (currently visible)","otherPage":"Other page","enterPageNumber":"Enter the page number to embed:"},"dialogProjectAccessDialog":{"changeAccessFor":"Change access for {name}","selectAccess":"Select an access level below for {name} in {title}","adminAccess":"Admin Access","editAccess":"Edit Access","viewAccess":"View Access","adminHelp":"This collaborator can edit this project and its documents. The collaborator can invite users, delete users, and remove the project.","editHelp":"This collaborator can edit documents in this project but cannot edit the project itself.","viewHelp":"This collaborator can view documents in this project but cannot edit them or the project.","invalidAccess":"Access is already set to {access}. Select a different access level.","changeAccess":"Change access"},"dialogOwnerDialog":{"selectUser":"User must be selected","selectOrg":"Organization must be selected","changeOwner":"Change owner for {n, plural, one {document} other {# documents}}","accessWarning":"Warning: You may lost access to the specified {n, plural, one {document} other {# documents}} as a result of changing the document owner","user":"User:","filterUsers":"Type to filter users...","filterOrgs":"Type to filter organizations..."},"dialogProjectDialog":{"confirmDelete":"Confirm delete","deleteProject":"Are you sure you want to delete this project ({project})?","editProject":"Edit Project","createProject":"Create New Project","title":"Title...","projectDesc":"Project Description (optional)","manageCollabs":"Manage Collaborators","share":"Share / Embed Project","enterTitle":"Enter a title","changeTitle":"Change the title or description"},"dialogProjectEmbedDialog":{"share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article or post:","invalid":"Invalid project","cannotEmbed":"Cannot embed this project, as it does not appear to exist."},"htmlEditor":{"preview":"Preview:"},"image":{"error":"An error occurred. Try refreshing the page"},"omniselect":{"filter":"Type to filter language","noResults":"No results. Click to clear filter."},"shareOptions":{"errorText":"An unexpected error occurred. Please try again later.","copyHtml":"Copy HTML code","addShortcode":"Add this shortcode to your WordPress content —","pluginRequired":"plugin required","copyShortcode":"Copy shortcode","copyUrl":"Copy URL"},"specialMessage":{"contactUs":"Contact us with bug reports, questions, and suggestions."},"uploadOptions":{"documentLang":"Document language:","forceOcr":"Force OCR:"},"actionBar":{"selectDocs":"Select some documents to reveal edit actions","noPerms":"You do not have permission to edit all of the selected documents","editMenu":"Edit","projectsMenu":"Projects"},"authSection":{"help":"Help","language":"Language","tips":"Tips and Tricks","searchDocs":"Search Documentation","apiDocs":"API Documentation","emailUs":"Email Us","acctSettings":"Account Settings","signOut":"Sign out","changeOrg":"Change organization","personalAcct":"Personal Account","signIn":"Sign in"},"documents":{"yourDocuments":"Your Documents","searchResults":"Search Results","accessDocuments":"Your {access}Documents","nameDocuments":"{name}'s {access}Documents","allDocuments":"All {access}Documents","mustBeVerified":"You must be a verified journalist to upload documents","upload":"Upload","dropFile":"Drop file to upload"},"document":{"open":"Open","updating":"Updating document...","processing":"Processing","processingError":"An error occurred trying to process your document","remove":"Remove","improper":"Your document was uploaded improperly","project":"Project","totalMatchingPages":"{n} of {m} pages matching the query","showAll":"Show all","matchingPages":"{n} pages matching the query","pageAbbrev":"p.","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source"},"documentThumbnail":{"pages":"pages","loading":"Loading progress information..."},"mainContainer":{"error":"Error","errorMsg":"We could not reach the DocumentCloud server. Please try refreshing the page later.","refresh":"Refresh"},"editMenu":{"editDocInfo":"Edit Document Information","changeAccess":"Change Access","editDocData":"Edit Document Data","cancelProcessing":"Cancel Processing","forceReprocess":"Force Reprocess","entities":"Entities BETA","changeOwner":"Change Owner","delete":"Delete","diagnosticInfo":"Diagnostic Info"},"metaFields":{"defaultFieldInvalidText":"The document already has this {fieldName}","titleFieldTitle":"Title","titleFieldName":"name","titleFieldNameUppercase":"Name","titleFieldHeader":"Rename {n, plural, one {# document} other {# documents}}","titleFieldDescription":"Enter a name below for the {n, plural, one {selected document} other {# selected documents}}","titleFieldButton":"Rename","titleFieldInvalidSameName":"The document already has this name","titleFieldInvalidEmptyName":"Enter a valid name","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Edit source for {n, plural, one {# document} other {# documents}}","sourceFieldDescription":"Enter a source below for the {n, plural, one {selected document} other {# selected documents}}","sourceFieldButton":"Edit","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Edit description for {n, plural, one {# document} other {# documents}}","descriptionFieldDescription":"Enter the description below for the {n, plural, one {selected document} other {# selected documents}}","descriptionFieldButton":"Edit","relatedArticleFieldTitle":"Related Article URL","relatedArticleFieldName":"related article URL","relatedArticleFieldNameUppercase":"Related Article URL","relatedArticleFieldHeader":"Edit the related article URL for {n, plural, one {# document} other {# documents}}","relatedArticleFieldDescription":"Enter the related article URL below for the {n, plural, one {selected document} other {# selected documents}}","relatedArticleFieldButton":"Edit","publishedUrlFieldTitle":"Published URL","publishedUrlFieldName":"published URL","publishedUrlFieldNameUppercase":"Published URL","publishedUrlFieldHeader":"Edit the published URL for {n, plural, one {# document} other {# documents}}","publishedUrlFieldDescription":"Enter the published URL below for the {n, plural, one {selected document} other {# selected documents}}","publishedUrlFieldButton":"Edit"},"projectsMenu":{"newProject":"+ New Project","projMembership":"Project Membership","selectDocs":"Select documents to place them in projects","createProj":"Create a project to organize and share documents"},"noDocuments":{"noSearchResults":"No search results","queryNoResults":"Your search query returned no results. Try again with a broader search query.","welcome":"Welcome to DocumentCloud!","verify1":"Note that currently your account is not verified to upload. You can search through the public repository, organize documents you're interested in into projects, leave private notes, and collaborate on editing and annotating documents other users invite you to.","verify2":"If you’d like to upload or publish documents and you're a working journalist or other organization interested in publishing primary source materials in the public interest, you'll need to have your account verified or added to a verified organization. This is a simple process:","verify3":"First, see if your organization already exists and, if you find it, click \\"Request to Join\\" on its page.","verify4":"If your organization has not been verified yet, or if you're a freelancer, request verification here. Requests usually take two business days to process.","uploadFirst":"Upload your first document","upload1":"Upload a document file to get started using DocumentCloud. You can drag the file into this window, or click on the blue “Upload” button above.","upload2":"Once you upload a file, DocumentCloud will process the document and extract its contents. It may take a few minutes for this to complete, but once it’s done your document will be optimized for analysis and sharing on the web."},"paginator":{"of":"of","document":"{n, plural, one {Document} other {Documents}}"},"processingBar":{"doneProcessing":"Done processing","processingDocuments":"Processing {n, plural, one {document} other {# documents}}"},"searchBar":{"tips":"Search tips: add filters by typing user:, project:, or organization:, etc. Use sort: to order results.","learnMore":"Learn more","search":"Search"},"searchLink":{"search":"Search this document collection"},"projects":{"header":"Projects","allDocuments":"All Documents","yourDocuments":"Your Documents","yourPubDocuments":"Your Public Documents","orgDocuments":"{name}’s Documents","newProject":"+ New Project","createProject":"Create your first project by clicking “New Project” above."},"uploadDialog":{"docUpload":"Document Upload","docUploadProj":"Document Upload to {title}","beginUpload":"Begin upload","pdfSizeWarning":"You can only upload PDF files under {size}.","nonPdfSizeWarning":"You can only upload non-PDF document files under {size}.","fileReady":"{n, plural, one {file} other {files}} ready to upload","fileLimitWarning":"You can only upload {limit} files at once.","moreOptions":"More options","selectFiles":"+ Select files","dragDrop":"Drag and drop files here","publicMsg":"Document will be publicly visible.","collabMsg":"Document will be visible to your organization.","privateMsg":"Document will be visible to you alone.","collabName":"Organization","submitting":"Almost done... submitting uploaded files for processing ({percent})","uploading":"Uploading ... ({uploaded}/{length})","gettingInfo":"Getting upload information ({percent})","pleaseLeaveOpen":"Please leave this page open while your documents upload. This dialog will automatically close when they have finished uploading.","errorHeading":"Error occurred while uploading","errorMsg":"We failed to {errorMessage}. Please try again later.","editDocInfo":"Edit document information:","untitled":"Untitled","uploadFiles":"Upload additional files","selectMore":"+ Select more files","dragDropMore":"Drag and drop additional files here"},"embedNote":{"viewTheNote":"View the note ‘{title}‘ in its original document context on DocumentCloud in a new window or tab","viewDoc":"View the entire document with DocumentCloud"},"embedPage":{"viewDoc":"View entire {title} on DocumentCloud in new window or tab","pageOf":"Page {page} of {title}","gotoDocCloud":"Go to DocumentCloud in new window or tab"},"entities":{"back":"Back","page":"Page","of":"of","totalEntityResult":"{n, plural, one {# total entity result} other {# total entity results}} ","filter":"Filter","applyFilters":"Apply filters","kind":"Kind","clear":"Clear","person":"Person","org":"Organization","location":"Location","event":"Event","workOfArt":"Work of Art","consumerGood":"Consumer Good","address":"Address","date":"Date","number":"Number","phoneNumber":"Phone Number","price":"Price","unknown":"Unknown","other":"Other","occurrences":"Occurrences","proper":"Proper","common":"Common","advanced":"Advanced","relevanceThreshold":"Relevance threshold:","knowledgeGraph":"Knowledge graph:","hasKG":"Has a knowledge graph ID","noKG":"Does not have a knowledge graph ID","wikiUrl":"Wikipedia URL:","hasWiki":"Has a Wikipedia URL","noWiki":"Does not have a Wikipedia URL","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipedia","entityExtraction":"Entity extraction for “{title}”","extractingEntities":"Extracting entities...","welcome":"Welcome to entity extraction! This feature is very much in progress but we want it in your hands early to welcome any feedback you might have.","manual":"Right now the process for extracting entities is manual. This document has not had entities extracted yet, so click below to get started.","error":"An unexpected error occurred","extract":"Extract entities","noEntities":"There are no entities. This could happen if the document doesn’t have text, is non-English (only English is supported for now), or some error occurred.","starting":"Starting extaction..."},"home":{"about":"DocumentCloud is an all-in-one platform for documents: upload, organize, analyze, annotate, search, and embed.","viewPublicDocs":"View public documents"},"annotation":{"title":"Annotation Title","description":"Annotation Description (optional)","unchanged":"Note remains unchanged","noTitle":"Enter a title for the annotation","org":"This note is only visible to you and others with edit access to this document","private":"This private note is only visible to you","by":"Annotated by {name}","byOrg":"Annotated by {name}, {org}","addPageNote":"Add page note"},"viewDropdown":{"document":"Document","plainText":"Plain Text","thumbnail":"Thumbnail","notes":"Notes","search":"Search Results"},"zoom":{"fitWidth":"Fit width","fitHeight":"Fit height"},"titleHeader":{"contributedBy":"Contributed by {name}"},"annotatePane":{"annotateDocument":"Annotate Document","desc":"Highlight a portion of the page, or click between pages to create a note."},"modifyPane":{"pagesSelected":"{n, plural, one {# Page} other {# Pages}} Selected","applyModifications":"Apply Modifications","duplicate":"Duplicate","move":"Move","unselect":"Unselect","remove":"Remove","insertPages":"Insert {n, plural, one {# Page} other {# Pages}}","pagesPending":"{n, plural, one {# Page} other {# Pages}} Pending Insertion","insertBegin":"Insert {n, plural, one {# page} other {# pages}} at beginning.","insertEnd":"Insert {n, plural, one {# page} other {# pages}} at end.","insertBetween":"Insert {n, plural, one {# page} other {# pages}} in between page {p0} and {p1}.","click":"Click in-between pages below to mark where to paste {n, plural, one {# page} other {# pages}}.","insert":"Insert","insertAtEnd":"Insert at end","insertPosition":"Insert pages at position","insertOtherDoc":"Insert from other document","modifyPages":"Modify Pages","select":"Select pages below to apply modifications (page rotation, rearranging, and deletion). Click in-between pages to insert.","undo":"Undo","redo":"Redo"},"redactPane":{"redactDoc":"Redact Document","desc":"Click and drag to draw a black rectangle over each portion of the document you’d like to redact. Associated text will be removed when you save your redactions.","confirm":"Confirm Redactions","undo":"Undo"},"searchPane":{"yourQuery":"Your query {search} was found on {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Select a note","desc":"Select the annotation that you want to share."},"searchResults":{"resultPages":"{results, plural, one {# result} other {# results}} across {pages, plural, one {# page} other {# pages}}","noSearchResults":"No search results. Try again with a broader query.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Updating docucment...","original":"Original Document (PDF) »","related":"Related Article »","contributed":"Contributed by {name}","source":"Source: {source}","actions":"Document Actions","share":"Share","shareDesc":"Create an embed or share on social media.","annotate":"Annotate","annotateDesc":"Make annotations to keep notes on the document.","redact":"Redact","redactDesc":"Create redactions on the document to hide text. The document will reprocess afterwards.","modify":"Modify Pages","modifyDesc":"Rearrange, rotate, delete, insert, and split pages.","info":"Edit Document Info","infoDesc":"Modify document information like description and related URL.","data":"Edit Tags and Data","dataDesc":"Add tags and key/value pairs to categorize your document.","sections":"Edit Sections","sectionsDesc":"Add sections to organize your document with a table of contents.","privateNote":"Add Private Note","privateNoteDesc":"Make annotations to keep notes on the document."},"viewer":{"notFound":"Document not found","notFoundDesc":"The document you requested either does not exist or you lack permission to access it","processing":"Document is processing","processingDesc":"The document you requested is processing and will automatically refresh when it is ready","error":"Document has encountered an error","errorDesc":"A processing error has been encountered in the document you requested","accessible":"Document not accessible","accessibleDesc":"The document you requested is still processing or you lack permission to access to it"}}');
-./public/738.16b973e5f79ed66ba28d.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="8e1be884-a113-482e-ae0c-64578ead08f8",e._sentryDebugIdIdentifier="sentry-dbid-8e1be884-a113-482e-ae0c-64578ead08f8")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[738],{2869:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return AddOnListItem_svelte},g:function(){return pinned}});var internal=__webpack_require__(4234),store=__webpack_require__(8261),runtime_esm=__webpack_require__(6469),base=__webpack_require__(5364),session=__webpack_require__(9596),Pin_svelte=__webpack_require__(6666);function create_fragment(ctx){let button,pin,current,mounted,dispose;return pin=new Pin_svelte.Z({props:{title:ctx[4],size:ctx[0]}}),{c(){button=(0,internal.bGB)("button"),(0,internal.YCL)(pin.$$.fragment),(0,internal.Ljt)(button,"class","pin svelte-7k8afm"),(0,internal.Ljt)(button,"style",ctx[3]),(0,internal.VHj)(button,"active",ctx[1]),(0,internal.VHj)(button,"disabled",ctx[2])},m(target,anchor){(0,internal.$Tr)(target,button,anchor),(0,internal.yef)(pin,button,null),current=!0,mounted||(dispose=(0,internal.oLt)(button,"click",ctx[5]),mounted=!0)},p(ctx,[dirty]){const pin_changes={};16&dirty&&(pin_changes.title=ctx[4]),1&dirty&&(pin_changes.size=ctx[0]),pin.$set(pin_changes),(!current||8&dirty)&&(0,internal.Ljt)(button,"style",ctx[3]),(!current||2&dirty)&&(0,internal.VHj)(button,"active",ctx[1]),(!current||4&dirty)&&(0,internal.VHj)(button,"disabled",ctx[2])},i(local){current||((0,internal.Ui)(pin.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(pin.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(button),(0,internal.vpE)(pin),mounted=!1,dispose()}}}function instance($$self,$$props,$$invalidate){let title,cssVarStyles,{size:size=1}=$$props,{active:active=!1}=$$props,{disabled:disabled=!1}=$$props;return $$self.$$set=$$props=>{"size"in $$props&&$$invalidate(0,size=$$props.size),"active"in $$props&&$$invalidate(1,active=$$props.active),"disabled"in $$props&&$$invalidate(2,disabled=$$props.disabled)},$$self.$$.update=()=>{6&$$self.$$.dirty&&$$invalidate(4,title=disabled?"Pinning is disabled":active?"Click to Unpin":"Click to Pin"),1&$$self.$$.dirty&&$$invalidate(3,cssVarStyles=`--padding:${.25*size}em; --border-radius:${4*size}px;`)},[size,active,disabled,cssVarStyles,title,function(event){internal.cKT.call(this,$$self,event)}]}class Pin_1 extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{size:0,active:1,disabled:2})}}var common_Pin_svelte=Pin_1,string=__webpack_require__(3581);function Popularity_svelte_create_fragment(ctx){let div,span0,svg,title,t0,path,t1,span1,t2,div_title_value,t0_value=ctx[1]("addonBrowserDialog.usage")+"",t2_value=(0,string.pF)(ctx[0],1)+"";return{c(){div=(0,internal.bGB)("div"),span0=(0,internal.bGB)("span"),svg=(0,internal.bi5)("svg"),title=(0,internal.bi5)("title"),t0=(0,internal.fLW)(t0_value),path=(0,internal.bi5)("path"),t1=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),t2=(0,internal.fLW)(t2_value),(0,internal.Ljt)(path,"d","M12.0007811,5 C11.4477282,5 11.0009113,4.553125 11.0009113,4 C11.0009113,3.446875 11.4477282,3 12.0007811,3 L17.0001302,3 C17.5531832,3 18,3.446875 18,4 L18,9 C18,9.553125 17.5531832,10 17.0001302,10 C16.4470772,10 16.0002604,9.553125 16.0002604,9 L16.0002604,6.415625 L10.7071996,11.70625 C10.3166254,12.096875 9.68233303,12.096875 9.29175889,11.70625 L6.0015623,8.415625 L1.70837131,12.70625 C1.31779716,13.096875 0.683504752,13.096875 0.292930608,12.70625 C-0.097643536,12.315625 -0.097643536,11.68125 0.292930608,11.290625 L5.29227965,6.290625 C5.6828538,5.9 6.3171462,5.9 6.70772035,6.290625 L10.0010415,9.584375 L14.5848197,5 L12.0007811,5 Z"),(0,internal.Ljt)(path,"fill-rule","nonzero"),(0,internal.Ljt)(svg,"width","18px"),(0,internal.Ljt)(svg,"height","16px"),(0,internal.Ljt)(svg,"viewBox","0 0 18 16"),(0,internal.Ljt)(svg,"class","svelte-rk218i"),(0,internal.Ljt)(span0,"class","icon svelte-rk218i"),(0,internal.Ljt)(span1,"class","count"),(0,internal.Ljt)(div,"class","container svelte-rk218i"),(0,internal.Ljt)(div,"title",div_title_value=ctx[0].toString())},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,span0),(0,internal.R3I)(span0,svg),(0,internal.R3I)(svg,title),(0,internal.R3I)(title,t0),(0,internal.R3I)(svg,path),(0,internal.R3I)(div,t1),(0,internal.R3I)(div,span1),(0,internal.R3I)(span1,t2)},p(ctx,[dirty]){2&dirty&&t0_value!==(t0_value=ctx[1]("addonBrowserDialog.usage")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=(0,string.pF)(ctx[0],1)+"")&&(0,internal.rTO)(t2,t2_value),1&dirty&&div_title_value!==(div_title_value=ctx[0].toString())&&(0,internal.Ljt)(div,"title",div_title_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div)}}}function Popularity_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));let{useCount:useCount}=$$props;return $$self.$$set=$$props=>{"useCount"in $$props&&$$invalidate(0,useCount=$$props.useCount)},[useCount,$_]}class Popularity extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Popularity_svelte_instance,Popularity_svelte_create_fragment,internal.N8,{useCount:0})}}var Popularity_svelte=Popularity;function create_if_block_2(ctx){let p,a,t,a_href_value,a_title_value,t_value=ctx[0].author.name+"";return{c(){p=(0,internal.bGB)("p"),a=(0,internal.bGB)("a"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(a,"href",a_href_value="http://github.com/"+ctx[0].repository),(0,internal.Ljt)(a,"target","_blank"),(0,internal.Ljt)(a,"rel","noopener noreferrer"),(0,internal.Ljt)(a,"title",a_title_value=ctx[3]("addonBrowserDialog.viewsource")),(0,internal.Ljt)(a,"class","svelte-1xqbc4m"),(0,internal.Ljt)(p,"class","author svelte-1xqbc4m")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,a),(0,internal.R3I)(a,t)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].author.name+"")&&(0,internal.rTO)(t,t_value),1&dirty&&a_href_value!==(a_href_value="http://github.com/"+ctx[0].repository)&&(0,internal.Ljt)(a,"href",a_href_value),8&dirty&&a_title_value!==(a_title_value=ctx[3]("addonBrowserDialog.viewsource"))&&(0,internal.Ljt)(a,"title",a_title_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function create_if_block_1(ctx){let addonpopularity,current;return addonpopularity=new Popularity_svelte({props:{useCount:ctx[0].usage}}),{c(){(0,internal.YCL)(addonpopularity.$$.fragment)},m(target,anchor){(0,internal.yef)(addonpopularity,target,anchor),current=!0},p(ctx,dirty){const addonpopularity_changes={};1&dirty&&(addonpopularity_changes.useCount=ctx[0].usage),addonpopularity.$set(addonpopularity_changes)},i(local){current||((0,internal.Ui)(addonpopularity.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(addonpopularity.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(addonpopularity,detaching)}}}function create_if_block(ctx){let div;return{c(){div=(0,internal.bGB)("div"),(0,internal.Ljt)(div,"class","description svelte-1xqbc4m")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),div.innerHTML=ctx[2]},p(ctx,dirty){4&dirty&&(div.innerHTML=ctx[2])},d(detaching){detaching&&(0,internal.ogt)(div)}}}function AddOnListItem_svelte_create_fragment(ctx){let a,div4,div3,div0,pin,t0,div1,h3,t1,t2,div2,t3,t4,div4_id_value,current,t1_value=ctx[0].name+"";pin=new common_Pin_svelte({props:{active:ctx[0].active}}),pin.$on("click",ctx[4]);let if_block0=ctx[0]?.author?.name&&create_if_block_2(ctx),if_block1=ctx[0].usage&&create_if_block_1(ctx),if_block2=ctx[2]&&create_if_block(ctx);return{c(){a=(0,internal.bGB)("a"),div4=(0,internal.bGB)("div"),div3=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),(0,internal.YCL)(pin.$$.fragment),t0=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),h3=(0,internal.bGB)("h3"),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t3=(0,internal.DhX)(),if_block1&&if_block1.c(),t4=(0,internal.DhX)(),if_block2&&if_block2.c(),(0,internal.Ljt)(div0,"class","center-self svelte-1xqbc4m"),(0,internal.Ljt)(h3,"class","addon-name svelte-1xqbc4m"),(0,internal.Ljt)(div1,"class","stretch svelte-1xqbc4m"),(0,internal.Ljt)(div2,"class","metadata svelte-1xqbc4m"),(0,internal.Ljt)(div3,"class","top-row svelte-1xqbc4m"),(0,internal.Ljt)(div4,"class","container svelte-1xqbc4m"),(0,internal.Ljt)(div4,"id",div4_id_value=ctx[0].repository),(0,internal.Ljt)(a,"class","addon-link svelte-1xqbc4m"),(0,internal.Ljt)(a,"href",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,a,anchor),(0,internal.R3I)(a,div4),(0,internal.R3I)(div4,div3),(0,internal.R3I)(div3,div0),(0,internal.yef)(pin,div0,null),(0,internal.R3I)(div3,t0),(0,internal.R3I)(div3,div1),(0,internal.R3I)(div1,h3),(0,internal.R3I)(h3,t1),(0,internal.R3I)(div3,t2),(0,internal.R3I)(div3,div2),if_block0&&if_block0.m(div2,null),(0,internal.R3I)(div2,t3),if_block1&&if_block1.m(div2,null),(0,internal.R3I)(div4,t4),if_block2&&if_block2.m(div4,null),current=!0},p(ctx,[dirty]){const pin_changes={};1&dirty&&(pin_changes.active=ctx[0].active),pin.$set(pin_changes),(!current||1&dirty)&&t1_value!==(t1_value=ctx[0].name+"")&&(0,internal.rTO)(t1,t1_value),ctx[0]?.author?.name?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_2(ctx),if_block0.c(),if_block0.m(div2,t3)):if_block0&&(if_block0.d(1),if_block0=null),ctx[0].usage?if_block1?(if_block1.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=create_if_block_1(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div2,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),ctx[2]?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block(ctx),if_block2.c(),if_block2.m(div4,null)):if_block2&&(if_block2.d(1),if_block2=null),(!current||1&dirty&&div4_id_value!==(div4_id_value=ctx[0].repository))&&(0,internal.Ljt)(div4,"id",div4_id_value),(!current||2&dirty)&&(0,internal.Ljt)(a,"href",ctx[1])},i(local){current||((0,internal.Ui)(pin.$$.fragment,local),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(pin.$$.fragment,local),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(a),(0,internal.vpE)(pin),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}const pinned=(0,store.fZ)([]);function AddOnListItem_svelte_instance($$self,$$props,$$invalidate){let endpoint,description,url,$pinned,$_,$$unsubscribe_pinned=internal.ZTd;(0,internal.FIv)($$self,pinned,($$value=>$$invalidate(6,$pinned=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value))),$$self.$$.on_destroy.push((()=>$$unsubscribe_pinned()));let{addon:addon}=$$props;return $$self.$$set=$$props=>{"addon"in $$props&&$$invalidate(0,addon=$$props.addon)},$$self.$$.update=()=>{1&$$self.$$.dirty&&(addon?.author||$$invalidate(0,addon.author={name:addon?.repository?.split("/")[0]},addon)),1&$$self.$$.dirty&&(endpoint=new URL(`/api/addons/${addon.id}/`,base.t)),1&$$self.$$.dirty&&$$invalidate(2,description=addon.parameters?.description),1&$$self.$$.dirty&&$$invalidate(1,url=`#add-ons/${addon.repository}`)},[addon,url,description,$_,async function(event){event.preventDefault();const options={credentials:"include",method:"PATCH",headers:{"X-CSRFToken":(0,session._V)(),"Content-type":"application/json"}};$$invalidate(0,addon.active=!addon.active,addon);const resp=await fetch(endpoint,{...options,body:JSON.stringify({active:addon.active})}).catch((err=>($$invalidate(0,addon.active=!addon.active,addon),{ok:!1,statusText:String(err)})));resp.ok||($$invalidate(0,addon.active=!addon.active,addon),console.error(`Problem updating add-on: ${resp.statusText}`)),(0,internal.fxP)(pinned,$pinned=addon.active?[...$pinned,addon]:$pinned.filter((a=>a.id!==addon.id)),$pinned)}]}class AddOnListItem extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AddOnListItem_svelte_instance,AddOnListItem_svelte_create_fragment,internal.N8,{addon:0})}}var AddOnListItem_svelte=AddOnListItem},1195:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Or:function(){return runs}});var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),svelte_store__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(8261),svelte_i18n__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(6469),_common_Progress_svelte__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(5242),_common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(7120),_api_base_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(5364),_api_session_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(9596);function create_else_block_3(ctx){let t,t_value=ctx[0].addon.name+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].addon.name+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_9(ctx){let t,t_value=date_format(ctx[0].created_at)+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=date_format(ctx[0].created_at)+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_4(ctx){let progress,t0,span,button,t1,current_block_type_index,if_block,if_block_anchor,current;progress=new _common_Progress_svelte__WEBPACK_IMPORTED_MODULE_3__.Z({props:{progress:ctx[5]?1:ctx[0].progress/100,initializing:0==ctx[0].progress&&!ctx[5],compact:0==ctx[0].progress&&!ctx[5],failure:ctx[6]}}),button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:ctx[6],$$slots:{default:[create_default_slot_5]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[2]);const if_block_creators=[create_if_block_5,create_else_block_1],if_blocks=[];function select_block_type_1(ctx,dirty){return ctx[5]?0:1}return current_block_type_index=select_block_type_1(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(progress.$$.fragment),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","dismiss svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(progress,target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t0,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t1,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const progress_changes={};33&dirty&&(progress_changes.progress=ctx[5]?1:ctx[0].progress/100),33&dirty&&(progress_changes.initializing=0==ctx[0].progress&&!ctx[5]),33&dirty&&(progress_changes.compact=0==ctx[0].progress&&!ctx[5]),64&dirty&&(progress_changes.failure=ctx[6]),progress.$set(progress_changes);const button_changes={};64&dirty&&(button_changes.danger=ctx[6]),131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(progress.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(progress.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(progress,detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t0),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t1),if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_default_slot_5(ctx){let t,t_value=ctx[8]("dialog.dismiss")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.dismiss")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_else_block_1(ctx){let span,show_if,current_block_type_index,if_block,current;const if_block_creators=[create_if_block_8,create_else_block_2],if_blocks=[];function select_block_type_3(ctx,dirty){return 129&dirty&&(show_if=null),null==show_if&&(show_if=!!ctx[7].includes(ctx[0].uuid)),show_if?0:1}return current_block_type_index=select_block_type_3(ctx,-1),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","cancel")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),if_blocks[current_block_type_index].m(span,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_3(ctx,dirty),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),if_blocks[current_block_type_index].d()}}}function create_if_block_5(ctx){let span,button0,t0,button1,t1,current;button0=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,secondary:1!==ctx[0].rating,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),button0.$on("click",ctx[10]),button1=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,secondary:-1!==ctx[0].rating,$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),button1.$on("click",ctx[11]);let if_block=0!==ctx[0].rating&&create_if_block_6(ctx);return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button0.$$.fragment),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button1.$$.fragment),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block&&if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","rate svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button0,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button1,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t1),if_block&&if_block.m(span,null),current=!0},p(ctx,dirty){const button0_changes={};1&dirty&&(button0_changes.secondary=1!==ctx[0].rating),131072&dirty&&(button0_changes.$$scope={dirty:dirty,ctx:ctx}),button0.$set(button0_changes);const button1_changes={};1&dirty&&(button1_changes.secondary=-1!==ctx[0].rating),131072&dirty&&(button1_changes.$$scope={dirty:dirty,ctx:ctx}),button1.$set(button1_changes),0!==ctx[0].rating?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1)):(if_block=create_if_block_6(ctx),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null)):if_block&&((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block,1,1,(()=>{if_block=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)())},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button0.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button1.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button0.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button1.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button1),if_block&&if_block.d()}}}function create_else_block_2(ctx){let button,current;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:!0,$$slots:{default:[create_default_slot_4]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[3]),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching)}}}function create_if_block_8(ctx){let button,current;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:!0,disabled:!0,$$slots:{default:[create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching)}}}function create_default_slot_4(ctx){let t,t_value=ctx[8]("dialog.cancel")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.cancel")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_3(ctx){let t,t_value=ctx[8]("dialog.cancelling")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.cancelling")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_2(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("👍")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_1(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("👎")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_6(ctx){let span,current_block_type_index,if_block,current;const if_block_creators=[create_if_block_7,create_else_block],if_blocks=[];function select_block_type_2(ctx,dirty){return""===ctx[0].comment?0:1}return current_block_type_index=select_block_type_2(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","info processingText message comment svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"compact",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),if_blocks[current_block_type_index].m(span,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_2(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null)),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"compact",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),if_blocks[current_block_type_index].d()}}}function create_else_block(ctx){let span,t,t_value=ctx[8]("addonProgress.thanks")+"";return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("addonProgress.thanks")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_if_block_7(ctx){let input,input_placeholder_value,t,button,current,mounted,dispose;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[12]),{c(){input=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("input"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"placeholder",input_placeholder_value=ctx[8]("addonProgress.feedback")),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"maxlength","255")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,input,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.BmG)(input,ctx[4]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0,mounted||(dispose=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.oLt)(input,"input",ctx[13]),mounted=!0)},p(ctx,dirty){(!current||256&dirty&&input_placeholder_value!==(input_placeholder_value=ctx[8]("addonProgress.feedback")))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"placeholder",input_placeholder_value),16&dirty&&input.value!==ctx[4]&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.BmG)(input,ctx[4]);const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(input),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching),mounted=!1,dispose()}}}function create_default_slot(ctx){let t,t_value=ctx[8]("dialog.submit")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.submit")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block(ctx){let div,t0,t1,if_block0=ctx[0].message&&create_if_block_3(ctx),if_block1=ctx[0].message&&ctx[0].file_url&&create_if_block_2(ctx),if_block2=ctx[0].file_url&&create_if_block_1(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0&&if_block0.c(),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","info message processingText svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"compact",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t1),if_block2&&if_block2.m(div,null)},p(ctx,dirty){ctx[0].message?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_3(ctx),if_block0.c(),if_block0.m(div,t0)):if_block0&&(if_block0.d(1),if_block0=null),ctx[0].message&&ctx[0].file_url?if_block1||(if_block1=create_if_block_2(ctx),if_block1.c(),if_block1.m(div,t1)):if_block1&&(if_block1.d(1),if_block1=null),ctx[0].file_url?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_1(ctx),if_block2.c(),if_block2.m(div,null)):if_block2&&(if_block2.d(1),if_block2=null),2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"compact",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_3(ctx){let t,t_value=ctx[0].message+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].message+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_2(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("-")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_1(ctx){let a,t,a_href_value,t_value=ctx[8]("addonProgress.download")+"";return{c(){a=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("a"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value=ctx[0].file_url),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"class","svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,a,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(a,t)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("addonProgress.download")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value),1&dirty&&a_href_value!==(a_href_value=ctx[0].file_url)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(a)}}}function create_fragment(ctx){let div1,div0,t0,t1,t2,t3,div1_class_value,current,t1_value=ctx[9](ctx[0].status)+"";function select_block_type(ctx,dirty){return ctx[1]?create_if_block_9:create_else_block_3}let current_block_type=select_block_type(ctx),if_block0=current_block_type(ctx),if_block1=!ctx[1]&&create_if_block_4(ctx),if_block2=(ctx[0].message||ctx[0].file_url)&&create_if_block(ctx);return{c(){div1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),div0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0.c(),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("\n - "),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t1_value),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div0,"class","info processingText svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div0,"compact",ctx[1]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div1,"class",div1_class_value="addonRun "+ctx[0].status+" svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div1,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,div0),if_block0.m(div0,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div0,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div0,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,t2),if_block1&&if_block1.m(div1,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,t3),if_block2&&if_block2.m(div1,null),current=!0},p(ctx,[dirty]){current_block_type===(current_block_type=select_block_type(ctx))&&if_block0?if_block0.p(ctx,dirty):(if_block0.d(1),if_block0=current_block_type(ctx),if_block0&&(if_block0.c(),if_block0.m(div0,t0))),(!current||1&dirty)&&t1_value!==(t1_value=ctx[9](ctx[0].status)+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t1,t1_value),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div0,"compact",ctx[1]),ctx[1]?if_block1&&((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)()):if_block1?(if_block1.p(ctx,dirty),2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1,1)):(if_block1=create_if_block_4(ctx),if_block1.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1,1),if_block1.m(div1,t3)),ctx[0].message||ctx[0].file_url?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block(ctx),if_block2.c(),if_block2.m(div1,null)):if_block2&&(if_block2.d(1),if_block2=null),(!current||1&dirty&&div1_class_value!==(div1_class_value="addonRun "+ctx[0].status+" svelte-56sm9o"))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div1,"class",div1_class_value)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block1),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div1),if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}const runs=(0,svelte_store__WEBPACK_IMPORTED_MODULE_1__.fZ)([]),cancelled=(0,svelte_store__WEBPACK_IMPORTED_MODULE_1__.fZ)([]);function date_format(s){return new Date(s).toLocaleString()}function instance($$self,$$props,$$invalidate){let failure,done,$cancelled,$runs,$_,$$unsubscribe_cancelled=svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,$$unsubscribe_runs=svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,cancelled,($$value=>$$invalidate(7,$cancelled=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,runs,($$value=>$$invalidate(14,$runs=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,svelte_i18n__WEBPACK_IMPORTED_MODULE_2__._,($$value=>$$invalidate(8,$_=$$value))),$$self.$$.on_destroy.push((()=>$$unsubscribe_cancelled())),$$self.$$.on_destroy.push((()=>$$unsubscribe_runs()));let{run:run}=$$props,{compact:compact=!1}=$$props,comment="";async function update(params,method="PATCH"){const endpoint=new URL(`/api/addon_runs/${run.uuid}/`,_api_base_js__WEBPACK_IMPORTED_MODULE_6__.t);"DELETE"!==method&&endpoint.searchParams.set("expand","addon");const options={credentials:"include",headers:{"X-CSRFToken":(0,_api_session_js__WEBPACK_IMPORTED_MODULE_5__._V)()},method:method};"DELETE"!==method&&(options.body=JSON.stringify(params),options.headers["Content-type"]="application/json");const resp=await fetch(endpoint,options);if(!resp.ok)throw new Error(resp.statusText);if("DELETE"!==method)return resp.json()}async function rate(val){const newVal=run.rating===val?0:val;$$invalidate(0,run=await update({rating:newVal}))}return $$self.$$set=$$props=>{"run"in $$props&&$$invalidate(0,run=$$props.run),"compact"in $$props&&$$invalidate(1,compact=$$props.compact)},$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(6,failure="failure"===run.status),1&$$self.$$.dirty&&$$invalidate(5,done="queued"!==run.status&&"in_progress"!==run.status)},[run,compact,async function(){$$invalidate(0,run=await update({dismissed:!0})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fxP)(runs,$runs=$runs.filter((r=>r.uuid!==run.uuid)),$runs)},async function(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fxP)(cancelled,$cancelled=[...$cancelled,run.uuid],$cancelled),await update({},"DELETE")},comment,done,failure,$cancelled,$_,function(status){return"cancelled"===status?$_("addonProgress.timedOut"):status.split("_").map((s=>s.charAt(0).toUpperCase()+s.slice(1))).join(" ")},function(){rate(1)},function(){rate(-1)},async function(){$$invalidate(0,run=await update({comment:comment}))},function(){comment=this.value,$$invalidate(4,comment)}]}class AddonRun extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{run:0,compact:1,dismiss:2,cancel:3})}get dismiss(){return this.$$.ctx[2]}get cancel(){return this.$$.ctx[3]}}__webpack_exports__.ZP=AddonRun},4386:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),_router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(3566),_manager_orgsAndUsers_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5340),_search_search_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(6046),_router_router_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(3356),_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(393),_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5__);function create_else_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[0],inlineBlock:!0,toUrl:ctx[3],$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty&&(link_changes.newPage=ctx[0]),8&dirty&&(link_changes.toUrl=ctx[3]),34&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_if_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[0],inlineBlock:!0,toUrl:ctx[3],$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty&&(link_changes.newPage=ctx[0]),8&dirty&&(link_changes.toUrl=ctx[3]),34&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_default_slot_1(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","svelte-35bemg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default()},p(ctx,dirty){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_default_slot(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","svelte-35bemg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default()},p(ctx,dirty){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_fragment(ctx){let current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block,create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return null!==ctx[2].me?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function instance($$self,$$props,$$invalidate){let toUrl,$orgsAndUsers;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,_manager_orgsAndUsers_js__WEBPACK_IMPORTED_MODULE_2__.pn,($$value=>$$invalidate(2,$orgsAndUsers=$$value)));let{newPage:newPage=!1}=$$props,{nopadding:nopadding=!1}=$$props,{homeLink:homeLink=!1}=$$props;return $$self.$$set=$$props=>{"newPage"in $$props&&$$invalidate(0,newPage=$$props.newPage),"nopadding"in $$props&&$$invalidate(1,nopadding=$$props.nopadding),"homeLink"in $$props&&$$invalidate(4,homeLink=$$props.homeLink)},$$self.$$.update=()=>{20&$$self.$$.dirty&&$$invalidate(3,toUrl=homeLink?(0,_router_router_js__WEBPACK_IMPORTED_MODULE_4__.DW)("default"):null!=$orgsAndUsers.me?(0,_search_search_js__WEBPACK_IMPORTED_MODULE_3__.GN)($orgsAndUsers.me):(0,_router_router_js__WEBPACK_IMPORTED_MODULE_4__.DW)("app"))},[newPage,nopadding,$orgsAndUsers,toUrl,homeLink]}class Logo extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{newPage:0,nopadding:1,homeLink:4})}}__webpack_exports__.Z=Logo},4725:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234);function create_fragment(ctx){let div,current;const default_slot_template=ctx[3].default,default_slot=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.nuO)(default_slot_template,ctx,ctx[2],null);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),default_slot&&default_slot.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","primary svelte-1dbe0bg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"small",ctx[0]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"inline",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||4&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.kmG)(default_slot,default_slot_template,ctx,ctx[2],current?(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.u2N)(default_slot_template,ctx[2],dirty,null):(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VOJ)(ctx[2]),null),(!current||1&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"small",ctx[0]),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"inline",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(default_slot,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),default_slot&&default_slot.d(detaching)}}}function instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props,{small:small=!1}=$$props,{inline:inline=!1}=$$props;return $$self.$$set=$$props=>{"small"in $$props&&$$invalidate(0,small=$$props.small),"inline"in $$props&&$$invalidate(1,inline=$$props.inline),"$$scope"in $$props&&$$invalidate(2,$$scope=$$props.$$scope)},[small,inline,$$scope,slots]}class Title extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{small:0,inline:1})}}__webpack_exports__.Z=Title},8618:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return UploadOptions_svelte}});var internal=__webpack_require__(4234),api_languages=__webpack_require__(9275),orgsAndUsers=__webpack_require__(5340),svelte=__webpack_require__(8568),runtime_esm=__webpack_require__(6469);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[9]=list[i][0],child_ctx[4]=list[i][1],child_ctx[13]=list[i][2],child_ctx}function create_if_block(ctx){let optgroup,option,t;return{c(){optgroup=(0,internal.bGB)("optgroup"),option=(0,internal.bGB)("option"),t=(0,internal.fLW)(ctx[0]),option.__value=ctx[0],option.value=option.__value},m(target,anchor){(0,internal.$Tr)(target,optgroup,anchor),(0,internal.R3I)(optgroup,option),(0,internal.R3I)(option,t)},p(ctx,dirty){1&dirty&&(0,internal.rTO)(t,ctx[0]),1&dirty&&(option.__value=ctx[0],option.value=option.__value)},d(detaching){detaching&&(0,internal.ogt)(optgroup)}}}function create_each_block(ctx){let option,t,option_disabled_value,option_value_value,t_value=ctx[4]+"";return{c(){option=(0,internal.bGB)("option"),t=(0,internal.fLW)(t_value),option.disabled=option_disabled_value=ctx[13],option.__value=option_value_value=ctx[4],option.value=option.__value},m(target,anchor){(0,internal.$Tr)(target,option,anchor),(0,internal.R3I)(option,t)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[4]+"")&&(0,internal.rTO)(t,t_value),8&dirty&&option_disabled_value!==(option_disabled_value=ctx[13])&&(option.disabled=option_disabled_value),8&dirty&&option_value_value!==(option_value_value=ctx[4])&&(option.__value=option_value_value,option.value=option.__value)},d(detaching){detaching&&(0,internal.ogt)(option)}}}function create_fragment(ctx){let label_1,t0,t1,input_1,t2,datalist,if_block_anchor,mounted,dispose,show_if=ctx[5].has(ctx[0]),if_block=show_if&&create_if_block(ctx),each_value=ctx[3],each_blocks=[];for(let i=0;i{"name"in $$props&&$$invalidate(4,name=$$props.name),"label"in $$props&&$$invalidate(1,label=$$props.label),"placeholder"in $$props&&$$invalidate(2,placeholder=$$props.placeholder),"options"in $$props&&$$invalidate(3,options=$$props.options),"selected"in $$props&&$$invalidate(0,selected=$$props.selected),"value"in $$props&&$$invalidate(9,value=$$props.value)},$$self.$$.update=()=>{8&$$self.$$.dirty&&(valueToName=options.reduce(((m,opt)=>(m.set(opt[0],opt[1]),m)),new Map)),8&$$self.$$.dirty&&$$invalidate(5,nameToValue=options.reduce(((m,opt)=>(m.set(opt[1],opt[0]),m)),new Map)),33&$$self.$$.dirty&&$$invalidate(9,value=nameToValue.get(selected))},[selected,label,placeholder,options,name,nameToValue,input,function(e){$$invalidate(0,selected=input.value),$$invalidate(6,input.value="",input)},function(e){$$invalidate(6,input.value=selected,input)},value,function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{input=$$value,$$invalidate(6,input)}))},function(){selected=this.value,$$invalidate(0,selected)}]}class Select extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{name:4,label:1,placeholder:2,options:3,selected:0,value:9})}}var Select_svelte=Select;function UploadOptions_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[14]=list[i][0],child_ctx[15]=list[i][1],child_ctx[16]=list[i][2],child_ctx}function UploadOptions_svelte_create_each_block(ctx){let option,t,option_value_value,option_disabled_value,t_value=ctx[15]+"";return{c(){option=(0,internal.bGB)("option"),t=(0,internal.fLW)(t_value),option.__value=option_value_value=ctx[14],option.value=option.__value,option.disabled=option_disabled_value=ctx[16]},m(target,anchor){(0,internal.$Tr)(target,option,anchor),(0,internal.R3I)(option,t)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(option)}}}function create_else_block(ctx){let p,t,t_value=ctx[6]("uploadOptions.creditHelpText",{values:{organization:ctx[5].me.organization.name,n:ctx[5].me.organization.monthly_ai_credits}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","svelte-1to6tyt")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){96&dirty&&t_value!==(t_value=ctx[6]("uploadOptions.creditHelpText",{values:{organization:ctx[5].me.organization.name,n:ctx[5].me.organization.monthly_ai_credits}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadOptions_svelte_create_if_block(ctx){let p,raw_value=ctx[6]("uploadOptions.textractPremium")+"";return{c(){p=(0,internal.bGB)("p"),(0,internal.Ljt)(p,"class","svelte-1to6tyt")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),p.innerHTML=raw_value},p(ctx,dirty){64&dirty&&raw_value!==(raw_value=ctx[6]("uploadOptions.textractPremium")+"")&&(p.innerHTML=raw_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadOptions_svelte_create_fragment(ctx){let div0,select0,updating_selected,updating_value,t0,div2,div1,label0,t1,t2,input,t3,div4,label1,t4,t5,select1,t6,div3,p,t7,current,mounted,dispose,t1_value=ctx[6]("uploadOptions.forceOcr")+"",t4_value=ctx[6]("uploadOptions.ocrEngine")+"",raw_value=ctx[6]("uploadOptions.tesseract")+"";function select0_selected_binding(value){ctx[9](value)}function select0_value_binding(value){ctx[10](value)}let select0_props={name:"document-language",label:ctx[6]("uploadOptions.documentLang"),placeholder:ctx[6]("uploadOptions.documentLanguagePlaceholder"),options:ctx[4]};void 0!==ctx[3]&&(select0_props.selected=ctx[3]),void 0!==ctx[1]&&(select0_props.value=ctx[1]),select0=new Select_svelte({props:select0_props}),internal.VnY.push((()=>(0,internal.akz)(select0,"selected",select0_selected_binding))),internal.VnY.push((()=>(0,internal.akz)(select0,"value",select0_value_binding)));let each_value=ctx[8],each_blocks=[];for(let i=0;ictx[12].call(select1))),(0,internal.Ljt)(label1,"class","svelte-1to6tyt"),(0,internal.Ljt)(p,"class","svelte-1to6tyt"),(0,internal.Ljt)(div3,"class","small svelte-1to6tyt"),(0,internal.Ljt)(div4,"class","option")},m(target,anchor){(0,internal.$Tr)(target,div0,anchor),(0,internal.yef)(select0,div0,null),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,label0),(0,internal.R3I)(label0,t1),(0,internal.R3I)(label0,t2),(0,internal.R3I)(label0,input),input.checked=ctx[2],(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,div4,anchor),(0,internal.R3I)(div4,label1),(0,internal.R3I)(label1,t4),(0,internal.R3I)(label1,t5),(0,internal.R3I)(label1,select1);for(let i=0;iupdating_selected=!1))),!updating_value&&2&dirty&&(updating_value=!0,select0_changes.value=ctx[1],(0,internal.hjT)((()=>updating_value=!1))),select0.$set(select0_changes),(!current||64&dirty)&&t1_value!==(t1_value=ctx[6]("uploadOptions.forceOcr")+"")&&(0,internal.rTO)(t1,t1_value),4&dirty&&(input.checked=ctx[2]),(!current||64&dirty)&&t4_value!==(t4_value=ctx[6]("uploadOptions.ocrEngine")+"")&&(0,internal.rTO)(t4,t4_value),256&dirty){let i;for(each_value=ctx[8],i=0;i$$invalidate(5,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));let{language:language=api_languages.X9}=$$props,{forceOcr:forceOcr=!1}=$$props,{ocrEngine:ocrEngine="tess4"}=$$props;const hasTextract=$orgsAndUsers.me.feature_level>0;let languageName=function(languages){const[code,name]=languages.find((([code,name])=>code===api_languages.X9));return name}(api_languages.Mj);const ocrEngines=[["tess4","Tesseract",!1],["textract","Textract",!hasTextract]];return(0,svelte.H3)((async()=>{await(0,orgsAndUsers.q1)()})),$$self.$$set=$$props=>{"language"in $$props&&$$invalidate(1,language=$$props.language),"forceOcr"in $$props&&$$invalidate(2,forceOcr=$$props.forceOcr),"ocrEngine"in $$props&&$$invalidate(0,ocrEngine=$$props.ocrEngine)},$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(4,selectLanguages="textract"===ocrEngine?api_languages.g2:api_languages.Mj)},[ocrEngine,language,forceOcr,languageName,selectLanguages,$orgsAndUsers,$_,hasTextract,ocrEngines,function(value){languageName=value,$$invalidate(3,languageName)},function(value){language=value,$$invalidate(1,language)},function(){forceOcr=this.checked,$$invalidate(2,forceOcr)},function(){ocrEngine=(0,internal.RMU)(this),$$invalidate(0,ocrEngine),$$invalidate(8,ocrEngines)}]}class UploadOptions extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,UploadOptions_svelte_instance,UploadOptions_svelte_create_fragment,internal.N8,{language:1,forceOcr:2,ocrEngine:0})}}var UploadOptions_svelte=UploadOptions},6666:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234);function create_fragment(ctx){let svg,title_1,t,path,svg_width_value,svg_height_value;return{c(){svg=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("svg"),title_1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("title"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[1]),path=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("path"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(path,"d","M3.00220543,1 C3.00220543,0.446875 3.44891524,0 4.00183577,0 L11.9988785,0 C12.551799,0 12.9985088,0.446875 12.9985088,1 C12.9985088,1.553125 12.551799,2 11.9988785,2 L11.0773442,2 L11.4334625,6.63125 C12.5799136,7.253125 13.4858286,8.29375 13.9169192,9.590625 L13.9481576,9.684375 C14.0512445,9.990625 13.9981391,10.325 13.8107084,10.584375 C13.6232777,10.84375 13.3202648,11 12.9985088,11 L3.00220543,11 C2.68044942,11 2.38056032,10.846875 2.19000578,10.584375 C1.99945125,10.321875 1.94946973,9.9875 2.05255661,9.684375 L2.08379506,9.590625 C2.51488564,8.29375 3.42080063,7.253125 4.56725167,6.63125 L4.92336998,2 L4.00183577,2 C3.44891524,2 3.00220543,1.553125 3.00220543,1 Z M7.00072677,12 L8.99998744,12 L8.99998744,15 C8.99998744,15.553125 8.55327764,16 8.00035711,16 C7.44743658,16 7.00072677,15.553125 7.00072677,15 L7.00072677,12 Z"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(path,"fill-rule","nonzero"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"width",svg_width_value=ctx[0]*REM+"px"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"height",svg_height_value=ctx[0]*REM+"px"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"viewBox","0 0 16 16"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"class","svelte-yezalu")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,svg,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(svg,title_1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(title_1,t),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(svg,path)},p(ctx,[dirty]){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,ctx[1]),1&dirty&&svg_width_value!==(svg_width_value=ctx[0]*REM+"px")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"width",svg_width_value),1&dirty&&svg_height_value!==(svg_height_value=ctx[0]*REM+"px")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"height",svg_height_value)},i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(svg)}}}const REM=16;function instance($$self,$$props,$$invalidate){let{size:size=1}=$$props,{title:title="Pin"}=$$props;return $$self.$$set=$$props=>{"size"in $$props&&$$invalidate(0,size=$$props.size),"title"in $$props&&$$invalidate(1,title=$$props.title)},[size,title]}class Pin extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{size:0,title:1})}}__webpack_exports__.Z=Pin},3213:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),_router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(3566),_common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5465),_common_Loader_svelte__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(1172),_common_Tooltip_svelte__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(592),_emit_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(1812),_manager_documents_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(9914),svelte_i18n__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(6469),_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(8902),_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8___default=__webpack_require__.n(_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8__),_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(2381),_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9___default=__webpack_require__.n(_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9__),_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(9002),_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10___default=__webpack_require__.n(_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10__),_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(4172),_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11___default=__webpack_require__.n(_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11__);function create_else_block_2(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","error svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8___default()},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_if_block_7(ctx){let tooltip,current;return tooltip=new _common_Tooltip_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{$$slots:{caption:[create_caption_slot],default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(tooltip.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(tooltip,target,anchor),current=!0},p(ctx,dirty){const tooltip_changes={};18305&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(tooltip,detaching)}}}function create_if_block_4(ctx){let show_if,current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block_5,create_if_block_6,create_else_block],if_blocks=[];function select_block_type_1(ctx,dirty){return 3&dirty&&(show_if=null),ctx[2]?0:(null==show_if&&(show_if=!!(ctx[1]&&null!=ctx[0].publishedUrl&&ctx[0].publishedUrl.trim().length>0)),show_if?1:2)}return current_block_type_index=select_block_type_1(ctx,-1),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx,dirty),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_default_slot_2(ctx){let span,t,t_value=ctx[0].status+"";return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","fullstatus svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].status+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_default_slot_1(ctx){let loader,current;return loader=new _common_Loader_svelte__WEBPACK_IMPORTED_MODULE_3__.Z({props:{active:!0,center:!0,big:!0,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(loader.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(loader,target,anchor),current=!0},p(ctx,dirty){const loader_changes={};16385&dirty&&(loader_changes.$$scope={dirty:dirty,ctx:ctx}),loader.$set(loader_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(loader.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(loader.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(loader,detaching)}}}function create_else_block_1(ctx){let t,t_value=ctx[10]("documentThumbnail.loading")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1024&dirty&&t_value!==(t_value=ctx[10]("documentThumbnail.loading")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_8(ctx){let p,t0,t1,t2,if_block_anchor,t0_value=Math.floor(100*ctx[9])+"",if_block=null!=ctx[8]&&create_if_block_9(ctx);return{c(){p=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("p"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t0_value),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("%"),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(p,"class","svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,p,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t2,anchor),if_block&&if_block.m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){512&dirty&&t0_value!==(t0_value=Math.floor(100*ctx[9])+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,t0_value),null!=ctx[8]?if_block?if_block.p(ctx,dirty):(if_block=create_if_block_9(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(p),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t2),if_block&&if_block.d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_if_block_9(ctx){let p,t0,t1,t2,t3,t4,t4_value=ctx[10]("documentThumbnail.pages")+"";return{c(){p=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("p"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[8]),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(" / "),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[7]),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),t4=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t4_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(p,"class","svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,p,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t2),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t3),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t4)},p(ctx,dirty){256&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,ctx[8]),128&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t2,ctx[7]),1024&dirty&&t4_value!==(t4_value=ctx[10]("documentThumbnail.pages")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t4,t4_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(p)}}}function create_caption_slot(ctx){let div;function select_block_type_2(ctx,dirty){return null!=ctx[9]?create_if_block_8:create_else_block_1}let current_block_type=select_block_type_2(ctx),if_block=current_block_type(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"slot","caption"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","caption svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block.m(div,null)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_2(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div,null)))},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block.d()}}}function create_else_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[1],to:"viewer",params:{id:ctx[0].slugId},$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};2&dirty&&(link_changes.newPage=ctx[1]),1&dirty&&(link_changes.params={id:ctx[0].slugId}),16385&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_if_block_6(ctx){let a,image,a_href_value,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{src:ctx[0].thumbnail}}),{c(){a=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("a"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value=ctx[0].publishedUrl),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"rel","noreferrer"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"target","_blank")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,a,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,a,null),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes),(!current||1&dirty&&a_href_value!==(a_href_value=ctx[0].publishedUrl))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(a),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image)}}}function create_if_block_5(ctx){let image,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{clickable:!0,src:ctx[0].thumbnail}}),image.$on("click",ctx[13]),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,target,anchor),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image,detaching)}}}function create_default_slot(ctx){let image,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{src:ctx[0].thumbnail}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,target,anchor),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image,detaching)}}}function create_if_block(ctx){let span,t0,t1,div,t2,t3,t0_value=ctx[10]("document.noteCount",{values:{n:ctx[3]}})+"",if_block0=ctx[4]&&create_if_block_3(ctx),if_block1=ctx[5]&&create_if_block_2(ctx),if_block2=ctx[6]&&create_if_block_1(ctx);return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t0_value),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0&&if_block0.c(),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","note-count svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","tag svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t1,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t2),if_block1&&if_block1.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t3),if_block2&&if_block2.m(div,null)},p(ctx,dirty){1032&dirty&&t0_value!==(t0_value=ctx[10]("document.noteCount",{values:{n:ctx[3]}})+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,t0_value),ctx[4]?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_3(ctx),if_block0.c(),if_block0.m(div,t2)):if_block0&&(if_block0.d(1),if_block0=null),ctx[5]?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_2(ctx),if_block1.c(),if_block1.m(div,t3)):if_block1&&(if_block1.d(1),if_block1=null),ctx[6]?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_1(ctx),if_block2.c(),if_block2.m(div,null)):if_block2&&(if_block2.d(1),if_block2=null)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t1),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_3(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_if_block_2(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_if_block_1(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_fragment(ctx){let div,span,current_block_type_index,if_block0,t,div_data_id_value,current;const if_block_creators=[create_if_block_4,create_if_block_7,create_else_block_2],if_blocks=[];function select_block_type(ctx,dirty){return ctx[0].viewable?0:ctx[0].pending?1:2}current_block_type_index=select_block_type(ctx),if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block1=ctx[3]>0&&create_if_block(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block0.c(),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","imgwrap svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","img svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"data-id",div_data_id_value=ctx[0].id),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"embed",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,span),if_blocks[current_block_type_index].m(span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t),if_block1&&if_block1.m(div,null),current=!0},p(ctx,[dirty]){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block0,1),if_block0.m(span,null)),ctx[3]>0?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block(ctx),if_block1.c(),if_block1.m(div,null)):if_block1&&(if_block1.d(1),if_block1=null),(!current||1&dirty&&div_data_id_value!==(div_data_id_value=ctx[0].id))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"data-id",div_data_id_value),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"embed",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block0),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block0),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_blocks[current_block_type_index].d(),if_block1&&if_block1.d()}}}function instance($$self,$$props,$$invalidate){let realProgress,pagesProcessed,pageCount,$documents,$_;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,_manager_documents_js__WEBPACK_IMPORTED_MODULE_6__.De,($$value=>$$invalidate(12,$documents=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,svelte_i18n__WEBPACK_IMPORTED_MODULE_7__._,($$value=>$$invalidate(10,$_=$$value)));let{document:document}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props,{noteCount:noteCount=0}=$$props,{publicNote:publicNote=!1}=$$props,{orgNote:orgNote=!1}=$$props,{privateNote:privateNote=!1}=$$props;const emit=(0,_emit_js__WEBPACK_IMPORTED_MODULE_5__.Z)({pick(){}});return $$self.$$set=$$props=>{"document"in $$props&&$$invalidate(0,document=$$props.document),"embed"in $$props&&$$invalidate(1,embed=$$props.embed),"dialog"in $$props&&$$invalidate(2,dialog=$$props.dialog),"noteCount"in $$props&&$$invalidate(3,noteCount=$$props.noteCount),"publicNote"in $$props&&$$invalidate(4,publicNote=$$props.publicNote),"orgNote"in $$props&&$$invalidate(5,orgNote=$$props.orgNote),"privateNote"in $$props&&$$invalidate(6,privateNote=$$props.privateNote)},$$self.$$.update=()=>{4097&$$self.$$.dirty&&$$invalidate(9,realProgress=null==document?null:$documents.realProgressMap[document.id]),4097&$$self.$$.dirty&&$$invalidate(8,pagesProcessed=null==document?null:$documents.pagesProcessedMap[document.id]),4097&$$self.$$.dirty&&$$invalidate(7,pageCount=null==document?null:$documents.pageCountMap[document.id])},[document,embed,dialog,noteCount,publicNote,orgNote,privateNote,pageCount,pagesProcessed,realProgress,$_,emit,$documents,()=>emit.pick(document)]}class DocumentThumbnail extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{document:0,embed:1,dialog:2,noteCount:3,publicNote:4,orgNote:5,privateNote:6})}}__webpack_exports__.Z=DocumentThumbnail},76:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return Documents_svelte}});var internal=__webpack_require__(4234),runtime_esm=__webpack_require__(6469),animate=__webpack_require__(7431),svelte=__webpack_require__(8568),AddonRun_svelte=__webpack_require__(1195),base=__webpack_require__(5364);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[7]=list[i],child_ctx}function create_if_block(ctx){let div,h3,t0,t1,current,t0_value=ctx[1]("addonProgress.progress")+"",each_blocks=[],each_1_lookup=new Map,each_value=ctx[0];const get_key=ctx=>ctx[7].uuid;for(let i=0;i0&&create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){ctx[0].length>0?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block,1)):(if_block=create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function instance($$self,$$props,$$invalidate){let $runs,$_;(0,internal.FIv)($$self,AddonRun_svelte.Or,($$value=>$$invalidate(0,$runs=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));const POLL_INTERVAL=parseInt("5000",10),endpoint=new URL("/api/addon_runs/?expand=addon&dismissed=false&per_page=20",base.t),options={credentials:"include"};let timeout;async function load(){const resp=await fetch(endpoint,options);if(!resp.ok)throw new Error(resp.statusText);const{results:results}=await resp.json();(0,internal.fxP)(AddonRun_svelte.Or,$runs=results,$runs)}return(0,svelte.H3)((async()=>{await load()})),(0,svelte.gx)((()=>{$runs.length>0&&(timeout=setTimeout(load,POLL_INTERVAL))})),[$runs,$_]}class AddonStatus extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{})}}var AddonStatus_svelte=AddonStatus,lib=__webpack_require__(456);function Checkbox_svelte_create_if_block(ctx){let current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block_1,create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[1]?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index!==previous_block_index&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block||(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_else_block(ctx){let check16,current;return check16=new lib.L7T({}),{c(){(0,internal.YCL)(check16.$$.fragment)},m(target,anchor){(0,internal.yef)(check16,target,anchor),current=!0},i(local){current||((0,internal.Ui)(check16.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(check16.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(check16,detaching)}}}function create_if_block_1(ctx){let dash16,current;return dash16=new lib.cuT({}),{c(){(0,internal.YCL)(dash16.$$.fragment)},m(target,anchor){(0,internal.yef)(dash16,target,anchor),current=!0},i(local){current||((0,internal.Ui)(dash16.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dash16.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dash16,detaching)}}}function Checkbox_svelte_create_fragment(ctx){let label,input,t,span,current,mounted,dispose,if_block=ctx[0]&&Checkbox_svelte_create_if_block(ctx);return{c(){label=(0,internal.bGB)("label"),input=(0,internal.bGB)("input"),t=(0,internal.DhX)(),span=(0,internal.bGB)("span"),if_block&&if_block.c(),(0,internal.Ljt)(input,"type","checkbox"),input.disabled=ctx[2],(0,internal.Ljt)(input,"class","svelte-1ypg73i"),(0,internal.Ljt)(span,"class","svelte-1ypg73i"),(0,internal.Ljt)(label,"class","svelte-1ypg73i")},m(target,anchor){(0,internal.$Tr)(target,label,anchor),(0,internal.R3I)(label,input),ctx[5](input),input.checked=ctx[0],(0,internal.R3I)(label,t),(0,internal.R3I)(label,span),if_block&&if_block.m(span,null),current=!0,mounted||(dispose=[(0,internal.oLt)(input,"change",ctx[6]),(0,internal.oLt)(input,"change",ctx[4])],mounted=!0)},p(ctx,[dirty]){(!current||4&dirty)&&(input.disabled=ctx[2]),1&dirty&&(input.checked=ctx[0]),ctx[0]?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block,1)):(if_block=Checkbox_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(span,null)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(label),ctx[5](null),if_block&&if_block.d(),mounted=!1,(0,internal.j7q)(dispose)}}}function Checkbox_svelte_instance($$self,$$props,$$invalidate){const dispatch=(0,svelte.x)();let checkbox,{checked:checked=!1}=$$props,{indeterminate:indeterminate=!1}=$$props,{disabled:disabled=!1}=$$props;return $$self.$$set=$$props=>{"checked"in $$props&&$$invalidate(0,checked=$$props.checked),"indeterminate"in $$props&&$$invalidate(1,indeterminate=$$props.indeterminate),"disabled"in $$props&&$$invalidate(2,disabled=$$props.disabled)},[checked,indeterminate,disabled,checkbox,function(){checked?dispatch("check",{indeterminate:indeterminate}):dispatch("uncheck")},function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{checkbox=$$value,$$invalidate(3,checkbox)}))},function(){checked=this.checked,$$invalidate(0,checked)}]}class Checkbox extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Checkbox_svelte_instance,Checkbox_svelte_create_fragment,internal.N8,{checked:0,indeterminate:1,disabled:2})}}var Checkbox_svelte=Checkbox,Tooltip_svelte=__webpack_require__(592),Dropdown_svelte=__webpack_require__(2127),search=__webpack_require__(6046),page_arrow_leftraw=__webpack_require__(2728),page_arrow_leftraw_default=__webpack_require__.n(page_arrow_leftraw),page_arrow_rightraw=__webpack_require__(4704),page_arrow_rightraw_default=__webpack_require__.n(page_arrow_rightraw);function Paginator_svelte_create_if_block(ctx){let button0,button0_disabled_value,t0,div2,div0,t1,div1,t2,t3,button1,button1_disabled_value,mounted,dispose,t2_value=ctx[1]("paginator.document",{values:{n:ctx[0].results.count}})+"";function select_block_type(ctx,dirty){return ctx[0].results.onlyPage?Paginator_svelte_create_if_block_1:Paginator_svelte_create_else_block}let current_block_type=select_block_type(ctx),if_block=current_block_type(ctx);return{c(){button0=(0,internal.bGB)("button"),t0=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),if_block.c(),t1=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),button1=(0,internal.bGB)("button"),button0.disabled=button0_disabled_value=!ctx[0].hasPrev,(0,internal.Ljt)(button0,"class","svelte-1b2tp76"),(0,internal.Ljt)(div0,"class","number svelte-1b2tp76"),(0,internal.Ljt)(div1,"class","documents svelte-1b2tp76"),(0,internal.Ljt)(div2,"class","text svelte-1b2tp76"),button1.disabled=button1_disabled_value=!ctx[0].hasNext,(0,internal.Ljt)(button1,"class","svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,button0,anchor),button0.innerHTML=page_arrow_leftraw_default(),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div0),if_block.m(div0,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,t2),(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,button1,anchor),button1.innerHTML=page_arrow_rightraw_default(),mounted||(dispose=[(0,internal.oLt)(button0,"click",search.Dj),(0,internal.oLt)(button1,"click",search.Xp)],mounted=!0)},p(ctx,dirty){1&dirty&&button0_disabled_value!==(button0_disabled_value=!ctx[0].hasPrev)&&(button0.disabled=button0_disabled_value),current_block_type===(current_block_type=select_block_type(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div0,null))),3&dirty&&t2_value!==(t2_value=ctx[1]("paginator.document",{values:{n:ctx[0].results.count}})+"")&&(0,internal.rTO)(t2,t2_value),1&dirty&&button1_disabled_value!==(button1_disabled_value=!ctx[0].hasNext)&&(button1.disabled=button1_disabled_value)},d(detaching){detaching&&(0,internal.ogt)(button0),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(div2),if_block.d(),detaching&&(0,internal.ogt)(t3),detaching&&(0,internal.ogt)(button1),mounted=!1,(0,internal.j7q)(dispose)}}}function Paginator_svelte_create_else_block(ctx){let span,t0,t1,t2,t3,if_block_anchor,t0_value=ctx[0].start+"",t2_value=ctx[0].end+"",if_block=ctx[0].results.count&&create_if_block_2(ctx);return{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)("\n -\n "),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)(),(0,internal.Ljt)(span,"class","range svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.R3I)(span,t1),(0,internal.R3I)(span,t2),(0,internal.$Tr)(target,t3,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){1&dirty&&t0_value!==(t0_value=ctx[0].start+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=ctx[0].end+"")&&(0,internal.rTO)(t2,t2_value),ctx[0].results.count?if_block?if_block.p(ctx,dirty):(if_block=create_if_block_2(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t3),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Paginator_svelte_create_if_block_1(ctx){let t,t_value=ctx[0].results.rawResults.results.length+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].results.rawResults.results.length+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_if_block_2(ctx){let t0,t1,t2,t0_value=ctx[1]("paginator.of")+"",t2_value=ctx[0].results.count+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),t2=(0,internal.fLW)(t2_value)},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,t2,anchor)},p(ctx,dirty){2&dirty&&t0_value!==(t0_value=ctx[1]("paginator.of")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=ctx[0].results.count+"")&&(0,internal.rTO)(t2,t2_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(t2)}}}function Paginator_svelte_create_fragment(ctx){let div,if_block=ctx[0].hasResults&&Paginator_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","paginator svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null)},p(ctx,[dirty]){ctx[0].hasResults?if_block?if_block.p(ctx,dirty):(if_block=Paginator_svelte_create_if_block(ctx),if_block.c(),if_block.m(div,null)):if_block&&(if_block.d(1),if_block=null)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d()}}}function Paginator_svelte_instance($$self,$$props,$$invalidate){let $search,$_;return(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(0,$search=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value))),[$search,$_]}class Paginator extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Paginator_svelte_instance,Paginator_svelte_create_fragment,internal.N8,{})}}var Paginator_svelte=Paginator,Menu_svelte=__webpack_require__(7918),MenuItem_svelte=__webpack_require__(9213),layout=__webpack_require__(3423),metaDialogs=__webpack_require__(9216),orgsAndUsers=__webpack_require__(5340),svue=__webpack_require__(3396),documents=__webpack_require__(9914);const manager=new svue.x({data(){return{documents:documents.De,layout:layout.bK}},computed:{hasDocuments(documents){return documents.documents.length>0},allSelected(hasDocuments,documents,layout){return hasDocuments&&documents.documents.every((doc=>null!=layout.selectedMap[doc.id]))},someSelected(hasDocuments,layout,allSelected){return hasDocuments&&layout.hasSelection&&!allSelected},noneSelected(hasDocuments,layout){return!hasDocuments||!layout.hasSelection}}});function removeSelected(){(0,documents.u$)(layout.bK.selected)}function changeAccessSelected(){0!=layout.bK.numSelected&&(layout.bK.accessEditDocuments=layout.bK.selected.slice())}function changeOwnerSelected(){0!=layout.bK.numSelected&&(layout.bK.ownerEditDocuments=layout.bK.selected.slice())}function reprocessSelected(){0!=layout.bK.numSelected&&(layout.bK.reprocessDocuments=layout.bK.selected.slice())}function cancelProcessSelected(){(0,documents.Qy)(layout.bK.selected)}function editDataSelected(){(0,layout.re)(layout.bK.selected)}function showDiagnosticsSelected(){layout.bK.diagnosticsOpen=!0}function showMailkeySelected(){layout.bK.mailkeyOpen=!0}var router=__webpack_require__(3356);function EditMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[10]=list[i],child_ctx}function create_default_slot_10(ctx){let t,t_value=ctx[5]("editMenu.editDocInfo")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.editDocInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_9(ctx){let t,t_value=ctx[5](ctx[10].menuTitle)+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5](ctx[10].menuTitle)+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_each_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{indent:!0,disabled:null!=ctx[10].disabled&&ctx[10].disabled(ctx[1].numSelected),$$slots:{default:[create_default_slot_9]},$$scope:{ctx:ctx}}}),menuitem.$on("click",(function(){return ctx[9](ctx[10])})),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx;const menuitem_changes={};2&dirty&&(menuitem_changes.disabled=null!=ctx[10].disabled&&ctx[10].disabled(ctx[1].numSelected)),8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_8(ctx){let t,t_value=ctx[5]("editMenu.changeAccess")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.changeAccess")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_7(ctx){let t,t_value=ctx[5]("editMenu.editDocData")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.editDocData")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_if_block_4(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_6]},$$scope:{ctx:ctx}}}),menuitem.$on("click",reprocessSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_if_block_3(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_5]},$$scope:{ctx:ctx}}}),menuitem.$on("click",cancelProcessSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_6(ctx){let t,t_value=ctx[5]("editMenu.forceReprocess")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.forceReprocess")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_5(ctx){let t,t_value=ctx[5]("editMenu.cancelProcessing")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.cancelProcessing")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_if_block_2(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_4]},$$scope:{ctx:ctx}}}),menuitem.$on("click",ctx[6]),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_4(ctx){let html_tag,html_anchor,raw_value=ctx[5]("editMenu.entities")+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){32&dirty&&raw_value!==(raw_value=ctx[5]("editMenu.entities")+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function EditMenu_svelte_create_if_block_1(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem.$on("click",changeOwnerSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_3(ctx){let t,t_value=ctx[5]("editMenu.changeOwner")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.changeOwner")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_2(ctx){let t,t_value=ctx[5]("editMenu.delete")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.delete")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_if_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{special:!0,$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),menuitem.$on("click",showDiagnosticsSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_1(ctx){let t,t_value=ctx[5]("editMenu.diagnosticInfo")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.diagnosticInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot(ctx){let menuitem0,t0,t1,menuitem1,t2,menuitem2,t3,current_block_type_index,if_block0,t4,t5,t6,menuitem3,t7,if_block3_anchor,current;menuitem0=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_10]},$$scope:{ctx:ctx}}}),menuitem0.$on("click",ctx[8]);let each_value=metaDialogs.h,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));menuitem1=new MenuItem_svelte.Z({props:{disabled:ctx[2],$$slots:{default:[create_default_slot_8]},$$scope:{ctx:ctx}}}),menuitem1.$on("click",changeAccessSelected),menuitem2=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_7]},$$scope:{ctx:ctx}}}),menuitem2.$on("click",editDataSelected);const if_block_creators=[create_if_block_3,create_if_block_4],if_blocks=[];function select_block_type(ctx,dirty){return ctx[3]?0:ctx[2]?-1:1}~(current_block_type_index=select_block_type(ctx))&&(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block1=1==ctx[1].numSelected&&EditMenu_svelte_create_if_block_2(ctx),if_block2=ctx[4]&&EditMenu_svelte_create_if_block_1(ctx);menuitem3=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),menuitem3.$on("click",removeSelected);let if_block3=ctx[0].isStaff&&EditMenu_svelte_create_if_block(ctx);return{c(){(0,internal.YCL)(menuitem0.$$.fragment),t0=(0,internal.DhX)();for(let i=0;i{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(t4.parentNode,t4)):if_block0=null),1==ctx[1].numSelected?if_block1?(if_block1.p(ctx,dirty),2&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=EditMenu_svelte_create_if_block_2(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t5.parentNode,t5)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),ctx[4]?if_block2?(if_block2.p(ctx,dirty),16&dirty&&(0,internal.Ui)(if_block2,1)):(if_block2=EditMenu_svelte_create_if_block_1(ctx),if_block2.c(),(0,internal.Ui)(if_block2,1),if_block2.m(t6.parentNode,t6)):if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_block2,1,1,(()=>{if_block2=null})),(0,internal.gbL)());const menuitem3_changes={};8224&dirty&&(menuitem3_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem3.$set(menuitem3_changes),ctx[0].isStaff?if_block3?(if_block3.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block3,1)):(if_block3=EditMenu_svelte_create_if_block(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(if_block3_anchor.parentNode,if_block3_anchor)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)())},i(local){if(!current){(0,internal.Ui)(menuitem0.$$.fragment,local);for(let i=0;i$$invalidate(0,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(1,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(5,$_=$$value)));let processing=!1,allProcessing=!1,canChangeOwner=!1,{visible:visible=!1}=$$props;return $$self.$$set=$$props=>{"visible"in $$props&&$$invalidate(7,visible=$$props.visible)},$$self.$$.update=()=>{128&$$self.$$.dirty&&visible&&$$invalidate(2,[processing,allProcessing]=(0,layout.SW)(),processing,($$invalidate(3,allProcessing),$$invalidate(7,visible))),131&$$self.$$.dirty&&visible&&$orgsAndUsers.me&&$$invalidate(4,canChangeOwner=0==$layout.selected.filter((doc=>!(doc.userId==$orgsAndUsers.me.id&&(!doc.publicAccess||$orgsAndUsers.me.organizations.indexOf(doc.orgId)>=0)))).length)},[$orgsAndUsers,$layout,processing,allProcessing,canChangeOwner,$_,function(){const docs=layout.bK.selected;if(1!=docs.length)return;const doc=docs[0];(0,router.$n)("entity",{id:doc.slugId})},visible,()=>{0!=layout.bK.numSelected&&(layout.bK.documentInfoOpen=!0)},meta=>function(meta){0!=layout.bK.numSelected&&(layout.bK.metaOpen=meta)}(meta)]}class EditMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,EditMenu_svelte_instance,EditMenu_svelte_create_fragment,internal.N8,{visible:7})}}var EditMenu_svelte=EditMenu,projects=__webpack_require__(9365),string=__webpack_require__(3581);function ProjectMenuItem_svelte_create_if_block(ctx){let t;return{c(){t=(0,internal.fLW)("✓")},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProjectMenuItem_svelte_create_default_slot_1(ctx){let t0,t1,span,t0_value=ctx[0].title+"",if_block="fully"==ctx[1]&&ProjectMenuItem_svelte_create_if_block();return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span=(0,internal.bGB)("span"),if_block&&if_block.c(),(0,internal.Ljt)(span,"class","scope svelte-1js79cp")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span,anchor),if_block&&if_block.m(span,null)},p(ctx,dirty){1&dirty&&t0_value!==(t0_value=ctx[0].title+"")&&(0,internal.rTO)(t0,t0_value),"fully"==ctx[1]?if_block||(if_block=ProjectMenuItem_svelte_create_if_block(),if_block.c(),if_block.m(span,null)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span),if_block&&if_block.d()}}}function ProjectMenuItem_svelte_create_default_slot(ctx){let tooltip,current;return tooltip=new Tooltip_svelte.Z({props:{delay:500,caption:ctx[2],$$slots:{default:[ProjectMenuItem_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(tooltip.$$.fragment)},m(target,anchor){(0,internal.yef)(tooltip,target,anchor),current=!0},p(ctx,dirty){const tooltip_changes={};4&dirty&&(tooltip_changes.caption=ctx[2]),35&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,internal.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(tooltip,detaching)}}}function ProjectMenuItem_svelte_create_fragment(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[ProjectMenuItem_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),menuitem.$on("click",ctx[3]),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,[dirty]){const menuitem_changes={};39&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function ProjectMenuItem_svelte_instance($$self,$$props,$$invalidate){let scope,caption,$layout;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(4,$layout=$$value)));let{project:project}=$$props;return $$self.$$set=$$props=>{"project"in $$props&&$$invalidate(0,project=$$props.project)},$$self.$$.update=()=>{17&$$self.$$.dirty&&$$invalidate(1,scope=$layout.selected.length>0?(0,projects.Ip)(project):"none"),18&$$self.$$.dirty&&$$invalidate(2,caption="fully"==scope?`Remove ${(0,string.fu)($layout.selected.length,"document")} from project`:`Add ${(0,string.fu)($layout.selected.length,"document")} to project`)},[project,scope,caption,function(){"fully"==scope?(0,projects.lF)(project):(0,projects.du)(project)},$layout]}class ProjectMenuItem extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProjectMenuItem_svelte_instance,ProjectMenuItem_svelte_create_fragment,internal.N8,{project:0})}}var ProjectMenuItem_svelte=ProjectMenuItem;function ProjectsMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[4]=list[i],child_ctx}function ProjectsMenu_svelte_create_default_slot_3(ctx){let t,t_value=ctx[2]("projectsMenu.newProject")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("projectsMenu.newProject")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProjectsMenu_svelte_create_else_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};133&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function ProjectsMenu_svelte_create_if_block(ctx){let menuitem,t,each_1_anchor,current;menuitem=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}});let each_value=ctx[1],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){(0,internal.YCL)(menuitem.$$.fragment),t=(0,internal.DhX)();for(let i=0;i0?ProjectsMenu_svelte_create_if_block_1:create_else_block_1}let current_block_type=select_block_type_1(ctx),if_block=current_block_type(ctx);return{c(){if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_1(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)))},d(detaching){if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProjectsMenu_svelte_create_default_slot_1(ctx){let div,t,t_value=ctx[2]("projectsMenu.projMembership")+"";return{c(){div=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div,"class","small")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("projectsMenu.projMembership")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function ProjectsMenu_svelte_create_each_block(ctx){let projectmenuitem,current;return projectmenuitem=new ProjectMenuItem_svelte({props:{project:ctx[4]}}),{c(){(0,internal.YCL)(projectmenuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(projectmenuitem,target,anchor),current=!0},p(ctx,dirty){const projectmenuitem_changes={};2&dirty&&(projectmenuitem_changes.project=ctx[4]),projectmenuitem.$set(projectmenuitem_changes)},i(local){current||((0,internal.Ui)(projectmenuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(projectmenuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(projectmenuitem,detaching)}}}function ProjectsMenu_svelte_create_default_slot(ctx){let menuitem,t,current_block_type_index,if_block,if_block_anchor,current;menuitem=new MenuItem_svelte.Z({props:{primary:!0,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem.$on("click",layout.o9);const if_block_creators=[ProjectsMenu_svelte_create_if_block,ProjectsMenu_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[3].hasSelection&&ctx[0].addRemoveableProjects.length>0?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){(0,internal.YCL)(menuitem.$$.fragment),t=(0,internal.DhX)(),if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),(0,internal.$Tr)(target,t,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};132&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching),detaching&&(0,internal.ogt)(t),if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProjectsMenu_svelte_create_fragment(ctx){let menu,current;return menu=new Menu_svelte.Z({props:{$$slots:{default:[ProjectsMenu_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menu.$$.fragment)},m(target,anchor){(0,internal.yef)(menu,target,anchor),current=!0},p(ctx,[dirty]){const menu_changes={};143&dirty&&(menu_changes.$$scope={dirty:dirty,ctx:ctx}),menu.$set(menu_changes)},i(local){current||((0,internal.Ui)(menu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menu,detaching)}}}function ProjectsMenu_svelte_instance($$self,$$props,$$invalidate){let alphabetizedProjects,$projects,$_,$layout;return(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(0,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(3,$layout=$$value))),$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(1,alphabetizedProjects=function(projects){if(null==projects)return[];try{projects.sort(((a,b)=>a.title.localeCompare(b.title)))}catch(e){}return projects}($projects.addRemoveableProjects))},[$projects,alphabetizedProjects,$_,$layout]}class ProjectsMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProjectsMenu_svelte_instance,ProjectsMenu_svelte_create_fragment,internal.N8,{})}}var ProjectsMenu_svelte=ProjectsMenu,AddOnListItem_svelte=__webpack_require__(2869);function AddonsMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[3]=list[i],child_ctx}function AddonsMenu_svelte_create_default_slot_4(ctx){let t,t_value=ctx[3].name+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[3].name+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_each_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{href:addonURL(ctx[3]),$$slots:{default:[AddonsMenu_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1&dirty&&(menuitem_changes.href=addonURL(ctx[3])),65&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function AddonsMenu_svelte_create_default_slot_3(ctx){let t,t_value=ctx[1]("addonsMenu.browseAll")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.browseAll")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot_2(ctx){let t,t_value=ctx[1]("addonsMenu.addonRuns")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.addonRuns")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot_1(ctx){let t,t_value=ctx[1]("addonsMenu.learnMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.learnMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot(ctx){let t0,hr,t1,menuitem0,t2,menuitem1,t3,menuitem2,current,each_value=ctx[0],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return menuitem0=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=browser",href:"#add-ons",$$slots:{default:[AddonsMenu_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem1=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=runs",href:"#add-ons/runs",$$slots:{default:[AddonsMenu_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),menuitem2=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=help",target:"_blank",href:"https://www.documentcloud.org/help/add-ons/",$$slots:{default:[AddonsMenu_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){for(let i=0;i$$invalidate(2,$pinned=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value))),(0,svelte.H3)((()=>{window.plausible=window.plausible||function(){(window.plausible.q=window.plausible.q||[]).push(arguments)}})),$$self.$$.update=()=>{4&$$self.$$.dirty&&$$invalidate(0,alphabetizedAddons=$pinned.sort(((a,b)=>a.name.localeCompare(b.name))))},[alphabetizedAddons,$_,$pinned]}class AddonsMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AddonsMenu_svelte_instance,AddonsMenu_svelte_create_fragment,internal.N8,{})}}var AddonsMenu_svelte=AddonsMenu;function ActionBar_svelte_create_if_block(ctx){let div,t,span,paginator,current,if_block=ctx[3].loggedIn&&ActionBar_svelte_create_if_block_1(ctx);return paginator=new Paginator_svelte({}),{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),t=(0,internal.DhX)(),span=(0,internal.bGB)("span"),(0,internal.YCL)(paginator.$$.fragment),(0,internal.Ljt)(span,"class","narrowhide svelte-5udg7h"),(0,internal.Ljt)(div,"class","bar svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null),(0,internal.R3I)(div,t),(0,internal.R3I)(div,span),(0,internal.yef)(paginator,span,null),current=!0},p(ctx,dirty){ctx[3].loggedIn?if_block?(if_block.p(ctx,dirty),8&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ActionBar_svelte_create_if_block_1(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,t)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),(0,internal.Ui)(paginator.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block),(0,internal.etI)(paginator.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d(),(0,internal.vpE)(paginator)}}}function ActionBar_svelte_create_if_block_1(ctx){let span,t0,current_block_type_index,if_block1,t1,dropdown0,t2,dropdown1,current,if_block0=ctx[4].documents.length>0&&ActionBar_svelte_create_if_block_3(ctx);const if_block_creators=[ActionBar_svelte_create_if_block_2,ActionBar_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[2].hasSelection&&ctx[2].selectionEditable?0:1}return current_block_type_index=select_block_type(ctx),if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),dropdown0=new Dropdown_svelte.Z({props:{name:"projects-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot_1],default:[ActionBar_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),dropdown1=new Dropdown_svelte.Z({props:{name:"addons-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot],default:[ActionBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){span=(0,internal.bGB)("span"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1.c(),t1=(0,internal.DhX)(),(0,internal.YCL)(dropdown0.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(dropdown1.$$.fragment),(0,internal.Ljt)(span,"class","action check scaledown svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),if_block0&&if_block0.m(span,null),(0,internal.$Tr)(target,t0,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(dropdown0,target,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(dropdown1,target,anchor),current=!0},p(ctx,dirty){ctx[4].documents.length>0?if_block0?(if_block0.p(ctx,dirty),16&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=ActionBar_svelte_create_if_block_3(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(span,null)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)());let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block1=if_blocks[current_block_type_index],if_block1?if_block1.p(ctx,dirty):(if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block1.c()),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1));const dropdown0_changes={};1&dirty&&(dropdown0_changes.fixed=ctx[0]>600),1088&dirty&&(dropdown0_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown0.$set(dropdown0_changes);const dropdown1_changes={};1&dirty&&(dropdown1_changes.fixed=ctx[0]>600),1088&dirty&&(dropdown1_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown1.$set(dropdown1_changes)},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(dropdown0.$$.fragment,local),(0,internal.Ui)(dropdown1.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(dropdown0.$$.fragment,local),(0,internal.etI)(dropdown1.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),if_block0&&if_block0.d(),detaching&&(0,internal.ogt)(t0),if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(dropdown0,detaching),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(dropdown1,detaching)}}}function ActionBar_svelte_create_if_block_3(ctx){let checkbox,current;return checkbox=new Checkbox_svelte({props:{indeterminate:ctx[5].someSelected,checked:ctx[2].hasSelection}}),checkbox.$on("check",ctx[7]),checkbox.$on("uncheck",documents.HF),{c(){(0,internal.YCL)(checkbox.$$.fragment)},m(target,anchor){(0,internal.yef)(checkbox,target,anchor),current=!0},p(ctx,dirty){const checkbox_changes={};32&dirty&&(checkbox_changes.indeterminate=ctx[5].someSelected),4&dirty&&(checkbox_changes.checked=ctx[2].hasSelection),checkbox.$set(checkbox_changes)},i(local){current||((0,internal.Ui)(checkbox.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(checkbox.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(checkbox,detaching)}}}function ActionBar_svelte_create_else_block(ctx){let span,tooltip,current;return tooltip=new Tooltip_svelte.Z({props:{caption:ctx[2].selectionEditable?ctx[6]("actionBar.selectDocs"):ctx[6]("actionBar.noPerms"),$$slots:{default:[ActionBar_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){span=(0,internal.bGB)("span"),(0,internal.YCL)(tooltip.$$.fragment),(0,internal.Ljt)(span,"class","action disabled shortpad nowrap svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.yef)(tooltip,span,null),current=!0},p(ctx,dirty){const tooltip_changes={};68&dirty&&(tooltip_changes.caption=ctx[2].selectionEditable?ctx[6]("actionBar.selectDocs"):ctx[6]("actionBar.noPerms")),1088&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,internal.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(tooltip)}}}function ActionBar_svelte_create_if_block_2(ctx){let dropdown,current;return dropdown=new Dropdown_svelte.Z({props:{name:"edit-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot_2],default:[ActionBar_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),dropdown.$on("active",ctx[9]),{c(){(0,internal.YCL)(dropdown.$$.fragment)},m(target,anchor){(0,internal.yef)(dropdown,target,anchor),current=!0},p(ctx,dirty){const dropdown_changes={};1&dirty&&(dropdown_changes.fixed=ctx[0]>600),1090&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes)},i(local){current||((0,internal.Ui)(dropdown.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropdown.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dropdown,detaching)}}}function ActionBar_svelte_create_default_slot_3(ctx){let t0,t1,span,t0_value=ctx[6]("actionBar.editMenu")+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span=(0,internal.bGB)("span"),span.textContent="▼",(0,internal.Ljt)(span,"class","dropper")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span,anchor)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.editMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span)}}}function ActionBar_svelte_create_default_slot_2(ctx){let editmenu,current;return editmenu=new EditMenu_svelte({props:{visible:ctx[1]}}),{c(){(0,internal.YCL)(editmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(editmenu,target,anchor),current=!0},p(ctx,dirty){const editmenu_changes={};2&dirty&&(editmenu_changes.visible=ctx[1]),editmenu.$set(editmenu_changes)},i(local){current||((0,internal.Ui)(editmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(editmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(editmenu,detaching)}}}function create_title_slot_2(ctx){let span1,t0,t1,span0,t0_value=ctx[6]("actionBar.editMenu")+"";return{c(){span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span1,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.editMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function ActionBar_svelte_create_default_slot_1(ctx){let projectsmenu,current;return projectsmenu=new ProjectsMenu_svelte({}),{c(){(0,internal.YCL)(projectsmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(projectsmenu,target,anchor),current=!0},i(local){current||((0,internal.Ui)(projectsmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(projectsmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(projectsmenu,detaching)}}}function create_title_slot_1(ctx){let span1,t0,t1,span0,t0_value=ctx[6]("actionBar.projectsMenu")+"";return{c(){span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span1,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.projectsMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function ActionBar_svelte_create_default_slot(ctx){let addonsmenu,current;return addonsmenu=new AddonsMenu_svelte({}),{c(){(0,internal.YCL)(addonsmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(addonsmenu,target,anchor),current=!0},i(local){current||((0,internal.Ui)(addonsmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(addonsmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(addonsmenu,detaching)}}}function create_title_slot(ctx){let span2,span0,t0,t1,t2,t3,t4,span1,t0_value=ctx[6]("common.new")+"",t3_value=ctx[6]("actionBar.addOnsMenu")+"";return{c(){span2=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)("!"),t2=(0,internal.DhX)(),t3=(0,internal.fLW)(t3_value),t4=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="▼",(0,internal.Ljt)(span0,"class","badge svelte-5udg7h"),(0,internal.Ljt)(span1,"class","dropper"),(0,internal.Ljt)(span2,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span2,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span2,anchor),(0,internal.R3I)(span2,span0),(0,internal.R3I)(span0,t0),(0,internal.R3I)(span0,t1),(0,internal.R3I)(span2,t2),(0,internal.R3I)(span2,t3),(0,internal.R3I)(span2,t4),(0,internal.R3I)(span2,span1)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("common.new")+"")&&(0,internal.rTO)(t0,t0_value),64&dirty&&t3_value!==(t3_value=ctx[6]("actionBar.addOnsMenu")+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(span2)}}}function ActionBar_svelte_create_fragment(ctx){let div,current,mounted,dispose;(0,internal.P$F)(ctx[8]);let if_block=!ctx[2].loading&&ActionBar_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","barcontainer svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null),current=!0,mounted||(dispose=(0,internal.oLt)(window,"resize",ctx[8]),mounted=!0)},p(ctx,[dirty]){ctx[2].loading?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),4&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ActionBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,null))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d(),mounted=!1,dispose()}}}function ActionBar_svelte_instance($$self,$$props,$$invalidate){let $layout,$orgsAndUsers,$documents,$manager,$_;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(2,$layout=$$value))),(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(3,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(4,$documents=$$value))),(0,internal.FIv)($$self,manager,($$value=>$$invalidate(5,$manager=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));let outerHeight=1e3,editVisible=!1;return[outerHeight,editVisible,$layout,$orgsAndUsers,$documents,$manager,$_,function({detail:detail}){detail.indeterminate||function(){const results={};documents.De.documents.forEach((doc=>{results[doc.id]=doc})),layout.bK.selectedMap=results}()},function(){$$invalidate(0,outerHeight=window.outerHeight)},e=>$$invalidate(1,editVisible=e.detail)]}class ActionBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ActionBar_svelte_instance,ActionBar_svelte_create_fragment,internal.N8,{})}}var ActionBar_svelte=ActionBar,Button_svelte=__webpack_require__(7120),transition=__webpack_require__(6318),document_silhouetteraw=__webpack_require__(6842),document_silhouetteraw_default=__webpack_require__.n(document_silhouetteraw);function Anonymous_svelte_create_default_slot(ctx){let t;return{c(){t=(0,internal.fLW)("Subscribe")},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Anonymous_svelte_create_fragment(ctx){let div2,button0,xcircle24,t0,h2,t1,t2,div0,t3,div1,p0,t4,t5,p1,t6,p2,t7,t8,form,input0,input0_placeholder_value,t9,input1,t10,button1,t11,p3,div2_outro,current,mounted,dispose,t1_value=ctx[0]("anonymous.title")+"",t4_value=ctx[0]("anonymous.p1",{values:{n:ctx[1].results.count}})+"",raw1_value=ctx[0]("anonymous.p2")+"",t7_value=ctx[0]("anonymous.p3")+"",raw2_value=ctx[0]("anonymous.p4")+"";return xcircle24=new lib.ZCA({}),button1=new Button_svelte.Z({props:{$$slots:{default:[Anonymous_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){div2=(0,internal.bGB)("div"),button0=(0,internal.bGB)("button"),(0,internal.YCL)(xcircle24.$$.fragment),t0=(0,internal.DhX)(),h2=(0,internal.bGB)("h2"),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t3=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t4=(0,internal.fLW)(t4_value),t5=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t6=(0,internal.DhX)(),p2=(0,internal.bGB)("p"),t7=(0,internal.fLW)(t7_value),t8=(0,internal.DhX)(),form=(0,internal.bGB)("form"),input0=(0,internal.bGB)("input"),t9=(0,internal.DhX)(),input1=(0,internal.bGB)("input"),t10=(0,internal.DhX)(),(0,internal.YCL)(button1.$$.fragment),t11=(0,internal.DhX)(),p3=(0,internal.bGB)("p"),(0,internal.Ljt)(button0,"class","dismiss svelte-16go80m"),(0,internal.Ljt)(h2,"class","svelte-16go80m"),(0,internal.Ljt)(div0,"class","img svelte-16go80m"),(0,internal.Ljt)(p0,"class","svelte-16go80m"),(0,internal.Ljt)(p1,"class","svelte-16go80m"),(0,internal.Ljt)(p2,"class","svelte-16go80m"),(0,internal.Ljt)(input0,"type","email"),(0,internal.Ljt)(input0,"name","EMAIL"),(0,internal.Ljt)(input0,"class","required email"),(0,internal.Ljt)(input0,"id","mce-EMAIL"),input0.required="",input0.value="",(0,internal.Ljt)(input0,"placeholder",input0_placeholder_value=ctx[0]("common.emailAddress")),(0,internal.Ljt)(input1,"type","hidden"),(0,internal.Ljt)(input1,"name","b_74862d74361490eca930f4384_20aa4a931d"),input1.value="",(0,internal.Ljt)(form,"action","https://muckrock.us2.list-manage.com/subscribe/post?u=74862d74361490eca930f4384&id=20aa4a931d&f_id=00f4c0e1f0"),(0,internal.Ljt)(form,"method","post"),(0,internal.Ljt)(form,"id","mc-embedded-subscribe-form"),(0,internal.Ljt)(form,"name","mc-embedded-subscribe-form"),(0,internal.Ljt)(form,"class","validate"),(0,internal.Ljt)(form,"target","_blank"),form.noValidate="",(0,internal.Ljt)(p3,"class","svelte-16go80m"),(0,internal.Ljt)(div1,"class","text svelte-16go80m"),(0,internal.Ljt)(div2,"class","container svelte-16go80m")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,button0),(0,internal.yef)(xcircle24,button0,null),(0,internal.R3I)(div2,t0),(0,internal.R3I)(div2,h2),(0,internal.R3I)(h2,t1),(0,internal.R3I)(div2,t2),(0,internal.R3I)(div2,div0),div0.innerHTML=document_silhouetteraw_default(),(0,internal.R3I)(div2,t3),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,p0),(0,internal.R3I)(p0,t4),(0,internal.R3I)(div1,t5),(0,internal.R3I)(div1,p1),p1.innerHTML=raw1_value,(0,internal.R3I)(div1,t6),(0,internal.R3I)(div1,p2),(0,internal.R3I)(p2,t7),(0,internal.R3I)(div1,t8),(0,internal.R3I)(div1,form),(0,internal.R3I)(form,input0),(0,internal.R3I)(form,t9),(0,internal.R3I)(form,input1),(0,internal.R3I)(form,t10),(0,internal.yef)(button1,form,null),(0,internal.R3I)(div1,t11),(0,internal.R3I)(div1,p3),p3.innerHTML=raw2_value,current=!0,mounted||(dispose=(0,internal.oLt)(button0,"click",ctx[2]),mounted=!0)},p(ctx,[dirty]){(!current||1&dirty)&&t1_value!==(t1_value=ctx[0]("anonymous.title")+"")&&(0,internal.rTO)(t1,t1_value),(!current||3&dirty)&&t4_value!==(t4_value=ctx[0]("anonymous.p1",{values:{n:ctx[1].results.count}})+"")&&(0,internal.rTO)(t4,t4_value),(!current||1&dirty)&&raw1_value!==(raw1_value=ctx[0]("anonymous.p2")+"")&&(p1.innerHTML=raw1_value),(!current||1&dirty)&&t7_value!==(t7_value=ctx[0]("anonymous.p3")+"")&&(0,internal.rTO)(t7,t7_value),(!current||1&dirty&&input0_placeholder_value!==(input0_placeholder_value=ctx[0]("common.emailAddress")))&&(0,internal.Ljt)(input0,"placeholder",input0_placeholder_value);const button1_changes={};16&dirty&&(button1_changes.$$scope={dirty:dirty,ctx:ctx}),button1.$set(button1_changes),(!current||1&dirty)&&raw2_value!==(raw2_value=ctx[0]("anonymous.p4")+"")&&(p3.innerHTML=raw2_value)},i(local){current||((0,internal.Ui)(xcircle24.$$.fragment,local),(0,internal.Ui)(button1.$$.fragment,local),div2_outro&&div2_outro.end(1),current=!0)},o(local){(0,internal.etI)(xcircle24.$$.fragment,local),(0,internal.etI)(button1.$$.fragment,local),div2_outro=(0,internal.eZl)(div2,transition.U1,{}),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),(0,internal.vpE)(xcircle24),(0,internal.vpE)(button1),detaching&&div2_outro&&div2_outro.end(),mounted=!1,dispose()}}}function Anonymous_svelte_instance($$self,$$props,$$invalidate){let $_,$search;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(0,$_=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(1,$search=$$value)));let{closed:closed=!1}=$$props;return $$self.$$set=$$props=>{"closed"in $$props&&$$invalidate(3,closed=$$props.closed)},[$_,$search,function(){$$invalidate(3,closed=!0)},closed]}class Anonymous extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Anonymous_svelte_instance,Anonymous_svelte_create_fragment,internal.N8,{closed:3})}}var Anonymous_svelte=Anonymous,Link_svelte=__webpack_require__(3566),auth=__webpack_require__(5232),langs=__webpack_require__(4358);function AuthSection_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[13]=list[i],child_ctx}function get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[16]=list[i][0],child_ctx[17]=list[i][1],child_ctx}function create_default_slot_24(ctx){let t,t_value=ctx[6]("common.home")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("common.home")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_23(ctx){let t,t_value=ctx[6]("authSection.faq")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.faq")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_22(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_23]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_21(ctx){let t,t_value=ctx[6]("authSection.searchDocs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.searchDocs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_20(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_21]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_19(ctx){let t,t_value=ctx[6]("authSection.apiDocs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.apiDocs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_18(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_19]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_17(ctx){let t,t_value=ctx[6]("authSection.addOns")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.addOns")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_16(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_17]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_15(ctx){let t,t_value=ctx[6]("authSection.premium")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.premium")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_14(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_15]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_13(ctx){let t,t_value=ctx[6]("authSection.emailUs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.emailUs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_12(ctx){let link0,t0,link1,t1,link2,t2,link3,t3,link4,t4,a,menuitem,current;return link0=new Link_svelte.Z({props:{toUrl:"/help/faq",color:!0,$$slots:{default:[create_default_slot_22]},$$scope:{ctx:ctx}}}),link1=new Link_svelte.Z({props:{toUrl:"/help/search",color:!0,$$slots:{default:[create_default_slot_20]},$$scope:{ctx:ctx}}}),link2=new Link_svelte.Z({props:{toUrl:"/help/api",color:!0,$$slots:{default:[create_default_slot_18]},$$scope:{ctx:ctx}}}),link3=new Link_svelte.Z({props:{toUrl:"/help/add-ons",color:!0,$$slots:{default:[create_default_slot_16]},$$scope:{ctx:ctx}}}),link4=new Link_svelte.Z({props:{toUrl:"/help/premium",color:!0,$$slots:{default:[create_default_slot_14]},$$scope:{ctx:ctx}}}),menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_13]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(link0.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(link1.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(link2.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(link3.$$.fragment),t3=(0,internal.DhX)(),(0,internal.YCL)(link4.$$.fragment),t4=(0,internal.DhX)(),a=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem.$$.fragment),(0,internal.Ljt)(a,"href","mailto:info@documentcloud.org"),(0,internal.Ljt)(a,"class","color svelte-1cdvx7j"),(0,internal.Ljt)(a,"target","_blank")},m(target,anchor){(0,internal.yef)(link0,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.yef)(link1,target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(link2,target,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(link3,target,anchor),(0,internal.$Tr)(target,t3,anchor),(0,internal.yef)(link4,target,anchor),(0,internal.$Tr)(target,t4,anchor),(0,internal.$Tr)(target,a,anchor),(0,internal.yef)(menuitem,a,null),current=!0},p(ctx,dirty){const link0_changes={};1048640&dirty&&(link0_changes.$$scope={dirty:dirty,ctx:ctx}),link0.$set(link0_changes);const link1_changes={};1048640&dirty&&(link1_changes.$$scope={dirty:dirty,ctx:ctx}),link1.$set(link1_changes);const link2_changes={};1048640&dirty&&(link2_changes.$$scope={dirty:dirty,ctx:ctx}),link2.$set(link2_changes);const link3_changes={};1048640&dirty&&(link3_changes.$$scope={dirty:dirty,ctx:ctx}),link3.$set(link3_changes);const link4_changes={};1048640&dirty&&(link4_changes.$$scope={dirty:dirty,ctx:ctx}),link4.$set(link4_changes);const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(link0.$$.fragment,local),(0,internal.Ui)(link1.$$.fragment,local),(0,internal.Ui)(link2.$$.fragment,local),(0,internal.Ui)(link3.$$.fragment,local),(0,internal.Ui)(link4.$$.fragment,local),(0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(link0.$$.fragment,local),(0,internal.etI)(link1.$$.fragment,local),(0,internal.etI)(link2.$$.fragment,local),(0,internal.etI)(link3.$$.fragment,local),(0,internal.etI)(link4.$$.fragment,local),(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(link0,detaching),detaching&&(0,internal.ogt)(t0),(0,internal.vpE)(link1,detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(link2,detaching),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(link3,detaching),detaching&&(0,internal.ogt)(t3),(0,internal.vpE)(link4,detaching),detaching&&(0,internal.ogt)(t4),detaching&&(0,internal.ogt)(a),(0,internal.vpE)(menuitem)}}}function create_default_slot_11(ctx){let menu,current;return menu=new Menu_svelte.Z({props:{$$slots:{default:[create_default_slot_12]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menu.$$.fragment)},m(target,anchor){(0,internal.yef)(menu,target,anchor),current=!0},p(ctx,dirty){const menu_changes={};1048640&dirty&&(menu_changes.$$scope={dirty:dirty,ctx:ctx}),menu.$set(menu_changes)},i(local){current||((0,internal.Ui)(menu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menu,detaching)}}}function AuthSection_svelte_create_title_slot_2(ctx){let span2,span1,t0,t1,span0,t0_value=ctx[6]("authSection.help")+"";return{c(){span2=(0,internal.bGB)("span"),span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","nowrap title svelte-1cdvx7j"),(0,internal.Ljt)(span2,"class","action"),(0,internal.Ljt)(span2,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span2,anchor),(0,internal.R3I)(span2,span1),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("authSection.help")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span2)}}}function create_if_block_7(ctx){let span,t1;return{c(){span=(0,internal.bGB)("span"),span.textContent="✓",t1=(0,internal.DhX)(),(0,internal.Ljt)(span,"class","scope svelte-1cdvx7j")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.$Tr)(target,t1,anchor)},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t1)}}}function AuthSection_svelte_create_default_slot_10(ctx){let t0,t1,if_block_anchor,t0_value=ctx[16]+"",if_block=ctx[17]==ctx[5]&&create_if_block_7();return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){ctx[17]==ctx[5]?if_block||(if_block=create_if_block_7(),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_each_block_1(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_10]},$$scope:{ctx:ctx}}}),menuitem.$on("click",(function(){return ctx[10](ctx[17])})),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx;const menuitem_changes={};1048608&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function AuthSection_svelte_create_default_slot_9(ctx){let each_1_anchor,current,each_value_1=langs,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){for(let i=0;i{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function AuthSection_svelte_create_default_slot_1(ctx){let a0,menuitem0,t0,menuitem1,t1,a1,menuitem2,t2,menuitem3,t3,t4,each_1_anchor,current;menuitem0=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),menuitem1=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}}),menuitem1.$on("click",showMailkeySelected),menuitem2=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_5]},$$scope:{ctx:ctx}}}),menuitem3=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[AuthSection_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}});let if_block=null!==ctx[2]&&AuthSection_svelte_create_if_block_4(ctx),each_value=ctx[0],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){a0=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem0.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(menuitem1.$$.fragment),t1=(0,internal.DhX)(),a1=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem2.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(menuitem3.$$.fragment),t3=(0,internal.DhX)(),if_block&&if_block.c(),t4=(0,internal.DhX)();for(let i=0;i{if_block=null})),(0,internal.gbL)()),141&dirty){let i;for(each_value=ctx[0],i=0;i1&&function(ctx){let dropdown,t0,span,current;return dropdown=new Dropdown_svelte.Z({props:{name:"language",fixed:!0,$$slots:{title:[AuthSection_svelte_create_title_slot_1],default:[AuthSection_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(dropdown.$$.fragment),t0=(0,internal.DhX)(),span=(0,internal.bGB)("span"),span.textContent="·",(0,internal.Ljt)(span,"class","dot svelte-1cdvx7j")},m(target,anchor){(0,internal.yef)(dropdown,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,span,anchor),current=!0},p(ctx,dirty){const dropdown_changes={};1048672&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes)},i(local){current||((0,internal.Ui)(dropdown.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropdown.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dropdown,detaching),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(span)}}}(ctx);const if_block_creators=[AuthSection_svelte_create_if_block,AuthSection_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return null!=ctx[1]?0:1}return current_block_type_index=select_block_type(ctx),if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(link.$$.fragment),t0=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="·",t2=(0,internal.DhX)(),(0,internal.YCL)(dropdown.$$.fragment),t3=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="·",t5=(0,internal.DhX)(),if_block0&&if_block0.c(),t6=(0,internal.DhX)(),if_block1.c(),(0,internal.Ljt)(span0,"class","dot svelte-1cdvx7j"),(0,internal.Ljt)(span1,"class","dot svelte-1cdvx7j"),(0,internal.Ljt)(div,"class","auth svelte-1cdvx7j")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(link,div,null),(0,internal.R3I)(div,t0),(0,internal.R3I)(div,span0),(0,internal.R3I)(div,t2),(0,internal.yef)(dropdown,div,null),(0,internal.R3I)(div,t3),(0,internal.R3I)(div,span1),(0,internal.R3I)(div,t5),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t6),if_blocks[current_block_type_index].m(div,null),current=!0},p(ctx,[dirty]){const link_changes={};1048640&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes);const dropdown_changes={};1048640&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes),langs.length>1&&if_block0.p(ctx,dirty);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block1=if_blocks[current_block_type_index],if_block1?if_block1.p(ctx,dirty):(if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block1.c()),(0,internal.Ui)(if_block1,1),if_block1.m(div,null))},i(local){current||((0,internal.Ui)(link.$$.fragment,local),(0,internal.Ui)(dropdown.$$.fragment,local),(0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),(0,internal.etI)(dropdown.$$.fragment,local),(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(link),(0,internal.vpE)(dropdown),if_block0&&if_block0.d(),if_blocks[current_block_type_index].d()}}}function triggerWindowResize(){window.dispatchEvent(new Event("resize"))}function AuthSection_svelte_instance($$self,$$props,$$invalidate){let me,individual,currentOrg,orgs,individualOrg,$orgsAndUsers,$locale,$_;async function change(org){await(0,orgsAndUsers.P8)(org),triggerWindowResize()}function updateLanguage(code){(0,internal.fxP)(runtime_esm.SP,$locale=code,$locale);try{localStorage.setItem("dc-locale",code)}catch(e){}triggerWindowResize()}(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(9,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,runtime_esm.SP,($$value=>$$invalidate(5,$locale=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));return $$self.$$.update=()=>{var list;512&$$self.$$.dirty&&$$invalidate(1,me=$orgsAndUsers.me),2&$$self.$$.dirty&&$$invalidate(4,individual=null!==me&&me.organization.individual),2&$$self.$$.dirty&&$$invalidate(3,currentOrg=null===me?null:me.organization),512&$$self.$$.dirty&&$$invalidate(0,orgs=null===$orgsAndUsers.selfOrgs?[]:$orgsAndUsers.selfOrgs),1&$$self.$$.dirty&&$$invalidate(2,(list=orgs.filter((org=>org.individual)),individualOrg=null==list||1!=list.length?null:list[0]))},[orgs,me,individualOrg,currentOrg,individual,$locale,$_,change,updateLanguage,$orgsAndUsers,code=>updateLanguage(code),()=>change(individualOrg),org=>change(org)]}class AuthSection extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AuthSection_svelte_instance,AuthSection_svelte_create_fragment,internal.N8,{})}}var AuthSection_svelte=AuthSection,src_emit=__webpack_require__(1812),array=__webpack_require__(4152);const documentTypes="123,602,abw,agd,bmp,cdr,cgm,cmx,csv,cwk,dbf,dif,doc,docx,dot,emf,eps,fb2,fhd,fodg,fodp,fods,fodt,gif,gnm,gnumeric,htm,html,hwp,jpeg,jpg,jtd,jtt,key,kth,mml,numbers,odb,odf,odg,odp,ods,odt,p65,pages,pbm,pcd,pct,pcx,pdf,pgm,plt,pm3,pm4,pm5,pm6,pmd,png,pot,ppm,pps,ppt,pptx,psd,pub,qxp,ras,rlf,rtf,sda,sdc,sdd,sdp,sdw,sgf,sgl,sgv,slk,stc,std,sti,stw,svg,svm,sxc,sxd,sxi,sxm,sxw,tga,tif,tiff,txt,uof,uop,uos,uot,vor,vsd,wb2,wdb,wk1,wk3,wk4,wks,wpd,wps,wq1,wq2,wri,xbm,xls,xlsx,xlt,xlw,xml,xpm,zabw,zmf".split(",").map((x=>`.${x.toLowerCase().trim()}`));function filterFiles(files){return files.filter((file=>(0,array.q9)(documentTypes,file.name.toLowerCase().trim(),((a,b)=>b.endsWith(a)))))}function Draggable_svelte_create_fragment(ctx){let div,current,mounted,dispose;const default_slot_template=ctx[6].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[5],null);return{c(){div=(0,internal.bGB)("div"),default_slot&&default_slot.c(),(0,internal.Ljt)(div,"class","outer svelte-d0ld7j"),(0,internal.VHj)(div,"dragging",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0,mounted||(dispose=[(0,internal.oLt)(div,"dragenter",(0,internal.AT7)(ctx[1])),(0,internal.oLt)(div,"dragover",(0,internal.AT7)(ctx[1])),(0,internal.oLt)(div,"dragleave",(0,internal.AT7)(ctx[2])),(0,internal.oLt)(div,"drop",(0,internal.AT7)(ctx[3]))],mounted=!0)},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||32&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[5],current?(0,internal.u2N)(default_slot_template,ctx[5],dirty,null):(0,internal.VOJ)(ctx[5]),null),(!current||1&dirty)&&(0,internal.VHj)(div,"dragging",ctx[0])},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),default_slot&&default_slot.d(detaching),mounted=!1,(0,internal.j7q)(dispose)}}}function Draggable_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props;const emit=(0,src_emit.Z)({files(){}});let dragging=!1,{disabled:disabled=!1}=$$props;function leave(){disabled||$$invalidate(0,dragging=!1)}return $$self.$$set=$$props=>{"disabled"in $$props&&$$invalidate(4,disabled=$$props.disabled),"$$scope"in $$props&&$$invalidate(5,$$scope=$$props.$$scope)},[dragging,function(e){disabled||$$invalidate(0,dragging=!0)},leave,function(e){disabled||function(files){if(disabled)return;if(leave(),0==(files=filterFiles(Array.from(files))).length)return;emit.files(files)}(e.dataTransfer.files)},disabled,$$scope,slots]}class Draggable extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Draggable_svelte_instance,Draggable_svelte_create_fragment,internal.N8,{disabled:4})}}var Draggable_svelte=Draggable,AccessIcon_svelte=__webpack_require__(2212),Image_svelte=__webpack_require__(5465),Progress_svelte=__webpack_require__(5242),HtmlField_svelte=__webpack_require__(3448),DocumentThumbnail_svelte=__webpack_require__(3213),Annotation_svelte=__webpack_require__(2926),close_inlineraw=__webpack_require__(3218),close_inlineraw_default=__webpack_require__.n(close_inlineraw),pencilraw=__webpack_require__(4713),pencilraw_default=__webpack_require__.n(pencilraw),viewer=__webpack_require__(3248);function Document_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[27]=list[i],child_ctx}function Document_svelte_get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[27]=list[i],child_ctx}function get_each_context_2(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[32]=list[i],child_ctx}function get_each_context_3(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[35]=list[i],child_ctx}function get_each_context_4(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[38]=list[i].key,child_ctx[39]=list[i].value,child_ctx}function get_each_context_5(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[42]=list[i],child_ctx}function create_if_block_20(ctx){let div,checkbox,current;return checkbox=new Checkbox_svelte({props:{checked:null!=ctx[11].selectedMap[ctx[0].id]}}),checkbox.$on("check",ctx[20]),checkbox.$on("uncheck",ctx[21]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(checkbox.$$.fragment),(0,internal.Ljt)(div,"class","check svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(checkbox,div,null),current=!0},p(ctx,dirty){const checkbox_changes={};2049&dirty[0]&&(checkbox_changes.checked=null!=ctx[11].selectedMap[ctx[0].id]),checkbox.$set(checkbox_changes)},i(local){current||((0,internal.Ui)(checkbox.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(checkbox.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(checkbox)}}}function create_if_block_19(ctx){let span,accessicon,current;return accessicon=new AccessIcon_svelte.Z({props:{document:ctx[0]}}),{c(){span=(0,internal.bGB)("span"),(0,internal.YCL)(accessicon.$$.fragment),(0,internal.Ljt)(span,"class","valign marginleft svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.yef)(accessicon,span,null),current=!0},p(ctx,dirty){const accessicon_changes={};1&dirty[0]&&(accessicon_changes.document=ctx[0]),accessicon.$set(accessicon_changes)},i(local){current||((0,internal.Ui)(accessicon.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(accessicon.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(accessicon)}}}function create_if_block_15(ctx){let h3,t0,t1,t2,t3,show_if=null!=ctx[0].source&&ctx[0].source.trim().length>0,t3_value=ctx[13](ctx[0].createdAt,{format:"medium"})+"",if_block0=ctx[0].pageCount>0&&create_if_block_18(ctx),if_block1=show_if&&create_if_block_17(ctx),if_block2=null!==ctx[0].userName&&create_if_block_16(ctx);return{c(){h3=(0,internal.bGB)("h3"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),t3=(0,internal.fLW)(t3_value),(0,internal.Ljt)(h3,"class","svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,h3,anchor),if_block0&&if_block0.m(h3,null),(0,internal.R3I)(h3,t0),if_block1&&if_block1.m(h3,null),(0,internal.R3I)(h3,t1),if_block2&&if_block2.m(h3,null),(0,internal.R3I)(h3,t2),(0,internal.R3I)(h3,t3)},p(ctx,dirty){ctx[0].pageCount>0?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_18(ctx),if_block0.c(),if_block0.m(h3,t0)):if_block0&&(if_block0.d(1),if_block0=null),1&dirty[0]&&(show_if=null!=ctx[0].source&&ctx[0].source.trim().length>0),show_if?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_17(ctx),if_block1.c(),if_block1.m(h3,t1)):if_block1&&(if_block1.d(1),if_block1=null),null!==ctx[0].userName?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_16(ctx),if_block2.c(),if_block2.m(h3,t2)):if_block2&&(if_block2.d(1),if_block2=null),8193&dirty[0]&&t3_value!==(t3_value=ctx[13](ctx[0].createdAt,{format:"medium"})+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(h3),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_18(ctx){let t0,t1,t0_value=ctx[12]("document.pageCount",{values:{n:ctx[0].pageCount}})+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){4097&dirty[0]&&t0_value!==(t0_value=ctx[12]("document.pageCount",{values:{n:ctx[0].pageCount}})+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function create_if_block_17(ctx){let t0,t1,t2,t3,t0_value=ctx[12]("document.source")+"",t2_value=ctx[0].source+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(": "),t2=(0,internal.fLW)(t2_value),t3=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,t3,anchor)},p(ctx,dirty){4096&dirty[0]&&t0_value!==(t0_value=ctx[12]("document.source")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty[0]&&t2_value!==(t2_value=ctx[0].source+"")&&(0,internal.rTO)(t2,t2_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(t3)}}}function create_if_block_16(ctx){let t0,t1,t0_value=ctx[0].userOrgString+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){1&dirty[0]&&t0_value!==(t0_value=ctx[0].userOrgString+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function create_if_block_14(ctx){let div,htmlfield,current;return htmlfield=new HtmlField_svelte.Z({props:{content:ctx[0].description}}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(htmlfield.$$.fragment),(0,internal.Ljt)(div,"class","description svelte-embfgs"),(0,internal.VHj)(div,"embeddescription",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(htmlfield,div,null),current=!0},p(ctx,dirty){const htmlfield_changes={};1&dirty[0]&&(htmlfield_changes.content=ctx[0].description),htmlfield.$set(htmlfield_changes),(!current||2&dirty[0])&&(0,internal.VHj)(div,"embeddescription",ctx[1])},i(local){current||((0,internal.Ui)(htmlfield.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(htmlfield.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(htmlfield)}}}function Document_svelte_create_if_block(ctx){let div,current_block_type_index,if_block0,t0,t1,t2,if_block3_anchor,current;const if_block_creators=[create_if_block_9,create_if_block_11,create_if_block_12,create_if_block_13],if_blocks=[];function select_block_type(ctx,dirty){return ctx[0].viewable?0:ctx[0].pending?1:ctx[0].error?2:ctx[0].nofile?3:-1}~(current_block_type_index=select_block_type(ctx))&&(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block1=null!=ctx[0].projectIds&&Document_svelte_create_if_block_5(ctx),if_block2=null!=ctx[0].highlights&&ctx[0].highlights.length>0&&!ctx[4]&&Document_svelte_create_if_block_2(ctx),if_block3=null!=ctx[0].noteHighlights&&ctx[0].noteHighlights.length>0&&!ctx[5]&&Document_svelte_create_if_block_1(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),if_block3&&if_block3.c(),if_block3_anchor=(0,internal.cSb)(),(0,internal.Ljt)(div,"class","actions svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),~current_block_type_index&&if_blocks[current_block_type_index].m(div,null),(0,internal.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,internal.$Tr)(target,t1,anchor),if_block2&&if_block2.m(target,anchor),(0,internal.$Tr)(target,t2,anchor),if_block3&&if_block3.m(target,anchor),(0,internal.$Tr)(target,if_block3_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?~current_block_type_index&&if_blocks[current_block_type_index].p(ctx,dirty):(if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(div,t0)):if_block0=null),null!=ctx[0].projectIds?if_block1?(if_block1.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=Document_svelte_create_if_block_5(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),null!=ctx[0].highlights&&ctx[0].highlights.length>0&&!ctx[4]?if_block2?(if_block2.p(ctx,dirty),17&dirty[0]&&(0,internal.Ui)(if_block2,1)):(if_block2=Document_svelte_create_if_block_2(ctx),if_block2.c(),(0,internal.Ui)(if_block2,1),if_block2.m(t2.parentNode,t2)):if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_block2,1,1,(()=>{if_block2=null})),(0,internal.gbL)()),null!=ctx[0].noteHighlights&&ctx[0].noteHighlights.length>0&&!ctx[5]?if_block3?(if_block3.p(ctx,dirty),33&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=Document_svelte_create_if_block_1(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(if_block3_anchor.parentNode,if_block3_anchor)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),~current_block_type_index&&if_blocks[current_block_type_index].d(),if_block1&&if_block1.d(),detaching&&(0,internal.ogt)(t1),if_block2&&if_block2.d(detaching),detaching&&(0,internal.ogt)(t2),if_block3&&if_block3.d(detaching),detaching&&(0,internal.ogt)(if_block3_anchor)}}}function create_if_block_13(ctx){let span,t0,t1,br,t2,button,current,t0_value=ctx[12]("document.improper")+"";return button=new Button_svelte.Z({props:{small:!0,secondary:!0,$$slots:{default:[Document_svelte_create_default_slot_9]},$$scope:{ctx:ctx}}}),button.$on("click",(function(){(0,internal.sBU)((0,documents.Cf)(ctx[0]))&&(0,documents.Cf)(ctx[0]).apply(this,arguments)})),{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),br=(0,internal.bGB)("br"),t2=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","error svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,br,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(button,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx,(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.improper")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(br),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(button,detaching)}}}function create_if_block_12(ctx){let span,t0,t1,br,t2,button,current,t0_value=ctx[12]("document.processingError")+"";return button=new Button_svelte.Z({props:{small:!0,secondary:!0,$$slots:{default:[Document_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),button.$on("click",(function(){(0,internal.sBU)((0,documents.Cf)(ctx[0]))&&(0,documents.Cf)(ctx[0]).apply(this,arguments)})),{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),br=(0,internal.bGB)("br"),t2=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","error svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.R3I)(span,t1),(0,internal.R3I)(span,br),(0,internal.R3I)(span,t2),(0,internal.yef)(button,span,null),current=!0},p(new_ctx,dirty){ctx=new_ctx,(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.processingError")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(button)}}}function create_if_block_11(ctx){let span,t,t_value=ctx[12]("document.processing")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(span,"class","pending svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.processing")+"")&&(0,internal.rTO)(t,t_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(span)}}}function create_if_block_9(ctx){let link,t,if_block_anchor,current;link=new Link_svelte.Z({props:{to:"viewer",params:{id:ctx[0].slugId},$$slots:{default:[Document_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}});let if_block=ctx[0].readable&&create_if_block_10(ctx);return{c(){(0,internal.YCL)(link.$$.fragment),t=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(link,target,anchor),(0,internal.$Tr)(target,t,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty[0]&&(link_changes.params={id:ctx[0].slugId}),4096&dirty[0]|16384&dirty[1]&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes),ctx[0].readable?if_block?(if_block.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block,1)):(if_block=create_if_block_10(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(link.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){(0,internal.vpE)(link,detaching),detaching&&(0,internal.ogt)(t),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Document_svelte_create_default_slot_9(ctx){let t,t_value=ctx[12]("document.remove")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.remove")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_8(ctx){let t,t_value=ctx[12]("document.remove")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.remove")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_7(ctx){let t,t_value=ctx[12]("document.open")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.open")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_6(ctx){let button,current;return button=new Button_svelte.Z({props:{action:!0,$$slots:{default:[Document_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function create_if_block_10(ctx){let div,t0,t1,progress,current,t0_value=ctx[12]("document.updating")+"";return progress=new Progress_svelte.Z({props:{initializing:!0,progress:0,compact:!0}}),{c(){div=(0,internal.bGB)("div"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),(0,internal.YCL)(progress.$$.fragment),(0,internal.Ljt)(div,"class","updating svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t0),(0,internal.R3I)(div,t1),(0,internal.yef)(progress,div,null),current=!0},p(ctx,dirty){(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.updating")+"")&&(0,internal.rTO)(t0,t0_value)},i(local){current||((0,internal.Ui)(progress.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(progress.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(progress)}}}function Document_svelte_create_if_block_5(ctx){let t0,t1,if_block_anchor,current,each_value_5=ctx[0].projectIds,each_blocks_1=[];for(let i=0;i(0,internal.etI)(each_blocks_1[i],1,1,(()=>{each_blocks_1[i]=null}));let each_value_4=ctx[0].dataPoints,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));let if_block=ctx[0].dataPoints.length>0&&ctx[0].editAccess&&Document_svelte_create_if_block_6(ctx);return{c(){for(let i=0;i0&&ctx[0].editAccess?if_block?if_block.p(ctx,dirty):(if_block=Document_svelte_create_if_block_6(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},i(local){if(!current){for(let i=0;i{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Document_svelte_create_if_block_7(ctx){let t0,t1,t0_value=ctx[38]+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(":")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){1&dirty[0]&&t0_value!==(t0_value=ctx[38]+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Document_svelte_create_default_slot_3(ctx){let t0,t1,t1_value=ctx[39]+"",if_block=ctx[38]!=ctx[17]&&Document_svelte_create_if_block_7(ctx);return{c(){if_block&&if_block.c(),t0=(0,internal.DhX)(),t1=(0,internal.fLW)(t1_value)},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){ctx[38]!=ctx[17]?if_block?if_block.p(ctx,dirty):(if_block=Document_svelte_create_if_block_7(ctx),if_block.c(),if_block.m(t0.parentNode,t0)):if_block&&(if_block.d(1),if_block=null),1&dirty[0]&&t1_value!==(t1_value=ctx[39]+"")&&(0,internal.rTO)(t1,t1_value)},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Document_svelte_create_default_slot_2(ctx){let button,current;return button=new Button_svelte.Z({props:{plain:!0,$$slots:{default:[Document_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};1&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function create_each_block_4(ctx){let link,current;return link=new Link_svelte.Z({props:{toUrl:(0,search.c8)(ctx[38],ctx[39]),$$slots:{default:[Document_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(link.$$.fragment)},m(target,anchor){(0,internal.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty[0]&&(link_changes.toUrl=(0,search.c8)(ctx[38],ctx[39])),1&dirty[0]|16384&dirty[1]&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,internal.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(link,detaching)}}}function Document_svelte_create_if_block_6(ctx){let span,mounted,dispose;return{c(){span=(0,internal.bGB)("span"),(0,internal.Ljt)(span,"class","pencil svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),span.innerHTML=pencilraw_default(),mounted||(dispose=(0,internal.oLt)(span,"click",ctx[23]),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(span),mounted=!1,dispose()}}}function Document_svelte_create_if_block_2(ctx){let div0,span,t0,t1,div1,current,mounted,dispose;function select_block_type_1(ctx,dirty){return ctx[9]?Document_svelte_create_if_block_4:Document_svelte_create_else_block_1}let current_block_type=select_block_type_1(ctx),if_block=current_block_type(ctx),each_value_1=ctx[8],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){div0=(0,internal.bGB)("div"),span=(0,internal.bGB)("span"),t0=(0,internal.DhX)(),if_block.c(),t1=(0,internal.DhX)(),div1=(0,internal.bGB)("div");for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){div0=(0,internal.bGB)("div"),span0=(0,internal.bGB)("span"),t0=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="Notes matching the query",t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div");for(let i=0;i0,if_block0=ctx[10].loggedIn&&!ctx[1]&&!ctx[2]&&create_if_block_20(ctx);documentthumbnail=new DocumentThumbnail_svelte.Z({props:{embed:ctx[1],dialog:ctx[2],document:ctx[0],noteCount:ctx[0].notes.length,publicNote:ctx[0].notes.some(func),orgNote:ctx[0].notes.some(func_1),privateNote:ctx[0].notes.some(func_2)}}),documentthumbnail.$on("pick",ctx[22]);let if_block1=!ctx[1]&&create_if_block_19(ctx),if_block2=!ctx[1]&&create_if_block_15(ctx),if_block3=show_if&&create_if_block_14(ctx),if_block4=!ctx[1]&&Document_svelte_create_if_block(ctx);return{c(){div2=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),(0,internal.YCL)(documentthumbnail.$$.fragment),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),h2=(0,internal.bGB)("h2"),span=(0,internal.bGB)("span"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),if_block1&&if_block1.c(),t4=(0,internal.DhX)(),if_block2&&if_block2.c(),t5=(0,internal.DhX)(),if_block3&&if_block3.c(),t6=(0,internal.DhX)(),if_block4&&if_block4.c(),(0,internal.Ljt)(span,"class","valign svelte-embfgs"),(0,internal.Ljt)(h2,"class","svelte-embfgs"),(0,internal.Ljt)(div0,"class","info svelte-embfgs"),(0,internal.Ljt)(div1,"class","row svelte-embfgs"),(0,internal.Ljt)(div2,"class","card svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div1,t0),(0,internal.yef)(documentthumbnail,div1,null),(0,internal.R3I)(div1,t1),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,h2),(0,internal.R3I)(h2,span),(0,internal.R3I)(span,t2),(0,internal.R3I)(h2,t3),if_block1&&if_block1.m(h2,null),(0,internal.R3I)(div0,t4),if_block2&&if_block2.m(div0,null),(0,internal.R3I)(div0,t5),if_block3&&if_block3.m(div0,null),(0,internal.R3I)(div0,t6),if_block4&&if_block4.m(div0,null),current=!0,mounted||(dispose=[(0,internal.oLt)(window,"keydown",ctx[15]),(0,internal.oLt)(window,"keyup",ctx[16])],mounted=!0)},p(ctx,dirty){!ctx[10].loggedIn||ctx[1]||ctx[2]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),1030&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=create_if_block_20(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div1,t0));const documentthumbnail_changes={};2&dirty[0]&&(documentthumbnail_changes.embed=ctx[1]),4&dirty[0]&&(documentthumbnail_changes.dialog=ctx[2]),1&dirty[0]&&(documentthumbnail_changes.document=ctx[0]),1&dirty[0]&&(documentthumbnail_changes.noteCount=ctx[0].notes.length),1&dirty[0]&&(documentthumbnail_changes.publicNote=ctx[0].notes.some(func)),1&dirty[0]&&(documentthumbnail_changes.orgNote=ctx[0].notes.some(func_1)),1&dirty[0]&&(documentthumbnail_changes.privateNote=ctx[0].notes.some(func_2)),documentthumbnail.$set(documentthumbnail_changes),(!current||1&dirty[0])&&t2_value!==(t2_value=ctx[0].title+"")&&(0,internal.rTO)(t2,t2_value),ctx[1]?if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()):if_block1?(if_block1.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=create_if_block_19(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(h2,null)),ctx[1]?if_block2&&(if_block2.d(1),if_block2=null):if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_15(ctx),if_block2.c(),if_block2.m(div0,t5)),1&dirty[0]&&(show_if=null!=ctx[0].description&&ctx[0].description.trim().length>0),show_if?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=create_if_block_14(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div0,t6)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()),ctx[1]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?(if_block4.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block4,1)):(if_block4=Document_svelte_create_if_block(ctx),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div0,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(documentthumbnail.$$.fragment,local),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(documentthumbnail.$$.fragment,local),(0,internal.etI)(if_block1),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),if_block0&&if_block0.d(),(0,internal.vpE)(documentthumbnail),if_block1&&if_block1.d(),if_block2&&if_block2.d(),if_block3&&if_block3.d(),if_block4&&if_block4.d(),mounted=!1,(0,internal.j7q)(dispose)}}}const func=x=>"public"==x.access,func_1=x=>"organization"==x.access,func_2=x=>"private"==x.access;function Document_svelte_instance($$self,$$props,$$invalidate){let highlightsActive,trimmedHighlights,moreToExpand,highlights,noteHighlights,$orgsAndUsers,$layout,$_,$date,$projects;(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(10,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(11,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(12,$_=$$value))),(0,internal.FIv)($$self,runtime_esm.hT,($$value=>$$invalidate(13,$date=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(14,$projects=$$value)));let{document:document}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props,expandHighlights=!1,closeHighlights=!1,closeNoteHighlights=!1,shiftKey=!1;return $$self.$$set=$$props=>{"document"in $$props&&$$invalidate(0,document=$$props.document),"embed"in $$props&&$$invalidate(1,embed=$$props.embed),"dialog"in $$props&&$$invalidate(2,dialog=$$props.dialog)},$$self.$$.update=()=>{1&$$self.$$.dirty[0]&&$$invalidate(19,highlightsActive=null!=document.highlights&&document.highlights.length>0),524289&$$self.$$.dirty[0]&&$$invalidate(18,trimmedHighlights=highlightsActive?document.highlights.slice(0,3):null),786441&$$self.$$.dirty[0]&&$$invalidate(9,moreToExpand=!!highlightsActive&&(!expandHighlights&&trimmedHighlights.length!=document.highlights.length)),786441&$$self.$$.dirty[0]&&$$invalidate(8,highlights=highlightsActive?expandHighlights?document.highlights:trimmedHighlights:null),1&$$self.$$.dirty[0]&&$$invalidate(7,noteHighlights=document.noteHighlights)},[document,embed,dialog,expandHighlights,closeHighlights,closeNoteHighlights,shiftKey,noteHighlights,highlights,moreToExpand,$orgsAndUsers,$layout,$_,$date,$projects,function(e){"Shift"==e.key&&$$invalidate(6,shiftKey=!0)},function(e){"Shift"==e.key&&$$invalidate(6,shiftKey=!1)},"_tag",trimmedHighlights,highlightsActive,()=>(0,documents.P7)(document,shiftKey),()=>(0,layout.HU)(document),function(event){internal.cKT.call(this,$$self,event)},()=>(0,layout.re)([document]),()=>$$invalidate(4,closeHighlights=!0),()=>$$invalidate(3,expandHighlights=!0),()=>$$invalidate(5,closeNoteHighlights=!0)]}class Document extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Document_svelte_instance,Document_svelte_create_fragment,internal.N8,{document:0,embed:1,dialog:2},null,[-1,-1])}}var Document_svelte=Document,Logo_svelte=__webpack_require__(4386);function EmbedFooter_svelte_create_if_block(ctx){let div,logo,current;return logo=new Logo_svelte.Z({props:{newPage:!0,nopadding:!0,homeLink:!0}}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(logo.$$.fragment),(0,internal.Ljt)(div,"class","logo svelte-1126yno")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(logo,div,null),current=!0},i(local){current||((0,internal.Ui)(logo.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(logo.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(logo)}}}function EmbedFooter_svelte_create_fragment(ctx){let div2,div0,t0,div1,paginator,t1,current;paginator=new Paginator_svelte({});let if_block=!ctx[0]&&EmbedFooter_svelte_create_if_block();return{c(){div2=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),(0,internal.YCL)(paginator.$$.fragment),t1=(0,internal.DhX)(),if_block&&if_block.c(),(0,internal.Ljt)(div0,"class","background svelte-1126yno"),(0,internal.Ljt)(div1,"class","paginator svelte-1126yno"),(0,internal.Ljt)(div2,"class","footer svelte-1126yno"),(0,internal.VHj)(div2,"dialog",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div0),(0,internal.R3I)(div2,t0),(0,internal.R3I)(div2,div1),(0,internal.yef)(paginator,div1,null),(0,internal.R3I)(div2,t1),if_block&&if_block.m(div2,null),current=!0},p(ctx,[dirty]){ctx[0]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?1&dirty&&(0,internal.Ui)(if_block,1):(if_block=EmbedFooter_svelte_create_if_block(),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div2,null)),(!current||1&dirty)&&(0,internal.VHj)(div2,"dialog",ctx[0])},i(local){current||((0,internal.Ui)(paginator.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(paginator.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),(0,internal.vpE)(paginator),if_block&&if_block.d()}}}function EmbedFooter_svelte_instance($$self,$$props,$$invalidate){let{dialog:dialog=!1}=$$props;return $$self.$$set=$$props=>{"dialog"in $$props&&$$invalidate(0,dialog=$$props.dialog)},[dialog]}class EmbedFooter extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,EmbedFooter_svelte_instance,EmbedFooter_svelte_create_fragment,internal.N8,{dialog:0})}}var EmbedFooter_svelte=EmbedFooter,Loader_svelte=__webpack_require__(1172),Modal_svelte=__webpack_require__(865),empty_resultsraw=__webpack_require__(4156),empty_resultsraw_default=__webpack_require__.n(empty_resultsraw);function NoDocuments_svelte_create_else_block(ctx){let h2,t0,t1,div0,t2,div1,p0,t3,t4,p1,t5,t0_value=ctx[2]("noDocuments.uploadFirst")+"",t3_value=ctx[2]("noDocuments.upload1")+"",t5_value=ctx[2]("noDocuments.upload2")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t3=(0,internal.fLW)(t3_value),t4=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t5=(0,internal.fLW)(t5_value),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p0,"class","svelte-dlrhmn"),(0,internal.Ljt)(p1,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=document_silhouetteraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p0),(0,internal.R3I)(p0,t3),(0,internal.R3I)(div1,t4),(0,internal.R3I)(div1,p1),(0,internal.R3I)(p1,t5)},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.uploadFirst")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&t3_value!==(t3_value=ctx[2]("noDocuments.upload1")+"")&&(0,internal.rTO)(t3,t3_value),4&dirty&&t5_value!==(t5_value=ctx[2]("noDocuments.upload2")+"")&&(0,internal.rTO)(t5,t5_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_if_block_1(ctx){let h2,t0,t1,div0,t2,div1,p0,t3,p1,t4,t5,ul,li0,t6,li1,t0_value=ctx[2]("noDocuments.welcome")+"",raw1_value=ctx[2]("noDocuments.verify1")+"",t4_value=ctx[2]("noDocuments.verify2")+"",raw2_value=ctx[2]("noDocuments.verify3")+"",raw3_value=ctx[2]("noDocuments.verify4")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t3=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t4=(0,internal.fLW)(t4_value),t5=(0,internal.DhX)(),ul=(0,internal.bGB)("ul"),li0=(0,internal.bGB)("li"),t6=(0,internal.DhX)(),li1=(0,internal.bGB)("li"),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p0,"class","svelte-dlrhmn"),(0,internal.Ljt)(p1,"class","svelte-dlrhmn"),(0,internal.Ljt)(li0,"class","svelte-dlrhmn"),(0,internal.Ljt)(li1,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=document_silhouetteraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p0),p0.innerHTML=raw1_value,(0,internal.R3I)(div1,t3),(0,internal.R3I)(div1,p1),(0,internal.R3I)(p1,t4),(0,internal.R3I)(div1,t5),(0,internal.R3I)(div1,ul),(0,internal.R3I)(ul,li0),li0.innerHTML=raw2_value,(0,internal.R3I)(ul,t6),(0,internal.R3I)(ul,li1),li1.innerHTML=raw3_value},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.welcome")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&raw1_value!==(raw1_value=ctx[2]("noDocuments.verify1")+"")&&(p0.innerHTML=raw1_value),4&dirty&&t4_value!==(t4_value=ctx[2]("noDocuments.verify2")+"")&&(0,internal.rTO)(t4,t4_value),4&dirty&&raw2_value!==(raw2_value=ctx[2]("noDocuments.verify3")+"")&&(li0.innerHTML=raw2_value),4&dirty&&raw3_value!==(raw3_value=ctx[2]("noDocuments.verify4")+"")&&(li1.innerHTML=raw3_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_if_block(ctx){let h2,t0,t1,div0,t2,div1,p,t3,t0_value=ctx[2]("noDocuments.noSearchResults")+"",t3_value=ctx[2]("noDocuments.queryNoResults")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p=(0,internal.bGB)("p"),t3=(0,internal.fLW)(t3_value),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=empty_resultsraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p),(0,internal.R3I)(p,t3)},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.noSearchResults")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&t3_value!==(t3_value=ctx[2]("noDocuments.queryNoResults")+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_fragment(ctx){let div;function select_block_type(ctx,dirty){return null!=ctx[0].me&&ctx[1].params.oneUserSearch==ctx[0].me.id&&ctx[1].params.noStatus&&ctx[1].params.noAccess?null==ctx[0].me||ctx[0].isVerified?NoDocuments_svelte_create_else_block:NoDocuments_svelte_create_if_block_1:NoDocuments_svelte_create_if_block}let current_block_type=select_block_type(ctx),if_block=current_block_type(ctx);return{c(){div=(0,internal.bGB)("div"),if_block.c(),(0,internal.Ljt)(div,"class","container svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block.m(div,null)},p(ctx,[dirty]){current_block_type===(current_block_type=select_block_type(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div,null)))},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),if_block.d()}}}function NoDocuments_svelte_instance($$self,$$props,$$invalidate){let $orgsAndUsers,$search,$_;return(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(0,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(1,$search=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value))),[$orgsAndUsers,$search,$_]}class NoDocuments extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,NoDocuments_svelte_instance,NoDocuments_svelte_create_fragment,internal.N8,{})}}var NoDocuments_svelte=NoDocuments;function ProcessingBar_svelte_create_if_block(ctx){let div1,div0,current_block_type_index,if_block,t,progress,current;const if_block_creators=[ProcessingBar_svelte_create_if_block_1,ProcessingBar_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[1].doneProcessing?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),progress=new Progress_svelte.Z({props:{progress:ctx[1].processingProgress}}),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),if_block.c(),t=(0,internal.DhX)(),(0,internal.YCL)(progress.$$.fragment),(0,internal.Ljt)(div0,"class","info svelte-mjz2rg"),(0,internal.Ljt)(div1,"class","processingbar svelte-mjz2rg")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),if_blocks[current_block_type_index].m(div0,null),(0,internal.R3I)(div1,t),(0,internal.yef)(progress,div1,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(div0,null));const progress_changes={};2&dirty&&(progress_changes.progress=ctx[1].processingProgress),progress.$set(progress_changes)},i(local){current||((0,internal.Ui)(if_block),(0,internal.Ui)(progress.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block),(0,internal.etI)(progress.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div1),if_blocks[current_block_type_index].d(),(0,internal.vpE)(progress)}}}function ProcessingBar_svelte_create_else_block(ctx){let t,t_value=ctx[2]("processingBar.processingDocuments",{values:{n:ctx[1].numProcessing}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){6&dirty&&t_value!==(t_value=ctx[2]("processingBar.processingDocuments",{values:{n:ctx[1].numProcessing}})+"")&&(0,internal.rTO)(t,t_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProcessingBar_svelte_create_if_block_1(ctx){let span0,t0,t1,span1,button,current,t0_value=ctx[2]("processingBar.doneProcessing")+"";return button=new Button_svelte.Z({props:{small:!0,$$slots:{default:[ProcessingBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[3]),{c(){span0=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span0,"class","valign svelte-mjz2rg"),(0,internal.Ljt)(span1,"class","dismiss svelte-mjz2rg")},m(target,anchor){(0,internal.$Tr)(target,span0,anchor),(0,internal.R3I)(span0,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span1,anchor),(0,internal.yef)(button,span1,null),current=!0},p(ctx,dirty){(!current||4&dirty)&&t0_value!==(t0_value=ctx[2]("processingBar.doneProcessing")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};20&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span1),(0,internal.vpE)(button)}}}function ProcessingBar_svelte_create_default_slot(ctx){let t,t_value=ctx[2]("dialog.dismiss")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("dialog.dismiss")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProcessingBar_svelte_create_fragment(ctx){let if_block_anchor,current,if_block=(!ctx[1].doneProcessing||!ctx[0])&&ProcessingBar_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){ctx[1].doneProcessing&&ctx[0]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),3&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ProcessingBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProcessingBar_svelte_instance($$self,$$props,$$invalidate){let $documents,$_;(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(1,$documents=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value)));let dismissed=!0;documents.De.subscribe((()=>{!documents.De.doneProcessing&&dismissed&&$$invalidate(0,dismissed=!1)}));return[dismissed,$documents,$_,()=>$$invalidate(0,dismissed=!0)]}class ProcessingBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProcessingBar_svelte_instance,ProcessingBar_svelte_create_fragment,internal.N8,{})}}var ProcessingBar_svelte=ProcessingBar,SearchBar_svelte=__webpack_require__(9776),search_iconraw=__webpack_require__(9016),search_iconraw_default=__webpack_require__.n(search_iconraw);function SearchLink_svelte_create_fragment(ctx){let div0,a,html_tag,t0,t1,t2,div1,t1_value=ctx[1]("searchLink.search")+"";return{c(){div0=(0,internal.bGB)("div"),a=(0,internal.bGB)("a"),html_tag=new internal.FWw(!1),t0=(0,internal.DhX)(),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),html_tag.a=t0,(0,internal.Ljt)(a,"href",ctx[0]),(0,internal.Ljt)(a,"target","_blank"),(0,internal.Ljt)(div0,"class","link svelte-17lxzen"),(0,internal.Ljt)(div1,"class","linkcontainer svelte-17lxzen")},m(target,anchor){(0,internal.$Tr)(target,div0,anchor),(0,internal.R3I)(div0,a),html_tag.m(search_iconraw_default(),a),(0,internal.R3I)(a,t0),(0,internal.R3I)(a,t1),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor)},p(ctx,[dirty]){2&dirty&&t1_value!==(t1_value=ctx[1]("searchLink.search")+"")&&(0,internal.rTO)(t1,t1_value),1&dirty&&(0,internal.Ljt)(a,"href",ctx[0])},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function SearchLink_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));let{link:link=""}=$$props;return $$self.$$set=$$props=>{"link"in $$props&&$$invalidate(0,link=$$props.link)},[link,$_]}class SearchLink extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SearchLink_svelte_instance,SearchLink_svelte_create_fragment,internal.N8,{link:0})}}var SearchLink_svelte=SearchLink;function SpecialMessage_svelte_create_if_block(ctx){let div1,div0,promise,info={ctx:ctx,current:null,token:null,hasCatch:!0,pending:create_pending_block,then:create_then_block,catch:create_catch_block,value:8};return(0,internal.CR_)(promise=ctx[0],info),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),info.block.c(),(0,internal.Ljt)(div0,"class","special svelte-swwj5y"),(0,internal.Ljt)(div1,"class","container svelte-swwj5y")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),info.block.m(div0,info.anchor=null),info.mount=()=>div0,info.anchor=null},p(new_ctx,dirty){ctx=new_ctx,info.ctx=ctx,1&dirty&&promise!==(promise=ctx[0])&&(0,internal.CR_)(promise,info)||(0,internal.xfz)(info,ctx,dirty)},d(detaching){detaching&&(0,internal.ogt)(div1),info.block.d(),info.token=null,info=null}}}function create_catch_block(ctx){let t0,t1,if_block_anchor,if_block=ctx[1]&&SpecialMessage_svelte_create_if_block_1(ctx);return{c(){t0=(0,internal.fLW)(ctx[4]),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){ctx[1]?if_block?if_block.p(ctx,dirty):(if_block=SpecialMessage_svelte_create_if_block_1(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function SpecialMessage_svelte_create_if_block_1(ctx){let html_tag,html_anchor,raw_value=ctx[3]("specialMessage.constactUs",{values:{contact:ctx[5]}})+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){8&dirty&&raw_value!==(raw_value=ctx[3]("specialMessage.constactUs",{values:{contact:ctx[5]}})+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_then_block(ctx){let html_tag,html_anchor,raw_value=ctx[8]+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){1&dirty&&raw_value!==(raw_value=ctx[8]+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_pending_block(ctx){return{c:internal.ZTd,m:internal.ZTd,p:internal.ZTd,d:internal.ZTd}}function SpecialMessage_svelte_create_fragment(ctx){let if_block_anchor,if_block=ctx[2]&&SpecialMessage_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,[dirty]){ctx[2]?if_block?if_block.p(ctx,dirty):(if_block=SpecialMessage_svelte_create_if_block(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},i:internal.ZTd,o:internal.ZTd,d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function SpecialMessage_svelte_instance($$self,$$props,$$invalidate){let show,showContact,$_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value)));const version="Thanks for using DocumentCloud!",contact="mailto:info@documentcloud.org?subject=DocumentCloud Feedback",endpoint=new URL("/api/flatpages/tipofday/",base.t);let loading;return(0,svelte.H3)((()=>{$$invalidate(0,loading=async function(){const resp=await fetch(endpoint);if(!resp.ok)return"";const{content:content}=await resp.json();return content}())})),$$invalidate(2,show=version.trim().length>0),$$invalidate(1,showContact=contact.trim().length>0),[loading,showContact,show,$_,version,contact]}class SpecialMessage extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SpecialMessage_svelte_instance,SpecialMessage_svelte_create_fragment,internal.N8,{})}}var SpecialMessage_svelte=SpecialMessage,Title_svelte=__webpack_require__(4725),document_iconraw=__webpack_require__(5563),document_iconraw_default=__webpack_require__.n(document_iconraw);function File_svelte_create_if_block(ctx){let div4,div0,t0,div2,div1,t1,input,input_placeholder_value,t2,div3,t4,mounted,dispose,if_block0=ctx[0]&&File_svelte_create_if_block_2(ctx),if_block1=!ctx[0]&&File_svelte_create_if_block_1(ctx);return{c(){div4=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t1=(0,internal.DhX)(),input=(0,internal.bGB)("input"),t2=(0,internal.DhX)(),div3=(0,internal.bGB)("div"),div3.textContent=`${ctx[6]}`,t4=(0,internal.DhX)(),if_block1&&if_block1.c(),(0,internal.Ljt)(div0,"class","cell doc svelte-1numtjm"),(0,internal.Ljt)(div1,"class","progresscontainer svelte-1numtjm"),(0,internal.Ljt)(input,"placeholder",input_placeholder_value=ctx[4]("uploadDialog.untitled")),input.readOnly=ctx[0],(0,internal.Ljt)(input,"class","svelte-1numtjm"),(0,internal.VHj)(input,"error",ctx[2]),(0,internal.Ljt)(div2,"class","cell name svelte-1numtjm"),(0,internal.VHj)(div2,"readonly",ctx[0]),(0,internal.Ljt)(div3,"class","cell size svelte-1numtjm"),(0,internal.Ljt)(div4,"class","row svelte-1numtjm")},m(target,anchor){(0,internal.$Tr)(target,div4,anchor),(0,internal.R3I)(div4,div0),div0.innerHTML=document_iconraw_default(),(0,internal.R3I)(div4,t0),(0,internal.R3I)(div4,div2),(0,internal.R3I)(div2,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,input),(0,internal.BmG)(input,ctx[3]),(0,internal.R3I)(div4,t2),(0,internal.R3I)(div4,div3),(0,internal.R3I)(div4,t4),if_block1&&if_block1.m(div4,null),mounted||(dispose=(0,internal.oLt)(input,"input",ctx[8]),mounted=!0)},p(ctx,dirty){ctx[0]?if_block0?if_block0.p(ctx,dirty):(if_block0=File_svelte_create_if_block_2(ctx),if_block0.c(),if_block0.m(div1,null)):if_block0&&(if_block0.d(1),if_block0=null),16&dirty&&input_placeholder_value!==(input_placeholder_value=ctx[4]("uploadDialog.untitled"))&&(0,internal.Ljt)(input,"placeholder",input_placeholder_value),1&dirty&&(input.readOnly=ctx[0]),8&dirty&&input.value!==ctx[3]&&(0,internal.BmG)(input,ctx[3]),4&dirty&&(0,internal.VHj)(input,"error",ctx[2]),1&dirty&&(0,internal.VHj)(div2,"readonly",ctx[0]),ctx[0]?if_block1&&(if_block1.d(1),if_block1=null):if_block1?if_block1.p(ctx,dirty):(if_block1=File_svelte_create_if_block_1(ctx),if_block1.c(),if_block1.m(div4,null))},d(detaching){detaching&&(0,internal.ogt)(div4),if_block0&&if_block0.d(),if_block1&&if_block1.d(),mounted=!1,dispose()}}}function File_svelte_create_if_block_2(ctx){let div1,div0,t;return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t=(0,internal.fLW)(ctx[3]),(0,internal.Ljt)(div0,"class","progressinner svelte-1numtjm"),(0,internal.Ljt)(div1,"class","progress svelte-1numtjm"),(0,internal.czc)(div1,"width",100*ctx[1].progress+"%")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,t)},p(ctx,dirty){8&dirty&&(0,internal.rTO)(t,ctx[3]),2&dirty&&(0,internal.czc)(div1,"width",100*ctx[1].progress+"%")},d(detaching){detaching&&(0,internal.ogt)(div1)}}}function File_svelte_create_if_block_1(ctx){let div1,div0,mounted,dispose;return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),(0,internal.Ljt)(div1,"class","cell close svelte-1numtjm")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),div0.innerHTML=close_inlineraw_default(),mounted||(dispose=(0,internal.oLt)(div0,"click",ctx[5].delete),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div1),mounted=!1,dispose()}}}function File_svelte_create_fragment(ctx){let if_block_anchor,if_block=(!ctx[0]||!ctx[1].done)&&File_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,[dirty]){ctx[0]&&ctx[1].done?if_block&&(if_block.d(1),if_block=null):if_block?if_block.p(ctx,dirty):(if_block=File_svelte_create_if_block(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i:internal.ZTd,o:internal.ZTd,d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function File_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(4,$_=$$value)));const emit=(0,src_emit.Z)({name(){},delete(){}});let{file:file}=$$props,{uploadMode:uploadMode}=$$props,{data:data}=$$props,{error:error=!1}=$$props,name=(0,string.f_)(file.name),size=(0,string.td)(file.size);return(0,svelte.H3)((()=>{emit.name(name)})),$$self.$$set=$$props=>{"file"in $$props&&$$invalidate(7,file=$$props.file),"uploadMode"in $$props&&$$invalidate(0,uploadMode=$$props.uploadMode),"data"in $$props&&$$invalidate(1,data=$$props.data),"error"in $$props&&$$invalidate(2,error=$$props.error)},$$self.$$.update=()=>{8&$$self.$$.dirty&&emit.name(name)},[uploadMode,data,error,name,$_,emit,size,file,function(){name=this.value,$$invalidate(3,name)}]}class File extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,File_svelte_instance,File_svelte_create_fragment,internal.N8,{file:7,uploadMode:0,data:1,error:2})}}var File_svelte=File;function DropZone_svelte_create_default_slot(ctx){let div,current;const default_slot_template=ctx[1].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[3],null);return{c(){div=(0,internal.bGB)("div"),default_slot&&default_slot.c(),(0,internal.Ljt)(div,"class","content svelte-1t3ndgc")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0},p(ctx,dirty){default_slot&&default_slot.p&&(!current||8&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[3],current?(0,internal.u2N)(default_slot_template,ctx[3],dirty,null):(0,internal.VOJ)(ctx[3]),null)},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),default_slot&&default_slot.d(detaching)}}}function DropZone_svelte_create_fragment(ctx){let div,draggable,current;return draggable=new Draggable_svelte({props:{$$slots:{default:[DropZone_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),draggable.$on("files",ctx[2]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(draggable.$$.fragment),(0,internal.Ljt)(div,"class","dropzone svelte-1t3ndgc"),(0,internal.VHj)(div,"secondary",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(draggable,div,null),current=!0},p(ctx,[dirty]){const draggable_changes={};8&dirty&&(draggable_changes.$$scope={dirty:dirty,ctx:ctx}),draggable.$set(draggable_changes),(!current||1&dirty)&&(0,internal.VHj)(div,"secondary",ctx[0])},i(local){current||((0,internal.Ui)(draggable.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(draggable.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(draggable)}}}function DropZone_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props,{secondary:secondary=!1}=$$props;return $$self.$$set=$$props=>{"secondary"in $$props&&$$invalidate(0,secondary=$$props.secondary),"$$scope"in $$props&&$$invalidate(3,$$scope=$$props.$$scope)},[secondary,slots,function(event){internal.cKT.call(this,$$self,event)},$$scope]}class DropZone extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,DropZone_svelte_instance,DropZone_svelte_create_fragment,internal.N8,{secondary:0})}}var DropZone_svelte=DropZone;function FilePicker_svelte_create_fragment(ctx){let span1,span0,t,input,current,mounted,dispose;const default_slot_template=ctx[6].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[5],null);return{c(){span1=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),default_slot&&default_slot.c(),t=(0,internal.DhX)(),input=(0,internal.bGB)("input"),(0,internal.Ljt)(span0,"class","content svelte-h96wl2"),input.multiple=ctx[0],(0,internal.Ljt)(input,"class","picker svelte-h96wl2"),(0,internal.Ljt)(input,"type","file"),(0,internal.Ljt)(input,"accept",ctx[2]),(0,internal.Ljt)(span1,"class","container svelte-h96wl2")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,span0),default_slot&&default_slot.m(span0,null),(0,internal.R3I)(span1,t),(0,internal.R3I)(span1,input),ctx[7](input),current=!0,mounted||(dispose=[(0,internal.oLt)(span0,"click",ctx[3]),(0,internal.oLt)(input,"change",ctx[4])],mounted=!0)},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||32&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[5],current?(0,internal.u2N)(default_slot_template,ctx[5],dirty,null):(0,internal.VOJ)(ctx[5]),null),(!current||1&dirty)&&(input.multiple=ctx[0])},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span1),default_slot&&default_slot.d(detaching),ctx[7](null),mounted=!1,(0,internal.j7q)(dispose)}}}function FilePicker_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props;const emit=(0,src_emit.Z)({files(){}});let{multiselect:multiselect=!1}=$$props;const documentTypes="123,602,abw,agd,bmp,cdr,cgm,cmx,csv,cwk,dbf,dif,doc,docx,dot,emf,eps,fb2,fhd,fodg,fodp,fods,fodt,gif,gnm,gnumeric,htm,html,hwp,jpeg,jpg,jtd,jtt,key,kth,mml,numbers,odb,odf,odg,odp,ods,odt,p65,pages,pbm,pcd,pct,pcx,pdf,pgm,plt,pm3,pm4,pm5,pm6,pmd,png,pot,ppm,pps,ppt,pptx,psd,pub,qxp,ras,rlf,rtf,sda,sdc,sdd,sdp,sdw,sgf,sgl,sgv,slk,stc,std,sti,stw,svg,svm,sxc,sxd,sxi,sxm,sxw,tga,tif,tiff,txt,uof,uop,uos,uot,vor,vsd,wb2,wdb,wk1,wk3,wk4,wks,wpd,wps,wq1,wq2,wri,xbm,xls,xlsx,xlt,xlw,xml,xpm,zabw,zmf".split(",").map((x=>`.${x.toLowerCase().trim()}`)).join(",");let picker;return $$self.$$set=$$props=>{"multiselect"in $$props&&$$invalidate(0,multiselect=$$props.multiselect),"$$scope"in $$props&&$$invalidate(5,$$scope=$$props.$$scope)},[multiselect,picker,documentTypes,function(){picker.click()},function(){const fileList=picker.files;if(fileList.length>0){const files=[];for(let i=0;i{picker=$$value,$$invalidate(1,picker)}))}]}class FilePicker extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,FilePicker_svelte_instance,FilePicker_svelte_create_fragment,internal.N8,{multiselect:0})}}var FilePicker_svelte=FilePicker,UploadOptions_svelte=__webpack_require__(8618),AccessToggle_svelte=__webpack_require__(3426),languages=__webpack_require__(9275),api_document=__webpack_require__(2835);function UploadDialog_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[41]=list[i],child_ctx[42]=list,child_ctx[43]=i,child_ctx}function UploadDialog_svelte_create_if_block_9(ctx){let div2,h2,t0,t1,div0,uploadoptions,updating_language,updating_forceOcr,updating_ocrEngine,t2,current_block_type_index,if_block2,t3,t4,div1,accesstoggle,updating_access,current;function select_block_type(ctx,dirty){return null==ctx[11]?UploadDialog_svelte_create_if_block_16:create_else_block_4}let current_block_type=select_block_type(ctx),if_block0=current_block_type(ctx);function select_block_type_1(ctx,dirty){return 0===ctx[0].length?UploadDialog_svelte_create_if_block_12:create_else_block_3}let current_block_type_1=select_block_type_1(ctx),if_block1=current_block_type_1(ctx);function uploadoptions_language_binding(value){ctx[30](value)}function uploadoptions_forceOcr_binding(value){ctx[31](value)}function uploadoptions_ocrEngine_binding(value){ctx[32](value)}let uploadoptions_props={};void 0!==ctx[4]&&(uploadoptions_props.language=ctx[4]),void 0!==ctx[5]&&(uploadoptions_props.forceOcr=ctx[5]),void 0!==ctx[6]&&(uploadoptions_props.ocrEngine=ctx[6]),uploadoptions=new UploadOptions_svelte.Z({props:uploadoptions_props}),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"language",uploadoptions_language_binding))),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"forceOcr",uploadoptions_forceOcr_binding))),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"ocrEngine",uploadoptions_ocrEngine_binding)));const if_block_creators=[UploadDialog_svelte_create_if_block_11,create_else_block_2],if_blocks=[];function select_block_type_2(ctx,dirty){return ctx[0].length>0?0:1}current_block_type_index=select_block_type_2(ctx),if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block3=0==ctx[0].length&&UploadDialog_svelte_create_if_block_10(ctx);function accesstoggle_access_binding(value){ctx[33](value)}let accesstoggle_props={publicMessage:ctx[16]("uploadDialog.publicMsg"),collaboratorMessage:ctx[16]("uploadDialog.collabMsg"),privateMessage:ctx[16]("uploadDialog.privateMsg"),collaboratorName:ctx[16]("uploadDialog.collabName")};return void 0!==ctx[3]&&(accesstoggle_props.access=ctx[3]),accesstoggle=new AccessToggle_svelte.Z({props:accesstoggle_props}),internal.VnY.push((()=>(0,internal.akz)(accesstoggle,"access",accesstoggle_access_binding))),{c(){div2=(0,internal.bGB)("div"),h2=(0,internal.bGB)("h2"),if_block0.c(),t0=(0,internal.DhX)(),if_block1.c(),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),(0,internal.YCL)(uploadoptions.$$.fragment),t2=(0,internal.DhX)(),if_block2.c(),t3=(0,internal.DhX)(),if_block3&&if_block3.c(),t4=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),(0,internal.YCL)(accesstoggle.$$.fragment),(0,internal.Ljt)(div0,"class","actions svelte-2jozsx"),(0,internal.Ljt)(div1,"class","bottompadded svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,h2),if_block0.m(h2,null),(0,internal.R3I)(div2,t0),if_block1.m(div2,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,div0),(0,internal.yef)(uploadoptions,div0,null),(0,internal.R3I)(div0,t2),if_blocks[current_block_type_index].m(div0,null),(0,internal.R3I)(div2,t3),if_block3&&if_block3.m(div2,null),(0,internal.R3I)(div2,t4),(0,internal.R3I)(div2,div1),(0,internal.yef)(accesstoggle,div1,null),current=!0},p(ctx,dirty){current_block_type===(current_block_type=select_block_type(ctx))&&if_block0?if_block0.p(ctx,dirty):(if_block0.d(1),if_block0=current_block_type(ctx),if_block0&&(if_block0.c(),if_block0.m(h2,null))),current_block_type_1===(current_block_type_1=select_block_type_1(ctx))&&if_block1?if_block1.p(ctx,dirty):(if_block1.d(1),if_block1=current_block_type_1(ctx),if_block1&&(if_block1.c(),if_block1.m(div2,t1)));const uploadoptions_changes={};!updating_language&&16&dirty[0]&&(updating_language=!0,uploadoptions_changes.language=ctx[4],(0,internal.hjT)((()=>updating_language=!1))),!updating_forceOcr&&32&dirty[0]&&(updating_forceOcr=!0,uploadoptions_changes.forceOcr=ctx[5],(0,internal.hjT)((()=>updating_forceOcr=!1))),!updating_ocrEngine&&64&dirty[0]&&(updating_ocrEngine=!0,uploadoptions_changes.ocrEngine=ctx[6],(0,internal.hjT)((()=>updating_ocrEngine=!1))),uploadoptions.$set(uploadoptions_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_2(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block2=if_blocks[current_block_type_index],if_block2?if_block2.p(ctx,dirty):(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block2.c()),(0,internal.Ui)(if_block2,1),if_block2.m(div0,null)),0==ctx[0].length?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=UploadDialog_svelte_create_if_block_10(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div2,t4)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)());const accesstoggle_changes={};65536&dirty[0]&&(accesstoggle_changes.publicMessage=ctx[16]("uploadDialog.publicMsg")),65536&dirty[0]&&(accesstoggle_changes.collaboratorMessage=ctx[16]("uploadDialog.collabMsg")),65536&dirty[0]&&(accesstoggle_changes.privateMessage=ctx[16]("uploadDialog.privateMsg")),65536&dirty[0]&&(accesstoggle_changes.collaboratorName=ctx[16]("uploadDialog.collabName")),!updating_access&&8&dirty[0]&&(updating_access=!0,accesstoggle_changes.access=ctx[3],(0,internal.hjT)((()=>updating_access=!1))),accesstoggle.$set(accesstoggle_changes)},i(local){current||((0,internal.Ui)(uploadoptions.$$.fragment,local),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),(0,internal.Ui)(accesstoggle.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(uploadoptions.$$.fragment,local),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),(0,internal.etI)(accesstoggle.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),if_block0.d(),if_block1.d(),(0,internal.vpE)(uploadoptions),if_blocks[current_block_type_index].d(),if_block3&&if_block3.d(),(0,internal.vpE)(accesstoggle)}}}function create_else_block_4(ctx){let t,t_value=ctx[16]("uploadDialog.docUploadProj",{values:{title:ctx[11].title}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){67584&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.docUploadProj",{values:{title:ctx[11].title}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_16(ctx){let t,t_value=ctx[16]("uploadDialog.docUpload")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.docUpload")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_else_block_3(ctx){let p,t0,t1,if_block_anchor,t0_value=ctx[16]("uploadDialog.fileReady",{values:{n:ctx[0].length}})+"",if_block=ctx[7]&&UploadDialog_svelte_create_if_block_15(ctx);return{c(){p=(0,internal.bGB)("p"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t0),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){65537&dirty[0]&&t0_value!==(t0_value=ctx[16]("uploadDialog.fileReady",{values:{n:ctx[0].length}})+"")&&(0,internal.rTO)(t0,t0_value),ctx[7]?if_block?if_block.p(ctx,dirty):(if_block=UploadDialog_svelte_create_if_block_15(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function UploadDialog_svelte_create_if_block_12(ctx){let p,t0,t1,t2,if_block1_anchor,t0_value=ctx[16]("uploadDialog.selectDocument")+"",if_block0=ctx[8][0]&&UploadDialog_svelte_create_if_block_14(ctx),if_block1=ctx[8][1]&&UploadDialog_svelte_create_if_block_13(ctx);return{c(){p=(0,internal.bGB)("p"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block0&&if_block0.c(),t2=(0,internal.DhX)(),if_block1&&if_block1.c(),if_block1_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t0),(0,internal.$Tr)(target,t1,anchor),if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t2,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,if_block1_anchor,anchor)},p(ctx,dirty){65536&dirty[0]&&t0_value!==(t0_value=ctx[16]("uploadDialog.selectDocument")+"")&&(0,internal.rTO)(t0,t0_value),ctx[8][0]?if_block0?if_block0.p(ctx,dirty):(if_block0=UploadDialog_svelte_create_if_block_14(ctx),if_block0.c(),if_block0.m(t2.parentNode,t2)):if_block0&&(if_block0.d(1),if_block0=null),ctx[8][1]?if_block1?if_block1.p(ctx,dirty):(if_block1=UploadDialog_svelte_create_if_block_13(ctx),if_block1.c(),if_block1.m(if_block1_anchor.parentNode,if_block1_anchor)):if_block1&&(if_block1.d(1),if_block1=null)},d(detaching){detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t1),if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t2),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(if_block1_anchor)}}}function UploadDialog_svelte_create_if_block_15(ctx){let p,t,t_value=ctx[16]("uploadDialog.fileLimitWarning",{values:{limit:ctx[18]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.fileLimitWarning",{values:{limit:ctx[18]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_if_block_14(ctx){let p,t,t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[19]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[19]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_if_block_13(ctx){let p,t,t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[20]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[20]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function create_else_block_2(ctx){let filepicker,current;return filepicker=new FilePicker_svelte({props:{multiselect:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),filepicker.$on("files",ctx[21]),{c(){(0,internal.YCL)(filepicker.$$.fragment)},m(target,anchor){(0,internal.yef)(filepicker,target,anchor),current=!0},p(ctx,dirty){const filepicker_changes={};65536&dirty[0]|8192&dirty[1]&&(filepicker_changes.$$scope={dirty:dirty,ctx:ctx}),filepicker.$set(filepicker_changes)},i(local){current||((0,internal.Ui)(filepicker.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(filepicker.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(filepicker,detaching)}}}function UploadDialog_svelte_create_if_block_11(ctx){let button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[23]),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot_8(ctx){let t,t_value=ctx[16]("uploadDialog.selectFiles")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.selectFiles")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_default_slot_7(ctx){let button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot_6(ctx){let t,t_value=ctx[16]("uploadDialog.beginUpload")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.beginUpload")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_10(ctx){let div,dropzone,current;return dropzone=new DropZone_svelte({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_5]},$$scope:{ctx:ctx}}}),dropzone.$on("files",ctx[21]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(dropzone.$$.fragment),(0,internal.Ljt)(div,"class","droparea svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(dropzone,div,null),current=!0},p(ctx,dirty){const dropzone_changes={};65536&dirty[0]|8192&dirty[1]&&(dropzone_changes.$$scope={dirty:dirty,ctx:ctx}),dropzone.$set(dropzone_changes)},i(local){current||((0,internal.Ui)(dropzone.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropzone.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(dropzone)}}}function UploadDialog_svelte_create_default_slot_5(ctx){let span,t,t_value=ctx[16]("uploadDialog.dragDrop")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.dragDrop")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(span)}}}function UploadDialog_svelte_create_if_block_5(ctx){let div,current_block_type_index,if_block,current;const if_block_creators=[UploadDialog_svelte_create_if_block_6,UploadDialog_svelte_create_else_block_1],if_blocks=[];function select_block_type_3(ctx,dirty){return ctx[12]?1:0}return current_block_type_index=select_block_type_3(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){div=(0,internal.bGB)("div"),if_block.c()},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_blocks[current_block_type_index].m(div,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_3(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(div,null))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_blocks[current_block_type_index].d()}}}function UploadDialog_svelte_create_else_block_1(ctx){let h2,t0,t1,p,t2,t3,div,button,current,t0_value=ctx[16]("uploadDialog.errorHeading")+"",t2_value=ctx[16]("uploadDialog.errorMsg",{values:{errorMessage:errorMessage}})+"";return button=new Button_svelte.Z({props:{secondary:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[17].allUploaded),{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),p=(0,internal.bGB)("p"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),div=(0,internal.bGB)("div"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(p,"class","error")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t2),(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){(!current||65536&dirty[0])&&t0_value!==(t0_value=ctx[16]("uploadDialog.errorHeading")+"")&&(0,internal.rTO)(t0,t0_value),(!current||65536&dirty[0])&&t2_value!==(t2_value=ctx[16]("uploadDialog.errorMsg",{values:{errorMessage:errorMessage}})+"")&&(0,internal.rTO)(t2,t2_value);const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t3),detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function UploadDialog_svelte_create_if_block_6(ctx){let h2,t0,p,t1,t1_value=ctx[16]("uploadDialog.pleaseLeaveOpen")+"";function select_block_type_4(ctx,dirty){return ctx[9]==ctx[0].length?UploadDialog_svelte_create_if_block_7:ctx[10]?UploadDialog_svelte_create_if_block_8:UploadDialog_svelte_create_else_block}let current_block_type=select_block_type_4(ctx),if_block=current_block_type(ctx);return{c(){h2=(0,internal.bGB)("h2"),if_block.c(),t0=(0,internal.DhX)(),p=(0,internal.bGB)("p"),t1=(0,internal.fLW)(t1_value)},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),if_block.m(h2,null),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t1)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_4(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(h2,null))),65536&dirty[0]&&t1_value!==(t1_value=ctx[16]("uploadDialog.pleaseLeaveOpen")+"")&&(0,internal.rTO)(t1,t1_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(h2),if_block.d(),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_default_slot_4(ctx){let t,t_value=ctx[16]("dialog.dismiss")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("dialog.dismiss")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_else_block(ctx){let t,t_value=ctx[16]("uploadDialog.gettingInfo",{values:{percent:ctx[14]}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){81920&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.gettingInfo",{values:{percent:ctx[14]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_8(ctx){let t,t_value=ctx[16]("uploadDialog.uploading",{values:{uploaded:ctx[9],length:ctx[0].length}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){66049&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.uploading",{values:{uploaded:ctx[9],length:ctx[0].length}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_7(ctx){let t,t_value=ctx[16]("uploadDialog.submitting",{values:{percent:ctx[13]}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){73728&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.submitting",{values:{percent:ctx[13]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_4(ctx){let div,p,t,t_value=ctx[16]("uploadDialog.editDocInfo")+"";return{c(){div=(0,internal.bGB)("div"),p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","subtitle svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,p),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.editDocInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function UploadDialog_svelte_create_if_block_3(ctx){let div,current,each_blocks=[],each_1_lookup=new Map,each_value=ctx[15];const get_key=ctx=>ctx[41].index;for(let i=0;i0&&!ctx[2]&&UploadDialog_svelte_create_if_block_2(ctx),if_block1=ctx[0].length>0&&ctx[2]&&UploadDialog_svelte_create_if_block_1(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t=(0,internal.DhX)(),if_block1&&if_block1.c()},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t),if_block1&&if_block1.m(div,null),current=!0},p(ctx,dirty){ctx[0].length>0&&!ctx[2]?if_block0?(if_block0.p(ctx,dirty),5&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=UploadDialog_svelte_create_if_block_2(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div,t)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[0].length>0&&ctx[2]?if_block1?(if_block1.p(ctx,dirty),5&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=UploadDialog_svelte_create_if_block_1(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d()}}}function UploadDialog_svelte_create_if_block_2(ctx){let div,button,current;return button=new Button_svelte.Z({props:{nondescript:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[36]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(div,"class","vpadded svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function UploadDialog_svelte_create_default_slot_3(ctx){let t,t_value=ctx[16]("uploadDialog.uploadFiles")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.uploadFiles")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_1(ctx){let div1,div0,t0,filepicker,t1,dropzone,current;return filepicker=new FilePicker_svelte({props:{multiselect:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),filepicker.$on("files",ctx[21]),dropzone=new DropZone_svelte({props:{class:"dropper",secondary:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),dropzone.$on("files",ctx[21]),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),(0,internal.YCL)(filepicker.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(dropzone.$$.fragment),(0,internal.Ljt)(div0,"class","sectionbreak svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div1,t0),(0,internal.yef)(filepicker,div1,null),(0,internal.R3I)(div1,t1),(0,internal.yef)(dropzone,div1,null),current=!0},p(ctx,dirty){const filepicker_changes={};65536&dirty[0]|8192&dirty[1]&&(filepicker_changes.$$scope={dirty:dirty,ctx:ctx}),filepicker.$set(filepicker_changes);const dropzone_changes={};65536&dirty[0]|8192&dirty[1]&&(dropzone_changes.$$scope={dirty:dirty,ctx:ctx}),dropzone.$set(dropzone_changes)},i(local){current||((0,internal.Ui)(filepicker.$$.fragment,local),(0,internal.Ui)(dropzone.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(filepicker.$$.fragment,local),(0,internal.etI)(dropzone.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div1),(0,internal.vpE)(filepicker),(0,internal.vpE)(dropzone)}}}function UploadDialog_svelte_create_default_slot_2(ctx){let t,t_value=ctx[16]("uploadDialog.selectMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.selectMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_default_slot_1(ctx){let button,current;return button=new Button_svelte.Z({props:{secondary:!0,small:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot(ctx){let span,t,t_value=ctx[16]("uploadDialog.dragDropMore")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.dragDropMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(span)}}}function UploadDialog_svelte_create_fragment(ctx){let div,t0,t1,t2,t3,current,if_block0=!ctx[1]&&UploadDialog_svelte_create_if_block_9(ctx),if_block1=ctx[1]&&UploadDialog_svelte_create_if_block_5(ctx),if_block2=!ctx[1]&&ctx[0].length>0&&UploadDialog_svelte_create_if_block_4(ctx),if_block3=ctx[0].length>0&&UploadDialog_svelte_create_if_block_3(ctx),if_block4=!ctx[1]&&UploadDialog_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),if_block3&&if_block3.c(),t3=(0,internal.DhX)(),if_block4&&if_block4.c(),(0,internal.Ljt)(div,"class","mcontent")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,internal.R3I)(div,t1),if_block2&&if_block2.m(div,null),(0,internal.R3I)(div,t2),if_block3&&if_block3.m(div,null),(0,internal.R3I)(div,t3),if_block4&&if_block4.m(div,null),current=!0},p(ctx,dirty){ctx[1]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=UploadDialog_svelte_create_if_block_9(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div,t0)),ctx[1]?if_block1?(if_block1.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=UploadDialog_svelte_create_if_block_5(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,t1)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),!ctx[1]&&ctx[0].length>0?if_block2?if_block2.p(ctx,dirty):(if_block2=UploadDialog_svelte_create_if_block_4(ctx),if_block2.c(),if_block2.m(div,t2)):if_block2&&(if_block2.d(1),if_block2=null),ctx[0].length>0?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=UploadDialog_svelte_create_if_block_3(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div,t3)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()),ctx[1]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?(if_block4.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block4,1)):(if_block4=UploadDialog_svelte_create_if_block(ctx),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d(),if_block3&&if_block3.d(),if_block4&&if_block4.d()}}}let errorMessage=null;function UploadDialog_svelte_instance($$self,$$props,$$invalidate){let uploadProject,displayFiles,createProgressPercent,processProgressPercent,error,$search,$projects,$_;(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(28,$search=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(29,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(16,$_=$$value)));const emit=(0,src_emit.Z)({setDismissable(){}});let{initialFiles:initialFiles=[]}=$$props,files=[],id=0,uploadMode=!1,uploadFiles=[],uploadAdditional=!1,access="private",language=languages.X9,forceOcr=!1,ocrEngine="tess4";const LIMIT=parseInt("1000"),PDF_SIZE_LIMIT=parseInt("525336576"),DOCUMENT_SIZE_LIMIT=parseInt("27262976");let numUploaded,tooManyFiles=!1,tooManyBigFiles=[!1,!1],createProgress=0,processProgress=0,uploadInProgress=!1;function handleFiles({detail:newFiles}){let hasTooBigPdf=!1,hasTooBigDocument=!1;for(let i=0;ifile.index!=index))),$$invalidate(8,tooManyBigFiles=!1),$$invalidate(7,tooManyFiles=!1)}(0,svelte.H3)((()=>{handleFiles({detail:initialFiles})}));return $$self.$$set=$$props=>{"initialFiles"in $$props&&$$invalidate(24,initialFiles=$$props.initialFiles)},$$self.$$.update=()=>{if(805306368&$$self.$$.dirty[0]&&$$invalidate(11,uploadProject=$search.params.oneProjectSearch&&null!=$projects.projectsById[$search.params.oneProjectSearch]?$projects.projectsById[$search.params.oneProjectSearch]:null),33554435&$$self.$$.dirty[0]&&$$invalidate(15,displayFiles=uploadMode?uploadFiles:files),33554434&$$self.$$.dirty[0])if(uploadMode){let total=0;for(let i=0;i({file:file.file,progress:0,done:!1,index:i})))),emit.setDismissable(!1),$$invalidate(1,uploadMode=!0),(0,api_document.GA)(files,access,language,forceOcr,ocrEngine,null==uploadProject?[]:[uploadProject],(progress=>{$$invalidate(26,createProgress=progress)}),((index,progress)=>{$$invalidate(10,uploadInProgress=!0),$$invalidate(25,uploadFiles[index].progress=progress,uploadFiles),progress>=1&&$$invalidate(25,uploadFiles[index].done=!0,uploadFiles)}),(progress=>{$$invalidate(27,processProgress=progress)}),(async goodDocuments=>{$$invalidate(25,uploadFiles=uploadFiles.map((file=>({...file,done:!0})))),layout.bK.uploading=!1,await(0,documents.QC)(goodDocuments)}),(message=>{layout.bK.error=message,layout.bK.uploading=!1,emit.setDismissable(!0)}))},initialFiles,uploadFiles,createProgress,processProgress,$search,$projects,function(value){language=value,$$invalidate(4,language)},function(value){forceOcr=value,$$invalidate(5,forceOcr)},function(value){ocrEngine=value,$$invalidate(6,ocrEngine)},function(value){access=value,$$invalidate(3,access)},(file,each_value,file_index,{detail:newName})=>{let name=newName.trim();0==name.length&&(name=$_("uploadDialog.untitled")),$$invalidate(15,each_value[file_index].name=name,displayFiles)},file=>removeFile(file.index),()=>$$invalidate(2,uploadAdditional=!0)]}class UploadDialog extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,UploadDialog_svelte_instance,UploadDialog_svelte_create_fragment,internal.N8,{initialFiles:24},null,[-1,-1])}}var UploadDialog_svelte=UploadDialog,iframeSizer=__webpack_require__(1428);function Documents_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[18]=list[i],child_ctx}function Documents_svelte_create_if_block_11(ctx){let t0,t1,authsection,current,if_block0=ctx[2].uploading&&!ctx[2].error&&Documents_svelte_create_if_block_13(ctx),if_block1=ctx[5].loggedIn&&Documents_svelte_create_if_block_12(ctx);return authsection=new AuthSection_svelte({}),{c(){if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),(0,internal.YCL)(authsection.$$.fragment)},m(target,anchor){if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(authsection,target,anchor),current=!0},p(ctx,dirty){ctx[2].uploading&&!ctx[2].error?if_block0?(if_block0.p(ctx,dirty),4&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_13(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(t0.parentNode,t0)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[5].loggedIn?if_block1?32&dirty&&(0,internal.Ui)(if_block1,1):(if_block1=Documents_svelte_create_if_block_12(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(authsection.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(authsection.$$.fragment,local),current=!1},d(detaching){if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t0),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(authsection,detaching)}}}function Documents_svelte_create_if_block_13(ctx){let modal,current;return modal=new Modal_svelte.Z({props:{component:UploadDialog_svelte,properties:{initialFiles:ctx[6]}}}),modal.$on("close",ctx[15]),{c(){(0,internal.YCL)(modal.$$.fragment)},m(target,anchor){(0,internal.yef)(modal,target,anchor),current=!0},p(ctx,dirty){const modal_changes={};64&dirty&&(modal_changes.properties={initialFiles:ctx[6]}),modal.$set(modal_changes)},i(local){current||((0,internal.Ui)(modal.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(modal.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(modal,detaching)}}}function Documents_svelte_create_if_block_12(ctx){let specialmessage,current;return specialmessage=new SpecialMessage_svelte({}),{c(){(0,internal.YCL)(specialmessage.$$.fragment)},m(target,anchor){(0,internal.yef)(specialmessage,target,anchor),current=!0},i(local){current||((0,internal.Ui)(specialmessage.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(specialmessage.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(specialmessage,detaching)}}}function Documents_svelte_create_if_block_10(ctx){let div,t,t_value=ctx[2].projectEmbedTitle+"";return{c(){div=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div,"class","projectembedtitle svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2].projectEmbedTitle+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function Documents_svelte_create_if_block_9(ctx){let searchbar,current;return searchbar=new SearchBar_svelte.Z({props:{embed:ctx[0],dialog:ctx[1]}}),{c(){(0,internal.YCL)(searchbar.$$.fragment)},m(target,anchor){(0,internal.yef)(searchbar,target,anchor),current=!0},p(ctx,dirty){const searchbar_changes={};1&dirty&&(searchbar_changes.embed=ctx[0]),2&dirty&&(searchbar_changes.dialog=ctx[1]),searchbar.$set(searchbar_changes)},i(local){current||((0,internal.Ui)(searchbar.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(searchbar.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(searchbar,detaching)}}}function Documents_svelte_create_if_block_8(ctx){let searchlink,current;return searchlink=new SearchLink_svelte({props:{link:(0,search.SR)(ctx[4].params.projectEmbedId)}}),{c(){(0,internal.YCL)(searchlink.$$.fragment)},m(target,anchor){(0,internal.yef)(searchlink,target,anchor),current=!0},p(ctx,dirty){const searchlink_changes={};16&dirty&&(searchlink_changes.link=(0,search.SR)(ctx[4].params.projectEmbedId)),searchlink.$set(searchlink_changes)},i(local){current||((0,internal.Ui)(searchlink.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(searchlink.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(searchlink,detaching)}}}function Documents_svelte_create_if_block_5(ctx){let title_1,t0,t1,if_block1_anchor,current;title_1=new Title_svelte.Z({props:{$$slots:{default:[Documents_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}});let if_block0=ctx[5].loggedIn&&Documents_svelte_create_if_block_7(ctx),if_block1=ctx[5].loggedIn&&!ctx[5].isVerified&&Documents_svelte_create_if_block_6(ctx);return{c(){(0,internal.YCL)(title_1.$$.fragment),t0=(0,internal.DhX)(),if_block0&&if_block0.c(),t1=(0,internal.DhX)(),if_block1&&if_block1.c(),if_block1_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(title_1,target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,if_block1_anchor,anchor),current=!0},p(ctx,dirty){const title_1_changes={};2097408&dirty&&(title_1_changes.$$scope={dirty:dirty,ctx:ctx}),title_1.$set(title_1_changes),ctx[5].loggedIn?if_block0?(if_block0.p(ctx,dirty),32&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_7(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(t1.parentNode,t1)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[5].loggedIn&&!ctx[5].isVerified?if_block1?(if_block1.p(ctx,dirty),32&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=Documents_svelte_create_if_block_6(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(if_block1_anchor.parentNode,if_block1_anchor)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(title_1.$$.fragment,local),(0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(title_1.$$.fragment,local),(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){(0,internal.vpE)(title_1,detaching),detaching&&(0,internal.ogt)(t0),if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t1),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(if_block1_anchor)}}}function Documents_svelte_create_default_slot_4(ctx){let t;return{c(){t=(0,internal.fLW)(ctx[8])},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&(0,internal.rTO)(t,ctx[8])},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Documents_svelte_create_if_block_7(ctx){let button,current;return button=new Button_svelte.Z({props:{disabledReason:ctx[5].isVerified?null:ctx[3]("documents.mustBeVerified"),$$slots:{default:[Documents_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[10]),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};40&dirty&&(button_changes.disabledReason=ctx[5].isVerified?null:ctx[3]("documents.mustBeVerified")),2097160&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function Documents_svelte_create_default_slot_3(ctx){let t0,t1,t1_value=ctx[3]("documents.upload")+"";return{c(){t0=(0,internal.fLW)("+ "),t1=(0,internal.fLW)(t1_value)},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){8&dirty&&t1_value!==(t1_value=ctx[3]("documents.upload")+"")&&(0,internal.rTO)(t1,t1_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Documents_svelte_create_if_block_6(ctx){let a,button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[Documents_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){a=(0,internal.bGB)("a"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(a,"href","https://airtable.com/shrZrgdmuOwW0ZLPM"),(0,internal.Ljt)(a,"target","_new")},m(target,anchor){(0,internal.$Tr)(target,a,anchor),(0,internal.yef)(button,a,null),current=!0},p(ctx,dirty){const button_changes={};2097160&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(a),(0,internal.vpE)(button)}}}function Documents_svelte_create_default_slot_2(ctx){let t,t_value=ctx[3]("noDocuments.requestVerificationAction")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[3]("noDocuments.requestVerificationAction")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Documents_svelte_create_if_block_4(ctx){let actionbar,t0,processingbar,t1,addonstatus,current;return actionbar=new ActionBar_svelte({}),processingbar=new ProcessingBar_svelte({}),addonstatus=new AddonStatus_svelte({}),{c(){(0,internal.YCL)(actionbar.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(processingbar.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(addonstatus.$$.fragment)},m(target,anchor){(0,internal.yef)(actionbar,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.yef)(processingbar,target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(addonstatus,target,anchor),current=!0},i(local){current||((0,internal.Ui)(actionbar.$$.fragment,local),(0,internal.Ui)(processingbar.$$.fragment,local),(0,internal.Ui)(addonstatus.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(actionbar.$$.fragment,local),(0,internal.etI)(processingbar.$$.fragment,local),(0,internal.etI)(addonstatus.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(actionbar,detaching),detaching&&(0,internal.ogt)(t0),(0,internal.vpE)(processingbar,detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(addonstatus,detaching)}}}function Documents_svelte_create_else_block_1(ctx){let each_1_anchor,current,each_blocks=[],each_1_lookup=new Map,each_value=ctx[9].documents;const get_key=ctx=>ctx[18].id;for(let i=0;i(0,internal.akz)(anonymous,"closed",anonymous_closed_binding))),{c(){(0,internal.YCL)(anonymous.$$.fragment)},m(target,anchor){(0,internal.yef)(anonymous,target,anchor),current=!0},p(ctx,dirty){const anonymous_changes={};!updating_closed&&128&dirty&&(updating_closed=!0,anonymous_changes.closed=ctx[7],(0,internal.hjT)((()=>updating_closed=!1))),anonymous.$set(anonymous_changes)},i(local){current||((0,internal.Ui)(anonymous.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(anonymous.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(anonymous,detaching)}}}function Documents_svelte_create_each_block(key_1,ctx){let div,document,t,rect,current,stop_animation=internal.ZTd;return document=new Document_svelte({props:{embed:ctx[0],dialog:ctx[1],document:ctx[18]}}),document.$on("pick",ctx[17]),{key:key_1,first:null,c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(document.$$.fragment),t=(0,internal.DhX)(),(0,internal.Ljt)(div,"class","svelte-1l9cwso"),(0,internal.VHj)(div,"inlinecard",ctx[0]),this.first=div},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(document,div,null),(0,internal.R3I)(div,t),current=!0},p(new_ctx,dirty){ctx=new_ctx;const document_changes={};1&dirty&&(document_changes.embed=ctx[0]),2&dirty&&(document_changes.dialog=ctx[1]),512&dirty&&(document_changes.document=ctx[18]),document.$set(document_changes),(!current||1&dirty)&&(0,internal.VHj)(div,"inlinecard",ctx[0])},r(){rect=div.getBoundingClientRect()},f(){(0,internal.uYD)(div),stop_animation()},a(){stop_animation(),stop_animation=(0,internal.wVP)(div,rect,animate.R,{duration:400})},i(local){current||((0,internal.Ui)(document.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(document.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(document)}}}function Documents_svelte_create_if_block_2(ctx){let nodocuments,current;return nodocuments=new NoDocuments_svelte({}),{c(){(0,internal.YCL)(nodocuments.$$.fragment)},m(target,anchor){(0,internal.yef)(nodocuments,target,anchor),current=!0},i(local){current||((0,internal.Ui)(nodocuments.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(nodocuments.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(nodocuments,detaching)}}}function Documents_svelte_create_if_block_1(ctx){let div1,div0,t,t_value=ctx[3]("documents.dropFile")+"";return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div0,"class","toast svelte-1l9cwso"),(0,internal.Ljt)(div1,"class","toastouter svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,t)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[3]("documents.dropFile")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div1)}}}function Documents_svelte_create_default_slot_1(ctx){let current_block_type_index,if_block0,t0,t1,if_block2_anchor,current;const if_block_creators=[Documents_svelte_create_if_block_3,Documents_svelte_create_else_block_1],if_blocks=[];function select_block_type_1(ctx,dirty){return ctx[5].loggedIn||""!==ctx[4].params.query||ctx[7]?1:0}current_block_type_index=select_block_type_1(ctx),if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block1=0==ctx[9].documents.length&&!ctx[2].loading&&Documents_svelte_create_if_block_2(),if_block2=ctx[5].loggedIn&&Documents_svelte_create_if_block_1(ctx);return{c(){if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),if_block2_anchor=(0,internal.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),if_block2&&if_block2.m(target,anchor),(0,internal.$Tr)(target,if_block2_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(t0.parentNode,t0)),0!=ctx[9].documents.length||ctx[2].loading?if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()):if_block1?516&dirty&&(0,internal.Ui)(if_block1,1):(if_block1=Documents_svelte_create_if_block_2(),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1)),ctx[5].loggedIn?if_block2?if_block2.p(ctx,dirty):(if_block2=Documents_svelte_create_if_block_1(ctx),if_block2.c(),if_block2.m(if_block2_anchor.parentNode,if_block2_anchor)):if_block2&&(if_block2.d(1),if_block2=null)},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(t0),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(t1),if_block2&&if_block2.d(detaching),detaching&&(0,internal.ogt)(if_block2_anchor)}}}function Documents_svelte_create_else_block(ctx){let div,paginator,current;return paginator=new Paginator_svelte({}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(paginator.$$.fragment),(0,internal.Ljt)(div,"class","narrowshow svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(paginator,div,null),current=!0},p:internal.ZTd,i(local){current||((0,internal.Ui)(paginator.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(paginator.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(paginator)}}}function Documents_svelte_create_if_block(ctx){let embedfooter,current;return embedfooter=new EmbedFooter_svelte({props:{dialog:ctx[1]}}),{c(){(0,internal.YCL)(embedfooter.$$.fragment)},m(target,anchor){(0,internal.yef)(embedfooter,target,anchor),current=!0},p(ctx,dirty){const embedfooter_changes={};2&dirty&&(embedfooter_changes.dialog=ctx[1]),embedfooter.$set(embedfooter_changes)},i(local){current||((0,internal.Ui)(embedfooter.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(embedfooter.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(embedfooter,detaching)}}}function Documents_svelte_create_default_slot(ctx){let div3,div1,t0,t1,current_block_type_index,if_block2,t2,div0,t3,t4,div2,draggable,t5,current_block_type_index_1,if_block5,current,if_block0=!ctx[0]&&Documents_svelte_create_if_block_11(ctx),if_block1=ctx[0]&&null!=ctx[2].projectEmbedTitle&&Documents_svelte_create_if_block_10(ctx);const if_block_creators=[Documents_svelte_create_if_block_8,Documents_svelte_create_if_block_9],if_blocks=[];function select_block_type(ctx,dirty){return!ctx[1]&&ctx[0]&&null!=ctx[4].params&&null!=ctx[4].params.projectEmbedId&&ctx[2].projectEmbedSearchBar?0:!ctx[0]||ctx[1]?1:-1}~(current_block_type_index=select_block_type(ctx))&&(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block3=!ctx[0]&&Documents_svelte_create_if_block_5(ctx),if_block4=!ctx[0]&&Documents_svelte_create_if_block_4();draggable=new Draggable_svelte({props:{disabled:ctx[0]||!ctx[5].loggedIn||!ctx[5].isVerified,$$slots:{default:[Documents_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),draggable.$on("files",ctx[10]);const if_block_creators_1=[Documents_svelte_create_if_block,Documents_svelte_create_else_block],if_blocks_1=[];function select_block_type_2(ctx,dirty){return ctx[0]?0:1}return current_block_type_index_1=select_block_type_2(ctx),if_block5=if_blocks_1[current_block_type_index_1]=if_block_creators_1[current_block_type_index_1](ctx),{c(){div3=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),if_block3&&if_block3.c(),t3=(0,internal.DhX)(),if_block4&&if_block4.c(),t4=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),(0,internal.YCL)(draggable.$$.fragment),t5=(0,internal.DhX)(),if_block5.c(),(0,internal.Ljt)(div1,"class","sticky svelte-1l9cwso"),(0,internal.VHj)(div1,"embed",ctx[0]),(0,internal.Ljt)(div2,"class","docscontainer svelte-1l9cwso"),(0,internal.Ljt)(div3,"class","documents")},m(target,anchor){(0,internal.$Tr)(target,div3,anchor),(0,internal.R3I)(div3,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div1,t0),if_block1&&if_block1.m(div1,null),(0,internal.R3I)(div1,t1),~current_block_type_index&&if_blocks[current_block_type_index].m(div1,null),(0,internal.R3I)(div1,t2),(0,internal.R3I)(div1,div0),if_block3&&if_block3.m(div0,null),(0,internal.R3I)(div1,t3),if_block4&&if_block4.m(div1,null),(0,internal.R3I)(div3,t4),(0,internal.R3I)(div3,div2),(0,internal.yef)(draggable,div2,null),(0,internal.R3I)(div3,t5),if_blocks_1[current_block_type_index_1].m(div3,null),current=!0},p(ctx,dirty){ctx[0]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_11(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div1,t0)),ctx[0]&&null!=ctx[2].projectEmbedTitle?if_block1?if_block1.p(ctx,dirty):(if_block1=Documents_svelte_create_if_block_10(ctx),if_block1.c(),if_block1.m(div1,t1)):if_block1&&(if_block1.d(1),if_block1=null);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?~current_block_type_index&&if_blocks[current_block_type_index].p(ctx,dirty):(if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block2=if_blocks[current_block_type_index],if_block2?if_block2.p(ctx,dirty):(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block2.c()),(0,internal.Ui)(if_block2,1),if_block2.m(div1,t2)):if_block2=null),ctx[0]?if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()):if_block3?(if_block3.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block3,1)):(if_block3=Documents_svelte_create_if_block_5(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div0,null)),ctx[0]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?1&dirty&&(0,internal.Ui)(if_block4,1):(if_block4=Documents_svelte_create_if_block_4(),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div1,null)),(!current||1&dirty)&&(0,internal.VHj)(div1,"embed",ctx[0]);const draggable_changes={};33&dirty&&(draggable_changes.disabled=ctx[0]||!ctx[5].loggedIn||!ctx[5].isVerified),2097855&dirty&&(draggable_changes.$$scope={dirty:dirty,ctx:ctx}),draggable.$set(draggable_changes);let previous_block_index_1=current_block_type_index_1;current_block_type_index_1=select_block_type_2(ctx),current_block_type_index_1===previous_block_index_1?if_blocks_1[current_block_type_index_1].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks_1[previous_block_index_1],1,1,(()=>{if_blocks_1[previous_block_index_1]=null})),(0,internal.gbL)(),if_block5=if_blocks_1[current_block_type_index_1],if_block5?if_block5.p(ctx,dirty):(if_block5=if_blocks_1[current_block_type_index_1]=if_block_creators_1[current_block_type_index_1](ctx),if_block5.c()),(0,internal.Ui)(if_block5,1),if_block5.m(div3,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),(0,internal.Ui)(draggable.$$.fragment,local),(0,internal.Ui)(if_block5),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),(0,internal.etI)(draggable.$$.fragment,local),(0,internal.etI)(if_block5),current=!1},d(detaching){detaching&&(0,internal.ogt)(div3),if_block0&&if_block0.d(),if_block1&&if_block1.d(),~current_block_type_index&&if_blocks[current_block_type_index].d(),if_block3&&if_block3.d(),if_block4&&if_block4.d(),(0,internal.vpE)(draggable),if_blocks_1[current_block_type_index_1].d()}}}function Documents_svelte_create_fragment(ctx){let loader,current;return loader=new Loader_svelte.Z({props:{active:ctx[2].loading,$$slots:{default:[Documents_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(loader.$$.fragment)},m(target,anchor){(0,internal.yef)(loader,target,anchor),current=!0},p(ctx,[dirty]){const loader_changes={};4&dirty&&(loader_changes.active=ctx[2].loading),2098175&dirty&&(loader_changes.$$scope={dirty:dirty,ctx:ctx}),loader.$set(loader_changes)},i(local){current||((0,internal.Ui)(loader.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(loader.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(loader,detaching)}}}function Documents_svelte_instance($$self,$$props,$$invalidate){let $layout,$_,$search,$orgsAndUsers,$projects,$documents;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(2,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(4,$search=$$value))),(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(5,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(14,$projects=$$value))),(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(9,$documents=$$value)));let{embed:embed=!1}=$$props,{containerElem:containerElem=null}=$$props,{containerWidth:containerWidth=null}=$$props,{containerHeight:containerHeight=null}=$$props,{dialog:dialog=!1}=$$props,preUploadFiles=[],anonymousClosed=!1;let title=$_("documents.yourDocuments");return $$self.$$set=$$props=>{"embed"in $$props&&$$invalidate(0,embed=$$props.embed),"containerElem"in $$props&&$$invalidate(11,containerElem=$$props.containerElem),"containerWidth"in $$props&&$$invalidate(12,containerWidth=$$props.containerWidth),"containerHeight"in $$props&&$$invalidate(13,containerHeight=$$props.containerHeight),"dialog"in $$props&&$$invalidate(1,dialog=$$props.dialog)},$$self.$$.update=()=>{if(16440&$$self.$$.dirty){let newTitle=$_("documents.searchResults");if(null!=$search.params&&!$search.params.isSearch&&$search.params.noStatus&&$search.params.oneOrZeroAccesses){let access=$search.params.oneAccessSearch;if(access=null==access?"":`${(0,string.a5)(access)} `,null!=$search.params.oneUserSearch)if($orgsAndUsers.loggedIn&&$search.params.oneUserSearch==$orgsAndUsers.me.id)newTitle=$_("documents.accessDocuments",{values:{access:access}});else{const user=$orgsAndUsers.usersById[$search.params.oneUserSearch];null!=user?newTitle=$_("documents.nameDocuments",{values:{name:user.name,access:access}}):(0,orgsAndUsers.GA)($search.params.oneUserSearch)}else if(null!=$search.params.oneProjectSearch){const projs=$projects.projects.filter((project=>project.id==$search.params.oneProjectSearch));projs.length>0&&(newTitle=projs[0].title)}else if(null!=$search.params.oneOrgSearch){const org=$orgsAndUsers.orgsById[$search.params.oneOrgSearch];null!=org?newTitle=$_("documents.nameDocuments",{values:{name:org.name,access:access}}):(0,orgsAndUsers.h$)($search.params.oneOrgSearch)}else $search.params.isAllSearch&&(newTitle=`All ${access}Documents`,newTitle=$_("documents.allDocuments",{values:{access:access}}))}$$invalidate(8,title=newTitle)}14341&$$self.$$.dirty&&!$layout.loading&&null!=containerElem&&null!=containerWidth&&null!=containerHeight&&embed&&(0,iframeSizer.q)(containerElem,!0,!0)},[embed,dialog,$layout,$_,$search,$orgsAndUsers,preUploadFiles,anonymousClosed,title,$documents,function({detail:files}){$$invalidate(6,preUploadFiles=null!=files?Array.from(files):[]),(0,internal.fxP)(layout.bK,$layout.uploading=!0,$layout)},containerElem,containerWidth,containerHeight,$projects,()=>(0,internal.fxP)(layout.bK,$layout.uploading=!1,$layout),function(value){anonymousClosed=value,$$invalidate(7,anonymousClosed)},function(event){internal.cKT.call(this,$$self,event)}]}class Documents extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Documents_svelte_instance,Documents_svelte_create_fragment,internal.N8,{embed:0,containerElem:11,containerWidth:12,containerHeight:13,dialog:1})}}var Documents_svelte=Documents},9776:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return SearchBar_svelte}});var internal=__webpack_require__(4234),runtime_esm=__webpack_require__(6469),svelte=__webpack_require__(8568),NoWhitespace_svelte=__webpack_require__(489),src_emit=__webpack_require__(1812),parse=__webpack_require__(9740),string=__webpack_require__(3581);const languageOptions="afr|amh|ara|asm|aze|aze_cyrl|bel|ben|bod|bos|bul|cat|ceb|ces|zho|tra|chr|cym|dan|deu|dzo|ell|eng|enm|epo|est|eus|fas|fin|fra|frk|frm|gle|glg|grc|guj|hat|heb|hin|hrv|hun|iku|ind|isl|ita|ita_old|jav|jpn|kan|kat|kat_old|kaz|khm|kir|kor|kur|lao|lat|lav|lit|mal|mar|mkd|mlt|msa|mya|nep|nld|nor|ori|pan|pol|por|pus|ron|rus|san|sin|slk|slv|spa|spa_old|sqi|srp|srp_latn|swa|swe|syr|tam|tel|tgk|tgl|tha|tir|tur|uig|ukr|urd|uzb|uzb_cyrl|vie|yid".split("|"),sortCompletions=[{type:"field",text:"Created At (Descending)",info:"Most Recent First",feed:"created_at"},{type:"field",text:"Created At (Ascending)",info:"Oldest First",feed:"-created_at"},{type:"field",text:"Title (Ascending)",info:"Document Title A-Z",feed:"title"},{type:"field",text:"Title (Descending)",info:"Document Title Z-A",feed:"-title"},{type:"field",text:"Page Count (Descending)",info:"Most Pages First",feed:"page_count"},{type:"field",text:"Page Count (Ascending)",info:"Least Pages First",feed:"-page_count"},{type:"field",text:"Source (Ascending)",info:"Document Source A-Z",feed:"source"},{type:"field",text:"Source (Descending)",info:"Document Source Z-A",feed:"-source"},{type:"field",text:"Score",info:"Default Sort Option by Relevance",feed:"score"}],validSorts=sortCompletions.map((x=>x.feed));function fieldValid(text,example=!1){const fieldMatch=text.match(/^[^a-z]*([a-zA-Z0-9_-]+):(.*)$/);if(null==fieldMatch)return{valid:!1};const field=fieldMatch[1],value=fieldMatch[2],id=(0,string.wp)(value);return"project"==field?null==id?{valid:!1}:example?{valid:!0,transform:`projects:${id}`}:{valid:(0,string.hj)(id)}:"user"==field?null==id?{valid:!1}:example?{valid:!0,transform:`user:${id}`}:{valid:(0,string.hj)(id)}:"organization"==field?null==id?{valid:!1}:example?{valid:!0,transform:`organization:${id}`}:{valid:(0,string.hj)(id)}:"access"==field?{valid:"public"==id||"organization"==id||"private"==id}:"status"==field?{valid:"success"==id||"readable"==id||"pending"==id||"error"==id||"nofile"==id}:"sort"==field?{valid:validSorts.includes(value)}:"tag"==field?{valid:value.trim().length>0}:"language"==field?{valid:null!=id&&languageOptions.includes(id)}:field.startsWith("data_")?{valid:field.length>5&&value.trim().length>0}:{valid:!1}}var orgsAndUsers=__webpack_require__(5340),projects=__webpack_require__(9365),textareaResize=__webpack_require__(6817),languages=__webpack_require__(9275),orgAndUser=__webpack_require__(9643),closure=__webpack_require__(3059),search_iconraw=__webpack_require__(9016),search_iconraw_default=__webpack_require__.n(search_iconraw),close_inlineraw=__webpack_require__(3218),close_inlineraw_default=__webpack_require__.n(close_inlineraw);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[56]=list[i],child_ctx}function get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[59]=list[i],child_ctx[61]=i,child_ctx}function get_each_context_2(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[62]=list[i],child_ctx}function get_each_context_3(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[65]=list[i],child_ctx}function create_else_block_2(ctx){let each_1_anchor,each_value_3=ctx[62].text.split(/( )/g),each_blocks=[];for(let i=0;i{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_if_block_4(ctx){let span1,span0,t;return{c(){span1=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),t=(0,internal.fLW)(ctx[10]),(0,internal.Ljt)(span0,"class","svelte-h1l3kf"),(0,internal.Ljt)(span1,"class","autocomplete svelte-h1l3kf")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,span0),(0,internal.R3I)(span0,t)},p(ctx,dirty){1024&dirty[0]&&(0,internal.rTO)(t,ctx[10])},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function create_if_block_3(ctx){let div,mounted,dispose;return{c(){div=(0,internal.bGB)("div"),(0,internal.Ljt)(div,"class","closeicon svelte-h1l3kf")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),div.innerHTML=close_inlineraw_default(),mounted||(dispose=(0,internal.oLt)(div,"click",ctx[40]),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),mounted=!1,dispose()}}}function create_else_block(ctx){let each_1_anchor,each_value=ctx[9].completions,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));let if_block0=ctx[10].length>0&&create_if_block_4(ctx),if_block1=!ctx[1]&&0!=ctx[0].length&&create_if_block_3(ctx);function select_block_type_1(ctx,dirty){return null==ctx[9]?create_if_block:create_else_block}let current_block_type=select_block_type_1(ctx),if_block2=current_block_type(ctx);return{c(){div3=(0,internal.bGB)("div"),html_tag=new internal.FWw(!1),t0=(0,internal.DhX)(),textarea=(0,internal.bGB)("textarea"),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div");for(let i=0;i0?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_4(ctx),if_block0.c(),if_block0.m(div0,null)):if_block0&&(if_block0.d(1),if_block0=null),(!current||4&dirty[0])&&(0,internal.VHj)(div0,"compact",ctx[2]),(!current||2&dirty[0])&&(0,internal.VHj)(div0,"example",ctx[1]),ctx[1]||0==ctx[0].length?if_block1&&(if_block1.d(1),if_block1=null):if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_3(ctx),if_block1.c(),if_block1.m(div3,t4)),current_block_type===(current_block_type=select_block_type_1(ctx))&&if_block2?if_block2.p(ctx,dirty):(if_block2.d(1),if_block2=current_block_type(ctx),if_block2&&(if_block2.c(),if_block2.m(div1,null))),(!current||256&dirty[0])&&(0,internal.Ljt)(div2,"style",ctx[8]),(!current||4&dirty[0])&&(0,internal.VHj)(div3,"compact",ctx[2])},i(local){if(!current){for(let i=0;ib.score-a.score)),results}function instance($$self,$$props,$$invalidate){let hasSelection,individualSelection,selectionAtEnd,searchPre,searchPost,showCompletions,fieldRaw,fieldPreIndex,fieldPre,fieldPost,processedCompletions,selectedCompletion,noCompletion,autocomplete,highlights,$orgsAndUsers,$projects,$_;(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(35,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(36,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(11,$_=$$value)));const fieldAliases={projects:"project",account:"user",group:"organization",order:"sort"};function alias(field){return null!=fieldAliases[field]?fieldAliases[field]:field}const emit=(0,src_emit.Z)({search(){}});let input,mirror,{value:value=""}=$$props,{example:example=!1}=$$props,{compact:compact=!1}=$$props;function forceInput(){null!=input&&($$invalidate(6,input.value=value,input),input.dispatchEvent(new Event("input",{bubbles:!0,target:input})))}let selectionStart=null,selectionEnd=null,completions=[];const completionCache={},asyncComplete=(0,closure.l8)(((type,fieldPost)=>{const key=`${type}-${fieldPost}`;if(null==completionCache[key])$$invalidate(20,completions=null),"org"==type?(0,orgAndUser.k7)(fieldPost).then((results=>{const mappedOrgs=results.map((org=>({type:"field",text:org.name,feed:(0,string.lV)(org.name,org.id)})));completionCache[key]=[mappedOrgs,fieldPost],$$invalidate(20,completions=completionFilter(mappedOrgs,fieldPost))})):"user"==type&&(0,orgAndUser.w5)(fieldPost).then((results=>{completionCache[key]=results;const mappedUsers=[];for(let i=0;ix.length>0)):[highlight.text])}let pos=0,highlightIdx=allChunks.length-1;for(let i=0;i=pos&&idx=mirror.children.length)return;const completionLeft=mirror.children[highlightIdx].firstChild.getBoundingClientRect().x-mirror.getBoundingClientRect().x,completionRight=mirror.getBoundingClientRect().right-mirror.children[highlightIdx].firstChild.getBoundingClientRect().right;$$invalidate(8,completionX=completionLeft<=completionRight?`left: ${completionLeft}px`:`right: ${completionRight}px`)}let escPressed=!1;let completionIndex=null;let{transformedQuery:transformedQuery}=$$props;(0,svelte.H3)((()=>{window.dispatchEvent(new Event("resize"))}));return $$self.$$set=$$props=>{"value"in $$props&&$$invalidate(0,value=$$props.value),"example"in $$props&&$$invalidate(1,example=$$props.example),"compact"in $$props&&$$invalidate(2,compact=$$props.compact),"transformedQuery"in $$props&&$$invalidate(17,transformedQuery=$$props.transformedQuery)},$$self.$$.update=()=>{1&$$self.$$.dirty[0]&&forceInput(),786432&$$self.$$.dirty[0]&&$$invalidate(34,hasSelection=null!=selectionStart&&null!=selectionEnd),786432&$$self.$$.dirty[0]|8&$$self.$$.dirty[1]&&$$invalidate(33,individualSelection=hasSelection&&selectionStart==selectionEnd),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(26,selectionAtEnd=individualSelection&&selectionStart==value.length),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(28,searchPre=individualSelection?value.substr(0,selectionStart):null),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(27,searchPost=individualSelection?value.substr(selectionStart):null),134217728&$$self.$$.dirty[0]&&$$invalidate(32,showCompletions=null!=searchPost&&/^(\s.*|)$/.test(searchPost)),270532608&$$self.$$.dirty[0]|2&$$self.$$.dirty[1]&&$$invalidate(31,fieldRaw=null!=searchPre&&showCompletions?searchPre.match(preserveSpace?/([a-z]+):([a-zA-Z0-9 -]*)$/:/([a-z]+):([a-zA-Z0-9-]*)$/):null),1&$$self.$$.dirty[1]&&$$invalidate(29,fieldPreIndex=null!=fieldRaw?fieldRaw.index:null),1&$$self.$$.dirty[1]&&$$invalidate(30,fieldPre=null!=fieldRaw?fieldRaw[1]:null),1&$$self.$$.dirty[1]&&$$invalidate(5,fieldPost=null!=fieldRaw?fieldRaw[2]:null),69206016&$$self.$$.dirty[0]&&preserveSpace&&!selectionAtEnd&&setPreserveSpace(!1),543162368&$$self.$$.dirty[0]&&preserveSpace&&fieldPreIndex!=preserveSpaceIndex&&setPreserveSpace(!1),2021654560&$$self.$$.dirty[0]&&(escPressed?($$invalidate(20,completions=[]),setPreserveSpace(!1),$$invalidate(23,escPressed=!1)):null==completions||("project"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter($projects.projects.map((project=>({type:"field",text:project.title,feed:(0,string.lV)(project.title,project.id)}))),fieldPost))):"user"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),asyncComplete("user",fieldPost)):"organization"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),asyncComplete("org",fieldPost)):"access"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter([{type:"field",text:"public",info:"Publicly accessible documents",feed:"public"},{type:"field",text:"private",info:"Privately accessible documents",feed:"private"},{type:"field",text:"organization",info:"Accessible at the organization level",feed:"organization"}],fieldPost))):"status"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter([{type:"field",text:"success",info:"Documents ready for viewing and publishing",feed:"success"},{type:"field",text:"readable",info:"Documents ready for reading but still processing text",feed:"readable"},{type:"field",text:"pending",info:"Documents currently processing",feed:"pending"},{type:"field",text:"error",info:"Documents with errors in preparation",feed:"error"},{type:"field",text:"nofile",info:"Documents that were not successfully uploaded",feed:"nofile"}],fieldPost))):"language"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter(languages.Mj.map((x=>({type:"field",text:x[1],feed:x[0]}))),fieldPost))):"sort"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter(sortCompletions,fieldPost))):$$invalidate(20,completions=[])),null!=completions&&completions.length>0?$$invalidate(3,completionIndex=0):$$invalidate(3,completionIndex=null)),1048576&$$self.$$.dirty[0]&&$$invalidate(9,processedCompletions=null==completions?null:function(){let count=0;for(let i=0;icompletion.index==completionIndex))[0]),84934688&$$self.$$.dirty[0]&&$$invalidate(25,noCompletion=!selectionAtEnd||null==selectedCompletion&&(null==completions||0==completions.length)||null!=fieldPost&&fieldPost.length>0),51380224&$$self.$$.dirty[0]&&$$invalidate(10,autocomplete=noCompletion?"":null==selectedCompletion?completions[0].feed:selectedCompletion.feed),1&$$self.$$.dirty[0]|48&$$self.$$.dirty[1]&&$$invalidate(4,highlights=function(highlights){for(let i=0;inull!=x.transform?x.transform:x.text)).join(""))},[value,example,compact,completionIndex,highlights,fieldPost,input,mirror,completionX,processedCompletions,autocomplete,$_,triggerCompletion,handleCursor,function(){handleCursor(),$$invalidate(3,completionIndex=null)},function(e){if(preserveSpaceOnKeyPress){const char=String.fromCharCode(e.keyCode);/[a-zA-Z0-9-_ ]/.test(char)&&setPreserveSpace(!0),preserveSpaceOnKeyPress=!1}if("Tab"==e.key||13==e.which||13==e.keyCode){if(""!=autocomplete)return triggerCompletion({feed:autocomplete}),void e.preventDefault();if(null!=selectedCompletion)return triggerCompletion(selectedCompletion,null!=fieldPost?fieldPost.length:0),void e.preventDefault()}return"Escape"==e.key&&null!=completions&&completions.length>0?($$invalidate(23,escPressed=!0),void e.preventDefault()):13==e.which||13==e.keyCode?(emit.search(),void e.preventDefault()):(handleCursor(),void(null!=processedCompletions&&processedCompletions.count>0&&("ArrowUp"==e.key?(e.preventDefault(),null==completionIndex?$$invalidate(3,completionIndex=processedCompletions.count-1):completionIndex>0?$$invalidate(3,completionIndex--,completionIndex):$$invalidate(3,completionIndex=null)):"ArrowDown"==e.key&&(e.preventDefault(),null==completionIndex?$$invalidate(3,completionIndex=0):completionIndex{input=$$value,$$invalidate(6,input)}))},function(){value=this.value,$$invalidate(0,value)},function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{mirror=$$value,$$invalidate(7,mirror)}))},()=>$$invalidate(0,value=""),completion=>{null!=completion.index&&$$invalidate(3,completionIndex=completion.index)},completion=>{null!=completion.index&&$$invalidate(3,completionIndex=null)},completion=>triggerCompletion(completion,null!=fieldPost?fieldPost.length:0)]}class SearchInput extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{value:0,example:1,compact:2,transformedQuery:17},null,[-1,-1,-1])}}var SearchInput_svelte=SearchInput,Button_svelte=__webpack_require__(7120),search_search=__webpack_require__(6046),layout=__webpack_require__(3423),router=__webpack_require__(3356);function SearchBar_svelte_create_if_block(ctx){let div,span,t,button,current,raw_value=ctx[5]("searchBar.tips")+"";return button=new Button_svelte.Z({props:{action:!0,small:!0,nomargin:!0,$$slots:{default:[SearchBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",layout.gX),{c(){div=(0,internal.bGB)("div"),span=(0,internal.bGB)("span"),t=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","svelte-elzjsp"),(0,internal.Ljt)(div,"class","info svelte-elzjsp")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,span),span.innerHTML=raw_value,(0,internal.R3I)(div,t),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){(!current||32&dirty)&&raw_value!==(raw_value=ctx[5]("searchBar.tips")+"")&&(span.innerHTML=raw_value);const button_changes={};2080&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function SearchBar_svelte_create_default_slot(ctx){let t,t_value=ctx[5]("searchBar.learnMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("searchBar.learnMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function SearchBar_svelte_create_fragment(ctx){let div,searchinput,updating_value,updating_transformedQuery,t,current;function searchinput_value_binding(value){ctx[8](value)}function searchinput_transformedQuery_binding(value){ctx[9](value)}let searchinput_props={example:ctx[1],compact:ctx[2]};void 0!==ctx[0]&&(searchinput_props.value=ctx[0]),void 0!==ctx[4]&&(searchinput_props.transformedQuery=ctx[4]),searchinput=new SearchInput_svelte({props:searchinput_props}),internal.VnY.push((()=>(0,internal.akz)(searchinput,"value",searchinput_value_binding))),internal.VnY.push((()=>(0,internal.akz)(searchinput,"transformedQuery",searchinput_transformedQuery_binding))),searchinput.$on("search",ctx[6]);let if_block=!ctx[3]&&!ctx[1]&&SearchBar_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(searchinput.$$.fragment),t=(0,internal.DhX)(),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","searchcontainer svelte-elzjsp"),(0,internal.VHj)(div,"example",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(searchinput,div,null),(0,internal.R3I)(div,t),if_block&&if_block.m(div,null),current=!0},p(ctx,[dirty]){const searchinput_changes={};2&dirty&&(searchinput_changes.example=ctx[1]),4&dirty&&(searchinput_changes.compact=ctx[2]),!updating_value&&1&dirty&&(updating_value=!0,searchinput_changes.value=ctx[0],(0,internal.hjT)((()=>updating_value=!1))),!updating_transformedQuery&&16&dirty&&(updating_transformedQuery=!0,searchinput_changes.transformedQuery=ctx[4],(0,internal.hjT)((()=>updating_transformedQuery=!1))),searchinput.$set(searchinput_changes),ctx[3]||ctx[1]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),10&dirty&&(0,internal.Ui)(if_block,1)):(if_block=SearchBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,null)),(!current||2&dirty)&&(0,internal.VHj)(div,"example",ctx[1])},i(local){current||((0,internal.Ui)(searchinput.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(searchinput.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(searchinput),if_block&&if_block.d()}}}function SearchBar_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(5,$_=$$value)));let transformedQuery,{search:search=""}=$$props,{example:example=!1}=$$props,{compact:compact=!1}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props;let unsubscribe=[];return(0,svelte.H3)((()=>{example||(dialog&&null!=search_search.yC.filePickerUser?$$invalidate(0,search=(0,search_search.vO)(search_search.yC.filePickerUser)):unsubscribe=[router.Nd.subscribe((router=>{const route=router.resolvedRoute;null!=route&&"app"==route.name&&(null!=route.props.q&&route.props.q.length>0?$$invalidate(0,search=route.props.q):$$invalidate(0,search=""))}))])})),(0,svelte.ev)((()=>{unsubscribe.forEach((x=>x()))})),$$self.$$set=$$props=>{"search"in $$props&&$$invalidate(0,search=$$props.search),"example"in $$props&&$$invalidate(1,example=$$props.example),"compact"in $$props&&$$invalidate(2,compact=$$props.compact),"embed"in $$props&&$$invalidate(3,embed=$$props.embed),"dialog"in $$props&&$$invalidate(7,dialog=$$props.dialog)},[search,example,compact,embed,transformedQuery,$_,function(){(0,search_search.o1)(search,!dialog)},dialog,function(value){search=value,$$invalidate(0,search)},function(value){transformedQuery=value,$$invalidate(4,transformedQuery)}]}class SearchBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SearchBar_svelte_instance,SearchBar_svelte_create_fragment,internal.N8,{search:0,example:1,compact:2,embed:3,dialog:7})}}var SearchBar_svelte=SearchBar},393:function(module){module.exports=''},5563:function(module){module.exports=''},6842:function(module){module.exports=''},4156:function(module){module.exports=''},8902:function(module){module.exports=''},2728:function(module){module.exports=''},4704:function(module){module.exports=''},5232:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{DT:function(){return SIGN_OUT_URL},Dt:function(){return SIGN_UP_URL},I8:function(){return auth},O0:function(){return SIGN_IN_URL},YG:function(){return SQUARELET_URL}});var svue__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3396);const DOCUMENTCLOUD_TOKEN_STORAGE_KEY="documentcloud_token",SQUARELET_URL="https://dev.squarelet.com",SIGN_IN_URL="https://api.dev.documentcloud.org/accounts/login/squarelet",SIGN_UP_URL="https://dev.squarelet.com/accounts/signup/?intent=documentcloud&next="+encodeURIComponent(window.location.href),SIGN_OUT_URL="https://api.dev.documentcloud.org/accounts/logout/",auth=new svue__WEBPACK_IMPORTED_MODULE_0__.x({data(){return{signingIn:!1,key:null}},computed:{isAuthenticated(key){return null!==key}}});function setToken(key){try{localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY,JSON.stringify(key))}catch(e){}auth.key=key}function removeToken(){try{localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY)}catch(e){}auth.key=null}!function(){try{const storedData=localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);if(null===storedData)return;if(null!==storedData){return void setToken(JSON.parse(storedData))}}catch(e){return void removeToken()}removeToken()}()},9275:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Mj:function(){return languages},X9:function(){return defaultLanguage},g2:function(){return textractLanguages}});const languageCodes="afr|amh|ara|asm|aze|aze_cyrl|bel|ben|bod|bos|bul|cat|ceb|ces|zho|tra|chr|cym|dan|deu|dzo|ell|eng|enm|epo|est|eus|fas|fin|fra|frk|frm|gle|glg|grc|guj|hat|heb|hin|hrv|hun|iku|ind|isl|ita|ita_old|jav|jpn|kan|kat|kat_old|kaz|khm|kir|kor|kur|lao|lat|lav|lit|mal|mar|mkd|mlt|msa|mya|nep|nld|nor|ori|pan|pol|por|pus|ron|rus|san|sin|slk|slv|spa|spa_old|sqi|srp|srp_latn|swa|swe|syr|tam|tel|tgk|tgl|tha|tir|tur|uig|ukr|urd|uzb|uzb_cyrl|vie|yid".split("|"),languageNames="Afrikaans|Amharic|Arabic|Assamese|Azerbaijani|Azerbaijani - Cyrillic|Belarusian|Bengali|Tibetan|Bosnian|Bulgarian|Catalan|Cebuano|Czech|Chinese - Simplified|Chinese - Traditional|Cherokee|Welsh|Danish|German|Dzongkha|Greek|English|Middle English|Esperanto|Estonian|Basque|Persian|Finnish|French|German Fraktur|Middle French|Irish|Galician|Ancient Greek|Gujarati|Haitian; Haitian Creole|Hebrew|Hindi|Croatian|Hungarian|Inuktitut|Indonesian|Icelandic|Italian|Italian - Old|Javanese|Japanese|Kannada|Georgian|Georgian - Old|Kazakh|Central Khmer|Kirghiz; Kyrgyz|Korean|Kurdish|Lao|Latin|Latvian|Lithuanian|Malayalam|Marathi|Macedonian|Maltese|Malay|Burmese|Nepali|Dutch; Flemish|Norwegian|Oriya|Panjabi; Punjabi|Polish|Portuguese|Pushto; Pashto|Romanian; Moldavian; Moldovan|Russian|Sanskrit|Sinhala; Sinhalese|Slovak|Slovenian|Spanish; Castilian|Spanish; Castilian - Old|Albanian|Serbian|Serbian - Latin|Swahili|Swedish|Syriac|Tamil|Telugu|Tajik|Tagalog|Thai|Tigrinya|Turkish|Uighur; Uyghur|Ukrainian|Urdu|Uzbek|Uzbek - Cyrillic|Vietnamese|Yiddish".split("|"),defaultLanguage="eng";const languages=function(codes,names){const results=[];for(let i=0;ia[1]>b[1]?1:a[1]-1!=textractLanguageCodes.indexOf(l[0])))},9216:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{h:function(){return metaDialogs}});const metaDialogs=[{menuTitle:"metaFields.titleFieldTitle",charLimit:"1000",fieldAccessor:x=>x.title,fieldName:"metaFields.titleFieldName",fieldNameUppercase:"metaFields.titleFieldNameUppercase",apiField:"title",headerText:"metaFields.titleFieldHeader",explainerText:"metaFields.titleFieldDescription",buttonText:"metaFields.titleFieldButton",fieldValid:(value,initial)=>value!=initial&&value.trim().length>0,fieldInvalidText:(value,initial)=>value==initial?"metaFields.titleFieldInvalidSameName":0==value.trim().length?"metaFields.titleFieldInvalidEmptyName":"",disabled:numSelected=>1!=numSelected},{menuTitle:"metaFields.sourceFieldTitle",charLimit:"1000",fieldAccessor:x=>x.source,fieldName:"metaFields.sourceFieldName",fieldNameUppercase:"metaFields.sourceFieldNameUppercase",apiField:"source",headerText:"metaFields.sourceFieldHeader",explainerText:"metaFields.sourceFieldDescription",buttonText:"metaFields.sourceFieldButton"},{menuTitle:"metaFields.descriptionFieldTitle",charLimit:"4000",fieldAccessor:x=>x.description,fieldName:"metaFields.descriptionFieldName",fieldNameUppercase:"metaFields.descriptionFieldNameUppercase",apiField:"description",headerText:"metaFields.descriptionFieldHeader",explainerText:"metaFields.descriptionFieldDescription",isTextArea:!0,buttonText:"metaFields.descriptionFieldButton"},{menuTitle:"metaFields.relatedArticleFieldTitle",charLimit:"1024",fieldAccessor:x=>x.relatedArticleUrl,fieldName:"rmetaFields.relatedArticleFieldName",fieldNameUppercase:"metaFields.relatedArticleFieldNameUppercase",apiField:"related_article",headerText:"metaFields.relatedArticleFieldHeader",explainerText:"metaFields.relatedArticleFieldDescription",buttonText:"metaFields.relatedArticleFieldButton"},{menuTitle:"metaFields.publishedUrlFieldTitle",charLimit:"1024",fieldAccessor:x=>x.publishedUrl,fieldName:"metaFields.publishedUrlFieldName",fieldNameUppercase:"metaFields.publishedUrlFieldNameUppercase",apiField:"published_url",headerText:"metaFields.publishedUrlFieldHeader",explainerText:"metaFields.publishedUrlFieldDescription",buttonText:"metaFields.publishedUrlFieldButton"}]},1428:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{q:function(){return informSize}});var _util_closure_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3059);function informSize(element,useScrollDimension=!0,updateStyleProps=!1){const update=()=>{window.parent.postMessage({width:Math.max(useScrollDimension?element.scrollWidth:0,element.offsetWidth),height:Math.max(useScrollDimension?element.scrollHeight:0,element.offsetHeight),updateStyleProps:updateStyleProps},"*")};window.addEventListener("resize",(0,_util_closure_js__WEBPACK_IMPORTED_MODULE_0__.l8)(update)),update()}},3059:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";function timeoutify(fn,timeout=100){let timer=null;return(...args)=>{null!=timer&&(clearTimeout(timer),timer=null),timer=setTimeout((()=>{timer=null,fn(...args)}),timeout)}}__webpack_require__.d(__webpack_exports__,{l8:function(){return timeoutify}})}}]);
-./public/3810.bfc124ae0fa1152959c7.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="1aa9f8d6-3757-4373-a77f-76c8a6f9e3cf",e._sentryDebugIdIdentifier="sentry-dbid-1aa9f8d6-3757-4373-a77f-76c8a6f9e3cf")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[3810],{3810:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"𝑬𝒎𝒂𝒊𝒍 𝒂𝒅𝒅𝒓𝒆𝒔𝒔","loading":"𝑳𝒐𝒂𝒅𝒊𝒏𝒈...","documentCloud":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅","home":"𝑯𝒐𝒎𝒆"},"homeTemplate":{"signedIn":"𝑺𝒊𝒈𝒏𝒆𝒅 𝒊𝒏 𝒂𝒔 {name}","signOut":"𝑺𝒊𝒈𝒏 𝒐𝒖𝒕","signIn":"𝑺𝒊𝒈𝒏 𝒊𝒏","signUp":"𝑺𝒊𝒈𝒏 𝒖𝒑","goToApp":"𝑮𝒐 𝒕𝒐 𝒂𝒑𝒑"},"accessToggle":{"public":"𝑵𝒐𝒕𝒆 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒂𝒏𝒚𝒐𝒏𝒆 𝒘𝒊𝒕𝒉 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","collaborator":"𝑵𝒐𝒕𝒆 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒂𝒏𝒚𝒐𝒏𝒆 𝒘𝒉𝒐 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","private":"𝑵𝒐𝒕𝒆 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖 𝒂𝒍𝒐𝒏𝒆.","publicName":"𝑷𝒖𝒃𝒍𝒊𝒄","collaboratorName":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓","privateName":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆"},"accessIcon":{"private":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝑨𝒄𝒄𝒆𝒔𝒔","organization":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒕𝒐 𝒀𝒐𝒖𝒓 𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","public":"𝑷𝒖𝒃𝒍𝒊𝒄 𝑨𝒄𝒄𝒆𝒔𝒔","privateExplanation":"𝑶𝒏𝒍𝒚 𝒚𝒐𝒖 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","organizationExplanation":"𝑶𝒏𝒍𝒚 𝒎𝒆𝒎𝒃𝒆𝒓𝒔 𝒐𝒇 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","publicExplanation":"𝑨𝒏𝒚𝒐𝒏𝒆 𝒄𝒂𝒏 𝒔𝒆𝒂𝒓𝒄𝒉 𝒂𝒏𝒅 𝒗𝒊𝒆𝒘 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕"},"appearanceCustomizer":{"customizeAppearance":"𝑪𝒖𝒔𝒕𝒐𝒎𝒊𝒛𝒆 𝑨𝒑𝒑𝒆𝒂𝒓𝒂𝒏𝒄𝒆","hide":"𝑯𝒊𝒅𝒆 𝒉𝒆𝒍𝒑 𝒕𝒆𝒙𝒕","show":"𝑺𝒉𝒐𝒘 𝒉𝒆𝒍𝒑 𝒕𝒆𝒙𝒕"},"appearanceDimension":{"responsive":"𝑨𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","fixed":"𝑭𝒊𝒙𝒆𝒅"},"calendar":{"jan":"𝑱𝒂𝒏𝒖𝒂𝒓𝒚","feb":"𝑭𝒆𝒃𝒓𝒖𝒂𝒓𝒚","mar":"𝑴𝒂𝒓𝒄𝒉","apr":"𝑨𝒑𝒓𝒊𝒍","may":"𝑴𝒂𝒚","jun":"𝑱𝒖𝒏𝒆","jul":"𝑱𝒖𝒍𝒚","aug":"𝑨𝒖𝒈𝒖𝒔𝒕","sep":"𝑺𝒆𝒑𝒕𝒆𝒎𝒃𝒆𝒓","oct":"𝑶𝒄𝒕𝒐𝒃𝒆𝒓","nov":"𝑵𝒐𝒗𝒆𝒎𝒃𝒆𝒓","dec":"𝑫𝒆𝒄𝒆𝒎𝒃𝒆𝒓","hourShortcode":"𝑯𝑯","minuteShortcode":"𝑴𝑴"},"dialog":{"cancel":"𝑪𝒂𝒏𝒄𝒆𝒍","delete":"𝑫𝒆𝒍𝒆𝒕𝒆","done":"𝑫𝒐𝒏𝒆","edit":"𝑬𝒅𝒊𝒕","remove":"𝑹𝒆𝒎𝒐𝒗𝒆","save":"𝑺𝒂𝒗𝒆","create":"𝑪𝒓𝒆𝒂𝒕𝒆","ok":"𝑶𝒌","update":"𝑼𝒑𝒅𝒂𝒕𝒆","dismiss":"𝑫𝒊𝒔𝒎𝒊𝒔𝒔","continue":"𝑪𝒐𝒏𝒕𝒊𝒏𝒖𝒆"},"dialogAccessDialog":{"changeAccess":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒇𝒐𝒓 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","selectAccess":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒂𝒏 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","public":"𝑷𝒖𝒃𝒍𝒊𝒄 𝒂𝒄𝒄𝒆𝒔𝒔","publicDesc":"𝑨𝒏𝒚𝒐𝒏𝒆 𝒐𝒏 𝒕𝒉𝒆 𝒊𝒏𝒕𝒆𝒓𝒏𝒆𝒕 𝒄𝒂𝒏 𝒔𝒆𝒂𝒓𝒄𝒉 𝒇𝒐𝒓 𝒂𝒏𝒅 𝒗𝒊𝒆𝒘 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","verifiedHelp":"𝑶𝒏𝒍𝒚 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒖𝒔𝒆𝒓𝒔 𝒐𝒓 𝒎𝒆𝒎𝒃𝒆𝒓𝒔 𝒐𝒇 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏𝒔 𝒄𝒂𝒏 𝒎𝒂𝒌𝒆 𝒖𝒑𝒍𝒐𝒂𝒅𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑰𝒇 𝒚𝒐𝒖\'𝒓𝒆 𝒂 𝒋𝒐𝒖𝒓𝒏𝒂𝒍𝒊𝒔𝒕 𝒐𝒓 𝒐𝒕𝒉𝒆𝒓𝒘𝒊𝒔𝒆 𝒘𝒐𝒓𝒌 𝒊𝒏 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒊𝒏𝒈 𝒗𝒆𝒕𝒕𝒆𝒅 𝒎𝒂𝒕𝒆𝒓𝒊𝒂𝒍𝒔 𝒕𝒐 𝒊𝒏𝒇𝒐𝒓𝒎 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄, 𝒍𝒆𝒂𝒓𝒏 𝒎𝒐𝒓𝒆 𝒂𝒏𝒅 𝒓𝒆𝒒𝒖𝒆𝒔𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏 𝒉𝒆𝒓𝒆.","privateToOrg":"𝒀𝒐𝒖 𝒄𝒂𝒏’𝒕 𝒄𝒉𝒂𝒏𝒈𝒆 𝒕𝒉𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍 𝒕𝒐 “𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏” 𝒃𝒆𝒄𝒂𝒖𝒔𝒆 {n, plural, one {𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔} other {𝒐𝒏𝒆 𝒐𝒓 𝒎𝒐𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒂𝒓𝒆}} 𝒂𝒔𝒔𝒐𝒄𝒊𝒂𝒕𝒆𝒅 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖𝒓 𝒊𝒏𝒅𝒊𝒗𝒊𝒅𝒖𝒂𝒍 𝒂𝒄𝒄𝒐𝒖𝒏𝒕, 𝒏𝒐𝒕 𝒂𝒏 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏. 𝑻𝒐 𝒂𝒅𝒅 {n, plural, one {𝒊𝒕} other {𝒕𝒉𝒆𝒎}} 𝒕𝒐 𝒂𝒏 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏, 𝒔𝒆𝒍𝒆𝒄𝒕 {n, plural, one {𝒊𝒕} other {𝒕𝒉𝒆𝒎}} 𝒇𝒓𝒐𝒎 𝒕𝒉𝒆 𝒎𝒂𝒏𝒂𝒈𝒆𝒎𝒆𝒏𝒕 𝒗𝒊𝒆𝒘 𝒂𝒏𝒅 𝒄𝒍𝒊𝒄𝒌 “𝑪𝒉𝒂𝒏𝒈𝒆 𝑶𝒘𝒏𝒆𝒓.” 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒋𝒐𝒊𝒏 𝒐𝒓 𝒄𝒓𝒆𝒂𝒕𝒆 𝒂𝒏 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒐𝒏 𝒕𝒉𝒊𝒔 𝒑𝒂𝒈𝒆.","private":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒂𝒄𝒄𝒆𝒔𝒔","privateDesc":"𝑶𝒏𝒍𝒚 𝒑𝒆𝒐𝒑𝒍𝒆 𝒘𝒊𝒕𝒉 𝒆𝒙𝒑𝒍𝒊𝒄𝒊𝒕 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 (𝒗𝒊𝒂 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒊𝒐𝒏) 𝒉𝒂𝒗𝒆 𝒂𝒄𝒄𝒆𝒔𝒔.","organization":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","organizationDesc":"𝑶𝒏𝒍𝒚 𝒕𝒉𝒆 𝒑𝒆𝒐𝒑𝒍𝒆 𝒊𝒏 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒉𝒂𝒗𝒆 𝒂𝒄𝒄𝒆𝒔𝒔.","schedulePublication":"𝑺𝒄𝒉𝒆𝒅𝒖𝒍𝒆 𝒑𝒖𝒃𝒍𝒊𝒄𝒂𝒕𝒊𝒐𝒏","scheduleHelp":"𝑻𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒎𝒂𝒅𝒆 𝒑𝒖𝒃𝒍𝒊𝒄 𝒂𝒕 𝒕𝒉𝒆 𝒈𝒊𝒗𝒆𝒏 𝒅𝒂𝒕𝒆 𝒂𝒏𝒅 𝒕𝒊𝒎𝒆. 𝑷𝒖𝒃𝒍𝒊𝒄𝒂𝒕𝒊𝒐𝒏 𝒕𝒊𝒎𝒆 𝒊𝒔 𝒍𝒐𝒄𝒂𝒍{timezone}.","unchanged":"𝑨𝒄𝒄𝒆𝒔𝒔 𝒊𝒔 𝒖𝒏𝒄𝒉𝒂𝒏𝒈𝒆𝒅. 𝑺𝒆𝒍𝒆𝒄𝒕 𝒂 𝒅𝒊𝒇𝒇𝒆𝒓𝒆𝒏𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍.","future":"𝑴𝒖𝒔𝒕 𝒔𝒆𝒍𝒆𝒄𝒕 𝒂 𝒕𝒊𝒎𝒆 𝒊𝒏 𝒕𝒉𝒆 𝒇𝒖𝒕𝒖𝒓𝒆","change":"𝑪𝒉𝒂𝒏𝒈𝒆"},"dialogCollaboratorDialog":{"confirm":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒎𝒐𝒗𝒆 𝒖𝒔𝒆𝒓","confirmMsg":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒓𝒆𝒎𝒐𝒗𝒆 {name} 𝒇𝒓𝒐𝒎 {title}. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","addCollaborators":"𝑨𝒅𝒅 𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔","invite":"𝑷𝒖𝒕 𝒊𝒏 𝒕𝒉𝒆 𝒆𝒎𝒂𝒊𝒍 𝒐𝒇 𝒂𝒏 𝒆𝒙𝒊𝒔𝒕𝒊𝒏𝒈 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒖𝒔𝒆𝒓 𝒃𝒆𝒍𝒐𝒘. 𝑰𝒇 𝒕𝒉𝒆𝒚 𝒅𝒐𝒏\'𝒕 𝒉𝒂𝒗𝒆 𝒂𝒏 𝒂𝒄𝒄𝒐𝒖𝒏𝒕, 𝒉𝒂𝒗𝒆 𝒕𝒉𝒆𝒎 𝒓𝒆𝒈𝒊𝒔𝒕𝒆𝒓 𝒉𝒆𝒓𝒆 𝒇𝒐𝒓 𝒇𝒓𝒆𝒆, 𝒂𝒏𝒅 𝒕𝒉𝒆𝒏 𝒂𝒔𝒌 𝒕𝒉𝒆𝒎 𝒕𝒐 𝒍𝒐𝒈 𝒊𝒏 𝒕𝒐 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒂𝒕 𝒍𝒆𝒂𝒔𝒕 𝒐𝒏𝒄𝒆.","admin":"𝑨𝒅𝒎𝒊𝒏","view":"𝑽𝒊𝒆𝒘","adminHelp":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒂𝒏𝒅 𝒊𝒕𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","editHelp":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕","viewHelp":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕","add":"𝑨𝒅𝒅","empty":"𝒀𝒐𝒖 𝒉𝒂𝒗𝒆 𝒏𝒐𝒕 𝒚𝒆𝒕 𝒂𝒅𝒅𝒆𝒅 𝒂𝒏𝒚 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒕𝒐 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕. 𝑰𝒏𝒗𝒊𝒕𝒆 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒕𝒐 𝒈𝒓𝒂𝒏𝒕 𝒐𝒕𝒉𝒆𝒓 𝒖𝒔𝒆𝒓𝒔 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒔𝒉𝒂𝒓𝒆𝒅 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒄𝒐𝒏𝒕𝒓𝒐𝒍 𝒘𝒉𝒆𝒕𝒉𝒆𝒓 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒉𝒂𝒗𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒗𝒊𝒆𝒘/𝒆𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕’𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒐𝒓 𝒃𝒆 𝒂𝒏 𝒂𝒅𝒎𝒊𝒏 𝒘𝒊𝒕𝒉 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏𝒔 𝒕𝒐 𝒊𝒏𝒗𝒊𝒕𝒆 𝒐𝒕𝒉𝒆𝒓 𝒖𝒔𝒆𝒓𝒔 𝒂𝒏𝒅 𝒆𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒊𝒕𝒔𝒆𝒍𝒇.","manageCollaborators":"𝑴𝒂𝒏𝒂𝒈𝒆 𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔","name":"𝑵𝒂𝒎𝒆","access":"𝑨𝒄𝒄𝒆𝒔𝒔","you":"(𝒚𝒐𝒖)"},"dialogDataDialog":{"confirm":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒎𝒐𝒗𝒆 𝒅𝒂𝒕𝒂 𝒑𝒐𝒊𝒏𝒕","removeMsg":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒓𝒆𝒎𝒐𝒗𝒆 𝒕𝒉𝒆 {key}{value} 𝒅𝒂𝒕𝒂 𝒑𝒐𝒊𝒏𝒕 𝒇𝒓𝒐𝒎 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","addData":"𝑨𝒅𝒅 𝑫𝒂𝒕𝒂 𝒇𝒐𝒓 {n, plural, one {𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","tag":"𝑻𝒂𝒈","value":"𝑽𝒂𝒍𝒖𝒆","key":"𝑲𝒆𝒚","keyValue":"𝑲𝒆𝒚 / 𝑽𝒂𝒍𝒖𝒆","tagInfo":"𝑨𝒅𝒅 𝒄𝒖𝒔𝒕𝒐𝒎 𝒕𝒂𝒈𝒔 𝒕𝒐 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔.","eg":"𝒆.𝒈.","exampleTagReport":"𝒓𝒆𝒑𝒐𝒓𝒕","exampleTagLawsuit":"𝒍𝒂𝒘𝒔𝒖𝒊𝒕","exampleTagEmail":"𝒆𝒎𝒂𝒊𝒍","keyValueInfo":"𝑨𝒅𝒅 𝒄𝒖𝒔𝒕𝒐𝒎 𝒌𝒆𝒚 / 𝒗𝒂𝒍𝒖𝒆 𝒑𝒂𝒊𝒓𝒔 𝒇𝒐𝒓 𝒑𝒓𝒆𝒄𝒊𝒔𝒆 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒐𝒇 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔.","exampleKVState":"𝒔𝒕𝒂𝒕𝒆:&𝒏𝒃𝒔𝒑;𝑪𝒂𝒍𝒊𝒇𝒐𝒓𝒏𝒊𝒂","exampleKVYear":"𝒚𝒆𝒂𝒓:&𝒏𝒃𝒔𝒑;𝟐𝟎𝟏𝟔","exampleKVType":"𝒕𝒚𝒑𝒆:&𝒏𝒃𝒔𝒑;𝒎𝒆𝒎𝒐","enterTag":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒕𝒂𝒈","enterKey":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒌𝒆𝒚","keyInvalid":"𝑲𝒆𝒚𝒔 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒄𝒐𝒏𝒕𝒂𝒊𝒏 𝒍𝒆𝒕𝒕𝒆𝒓𝒔, 𝒏𝒖𝒎𝒃𝒆𝒓𝒔, 𝒖𝒏𝒅𝒆𝒓𝒔𝒄𝒐𝒓𝒆𝒔 (_), 𝒂𝒏𝒅 𝒅𝒂𝒔𝒉𝒆𝒔 (-)","emptyMsg":"𝒀𝒐𝒖 𝒉𝒂𝒗𝒆 𝒏𝒐𝒕 𝒚𝒆𝒕 𝒂𝒅𝒅𝒆𝒅 𝒂𝒏𝒚 𝒅𝒂𝒕𝒂 𝒕𝒐 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝑨𝒅𝒅 𝒕𝒂𝒈𝒔 𝒂𝒏𝒅 𝒌𝒆𝒚/𝒗𝒂𝒍𝒖𝒆 𝒑𝒂𝒊𝒓𝒔 𝒕𝒐 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒆 𝒂𝒏𝒅 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒇𝒊𝒍𝒕𝒆𝒓 𝒂𝒏𝒅 𝒔𝒆𝒂𝒓𝒄𝒉 𝒐𝒏 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒅𝒂𝒕𝒂 𝒕𝒐 𝒈𝒊𝒗𝒆 𝒚𝒐𝒖 𝒑𝒐𝒘𝒆𝒓𝒇𝒖𝒍 𝒄𝒐𝒏𝒕𝒓𝒐𝒍 𝒐𝒗𝒆𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒎𝒂𝒏𝒂𝒈𝒆𝒎𝒆𝒏𝒕.","manageDocumentData":"𝑴𝒂𝒏𝒂𝒈𝒆 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑫𝒂𝒕𝒂","valueUnchanged":"𝑽𝒂𝒍𝒖𝒆 𝒓𝒆𝒎𝒂𝒊𝒏𝒔 𝒖𝒏𝒄𝒉𝒂𝒏𝒈𝒆𝒅","kvCannotBeEmpty":"𝑲𝒆𝒚/𝒗𝒂𝒍𝒖𝒆 𝒄𝒂𝒏𝒏𝒐𝒕 𝒃𝒆 𝒆𝒎𝒑𝒕𝒚"},"dialogReprocessDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔","reprocessDocs":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒇𝒐𝒓𝒄𝒆 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒕𝒐 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒑𝒂𝒈𝒆 𝒂𝒏𝒅 𝒊𝒎𝒂𝒈𝒆 𝒕𝒆𝒙𝒕. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","reprocessSingleDoc":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒇𝒐𝒓𝒄𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒑𝒂𝒈𝒆 𝒂𝒏𝒅 𝒊𝒎𝒂𝒈𝒆 𝒕𝒆𝒙𝒕. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","confirm":"𝑹𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔"},"dialogDeleteDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔","deleteDocs":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒑𝒆𝒓𝒎𝒂𝒏𝒆𝒏𝒕𝒍𝒚 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓"},"dialogCancelProcessingDialog":{"title":"𝑪𝒂𝒏𝒄𝒆𝒍 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","deleteDocs":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒇𝒐𝒓𝒄𝒆 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒕𝒐 𝒔𝒕𝒐𝒑 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈. 𝑨𝒇𝒕𝒆𝒓 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒉𝒂𝒔 𝒃𝒆𝒆𝒏 𝒔𝒕𝒐𝒑𝒑𝒆𝒅, 𝒂𝒏 𝒆𝒓𝒓𝒐𝒓 𝒘𝒊𝒍𝒍 𝒔𝒉𝒐𝒘 𝒂𝒇𝒕𝒆𝒓 𝒘𝒉𝒊𝒄𝒉 𝒚𝒐𝒖 𝒄𝒂𝒏 “𝑭𝒐𝒓𝒄𝒆 𝑹𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔” 𝒐𝒓 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒆 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒖𝒔𝒊𝒏𝒈 𝒕𝒉𝒆 𝑬𝒅𝒊𝒕 𝒎𝒆𝒏𝒖. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝑺𝒕𝒂𝒇𝒇-𝒐𝒏𝒍𝒚 𝒊𝒏𝒇𝒐 𝒇𝒐𝒓 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","id":"𝑰𝑫","title":"𝑻𝒊𝒕𝒍𝒆","actions":"𝑨𝒄𝒕𝒊𝒐𝒏𝒔","debug":"𝑫𝒆𝒃𝒖𝒈","viewErrors":"𝑽𝒊𝒆𝒘 𝒆𝒓𝒓𝒐𝒓𝒔","viewS3":"𝑽𝒊𝒆𝒘 𝒊𝒏 𝑺𝟑"},"dialogDocumentEmbedDialog":{"responsive":"𝑹𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆","respOn":"𝑶𝒏 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","respOnHelp":"𝑭𝒊𝒍𝒍 𝒕𝒉𝒆 𝒘𝒊𝒅𝒕𝒉 𝒐𝒇 𝒕𝒉𝒆 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒄𝒐𝒏𝒕𝒂𝒊𝒏𝒆𝒓 (𝒖𝒔𝒖𝒂𝒍𝒍𝒚 𝒘𝒐𝒓𝒌𝒔 𝒃𝒆𝒔𝒕)","respOff":"𝑶𝒇𝒇","respOffHelp":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒇𝒊𝒕 𝒕𝒉𝒆 𝒔𝒊𝒛𝒆𝒔 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒃𝒆𝒍𝒐𝒘","width":"𝑾𝒊𝒅𝒕𝒉","widthAuto":"𝑾𝒊𝒍𝒍 𝒇𝒊𝒍𝒍 𝒕𝒉𝒆 𝒂𝒗𝒂𝒊𝒍𝒂𝒃𝒍𝒆 𝒔𝒑𝒂𝒄𝒆 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒔𝒆𝒕 𝒕𝒐 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒐𝒕𝒉𝒆𝒓𝒘𝒊𝒔𝒆 𝒅𝒆𝒇𝒂𝒖𝒍𝒕𝒔 𝒕𝒐 𝟕𝟎𝟎𝒑𝒙","widthFixed":"𝑺𝒆𝒕 𝒂 𝒎𝒂𝒙𝒊𝒎𝒖𝒎 𝒘𝒊𝒅𝒕𝒉 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒐𝒓 𝒔𝒆𝒕 𝒂 𝒇𝒊𝒙𝒆𝒅 𝒔𝒊𝒛𝒆 𝒊𝒇 𝒏𝒐𝒕 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆","height":"𝑯𝒆𝒊𝒈𝒉𝒕","heightAuto":"𝑻𝒉𝒆 𝒉𝒆𝒊𝒈𝒉𝒕 𝒊𝒔 𝒃𝒂𝒔𝒆𝒅 𝒐𝒏 𝒕𝒉𝒆 𝒔𝒊𝒛𝒆 𝒐𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕, 𝒘𝒊𝒕𝒉 𝒏𝒐 𝒎𝒂𝒙𝒊𝒎𝒖𝒎 𝒔𝒊𝒛𝒆. 𝑰𝒇 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒔𝒆𝒕 𝒕𝒐 𝒕𝒉𝒆 𝒉𝒆𝒊𝒈𝒉𝒕 𝒐𝒇 𝒕𝒉𝒆 𝒃𝒓𝒐𝒘𝒔𝒆𝒓 𝒘𝒊𝒏𝒅𝒐𝒘 𝒎𝒊𝒏𝒖𝒔 𝟏𝟎𝟎𝒑𝒙","heightFixed":"𝑺𝒆𝒕 𝒂 𝒎𝒂𝒙𝒊𝒎𝒖𝒎 𝒉𝒆𝒊𝒈𝒉𝒕 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒐𝒓 𝒔𝒆𝒕 𝒂 𝒇𝒊𝒙𝒆𝒅 𝒔𝒊𝒛𝒆 𝒊𝒇 𝒏𝒐𝒕 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆","sidebarBehavior":"𝑺𝒊𝒅𝒆𝒃𝒂𝒓 𝒃𝒆𝒉𝒂𝒗𝒊𝒐𝒓","sbResponsive":"𝑹𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","sbResponsiveHelp":"𝑺𝒉𝒐𝒘 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒂𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄𝒂𝒍𝒍𝒚 𝒐𝒏 𝒍𝒂𝒓𝒈𝒆 𝒔𝒄𝒓𝒆𝒆𝒏𝒔 𝒂𝒏𝒅 𝒉𝒊𝒅𝒆 𝒐𝒏 𝒎𝒐𝒃𝒊𝒍𝒆 𝒅𝒆𝒗𝒊𝒄𝒆𝒔. 𝑰𝒏 𝒆𝒎𝒃𝒆𝒅 𝒎𝒐𝒅𝒆, 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒉𝒊𝒅𝒅𝒆𝒏","hidden":"𝑯𝒊𝒅𝒅𝒆𝒏","visible":"𝑽𝒊𝒔𝒊𝒃𝒍𝒆","visibleDefault":"𝑽𝒊𝒔𝒊𝒃𝒍𝒆 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","sbHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒃𝒚 𝒅𝒆𝒇𝒂𝒖𝒍𝒕","sbVisibleHelp":"𝑺𝒉𝒐𝒘 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒃𝒚 𝒅𝒆𝒇𝒂𝒖𝒍𝒕","titleBehavior":"𝑻𝒊𝒕𝒍𝒆 𝒃𝒆𝒉𝒂𝒗𝒊𝒐𝒓","tVisibleHelp":"𝑫𝒊𝒔𝒑𝒍𝒂𝒚 𝒕𝒉𝒆 𝒕𝒊𝒕𝒍𝒆 𝒂𝒏𝒅 𝒂𝒕𝒕𝒓𝒊𝒃𝒖𝒕𝒊𝒐𝒏 𝒊𝒏 𝒕𝒉𝒆 𝒉𝒆𝒂𝒅𝒆𝒓 𝒐𝒇 𝒕𝒉𝒆 𝒗𝒊𝒆𝒘𝒆𝒓","tHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒕𝒊𝒕𝒍𝒆 𝒊𝒏 𝒕𝒉𝒆 𝒉𝒆𝒂𝒅𝒆𝒓 𝒐𝒇 𝒕𝒉𝒆 𝒗𝒊𝒆𝒘𝒆𝒓 (𝒔𝒕𝒊𝒍𝒍 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒊𝒏 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓)","pdfLink":"𝑷𝑫𝑭 𝒍𝒊𝒏𝒌","plVisibleHelp":"𝑺𝒉𝒐𝒘 𝒂 𝒍𝒊𝒏𝒌 𝒕𝒐 𝒕𝒉𝒆 𝒓𝒂𝒘 𝑷𝑫𝑭 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒏 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓","plHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝑷𝑫𝑭 𝒍𝒊𝒏𝒌 (𝒇𝒊𝒍𝒆 𝒊𝒔 𝒔𝒕𝒊𝒍𝒍 𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆 𝒊𝒇 𝒕𝒉𝒆 𝑼𝑹𝑳 𝒊𝒔 𝒌𝒏𝒐𝒘𝒏)","fullscreenOption":"𝑭𝒖𝒍𝒍𝒔𝒄𝒓𝒆𝒆𝒏 𝒐𝒑𝒕𝒊𝒐𝒏","fsVisibleHelp":"𝑺𝒉𝒐𝒘 𝒂 𝒇𝒖𝒍𝒍𝒔𝒄𝒓𝒆𝒆𝒏 𝒊𝒄𝒐𝒏 𝒊𝒏 𝒕𝒉𝒆 𝒃𝒐𝒕𝒕𝒐𝒎-𝒓𝒊𝒈𝒉𝒕 𝒄𝒐𝒓𝒏𝒆𝒓","fsHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒇𝒖𝒍𝒍𝒔𝒄𝒓𝒆𝒆𝒏 𝒐𝒑𝒕𝒊𝒐𝒏","textMode":"𝑻𝒆𝒙𝒕 𝒎𝒐𝒅𝒆","tmVisibleHelp":"𝑺𝒉𝒐𝒘 𝒂𝒏 𝒐𝒑𝒕𝒊𝒐𝒏 𝒕𝒐 𝒗𝒊𝒆𝒘 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕’𝒔 𝒕𝒆𝒙𝒕 𝒊𝒏 𝒕𝒉𝒆 𝒗𝒊𝒆𝒘 𝒅𝒓𝒐𝒑𝒅𝒐𝒘𝒏","tmHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒆𝒙𝒕 𝒎𝒐𝒅𝒆","contributedByFormat":"𝑪𝒐𝒏𝒕𝒓𝒊𝒃𝒖𝒕𝒆𝒅 𝒃𝒚 𝒇𝒐𝒓𝒎𝒂𝒕","cbfUserAndOrg":"𝑼𝒔𝒆𝒓 𝒂𝒏𝒅 𝒐𝒓𝒈 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","cbfUserAndOrgHelp":"𝑺𝒉𝒐𝒘 𝒂 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕’𝒔 𝒂𝒕𝒕𝒓𝒊𝒃𝒖𝒕𝒊𝒐𝒏 𝒂𝒔 𝒕𝒉𝒆 𝒖𝒔𝒆𝒓 𝒏𝒂𝒎𝒆 𝒇𝒐𝒍𝒍𝒐𝒘𝒆𝒅 𝒃𝒚 𝒕𝒉𝒆 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","cbfOrgOnly":"𝑶𝒓𝒈 𝒐𝒏𝒍𝒚","cbfOrgOnlyHelp":"𝑨𝒕𝒕𝒓𝒊𝒃𝒖𝒕𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒋𝒖𝒔𝒕 𝒕𝒉𝒆 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","share":"𝑺𝒉𝒂𝒓𝒆 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆"},"dialogDocumentInformationDialog":{"editInformation":"𝑬𝒅𝒊𝒕 𝑰𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏 𝒇𝒐𝒓 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}"},"dialogRedactDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔","description":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒓𝒆𝒅𝒂𝒄𝒕 𝒕𝒉𝒆 𝒄𝒖𝒓𝒓𝒆𝒏𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕❓ 𝑰𝒇 𝒚𝒐𝒖 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆, 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒗𝒊𝒆𝒘𝒆𝒓 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒊𝒏𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆 𝒕𝒆𝒎𝒑𝒐𝒓𝒂𝒓𝒊𝒍𝒚 𝒘𝒉𝒊𝒍𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒆𝒔 𝒘𝒊𝒕𝒉 𝒕𝒉𝒆 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔 𝒊𝒏 𝒑𝒍𝒂𝒄𝒆. 𝑻𝒉𝒊𝒔 𝒄𝒉𝒂𝒏𝒈𝒆 𝒊𝒔 𝒊𝒓𝒓𝒆𝒗𝒆𝒓𝒔𝒊𝒃𝒍𝒆."},"dialogModifyDialog":{"title":"𝑨𝒑𝒑𝒍𝒚 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔","description":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒎𝒐𝒅𝒊𝒇𝒚 𝒕𝒉𝒆 𝒄𝒖𝒓𝒓𝒆𝒏𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕❓ 𝑰𝒇 𝒚𝒐𝒖 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆, 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒗𝒊𝒆𝒘𝒆𝒓 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒊𝒏𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆 𝒕𝒆𝒎𝒑𝒐𝒓𝒂𝒓𝒊𝒍𝒚 𝒘𝒉𝒊𝒍𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒆𝒔 𝒘𝒊𝒕𝒉 𝒕𝒉𝒆 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔. 𝑻𝒉𝒊𝒔 𝒄𝒉𝒂𝒏𝒈𝒆 𝒊𝒔 𝒊𝒓𝒓𝒆𝒗𝒆𝒓𝒔𝒊𝒃𝒍𝒆.","closeTitle":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒄𝒍𝒐𝒔𝒆","closeWarning":"𝒀𝒐𝒖 𝒘𝒊𝒍𝒍 𝒍𝒐𝒔𝒆 𝒂𝒍𝒍 𝒚𝒐𝒖𝒓 𝒖𝒏𝒂𝒑𝒑𝒍𝒊𝒆𝒅 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔. 𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒂𝒏𝒕 𝒕𝒐 𝒑𝒓𝒐𝒄𝒆𝒆𝒅❓"},"dialogDeleteNoteDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒅𝒆𝒍𝒆𝒕𝒆","description":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒆 𝒄𝒖𝒓𝒓𝒆𝒏𝒕 𝒏𝒐𝒕𝒆❓"},"dialogEditSectionsDialog":{"confirmDelete":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒅𝒆𝒍𝒆𝒕𝒆","proceedingWillRemove":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒓𝒆𝒎𝒐𝒗𝒆 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒔𝒆𝒄𝒕𝒊𝒐𝒏 (𝒑. {page} {title}). 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","editSections":"𝑬𝒅𝒊𝒕 𝑺𝒆𝒄𝒕𝒊𝒐𝒏𝒔","manageSections":"𝑴𝒂𝒏𝒂𝒈𝒆 𝒔𝒆𝒄𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉 𝒂 𝒕𝒂𝒃𝒍𝒆 𝒐𝒇 𝒄𝒐𝒏𝒕𝒆𝒏𝒕𝒔.","pageAbbrevNo":"𝒑. {n}","pageAbbrev":"𝒑.","empty":"𝒀𝒐𝒖 𝒉𝒂𝒗𝒆 𝒏𝒐𝒕 𝒂𝒅𝒅𝒆𝒅 𝒂𝒏𝒚 𝒔𝒆𝒄𝒕𝒊𝒐𝒏𝒔","edit":"𝑬𝒅𝒊𝒕 𝒕𝒉𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒔𝒆𝒄𝒕𝒊𝒐𝒏","add":"𝑨𝒅𝒅 𝒂 𝒏𝒆𝒘 𝒔𝒆𝒄𝒕𝒊𝒐𝒏","title":"𝑻𝒊𝒕𝒍𝒆","missingTitle":"𝑷𝒍𝒆𝒂𝒔𝒆 𝒆𝒏𝒕𝒆𝒓 𝒂 𝒕𝒊𝒕𝒍𝒆","updateTitle":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒏𝒆𝒘 𝒕𝒊𝒕𝒍𝒆 𝒐𝒓 𝒑𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓","uniquePageNumber":"𝒀𝒐𝒖 𝒎𝒖𝒔𝒕 𝒆𝒏𝒕𝒆𝒓 𝒂 𝒖𝒏𝒊𝒒𝒖𝒆 𝒑𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓","invalidPageNumber":"𝑷𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓 𝒊𝒔 𝒊𝒏𝒗𝒂𝒍𝒊𝒅"},"dialogEmbedDialog":{"updatingDocument":"𝑼𝒑𝒅𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕...","makingPublic":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒃𝒆𝒊𝒏𝒈 𝒎𝒂𝒅𝒆 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑻𝒉𝒊𝒔 𝒎𝒂𝒚 𝒕𝒂𝒌𝒆 𝒂 𝒎𝒊𝒏𝒖𝒕𝒆 𝒐𝒓 𝒕𝒘𝒐.","wouldMakePublic":"𝑾𝒐𝒖𝒍𝒅 𝒚𝒐𝒖 𝒍𝒊𝒌𝒆 𝒕𝒐 𝒎𝒂𝒌𝒆 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒑𝒖𝒃𝒍𝒊𝒄 𝒃𝒆𝒇𝒐𝒓𝒆 𝒔𝒉𝒂𝒓𝒊𝒏𝒈❓","notPublic":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒏𝒐𝒕 𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑰𝒇 𝒚𝒐𝒖 𝒆𝒎𝒃𝒆𝒅 𝒐𝒓 𝒍𝒊𝒏𝒌 𝒊𝒕, 𝒐𝒏𝒍𝒚 𝒚𝒐𝒖 𝒂𝒏𝒅 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒂𝒃𝒍𝒆 𝒕𝒐 𝒗𝒊𝒆𝒘 𝒊𝒕 𝒖𝒏𝒕𝒊𝒍 𝒊𝒕 𝒊𝒔 𝒎𝒂𝒅𝒆 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑪𝒍𝒊𝒄𝒌 𝒃𝒆𝒍𝒐𝒘 𝒘𝒉𝒆𝒏 𝒚𝒐𝒖’𝒓𝒆 𝒓𝒆𝒂𝒅𝒚 𝒕𝒐 𝒑𝒖𝒃𝒍𝒊𝒔𝒉 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄.","makePublic":"𝑴𝒂𝒌𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒑𝒖𝒃𝒍𝒊𝒄","leave":"𝑳𝒆𝒂𝒗𝒆 𝒂𝒔 𝒊𝒔","selectShare":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒔𝒉𝒂𝒓𝒆 𝒐𝒑𝒕𝒊𝒐𝒏","selectShareHelp":"𝑪𝒉𝒐𝒐𝒔𝒆 𝒘𝒉𝒆𝒕𝒉𝒆𝒓 𝒕𝒐 𝒔𝒉𝒂𝒓𝒆 𝒕𝒉𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒐𝒓 𝒋𝒖𝒔𝒕 𝒂 𝒑𝒂𝒈𝒆 𝒐𝒓 𝒏𝒐𝒕𝒆.","shareDoc":"𝑺𝒉𝒂𝒓𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","shareDocHelp":"𝑳𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕. (𝑻𝒉𝒊𝒔 𝒊𝒔 𝒕𝒉𝒆 𝒎𝒐𝒔𝒕 𝒄𝒐𝒎𝒎𝒐𝒏𝒍𝒚 𝒖𝒔𝒆𝒅 𝒔𝒉𝒂𝒓𝒆 𝒐𝒑𝒕𝒊𝒐𝒏.)","sharePage":"𝑺𝒉𝒂𝒓𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒄 𝒑𝒂𝒈𝒆","sharePageHelp":"𝑳𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒂 𝒔𝒊𝒏𝒈𝒍𝒆 𝒑𝒂𝒈𝒆 𝒐𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕. 𝑼𝒔𝒆𝒇𝒖𝒍 𝒇𝒐𝒓 𝒉𝒊𝒈𝒉𝒍𝒊𝒈𝒉𝒕𝒊𝒏𝒈 𝒂 𝒑𝒂𝒈𝒆 𝒆𝒙𝒄𝒆𝒓𝒑𝒕.","shareNote":"𝑺𝒉𝒂𝒓𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒄 𝒏𝒐𝒕𝒆","shareNoteHelpHasNote":"𝑳𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒂 𝒏𝒐𝒕𝒆 𝒘𝒊𝒕𝒉𝒊𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕. 𝑼𝒔𝒆𝒇𝒖𝒍 𝒇𝒐𝒓 𝒉𝒊𝒈𝒉𝒍𝒊𝒈𝒉𝒕𝒊𝒏𝒈 𝒂 𝒓𝒆𝒈𝒊𝒐𝒏 𝒐𝒇 𝒂 𝒑𝒂𝒈𝒆.","shareNoteHelpNoNote":"𝑶𝒏𝒄𝒆 𝒚𝒐𝒖 𝒂𝒅𝒅 𝒏𝒐𝒕𝒆𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕, 𝒖𝒔𝒆 𝒕𝒉𝒊𝒔 𝒇𝒆𝒂𝒕𝒖𝒓𝒆 𝒕𝒐 𝒍𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒆𝒎."},"dialogErrorDialog":{"errorOccurred":"𝑨𝒏 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅","unexpectedErrorOccurred":"𝑨𝒏 𝒖𝒏𝒆𝒙𝒑𝒆𝒄𝒕𝒆𝒅 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅","tryAgain":"𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒍𝒂𝒕𝒆𝒓.","close":"𝑪𝒍𝒐𝒔𝒆","refresh":"𝑹𝒆𝒇𝒓𝒆𝒔𝒉"},"dialogNoteEmbedDialog":{"embedNote":"𝑬𝒎𝒃𝒆𝒅 𝒂 𝒏𝒐𝒕𝒆 𝒐𝒇 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒏𝒐𝒕𝒆 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒐𝒓 𝒑𝒐𝒔𝒕:"},"dialogPageEmbedDialog":{"embedPage":"𝑬𝒎𝒃𝒆𝒅 𝒂 𝒑𝒂𝒈𝒆 𝒐𝒇 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒑𝒂𝒈𝒆 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒐𝒓 𝒑𝒐𝒔𝒕:","selectPage":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅:","page":"𝑷𝒂𝒈𝒆 {n} (𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆)","otherPage":"𝑶𝒕𝒉𝒆𝒓 𝒑𝒂𝒈𝒆","enterPageNumber":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒇𝒐𝒓 {name}","selectAccess":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒂𝒏 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 {name} 𝒊𝒏 {title}","adminAccess":"𝑨𝒅𝒎𝒊𝒏 𝑨𝒄𝒄𝒆𝒔𝒔","editAccess":"𝑬𝒅𝒊𝒕 𝑨𝒄𝒄𝒆𝒔𝒔","viewAccess":"𝑽𝒊𝒆𝒘 𝑨𝒄𝒄𝒆𝒔𝒔","adminHelp":"𝑻𝒉𝒊𝒔 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒂𝒏𝒅 𝒊𝒕𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝑻𝒉𝒆 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒊𝒏𝒗𝒊𝒕𝒆 𝒖𝒔𝒆𝒓𝒔, 𝒅𝒆𝒍𝒆𝒕𝒆 𝒖𝒔𝒆𝒓𝒔, 𝒂𝒏𝒅 𝒓𝒆𝒎𝒐𝒗𝒆 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕.","editHelp":"𝑻𝒉𝒊𝒔 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒃𝒖𝒕 𝒄𝒂𝒏𝒏𝒐𝒕 𝒆𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒊𝒕𝒔𝒆𝒍𝒇.","viewHelp":"𝑻𝒉𝒊𝒔 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒃𝒖𝒕 𝒄𝒂𝒏𝒏𝒐𝒕 𝒆𝒅𝒊𝒕 𝒕𝒉𝒆𝒎 𝒐𝒓 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕.","invalidAccess":"𝑨𝒄𝒄𝒆𝒔𝒔 𝒊𝒔 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒔𝒆𝒕 𝒕𝒐 {access}. 𝑺𝒆𝒍𝒆𝒄𝒕 𝒂 𝒅𝒊𝒇𝒇𝒆𝒓𝒆𝒏𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍.","changeAccess":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒂𝒄𝒄𝒆𝒔𝒔"},"dialogOwnerDialog":{"selectUser":"𝑼𝒔𝒆𝒓 𝒎𝒖𝒔𝒕 𝒃𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅","selectOrg":"𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒎𝒖𝒔𝒕 𝒃𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅","changeOwner":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒐𝒘𝒏𝒆𝒓 𝒇𝒐𝒓 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","accessWarning":"𝑾𝒂𝒓𝒏𝒊𝒏𝒈: 𝒀𝒐𝒖 𝒎𝒂𝒚 𝒍𝒐𝒔𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒂𝒔 𝒂 𝒓𝒆𝒔𝒖𝒍𝒕 𝒐𝒇 𝒄𝒉𝒂𝒏𝒈𝒊𝒏𝒈 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒐𝒘𝒏𝒆𝒓","user":"𝑼𝒔𝒆𝒓:","filterUsers":"𝑻𝒚𝒑𝒆 𝒕𝒐 𝒇𝒊𝒍𝒕𝒆𝒓 𝒖𝒔𝒆𝒓𝒔...","filterOrgs":"𝑻𝒚𝒑𝒆 𝒕𝒐 𝒇𝒊𝒍𝒕𝒆𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏𝒔..."},"dialogProjectDialog":{"confirmDelete":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒅𝒆𝒍𝒆𝒕𝒆","deleteProject":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒂𝒏𝒕 𝒕𝒐 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 ({project})❓","editProject":"𝑬𝒅𝒊𝒕 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","createProject":"𝑪𝒓𝒆𝒂𝒕𝒆 𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","title":"𝑻𝒊𝒕𝒍𝒆...","projectDesc":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕 𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 (𝒐𝒑𝒕𝒊𝒐𝒏𝒂𝒍)","manageCollabs":"𝑴𝒂𝒏𝒂𝒈𝒆 𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔","share":"𝑺𝒉𝒂𝒓𝒆 / 𝑬𝒎𝒃𝒆𝒅 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","enterTitle":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒕𝒊𝒕𝒍𝒆","changeTitle":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒕𝒉𝒆 𝒕𝒊𝒕𝒍𝒆 𝒐𝒓 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏"},"dialogProjectEmbedDialog":{"share":"𝑺𝒉𝒂𝒓𝒆 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒐𝒓 𝒑𝒐𝒔𝒕:","invalid":"𝑰𝒏𝒗𝒂𝒍𝒊𝒅 𝒑𝒓𝒐𝒋𝒆𝒄𝒕","cannotEmbed":"𝑪𝒂𝒏𝒏𝒐𝒕 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕, 𝒂𝒔 𝒊𝒕 𝒅𝒐𝒆𝒔 𝒏𝒐𝒕 𝒂𝒑𝒑𝒆𝒂𝒓 𝒕𝒐 𝒆𝒙𝒊𝒔𝒕."},"htmlEditor":{"preview":"𝑷𝒓𝒆𝒗𝒊𝒆𝒘:"},"image":{"error":"𝑨𝒏 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅. 𝑻𝒓𝒚 𝒓𝒆𝒇𝒓𝒆𝒔𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆"},"omniselect":{"filter":"𝑻𝒚𝒑𝒆 𝒕𝒐 𝒇𝒊𝒍𝒕𝒆𝒓 𝒍𝒂𝒏𝒈𝒖𝒂𝒈𝒆","noResults":"𝑵𝒐 𝒓𝒆𝒔𝒖𝒍𝒕𝒔. 𝑪𝒍𝒊𝒄𝒌 𝒕𝒐 𝒄𝒍𝒆𝒂𝒓 𝒇𝒊𝒍𝒕𝒆𝒓."},"shareOptions":{"errorText":"𝑨𝒏 𝒖𝒏𝒆𝒙𝒑𝒆𝒄𝒕𝒆𝒅 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅. 𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒍𝒂𝒕𝒆𝒓.","copyHtml":"𝑪𝒐𝒑𝒚 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆","addShortcode":"𝑨𝒅𝒅 𝒕𝒉𝒊𝒔 𝒔𝒉𝒐𝒓𝒕𝒄𝒐𝒅𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝑾𝒐𝒓𝒅𝑷𝒓𝒆𝒔𝒔 𝒄𝒐𝒏𝒕𝒆𝒏𝒕 —","pluginRequired":"𝒑𝒍𝒖𝒈𝒊𝒏 𝒓𝒆𝒒𝒖𝒊𝒓𝒆𝒅","copyShortcode":"𝑪𝒐𝒑𝒚 𝒔𝒉𝒐𝒓𝒕𝒄𝒐𝒅𝒆","copyUrl":"𝑪𝒐𝒑𝒚 𝑼𝑹𝑳"},"specialMessage":{"contactUs":"𝑪𝒐𝒏𝒕𝒂𝒄𝒕 𝒖𝒔 𝒘𝒊𝒕𝒉 𝒃𝒖𝒈 𝒓𝒆𝒑𝒐𝒓𝒕𝒔, 𝒒𝒖𝒆𝒔𝒕𝒊𝒐𝒏𝒔, 𝒂𝒏𝒅 𝒔𝒖𝒈𝒈𝒆𝒔𝒕𝒊𝒐𝒏𝒔."},"uploadOptions":{"documentLang":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒍𝒂𝒏𝒈𝒖𝒂𝒈𝒆:","forceOcr":"𝑭𝒐𝒓𝒄𝒆 𝑶𝑪𝑹:"},"actionBar":{"selectDocs":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒔𝒐𝒎𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒕𝒐 𝒓𝒆𝒗𝒆𝒂𝒍 𝒆𝒅𝒊𝒕 𝒂𝒄𝒕𝒊𝒐𝒏𝒔","noPerms":"𝒀𝒐𝒖 𝒅𝒐 𝒏𝒐𝒕 𝒉𝒂𝒗𝒆 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 𝒕𝒐 𝒆𝒅𝒊𝒕 𝒂𝒍𝒍 𝒐𝒇 𝒕𝒉𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","editMenu":"𝑬𝒅𝒊𝒕","projectsMenu":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕𝒔"},"authSection":{"help":"𝑯𝒆𝒍𝒑","language":"𝑳𝒂𝒏𝒈𝒖𝒂𝒈𝒆","tips":"𝑻𝒊𝒑𝒔 𝒂𝒏𝒅 𝑻𝒓𝒊𝒄𝒌𝒔","searchDocs":"𝑺𝒆𝒂𝒓𝒄𝒉 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒂𝒕𝒊𝒐𝒏","apiDocs":"𝑨𝑷𝑰 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒂𝒕𝒊𝒐𝒏","emailUs":"𝑬𝒎𝒂𝒊𝒍 𝑼𝒔","acctSettings":"𝑨𝒄𝒄𝒐𝒖𝒏𝒕 𝑺𝒆𝒕𝒕𝒊𝒏𝒈𝒔","signOut":"𝑺𝒊𝒈𝒏 𝒐𝒖𝒕","changeOrg":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","personalAcct":"𝑷𝒆𝒓𝒔𝒐𝒏𝒂𝒍 𝑨𝒄𝒄𝒐𝒖𝒏𝒕","signIn":"𝑺𝒊𝒈𝒏 𝒊𝒏"},"documents":{"yourDocuments":"𝒀𝒐𝒖𝒓 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","searchResults":"𝑺𝒆𝒂𝒓𝒄𝒉 𝑹𝒆𝒔𝒖𝒍𝒕𝒔","accessDocuments":"𝒀𝒐𝒖𝒓 {access}𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","nameDocuments":"{name}\'𝒔 {access}𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","allDocuments":"𝑨𝒍𝒍 {access}𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","mustBeVerified":"𝒀𝒐𝒖 𝒎𝒖𝒔𝒕 𝒃𝒆 𝒂 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒋𝒐𝒖𝒓𝒏𝒂𝒍𝒊𝒔𝒕 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","upload":"𝑼𝒑𝒍𝒐𝒂𝒅","dropFile":"𝑫𝒓𝒐𝒑 𝒇𝒊𝒍𝒆 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅"},"document":{"open":"𝑶𝒑𝒆𝒏","updating":"𝑼𝒑𝒅𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕...","processing":"𝑷𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","processingError":"𝑨𝒏 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅 𝒕𝒓𝒚𝒊𝒏𝒈 𝒕𝒐 𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","remove":"𝑹𝒆𝒎𝒐𝒗𝒆","improper":"𝒀𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒂𝒔 𝒖𝒑𝒍𝒐𝒂𝒅𝒆𝒅 𝒊𝒎𝒑𝒓𝒐𝒑𝒆𝒓𝒍𝒚","project":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕","totalMatchingPages":"{n} 𝒐𝒇 {m} 𝒑𝒂𝒈𝒆𝒔 𝒎𝒂𝒕𝒄𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒒𝒖𝒆𝒓𝒚","showAll":"𝑺𝒉𝒐𝒘 𝒂𝒍𝒍","matchingPages":"{n} 𝒑𝒂𝒈𝒆𝒔 𝒎𝒂𝒕𝒄𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒒𝒖𝒆𝒓𝒚","pageAbbrev":"𝒑.","pageCount":"{n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}","source":"𝑺𝒐𝒖𝒓𝒄𝒆"},"documentThumbnail":{"pages":"𝒑𝒂𝒈𝒆𝒔","loading":"𝑳𝒐𝒂𝒅𝒊𝒏𝒈 𝒑𝒓𝒐𝒈𝒓𝒆𝒔𝒔 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏..."},"mainContainer":{"error":"𝑬𝒓𝒓𝒐𝒓","errorMsg":"𝑾𝒆 𝒄𝒐𝒖𝒍𝒅 𝒏𝒐𝒕 𝒓𝒆𝒂𝒄𝒉 𝒕𝒉𝒆 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒔𝒆𝒓𝒗𝒆𝒓. 𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒓𝒆𝒇𝒓𝒆𝒔𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆 𝒍𝒂𝒕𝒆𝒓.","refresh":"𝑹𝒆𝒇𝒓𝒆𝒔𝒉"},"editMenu":{"editDocInfo":"𝑬𝒅𝒊𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑰𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏","changeAccess":"𝑪𝒉𝒂𝒏𝒈𝒆 𝑨𝒄𝒄𝒆𝒔𝒔","editDocData":"𝑬𝒅𝒊𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑫𝒂𝒕𝒂","cancelProcessing":"𝑪𝒂𝒏𝒄𝒆𝒍 𝑷𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","forceReprocess":"𝑭𝒐𝒓𝒄𝒆 𝑹𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔","entities":"𝑬𝒏𝒕𝒊𝒕𝒊𝒆𝒔 𝑩𝑬𝑻𝑨","changeOwner":"𝑪𝒉𝒂𝒏𝒈𝒆 𝑶𝒘𝒏𝒆𝒓","delete":"𝑫𝒆𝒍𝒆𝒕𝒆","diagnosticInfo":"𝑫𝒊𝒂𝒈𝒏𝒐𝒔𝒕𝒊𝒄 𝑰𝒏𝒇𝒐"},"metaFields":{"defaultFieldInvalidText":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒉𝒂𝒔 𝒕𝒉𝒊𝒔 {fieldName}","titleFieldTitle":"𝑻𝒊𝒕𝒍𝒆","titleFieldName":"𝒏𝒂𝒎𝒆","titleFieldNameUppercase":"𝑵𝒂𝒎𝒆","titleFieldHeader":"𝑹𝒆𝒏𝒂𝒎𝒆 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","titleFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒏𝒂𝒎𝒆 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","titleFieldButton":"𝑹𝒆𝒏𝒂𝒎𝒆","titleFieldInvalidSameName":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒉𝒂𝒔 𝒕𝒉𝒊𝒔 𝒏𝒂𝒎𝒆","titleFieldInvalidEmptyName":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒗𝒂𝒍𝒊𝒅 𝒏𝒂𝒎𝒆","sourceFieldTitle":"𝑺𝒐𝒖𝒓𝒄𝒆","sourceFieldName":"𝒔𝒐𝒖𝒓𝒄𝒆","sourceFieldNameUppercase":"𝑺𝒐𝒖𝒓𝒄𝒆","sourceFieldHeader":"𝑬𝒅𝒊𝒕 𝒔𝒐𝒖𝒓𝒄𝒆 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","sourceFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒔𝒐𝒖𝒓𝒄𝒆 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","sourceFieldButton":"𝑬𝒅𝒊𝒕","descriptionFieldTitle":"𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏","descriptionFieldName":"𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏","descriptionFieldNameUppercase":"𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏","descriptionFieldHeader":"𝑬𝒅𝒊𝒕 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","descriptionFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","descriptionFieldButton":"𝑬𝒅𝒊𝒕","relatedArticleFieldTitle":"𝑹𝒆𝒍𝒂𝒕𝒆𝒅 𝑨𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳","relatedArticleFieldName":"𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳","relatedArticleFieldNameUppercase":"𝑹𝒆𝒍𝒂𝒕𝒆𝒅 𝑨𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳","relatedArticleFieldHeader":"𝑬𝒅𝒊𝒕 𝒕𝒉𝒆 𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","relatedArticleFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","relatedArticleFieldButton":"𝑬𝒅𝒊𝒕","publishedUrlFieldTitle":"𝑷𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳","publishedUrlFieldName":"𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳","publishedUrlFieldNameUppercase":"𝑷𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳","publishedUrlFieldHeader":"𝑬𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","publishedUrlFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","publishedUrlFieldButton":"𝑬𝒅𝒊𝒕"},"projectsMenu":{"newProject":"+ 𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","projMembership":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕 𝑴𝒆𝒎𝒃𝒆𝒓𝒔𝒉𝒊𝒑","selectDocs":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒕𝒐 𝒑𝒍𝒂𝒄𝒆 𝒕𝒉𝒆𝒎 𝒊𝒏 𝒑𝒓𝒐𝒋𝒆𝒄𝒕𝒔","createProj":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒂 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒕𝒐 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒂𝒏𝒅 𝒔𝒉𝒂𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔"},"noDocuments":{"noSearchResults":"𝑵𝒐 𝒔𝒆𝒂𝒓𝒄𝒉 𝒓𝒆𝒔𝒖𝒍𝒕𝒔","queryNoResults":"𝒀𝒐𝒖𝒓 𝒔𝒆𝒂𝒓𝒄𝒉 𝒒𝒖𝒆𝒓𝒚 𝒓𝒆𝒕𝒖𝒓𝒏𝒆𝒅 𝒏𝒐 𝒓𝒆𝒔𝒖𝒍𝒕𝒔. 𝑻𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒘𝒊𝒕𝒉 𝒂 𝒃𝒓𝒐𝒂𝒅𝒆𝒓 𝒔𝒆𝒂𝒓𝒄𝒉 𝒒𝒖𝒆𝒓𝒚.","welcome":"𝑾𝒆𝒍𝒄𝒐𝒎𝒆 𝒕𝒐 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅❗","verify1":"𝑵𝒐𝒕𝒆 𝒕𝒉𝒂𝒕 𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒚𝒐𝒖𝒓 𝒂𝒄𝒄𝒐𝒖𝒏𝒕 𝒊𝒔 𝒏𝒐𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒔𝒆𝒂𝒓𝒄𝒉 𝒕𝒉𝒓𝒐𝒖𝒈𝒉 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄 𝒓𝒆𝒑𝒐𝒔𝒊𝒕𝒐𝒓𝒚, 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒚𝒐𝒖\'𝒓𝒆 𝒊𝒏𝒕𝒆𝒓𝒆𝒔𝒕𝒆𝒅 𝒊𝒏 𝒊𝒏𝒕𝒐 𝒑𝒓𝒐𝒋𝒆𝒄𝒕𝒔, 𝒍𝒆𝒂𝒗𝒆 𝒑𝒓𝒊𝒗𝒂𝒕𝒆 𝒏𝒐𝒕𝒆𝒔, 𝒂𝒏𝒅 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒆 𝒐𝒏 𝒆𝒅𝒊𝒕𝒊𝒏𝒈 𝒂𝒏𝒅 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒐𝒕𝒉𝒆𝒓 𝒖𝒔𝒆𝒓𝒔 𝒊𝒏𝒗𝒊𝒕𝒆 𝒚𝒐𝒖 𝒕𝒐.","verify2":"𝑰𝒇 𝒚𝒐𝒖’𝒅 𝒍𝒊𝒌𝒆 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅 𝒐𝒓 𝒑𝒖𝒃𝒍𝒊𝒔𝒉 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒂𝒏𝒅 𝒚𝒐𝒖\'𝒓𝒆 𝒂 𝒘𝒐𝒓𝒌𝒊𝒏𝒈 𝒋𝒐𝒖𝒓𝒏𝒂𝒍𝒊𝒔𝒕 𝒐𝒓 𝒐𝒕𝒉𝒆𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒊𝒏𝒕𝒆𝒓𝒆𝒔𝒕𝒆𝒅 𝒊𝒏 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒊𝒏𝒈 𝒑𝒓𝒊𝒎𝒂𝒓𝒚 𝒔𝒐𝒖𝒓𝒄𝒆 𝒎𝒂𝒕𝒆𝒓𝒊𝒂𝒍𝒔 𝒊𝒏 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄 𝒊𝒏𝒕𝒆𝒓𝒆𝒔𝒕, 𝒚𝒐𝒖\'𝒍𝒍 𝒏𝒆𝒆𝒅 𝒕𝒐 𝒉𝒂𝒗𝒆 𝒚𝒐𝒖𝒓 𝒂𝒄𝒄𝒐𝒖𝒏𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒐𝒓 𝒂𝒅𝒅𝒆𝒅 𝒕𝒐 𝒂 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏. 𝑻𝒉𝒊𝒔 𝒊𝒔 𝒂 𝒔𝒊𝒎𝒑𝒍𝒆 𝒑𝒓𝒐𝒄𝒆𝒔𝒔:","verify3":"𝑭𝒊𝒓𝒔𝒕, 𝒔𝒆𝒆 𝒊𝒇 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒆𝒙𝒊𝒔𝒕𝒔 𝒂𝒏𝒅, 𝒊𝒇 𝒚𝒐𝒖 𝒇𝒊𝒏𝒅 𝒊𝒕, 𝒄𝒍𝒊𝒄𝒌 \\"𝑹𝒆𝒒𝒖𝒆𝒔𝒕 𝒕𝒐 𝑱𝒐𝒊𝒏\\" 𝒐𝒏 𝒊𝒕𝒔 𝒑𝒂𝒈𝒆.","verify4":"𝑰𝒇 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒉𝒂𝒔 𝒏𝒐𝒕 𝒃𝒆𝒆𝒏 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒚𝒆𝒕, 𝒐𝒓 𝒊𝒇 𝒚𝒐𝒖\'𝒓𝒆 𝒂 𝒇𝒓𝒆𝒆𝒍𝒂𝒏𝒄𝒆𝒓, 𝒓𝒆𝒒𝒖𝒆𝒔𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏 𝒉𝒆𝒓𝒆. 𝑹𝒆𝒒𝒖𝒆𝒔𝒕𝒔 𝒖𝒔𝒖𝒂𝒍𝒍𝒚 𝒕𝒂𝒌𝒆 𝒕𝒘𝒐 𝒃𝒖𝒔𝒊𝒏𝒆𝒔𝒔 𝒅𝒂𝒚𝒔 𝒕𝒐 𝒑𝒓𝒐𝒄𝒆𝒔𝒔.","uploadFirst":"𝑼𝒑𝒍𝒐𝒂𝒅 𝒚𝒐𝒖𝒓 𝒇𝒊𝒓𝒔𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","upload1":"𝑼𝒑𝒍𝒐𝒂𝒅 𝒂 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒇𝒊𝒍𝒆 𝒕𝒐 𝒈𝒆𝒕 𝒔𝒕𝒂𝒓𝒕𝒆𝒅 𝒖𝒔𝒊𝒏𝒈 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒅𝒓𝒂𝒈 𝒕𝒉𝒆 𝒇𝒊𝒍𝒆 𝒊𝒏𝒕𝒐 𝒕𝒉𝒊𝒔 𝒘𝒊𝒏𝒅𝒐𝒘, 𝒐𝒓 𝒄𝒍𝒊𝒄𝒌 𝒐𝒏 𝒕𝒉𝒆 𝒃𝒍𝒖𝒆 “𝑼𝒑𝒍𝒐𝒂𝒅” 𝒃𝒖𝒕𝒕𝒐𝒏 𝒂𝒃𝒐𝒗𝒆.","upload2":"𝑶𝒏𝒄𝒆 𝒚𝒐𝒖 𝒖𝒑𝒍𝒐𝒂𝒅 𝒂 𝒇𝒊𝒍𝒆, 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒘𝒊𝒍𝒍 𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒂𝒏𝒅 𝒆𝒙𝒕𝒓𝒂𝒄𝒕 𝒊𝒕𝒔 𝒄𝒐𝒏𝒕𝒆𝒏𝒕𝒔. 𝑰𝒕 𝒎𝒂𝒚 𝒕𝒂𝒌𝒆 𝒂 𝒇𝒆𝒘 𝒎𝒊𝒏𝒖𝒕𝒆𝒔 𝒇𝒐𝒓 𝒕𝒉𝒊𝒔 𝒕𝒐 𝒄𝒐𝒎𝒑𝒍𝒆𝒕𝒆, 𝒃𝒖𝒕 𝒐𝒏𝒄𝒆 𝒊𝒕’𝒔 𝒅𝒐𝒏𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒐𝒑𝒕𝒊𝒎𝒊𝒛𝒆𝒅 𝒇𝒐𝒓 𝒂𝒏𝒂𝒍𝒚𝒔𝒊𝒔 𝒂𝒏𝒅 𝒔𝒉𝒂𝒓𝒊𝒏𝒈 𝒐𝒏 𝒕𝒉𝒆 𝒘𝒆𝒃."},"paginator":{"of":"𝒐𝒇","document":"{n, plural, one {𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}"},"processingBar":{"doneProcessing":"𝑫𝒐𝒏𝒆 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","processingDocuments":"𝑷𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}"},"searchBar":{"tips":"𝑺𝒆𝒂𝒓𝒄𝒉 𝒕𝒊𝒑𝒔: 𝒂𝒅𝒅 𝒇𝒊𝒍𝒕𝒆𝒓𝒔 𝒃𝒚 𝒕𝒚𝒑𝒊𝒏𝒈 𝒖𝒔𝒆𝒓:, 𝒑𝒓𝒐𝒋𝒆𝒄𝒕:, 𝒐𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏:, 𝒆𝒕𝒄. 𝑼𝒔𝒆 𝒔𝒐𝒓𝒕: 𝒕𝒐 𝒐𝒓𝒅𝒆𝒓 𝒓𝒆𝒔𝒖𝒍𝒕𝒔.","learnMore":"𝑳𝒆𝒂𝒓𝒏 𝒎𝒐𝒓𝒆","search":"𝑺𝒆𝒂𝒓𝒄𝒉"},"searchLink":{"search":"𝑺𝒆𝒂𝒓𝒄𝒉 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒄𝒐𝒍𝒍𝒆𝒄𝒕𝒊𝒐𝒏"},"projects":{"header":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕𝒔","allDocuments":"𝑨𝒍𝒍 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","yourDocuments":"𝒀𝒐𝒖𝒓 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","yourPubDocuments":"𝒀𝒐𝒖𝒓 𝑷𝒖𝒃𝒍𝒊𝒄 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","orgDocuments":"{name}’𝒔 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","newProject":"+ 𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","createProject":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒚𝒐𝒖𝒓 𝒇𝒊𝒓𝒔𝒕 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒃𝒚 𝒄𝒍𝒊𝒄𝒌𝒊𝒏𝒈 “𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕” 𝒂𝒃𝒐𝒗𝒆."},"uploadDialog":{"docUpload":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑼𝒑𝒍𝒐𝒂𝒅","docUploadProj":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑼𝒑𝒍𝒐𝒂𝒅 𝒕𝒐 {title}","beginUpload":"𝑩𝒆𝒈𝒊𝒏 𝒖𝒑𝒍𝒐𝒂𝒅","pdfSizeWarning":"𝒀𝒐𝒖 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒖𝒑𝒍𝒐𝒂𝒅 𝑷𝑫𝑭 𝒇𝒊𝒍𝒆𝒔 𝒖𝒏𝒅𝒆𝒓 {size}.","nonPdfSizeWarning":"𝒀𝒐𝒖 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒖𝒑𝒍𝒐𝒂𝒅 𝒏𝒐𝒏-𝑷𝑫𝑭 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒇𝒊𝒍𝒆𝒔 𝒖𝒏𝒅𝒆𝒓 {size}.","fileReady":"{n, plural, one {𝒇𝒊𝒍𝒆} other {𝒇𝒊𝒍𝒆𝒔}} 𝒓𝒆𝒂𝒅𝒚 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅","fileLimitWarning":"𝒀𝒐𝒖 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒖𝒑𝒍𝒐𝒂𝒅 {limit} 𝒇𝒊𝒍𝒆𝒔 𝒂𝒕 𝒐𝒏𝒄𝒆.","moreOptions":"𝑴𝒐𝒓𝒆 𝒐𝒑𝒕𝒊𝒐𝒏𝒔","selectFiles":"+ 𝑺𝒆𝒍𝒆𝒄𝒕 𝒇𝒊𝒍𝒆𝒔","dragDrop":"𝑫𝒓𝒂𝒈 𝒂𝒏𝒅 𝒅𝒓𝒐𝒑 𝒇𝒊𝒍𝒆𝒔 𝒉𝒆𝒓𝒆","publicMsg":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒑𝒖𝒃𝒍𝒊𝒄𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆.","collabMsg":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏.","privateMsg":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖 𝒂𝒍𝒐𝒏𝒆.","collabName":"𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","submitting":"𝑨𝒍𝒎𝒐𝒔𝒕 𝒅𝒐𝒏𝒆... 𝒔𝒖𝒃𝒎𝒊𝒕𝒕𝒊𝒏𝒈 𝒖𝒑𝒍𝒐𝒂𝒅𝒆𝒅 𝒇𝒊𝒍𝒆𝒔 𝒇𝒐𝒓 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 ({percent})","uploading":"𝑼𝒑𝒍𝒐𝒂𝒅𝒊𝒏𝒈 ... ({uploaded}/{length})","gettingInfo":"𝑮𝒆𝒕𝒕𝒊𝒏𝒈 𝒖𝒑𝒍𝒐𝒂𝒅 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏 ({percent})","pleaseLeaveOpen":"𝑷𝒍𝒆𝒂𝒔𝒆 𝒍𝒆𝒂𝒗𝒆 𝒕𝒉𝒊𝒔 𝒑𝒂𝒈𝒆 𝒐𝒑𝒆𝒏 𝒘𝒉𝒊𝒍𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒖𝒑𝒍𝒐𝒂𝒅. 𝑻𝒉𝒊𝒔 𝒅𝒊𝒂𝒍𝒐𝒈 𝒘𝒊𝒍𝒍 𝒂𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄𝒂𝒍𝒍𝒚 𝒄𝒍𝒐𝒔𝒆 𝒘𝒉𝒆𝒏 𝒕𝒉𝒆𝒚 𝒉𝒂𝒗𝒆 𝒇𝒊𝒏𝒊𝒔𝒉𝒆𝒅 𝒖𝒑𝒍𝒐𝒂𝒅𝒊𝒏𝒈.","errorHeading":"𝑬𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅 𝒘𝒉𝒊𝒍𝒆 𝒖𝒑𝒍𝒐𝒂𝒅𝒊𝒏𝒈","errorMsg":"𝑾𝒆 𝒇𝒂𝒊𝒍𝒆𝒅 𝒕𝒐 {errorMessage}. 𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒍𝒂𝒕𝒆𝒓.","editDocInfo":"𝑬𝒅𝒊𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏:","untitled":"𝑼𝒏𝒕𝒊𝒕𝒍𝒆𝒅","uploadFiles":"𝑼𝒑𝒍𝒐𝒂𝒅 𝒂𝒅𝒅𝒊𝒕𝒊𝒐𝒏𝒂𝒍 𝒇𝒊𝒍𝒆𝒔","selectMore":"+ 𝑺𝒆𝒍𝒆𝒄𝒕 𝒎𝒐𝒓𝒆 𝒇𝒊𝒍𝒆𝒔","dragDropMore":"𝑫𝒓𝒂𝒈 𝒂𝒏𝒅 𝒅𝒓𝒐𝒑 𝒂𝒅𝒅𝒊𝒕𝒊𝒐𝒏𝒂𝒍 𝒇𝒊𝒍𝒆𝒔 𝒉𝒆𝒓𝒆"},"embedNote":{"viewTheNote":"𝑽𝒊𝒆𝒘 𝒕𝒉𝒆 𝒏𝒐𝒕𝒆 ‘{title}‘ 𝒊𝒏 𝒊𝒕𝒔 𝒐𝒓𝒊𝒈𝒊𝒏𝒂𝒍 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒄𝒐𝒏𝒕𝒆𝒙𝒕 𝒐𝒏 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒏 𝒂 𝒏𝒆𝒘 𝒘𝒊𝒏𝒅𝒐𝒘 𝒐𝒓 𝒕𝒂𝒃","viewDoc":"𝑽𝒊𝒆𝒘 𝒕𝒉𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅"},"embedPage":{"viewDoc":"𝑽𝒊𝒆𝒘 𝒆𝒏𝒕𝒊𝒓𝒆 {title} 𝒐𝒏 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒏 𝒏𝒆𝒘 𝒘𝒊𝒏𝒅𝒐𝒘 𝒐𝒓 𝒕𝒂𝒃","pageOf":"𝑷𝒂𝒈𝒆 {page} 𝒐𝒇 {title}","gotoDocCloud":"𝑮𝒐 𝒕𝒐 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒏 𝒏𝒆𝒘 𝒘𝒊𝒏𝒅𝒐𝒘 𝒐𝒓 𝒕𝒂𝒃"},"entities":{"back":"𝑩𝒂𝒄𝒌","page":"𝑷𝒂𝒈𝒆","of":"𝒐𝒇","totalEntityResult":"{n, plural, one {# 𝒕𝒐𝒕𝒂𝒍 𝒆𝒏𝒕𝒊𝒕𝒚 𝒓𝒆𝒔𝒖𝒍𝒕} other {# 𝒕𝒐𝒕𝒂𝒍 𝒆𝒏𝒕𝒊𝒕𝒚 𝒓𝒆𝒔𝒖𝒍𝒕𝒔}} ","filter":"𝑭𝒊𝒍𝒕𝒆𝒓","applyFilters":"𝑨𝒑𝒑𝒍𝒚 𝒇𝒊𝒍𝒕𝒆𝒓𝒔","kind":"𝑲𝒊𝒏𝒅","clear":"𝑪𝒍𝒆𝒂𝒓","person":"𝑷𝒆𝒓𝒔𝒐𝒏","org":"𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","location":"𝑳𝒐𝒄𝒂𝒕𝒊𝒐𝒏","event":"𝑬𝒗𝒆𝒏𝒕","workOfArt":"𝑾𝒐𝒓𝒌 𝒐𝒇 𝑨𝒓𝒕","consumerGood":"𝑪𝒐𝒏𝒔𝒖𝒎𝒆𝒓 𝑮𝒐𝒐𝒅","address":"𝑨𝒅𝒅𝒓𝒆𝒔𝒔","date":"𝑫𝒂𝒕𝒆","number":"𝑵𝒖𝒎𝒃𝒆𝒓","phoneNumber":"𝑷𝒉𝒐𝒏𝒆 𝑵𝒖𝒎𝒃𝒆𝒓","price":"𝑷𝒓𝒊𝒄𝒆","unknown":"𝑼𝒏𝒌𝒏𝒐𝒘𝒏","other":"𝑶𝒕𝒉𝒆𝒓","occurrences":"𝑶𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆𝒔","proper":"𝑷𝒓𝒐𝒑𝒆𝒓","common":"𝑪𝒐𝒎𝒎𝒐𝒏","advanced":"𝑨𝒅𝒗𝒂𝒏𝒄𝒆𝒅","relevanceThreshold":"𝑹𝒆𝒍𝒆𝒗𝒂𝒏𝒄𝒆 𝒕𝒉𝒓𝒆𝒔𝒉𝒐𝒍𝒅:","knowledgeGraph":"𝑲𝒏𝒐𝒘𝒍𝒆𝒅𝒈𝒆 𝒈𝒓𝒂𝒑𝒉:","hasKG":"𝑯𝒂𝒔 𝒂 𝒌𝒏𝒐𝒘𝒍𝒆𝒅𝒈𝒆 𝒈𝒓𝒂𝒑𝒉 𝑰𝑫","noKG":"𝑫𝒐𝒆𝒔 𝒏𝒐𝒕 𝒉𝒂𝒗𝒆 𝒂 𝒌𝒏𝒐𝒘𝒍𝒆𝒅𝒈𝒆 𝒈𝒓𝒂𝒑𝒉 𝑰𝑫","wikiUrl":"𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂 𝑼𝑹𝑳:","hasWiki":"𝑯𝒂𝒔 𝒂 𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂 𝑼𝑹𝑳","noWiki":"𝑫𝒐𝒆𝒔 𝒏𝒐𝒕 𝒉𝒂𝒗𝒆 𝒂 𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂 𝑼𝑹𝑳","occurrence":"{n, plural, zero {} one {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆} other {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆𝒔}}","wikipedia":"𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂","entityExtraction":"𝑬𝒏𝒕𝒊𝒕𝒚 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒐𝒏 𝒇𝒐𝒓 “{title}”","extractingEntities":"𝑬𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒏𝒈 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔...","welcome":"𝑾𝒆𝒍𝒄𝒐𝒎𝒆 𝒕𝒐 𝒆𝒏𝒕𝒊𝒕𝒚 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒐𝒏❗ 𝑻𝒉𝒊𝒔 𝒇𝒆𝒂𝒕𝒖𝒓𝒆 𝒊𝒔 𝒗𝒆𝒓𝒚 𝒎𝒖𝒄𝒉 𝒊𝒏 𝒑𝒓𝒐𝒈𝒓𝒆𝒔𝒔 𝒃𝒖𝒕 𝒘𝒆 𝒘𝒂𝒏𝒕 𝒊𝒕 𝒊𝒏 𝒚𝒐𝒖𝒓 𝒉𝒂𝒏𝒅𝒔 𝒆𝒂𝒓𝒍𝒚 𝒕𝒐 𝒘𝒆𝒍𝒄𝒐𝒎𝒆 𝒂𝒏𝒚 𝒇𝒆𝒆𝒅𝒃𝒂𝒄𝒌 𝒚𝒐𝒖 𝒎𝒊𝒈𝒉𝒕 𝒉𝒂𝒗𝒆.","manual":"𝑹𝒊𝒈𝒉𝒕 𝒏𝒐𝒘 𝒕𝒉𝒆 𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒇𝒐𝒓 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒏𝒈 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔 𝒊𝒔 𝒎𝒂𝒏𝒖𝒂𝒍. 𝑻𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒉𝒂𝒔 𝒏𝒐𝒕 𝒉𝒂𝒅 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒆𝒅 𝒚𝒆𝒕, 𝒔𝒐 𝒄𝒍𝒊𝒄𝒌 𝒃𝒆𝒍𝒐𝒘 𝒕𝒐 𝒈𝒆𝒕 𝒔𝒕𝒂𝒓𝒕𝒆𝒅.","error":"𝑨𝒏 𝒖𝒏𝒆𝒙𝒑𝒆𝒄𝒕𝒆𝒅 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅","extract":"𝑬𝒙𝒕𝒓𝒂𝒄𝒕 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔","noEntities":"𝑻𝒉𝒆𝒓𝒆 𝒂𝒓𝒆 𝒏𝒐 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔. 𝑻𝒉𝒊𝒔 𝒄𝒐𝒖𝒍𝒅 𝒉𝒂𝒑𝒑𝒆𝒏 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒅𝒐𝒆𝒔𝒏’𝒕 𝒉𝒂𝒗𝒆 𝒕𝒆𝒙𝒕, 𝒊𝒔 𝒏𝒐𝒏-𝑬𝒏𝒈𝒍𝒊𝒔𝒉 (𝒐𝒏𝒍𝒚 𝑬𝒏𝒈𝒍𝒊𝒔𝒉 𝒊𝒔 𝒔𝒖𝒑𝒑𝒐𝒓𝒕𝒆𝒅 𝒇𝒐𝒓 𝒏𝒐𝒘), 𝒐𝒓 𝒔𝒐𝒎𝒆 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅.","starting":"𝑺𝒕𝒂𝒓𝒕𝒊𝒏𝒈 𝒆𝒙𝒕𝒂𝒄𝒕𝒊𝒐𝒏..."},"home":{"about":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒔 𝒂𝒏 𝒂𝒍𝒍-𝒊𝒏-𝒐𝒏𝒆 𝒑𝒍𝒂𝒕𝒇𝒐𝒓𝒎 𝒇𝒐𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔: 𝒖𝒑𝒍𝒐𝒂𝒅, 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆, 𝒂𝒏𝒂𝒍𝒚𝒛𝒆, 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒆, 𝒔𝒆𝒂𝒓𝒄𝒉, 𝒂𝒏𝒅 𝒆𝒎𝒃𝒆𝒅.","viewPublicDocs":"𝑽𝒊𝒆𝒘 𝒑𝒖𝒃𝒍𝒊𝒄 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔"},"annotation":{"title":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏 𝑻𝒊𝒕𝒍𝒆","description":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏 𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 (𝒐𝒑𝒕𝒊𝒐𝒏𝒂𝒍)","unchanged":"𝑵𝒐𝒕𝒆 𝒓𝒆𝒎𝒂𝒊𝒏𝒔 𝒖𝒏𝒄𝒉𝒂𝒏𝒈𝒆𝒅","noTitle":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒕𝒊𝒕𝒍𝒆 𝒇𝒐𝒓 𝒕𝒉𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏","org":"𝑻𝒉𝒊𝒔 𝒏𝒐𝒕𝒆 𝒊𝒔 𝒐𝒏𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖 𝒂𝒏𝒅 𝒐𝒕𝒉𝒆𝒓𝒔 𝒘𝒊𝒕𝒉 𝒆𝒅𝒊𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","private":"𝑻𝒉𝒊𝒔 𝒑𝒓𝒊𝒗𝒂𝒕𝒆 𝒏𝒐𝒕𝒆 𝒊𝒔 𝒐𝒏𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖","by":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆𝒅 𝒃𝒚 {name}","byOrg":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆𝒅 𝒃𝒚 {name}, {org}","addPageNote":"𝑨𝒅𝒅 𝒑𝒂𝒈𝒆 𝒏𝒐𝒕𝒆"},"viewDropdown":{"document":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕","plainText":"𝑷𝒍𝒂𝒊𝒏 𝑻𝒆𝒙𝒕","thumbnail":"𝑻𝒉𝒖𝒎𝒃𝒏𝒂𝒊𝒍","notes":"𝑵𝒐𝒕𝒆𝒔","search":"𝑺𝒆𝒂𝒓𝒄𝒉 𝑹𝒆𝒔𝒖𝒍𝒕𝒔"},"zoom":{"fitWidth":"𝑭𝒊𝒕 𝒘𝒊𝒅𝒕𝒉","fitHeight":"𝑭𝒊𝒕 𝒉𝒆𝒊𝒈𝒉𝒕"},"titleHeader":{"contributedBy":"𝑪𝒐𝒏𝒕𝒓𝒊𝒃𝒖𝒕𝒆𝒅 𝒃𝒚 {name}"},"annotatePane":{"annotateDocument":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕","desc":"𝑯𝒊𝒈𝒉𝒍𝒊𝒈𝒉𝒕 𝒂 𝒑𝒐𝒓𝒕𝒊𝒐𝒏 𝒐𝒇 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆, 𝒐𝒓 𝒄𝒍𝒊𝒄𝒌 𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆𝒔 𝒕𝒐 𝒄𝒓𝒆𝒂𝒕𝒆 𝒂 𝒏𝒐𝒕𝒆."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝑷𝒂𝒈𝒆} other {# 𝑷𝒂𝒈𝒆𝒔}} 𝑺𝒆𝒍𝒆𝒄𝒕𝒆𝒅","applyModifications":"𝑨𝒑𝒑𝒍𝒚 𝑴𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔","duplicate":"𝑫𝒖𝒑𝒍𝒊𝒄𝒂𝒕𝒆","move":"𝑴𝒐𝒗𝒆","unselect":"𝑼𝒏𝒔𝒆𝒍𝒆𝒄𝒕","remove":"𝑹𝒆𝒎𝒐𝒗𝒆","insertPages":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝑷𝒂𝒈𝒆} other {# 𝑷𝒂𝒈𝒆𝒔}}","pagesPending":"{n, plural, one {# 𝑷𝒂𝒈𝒆} other {# 𝑷𝒂𝒈𝒆𝒔}} 𝑷𝒆𝒏𝒅𝒊𝒏𝒈 𝑰𝒏𝒔𝒆𝒓𝒕𝒊𝒐𝒏","insertBegin":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}} 𝒂𝒕 𝒃𝒆𝒈𝒊𝒏𝒏𝒊𝒏𝒈.","insertEnd":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}} 𝒂𝒕 𝒆𝒏𝒅.","insertBetween":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}} 𝒊𝒏 𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆 {p0} 𝒂𝒏𝒅 {p1}.","click":"𝑪𝒍𝒊𝒄𝒌 𝒊𝒏-𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆𝒔 𝒃𝒆𝒍𝒐𝒘 𝒕𝒐 𝒎𝒂𝒓𝒌 𝒘𝒉𝒆𝒓𝒆 𝒕𝒐 𝒑𝒂𝒔𝒕𝒆 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}.","insert":"𝑰𝒏𝒔𝒆𝒓𝒕","insertAtEnd":"𝑰𝒏𝒔𝒆𝒓𝒕 𝒂𝒕 𝒆𝒏𝒅","insertPosition":"𝑰𝒏𝒔𝒆𝒓𝒕 𝒑𝒂𝒈𝒆𝒔 𝒂𝒕 𝒑𝒐𝒔𝒊𝒕𝒊𝒐𝒏","insertOtherDoc":"𝑰𝒏𝒔𝒆𝒓𝒕 𝒇𝒓𝒐𝒎 𝒐𝒕𝒉𝒆𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","modifyPages":"𝑴𝒐𝒅𝒊𝒇𝒚 𝑷𝒂𝒈𝒆𝒔","select":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒑𝒂𝒈𝒆𝒔 𝒃𝒆𝒍𝒐𝒘 𝒕𝒐 𝒂𝒑𝒑𝒍𝒚 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔 (𝒑𝒂𝒈𝒆 𝒓𝒐𝒕𝒂𝒕𝒊𝒐𝒏, 𝒓𝒆𝒂𝒓𝒓𝒂𝒏𝒈𝒊𝒏𝒈, 𝒂𝒏𝒅 𝒅𝒆𝒍𝒆𝒕𝒊𝒐𝒏). 𝑪𝒍𝒊𝒄𝒌 𝒊𝒏-𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆𝒔 𝒕𝒐 𝒊𝒏𝒔𝒆𝒓𝒕.","undo":"𝑼𝒏𝒅𝒐","redo":"𝑹𝒆𝒅𝒐"},"redactPane":{"redactDoc":"𝑹𝒆𝒅𝒂𝒄𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕","desc":"𝑪𝒍𝒊𝒄𝒌 𝒂𝒏𝒅 𝒅𝒓𝒂𝒈 𝒕𝒐 𝒅𝒓𝒂𝒘 𝒂 𝒃𝒍𝒂𝒄𝒌 𝒓𝒆𝒄𝒕𝒂𝒏𝒈𝒍𝒆 𝒐𝒗𝒆𝒓 𝒆𝒂𝒄𝒉 𝒑𝒐𝒓𝒕𝒊𝒐𝒏 𝒐𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖’𝒅 𝒍𝒊𝒌𝒆 𝒕𝒐 𝒓𝒆𝒅𝒂𝒄𝒕. 𝑨𝒔𝒔𝒐𝒄𝒊𝒂𝒕𝒆𝒅 𝒕𝒆𝒙𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒓𝒆𝒎𝒐𝒗𝒆𝒅 𝒘𝒉𝒆𝒏 𝒚𝒐𝒖 𝒔𝒂𝒗𝒆 𝒚𝒐𝒖𝒓 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔.","confirm":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝑹𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔","undo":"𝑼𝒏𝒅𝒐"},"searchPane":{"yourQuery":"𝒀𝒐𝒖𝒓 𝒒𝒖𝒆𝒓𝒚 {search} 𝒘𝒂𝒔 𝒇𝒐𝒖𝒏𝒅 𝒐𝒏 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}"},"selectNotePane":{"selectNote":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒂 𝒏𝒐𝒕𝒆","desc":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒕𝒉𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏 𝒕𝒉𝒂𝒕 𝒚𝒐𝒖 𝒘𝒂𝒏𝒕 𝒕𝒐 𝒔𝒉𝒂𝒓𝒆."},"searchResults":{"resultPages":"{results, plural, one {# 𝒓𝒆𝒔𝒖𝒍𝒕} other {# 𝒓𝒆𝒔𝒖𝒍𝒕𝒔}} 𝒂𝒄𝒓𝒐𝒔𝒔 {pages, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}","noSearchResults":"𝑵𝒐 𝒔𝒆𝒂𝒓𝒄𝒉 𝒓𝒆𝒔𝒖𝒍𝒕𝒔. 𝑻𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒘𝒊𝒕𝒉 𝒂 𝒃𝒓𝒐𝒂𝒅𝒆𝒓 𝒒𝒖𝒆𝒓𝒚.","occurrences":"{n, plural, one {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆} other {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆𝒔}}"},"sidebar":{"updating":"𝑼𝒑𝒅𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒄𝒎𝒆𝒏𝒕...","original":"𝑶𝒓𝒊𝒈𝒊𝒏𝒂𝒍 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 (𝑷𝑫𝑭) »","related":"𝑹𝒆𝒍𝒂𝒕𝒆𝒅 𝑨𝒓𝒕𝒊𝒄𝒍𝒆 »","contributed":"𝑪𝒐𝒏𝒕𝒓𝒊𝒃𝒖𝒕𝒆𝒅 𝒃𝒚 {name}","source":"𝑺𝒐𝒖𝒓𝒄𝒆: {source}","actions":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑨𝒄𝒕𝒊𝒐𝒏𝒔","share":"𝑺𝒉𝒂𝒓𝒆","shareDesc":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒂𝒏 𝒆𝒎𝒃𝒆𝒅 𝒐𝒓 𝒔𝒉𝒂𝒓𝒆 𝒐𝒏 𝒔𝒐𝒄𝒊𝒂𝒍 𝒎𝒆𝒅𝒊𝒂.","annotate":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆","annotateDesc":"𝑴𝒂𝒌𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒌𝒆𝒆𝒑 𝒏𝒐𝒕𝒆𝒔 𝒐𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","redact":"𝑹𝒆𝒅𝒂𝒄𝒕","redactDesc":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔 𝒐𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒉𝒊𝒅𝒆 𝒕𝒆𝒙𝒕. 𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒂𝒇𝒕𝒆𝒓𝒘𝒂𝒓𝒅𝒔.","modify":"𝑴𝒐𝒅𝒊𝒇𝒚 𝑷𝒂𝒈𝒆𝒔","modifyDesc":"𝑹𝒆𝒂𝒓𝒓𝒂𝒏𝒈𝒆, 𝒓𝒐𝒕𝒂𝒕𝒆, 𝒅𝒆𝒍𝒆𝒕𝒆, 𝒊𝒏𝒔𝒆𝒓𝒕, 𝒂𝒏𝒅 𝒔𝒑𝒍𝒊𝒕 𝒑𝒂𝒈𝒆𝒔.","info":"𝑬𝒅𝒊𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑰𝒏𝒇𝒐","infoDesc":"𝑴𝒐𝒅𝒊𝒇𝒚 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏 𝒍𝒊𝒌𝒆 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 𝒂𝒏𝒅 𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝑼𝑹𝑳.","data":"𝑬𝒅𝒊𝒕 𝑻𝒂𝒈𝒔 𝒂𝒏𝒅 𝑫𝒂𝒕𝒂","dataDesc":"𝑨𝒅𝒅 𝒕𝒂𝒈𝒔 𝒂𝒏𝒅 𝒌𝒆𝒚/𝒗𝒂𝒍𝒖𝒆 𝒑𝒂𝒊𝒓𝒔 𝒕𝒐 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","sections":"𝑬𝒅𝒊𝒕 𝑺𝒆𝒄𝒕𝒊𝒐𝒏𝒔","sectionsDesc":"𝑨𝒅𝒅 𝒔𝒆𝒄𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉 𝒂 𝒕𝒂𝒃𝒍𝒆 𝒐𝒇 𝒄𝒐𝒏𝒕𝒆𝒏𝒕𝒔.","privateNote":"𝑨𝒅𝒅 𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝑵𝒐𝒕𝒆","privateNoteDesc":"𝑴𝒂𝒌𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒌𝒆𝒆𝒑 𝒏𝒐𝒕𝒆𝒔 𝒐𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕."},"viewer":{"notFound":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒏𝒐𝒕 𝒇𝒐𝒖𝒏𝒅","notFoundDesc":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅 𝒆𝒊𝒕𝒉𝒆𝒓 𝒅𝒐𝒆𝒔 𝒏𝒐𝒕 𝒆𝒙𝒊𝒔𝒕 𝒐𝒓 𝒚𝒐𝒖 𝒍𝒂𝒄𝒌 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 𝒕𝒐 𝒂𝒄𝒄𝒆𝒔𝒔 𝒊𝒕","processing":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","processingDesc":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅 𝒊𝒔 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒂𝒏𝒅 𝒘𝒊𝒍𝒍 𝒂𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄𝒂𝒍𝒍𝒚 𝒓𝒆𝒇𝒓𝒆𝒔𝒉 𝒘𝒉𝒆𝒏 𝒊𝒕 𝒊𝒔 𝒓𝒆𝒂𝒅𝒚","error":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒉𝒂𝒔 𝒆𝒏𝒄𝒐𝒖𝒏𝒕𝒆𝒓𝒆𝒅 𝒂𝒏 𝒆𝒓𝒓𝒐𝒓","errorDesc":"𝑨 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒆𝒓𝒓𝒐𝒓 𝒉𝒂𝒔 𝒃𝒆𝒆𝒏 𝒆𝒏𝒄𝒐𝒖𝒏𝒕𝒆𝒓𝒆𝒅 𝒊𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅","accessible":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒏𝒐𝒕 𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆","accessibleDesc":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅 𝒊𝒔 𝒔𝒕𝒊𝒍𝒍 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒐𝒓 𝒚𝒐𝒖 𝒍𝒂𝒄𝒌 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 𝒕𝒐 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒊𝒕"}}')}}]);
-./public/src_langs_json_serifBoldItalic_json.3b00394e79a3b53005fb.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"𝑬𝒎𝒂𝒊𝒍 𝒂𝒅𝒅𝒓𝒆𝒔𝒔","loading":"𝑳𝒐𝒂𝒅𝒊𝒏𝒈...","documentCloud":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅","home":"𝑯𝒐𝒎𝒆"},"homeTemplate":{"signedIn":"𝑺𝒊𝒈𝒏𝒆𝒅 𝒊𝒏 𝒂𝒔 {name}","signOut":"𝑺𝒊𝒈𝒏 𝒐𝒖𝒕","signIn":"𝑺𝒊𝒈𝒏 𝒊𝒏","signUp":"𝑺𝒊𝒈𝒏 𝒖𝒑","goToApp":"𝑮𝒐 𝒕𝒐 𝒂𝒑𝒑"},"accessToggle":{"public":"𝑵𝒐𝒕𝒆 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒂𝒏𝒚𝒐𝒏𝒆 𝒘𝒊𝒕𝒉 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","collaborator":"𝑵𝒐𝒕𝒆 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒂𝒏𝒚𝒐𝒏𝒆 𝒘𝒉𝒐 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","private":"𝑵𝒐𝒕𝒆 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖 𝒂𝒍𝒐𝒏𝒆.","publicName":"𝑷𝒖𝒃𝒍𝒊𝒄","collaboratorName":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓","privateName":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆"},"accessIcon":{"private":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝑨𝒄𝒄𝒆𝒔𝒔","organization":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒕𝒐 𝒀𝒐𝒖𝒓 𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","public":"𝑷𝒖𝒃𝒍𝒊𝒄 𝑨𝒄𝒄𝒆𝒔𝒔","privateExplanation":"𝑶𝒏𝒍𝒚 𝒚𝒐𝒖 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","organizationExplanation":"𝑶𝒏𝒍𝒚 𝒎𝒆𝒎𝒃𝒆𝒓𝒔 𝒐𝒇 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","publicExplanation":"𝑨𝒏𝒚𝒐𝒏𝒆 𝒄𝒂𝒏 𝒔𝒆𝒂𝒓𝒄𝒉 𝒂𝒏𝒅 𝒗𝒊𝒆𝒘 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕"},"appearanceCustomizer":{"customizeAppearance":"𝑪𝒖𝒔𝒕𝒐𝒎𝒊𝒛𝒆 𝑨𝒑𝒑𝒆𝒂𝒓𝒂𝒏𝒄𝒆","hide":"𝑯𝒊𝒅𝒆 𝒉𝒆𝒍𝒑 𝒕𝒆𝒙𝒕","show":"𝑺𝒉𝒐𝒘 𝒉𝒆𝒍𝒑 𝒕𝒆𝒙𝒕"},"appearanceDimension":{"responsive":"𝑨𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","fixed":"𝑭𝒊𝒙𝒆𝒅"},"calendar":{"jan":"𝑱𝒂𝒏𝒖𝒂𝒓𝒚","feb":"𝑭𝒆𝒃𝒓𝒖𝒂𝒓𝒚","mar":"𝑴𝒂𝒓𝒄𝒉","apr":"𝑨𝒑𝒓𝒊𝒍","may":"𝑴𝒂𝒚","jun":"𝑱𝒖𝒏𝒆","jul":"𝑱𝒖𝒍𝒚","aug":"𝑨𝒖𝒈𝒖𝒔𝒕","sep":"𝑺𝒆𝒑𝒕𝒆𝒎𝒃𝒆𝒓","oct":"𝑶𝒄𝒕𝒐𝒃𝒆𝒓","nov":"𝑵𝒐𝒗𝒆𝒎𝒃𝒆𝒓","dec":"𝑫𝒆𝒄𝒆𝒎𝒃𝒆𝒓","hourShortcode":"𝑯𝑯","minuteShortcode":"𝑴𝑴"},"dialog":{"cancel":"𝑪𝒂𝒏𝒄𝒆𝒍","delete":"𝑫𝒆𝒍𝒆𝒕𝒆","done":"𝑫𝒐𝒏𝒆","edit":"𝑬𝒅𝒊𝒕","remove":"𝑹𝒆𝒎𝒐𝒗𝒆","save":"𝑺𝒂𝒗𝒆","create":"𝑪𝒓𝒆𝒂𝒕𝒆","ok":"𝑶𝒌","update":"𝑼𝒑𝒅𝒂𝒕𝒆","dismiss":"𝑫𝒊𝒔𝒎𝒊𝒔𝒔","continue":"𝑪𝒐𝒏𝒕𝒊𝒏𝒖𝒆"},"dialogAccessDialog":{"changeAccess":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒇𝒐𝒓 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","selectAccess":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒂𝒏 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","public":"𝑷𝒖𝒃𝒍𝒊𝒄 𝒂𝒄𝒄𝒆𝒔𝒔","publicDesc":"𝑨𝒏𝒚𝒐𝒏𝒆 𝒐𝒏 𝒕𝒉𝒆 𝒊𝒏𝒕𝒆𝒓𝒏𝒆𝒕 𝒄𝒂𝒏 𝒔𝒆𝒂𝒓𝒄𝒉 𝒇𝒐𝒓 𝒂𝒏𝒅 𝒗𝒊𝒆𝒘 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","verifiedHelp":"𝑶𝒏𝒍𝒚 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒖𝒔𝒆𝒓𝒔 𝒐𝒓 𝒎𝒆𝒎𝒃𝒆𝒓𝒔 𝒐𝒇 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏𝒔 𝒄𝒂𝒏 𝒎𝒂𝒌𝒆 𝒖𝒑𝒍𝒐𝒂𝒅𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑰𝒇 𝒚𝒐𝒖\'𝒓𝒆 𝒂 𝒋𝒐𝒖𝒓𝒏𝒂𝒍𝒊𝒔𝒕 𝒐𝒓 𝒐𝒕𝒉𝒆𝒓𝒘𝒊𝒔𝒆 𝒘𝒐𝒓𝒌 𝒊𝒏 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒊𝒏𝒈 𝒗𝒆𝒕𝒕𝒆𝒅 𝒎𝒂𝒕𝒆𝒓𝒊𝒂𝒍𝒔 𝒕𝒐 𝒊𝒏𝒇𝒐𝒓𝒎 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄, 𝒍𝒆𝒂𝒓𝒏 𝒎𝒐𝒓𝒆 𝒂𝒏𝒅 𝒓𝒆𝒒𝒖𝒆𝒔𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏 𝒉𝒆𝒓𝒆.","privateToOrg":"𝒀𝒐𝒖 𝒄𝒂𝒏’𝒕 𝒄𝒉𝒂𝒏𝒈𝒆 𝒕𝒉𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍 𝒕𝒐 “𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏” 𝒃𝒆𝒄𝒂𝒖𝒔𝒆 {n, plural, one {𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔} other {𝒐𝒏𝒆 𝒐𝒓 𝒎𝒐𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒂𝒓𝒆}} 𝒂𝒔𝒔𝒐𝒄𝒊𝒂𝒕𝒆𝒅 𝒘𝒊𝒕𝒉 𝒚𝒐𝒖𝒓 𝒊𝒏𝒅𝒊𝒗𝒊𝒅𝒖𝒂𝒍 𝒂𝒄𝒄𝒐𝒖𝒏𝒕, 𝒏𝒐𝒕 𝒂𝒏 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏. 𝑻𝒐 𝒂𝒅𝒅 {n, plural, one {𝒊𝒕} other {𝒕𝒉𝒆𝒎}} 𝒕𝒐 𝒂𝒏 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏, 𝒔𝒆𝒍𝒆𝒄𝒕 {n, plural, one {𝒊𝒕} other {𝒕𝒉𝒆𝒎}} 𝒇𝒓𝒐𝒎 𝒕𝒉𝒆 𝒎𝒂𝒏𝒂𝒈𝒆𝒎𝒆𝒏𝒕 𝒗𝒊𝒆𝒘 𝒂𝒏𝒅 𝒄𝒍𝒊𝒄𝒌 “𝑪𝒉𝒂𝒏𝒈𝒆 𝑶𝒘𝒏𝒆𝒓.” 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒋𝒐𝒊𝒏 𝒐𝒓 𝒄𝒓𝒆𝒂𝒕𝒆 𝒂𝒏 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒐𝒏 𝒕𝒉𝒊𝒔 𝒑𝒂𝒈𝒆.","private":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒂𝒄𝒄𝒆𝒔𝒔","privateDesc":"𝑶𝒏𝒍𝒚 𝒑𝒆𝒐𝒑𝒍𝒆 𝒘𝒊𝒕𝒉 𝒆𝒙𝒑𝒍𝒊𝒄𝒊𝒕 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 (𝒗𝒊𝒂 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒊𝒐𝒏) 𝒉𝒂𝒗𝒆 𝒂𝒄𝒄𝒆𝒔𝒔.","organization":"𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","organizationDesc":"𝑶𝒏𝒍𝒚 𝒕𝒉𝒆 𝒑𝒆𝒐𝒑𝒍𝒆 𝒊𝒏 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒉𝒂𝒗𝒆 𝒂𝒄𝒄𝒆𝒔𝒔.","schedulePublication":"𝑺𝒄𝒉𝒆𝒅𝒖𝒍𝒆 𝒑𝒖𝒃𝒍𝒊𝒄𝒂𝒕𝒊𝒐𝒏","scheduleHelp":"𝑻𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒎𝒂𝒅𝒆 𝒑𝒖𝒃𝒍𝒊𝒄 𝒂𝒕 𝒕𝒉𝒆 𝒈𝒊𝒗𝒆𝒏 𝒅𝒂𝒕𝒆 𝒂𝒏𝒅 𝒕𝒊𝒎𝒆. 𝑷𝒖𝒃𝒍𝒊𝒄𝒂𝒕𝒊𝒐𝒏 𝒕𝒊𝒎𝒆 𝒊𝒔 𝒍𝒐𝒄𝒂𝒍{timezone}.","unchanged":"𝑨𝒄𝒄𝒆𝒔𝒔 𝒊𝒔 𝒖𝒏𝒄𝒉𝒂𝒏𝒈𝒆𝒅. 𝑺𝒆𝒍𝒆𝒄𝒕 𝒂 𝒅𝒊𝒇𝒇𝒆𝒓𝒆𝒏𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍.","future":"𝑴𝒖𝒔𝒕 𝒔𝒆𝒍𝒆𝒄𝒕 𝒂 𝒕𝒊𝒎𝒆 𝒊𝒏 𝒕𝒉𝒆 𝒇𝒖𝒕𝒖𝒓𝒆","change":"𝑪𝒉𝒂𝒏𝒈𝒆"},"dialogCollaboratorDialog":{"confirm":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒎𝒐𝒗𝒆 𝒖𝒔𝒆𝒓","confirmMsg":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒓𝒆𝒎𝒐𝒗𝒆 {name} 𝒇𝒓𝒐𝒎 {title}. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","addCollaborators":"𝑨𝒅𝒅 𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔","invite":"𝑷𝒖𝒕 𝒊𝒏 𝒕𝒉𝒆 𝒆𝒎𝒂𝒊𝒍 𝒐𝒇 𝒂𝒏 𝒆𝒙𝒊𝒔𝒕𝒊𝒏𝒈 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒖𝒔𝒆𝒓 𝒃𝒆𝒍𝒐𝒘. 𝑰𝒇 𝒕𝒉𝒆𝒚 𝒅𝒐𝒏\'𝒕 𝒉𝒂𝒗𝒆 𝒂𝒏 𝒂𝒄𝒄𝒐𝒖𝒏𝒕, 𝒉𝒂𝒗𝒆 𝒕𝒉𝒆𝒎 𝒓𝒆𝒈𝒊𝒔𝒕𝒆𝒓 𝒉𝒆𝒓𝒆 𝒇𝒐𝒓 𝒇𝒓𝒆𝒆, 𝒂𝒏𝒅 𝒕𝒉𝒆𝒏 𝒂𝒔𝒌 𝒕𝒉𝒆𝒎 𝒕𝒐 𝒍𝒐𝒈 𝒊𝒏 𝒕𝒐 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒂𝒕 𝒍𝒆𝒂𝒔𝒕 𝒐𝒏𝒄𝒆.","admin":"𝑨𝒅𝒎𝒊𝒏","view":"𝑽𝒊𝒆𝒘","adminHelp":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒂𝒏𝒅 𝒊𝒕𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","editHelp":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕","viewHelp":"𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕","add":"𝑨𝒅𝒅","empty":"𝒀𝒐𝒖 𝒉𝒂𝒗𝒆 𝒏𝒐𝒕 𝒚𝒆𝒕 𝒂𝒅𝒅𝒆𝒅 𝒂𝒏𝒚 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒕𝒐 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕. 𝑰𝒏𝒗𝒊𝒕𝒆 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒕𝒐 𝒈𝒓𝒂𝒏𝒕 𝒐𝒕𝒉𝒆𝒓 𝒖𝒔𝒆𝒓𝒔 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒔𝒉𝒂𝒓𝒆𝒅 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒄𝒐𝒏𝒕𝒓𝒐𝒍 𝒘𝒉𝒆𝒕𝒉𝒆𝒓 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒉𝒂𝒗𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒗𝒊𝒆𝒘/𝒆𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕’𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒐𝒓 𝒃𝒆 𝒂𝒏 𝒂𝒅𝒎𝒊𝒏 𝒘𝒊𝒕𝒉 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏𝒔 𝒕𝒐 𝒊𝒏𝒗𝒊𝒕𝒆 𝒐𝒕𝒉𝒆𝒓 𝒖𝒔𝒆𝒓𝒔 𝒂𝒏𝒅 𝒆𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒊𝒕𝒔𝒆𝒍𝒇.","manageCollaborators":"𝑴𝒂𝒏𝒂𝒈𝒆 𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔","name":"𝑵𝒂𝒎𝒆","access":"𝑨𝒄𝒄𝒆𝒔𝒔","you":"(𝒚𝒐𝒖)"},"dialogDataDialog":{"confirm":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒎𝒐𝒗𝒆 𝒅𝒂𝒕𝒂 𝒑𝒐𝒊𝒏𝒕","removeMsg":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒓𝒆𝒎𝒐𝒗𝒆 𝒕𝒉𝒆 {key}{value} 𝒅𝒂𝒕𝒂 𝒑𝒐𝒊𝒏𝒕 𝒇𝒓𝒐𝒎 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","addData":"𝑨𝒅𝒅 𝑫𝒂𝒕𝒂 𝒇𝒐𝒓 {n, plural, one {𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","tag":"𝑻𝒂𝒈","value":"𝑽𝒂𝒍𝒖𝒆","key":"𝑲𝒆𝒚","keyValue":"𝑲𝒆𝒚 / 𝑽𝒂𝒍𝒖𝒆","tagInfo":"𝑨𝒅𝒅 𝒄𝒖𝒔𝒕𝒐𝒎 𝒕𝒂𝒈𝒔 𝒕𝒐 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔.","eg":"𝒆.𝒈.","exampleTagReport":"𝒓𝒆𝒑𝒐𝒓𝒕","exampleTagLawsuit":"𝒍𝒂𝒘𝒔𝒖𝒊𝒕","exampleTagEmail":"𝒆𝒎𝒂𝒊𝒍","keyValueInfo":"𝑨𝒅𝒅 𝒄𝒖𝒔𝒕𝒐𝒎 𝒌𝒆𝒚 / 𝒗𝒂𝒍𝒖𝒆 𝒑𝒂𝒊𝒓𝒔 𝒇𝒐𝒓 𝒑𝒓𝒆𝒄𝒊𝒔𝒆 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒐𝒇 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔.","exampleKVState":"𝒔𝒕𝒂𝒕𝒆:&𝒏𝒃𝒔𝒑;𝑪𝒂𝒍𝒊𝒇𝒐𝒓𝒏𝒊𝒂","exampleKVYear":"𝒚𝒆𝒂𝒓:&𝒏𝒃𝒔𝒑;𝟐𝟎𝟏𝟔","exampleKVType":"𝒕𝒚𝒑𝒆:&𝒏𝒃𝒔𝒑;𝒎𝒆𝒎𝒐","enterTag":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒕𝒂𝒈","enterKey":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒌𝒆𝒚","keyInvalid":"𝑲𝒆𝒚𝒔 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒄𝒐𝒏𝒕𝒂𝒊𝒏 𝒍𝒆𝒕𝒕𝒆𝒓𝒔, 𝒏𝒖𝒎𝒃𝒆𝒓𝒔, 𝒖𝒏𝒅𝒆𝒓𝒔𝒄𝒐𝒓𝒆𝒔 (_), 𝒂𝒏𝒅 𝒅𝒂𝒔𝒉𝒆𝒔 (-)","emptyMsg":"𝒀𝒐𝒖 𝒉𝒂𝒗𝒆 𝒏𝒐𝒕 𝒚𝒆𝒕 𝒂𝒅𝒅𝒆𝒅 𝒂𝒏𝒚 𝒅𝒂𝒕𝒂 𝒕𝒐 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝑨𝒅𝒅 𝒕𝒂𝒈𝒔 𝒂𝒏𝒅 𝒌𝒆𝒚/𝒗𝒂𝒍𝒖𝒆 𝒑𝒂𝒊𝒓𝒔 𝒕𝒐 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒆 𝒂𝒏𝒅 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒇𝒊𝒍𝒕𝒆𝒓 𝒂𝒏𝒅 𝒔𝒆𝒂𝒓𝒄𝒉 𝒐𝒏 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒅𝒂𝒕𝒂 𝒕𝒐 𝒈𝒊𝒗𝒆 𝒚𝒐𝒖 𝒑𝒐𝒘𝒆𝒓𝒇𝒖𝒍 𝒄𝒐𝒏𝒕𝒓𝒐𝒍 𝒐𝒗𝒆𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒎𝒂𝒏𝒂𝒈𝒆𝒎𝒆𝒏𝒕.","manageDocumentData":"𝑴𝒂𝒏𝒂𝒈𝒆 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑫𝒂𝒕𝒂","valueUnchanged":"𝑽𝒂𝒍𝒖𝒆 𝒓𝒆𝒎𝒂𝒊𝒏𝒔 𝒖𝒏𝒄𝒉𝒂𝒏𝒈𝒆𝒅","kvCannotBeEmpty":"𝑲𝒆𝒚/𝒗𝒂𝒍𝒖𝒆 𝒄𝒂𝒏𝒏𝒐𝒕 𝒃𝒆 𝒆𝒎𝒑𝒕𝒚"},"dialogReprocessDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔","reprocessDocs":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒇𝒐𝒓𝒄𝒆 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒕𝒐 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒑𝒂𝒈𝒆 𝒂𝒏𝒅 𝒊𝒎𝒂𝒈𝒆 𝒕𝒆𝒙𝒕. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","reprocessSingleDoc":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒇𝒐𝒓𝒄𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒑𝒂𝒈𝒆 𝒂𝒏𝒅 𝒊𝒎𝒂𝒈𝒆 𝒕𝒆𝒙𝒕. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","confirm":"𝑹𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔"},"dialogDeleteDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔","deleteDocs":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒑𝒆𝒓𝒎𝒂𝒏𝒆𝒏𝒕𝒍𝒚 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓"},"dialogCancelProcessingDialog":{"title":"𝑪𝒂𝒏𝒄𝒆𝒍 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","deleteDocs":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒇𝒐𝒓𝒄𝒆 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒕𝒐 𝒔𝒕𝒐𝒑 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈. 𝑨𝒇𝒕𝒆𝒓 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒉𝒂𝒔 𝒃𝒆𝒆𝒏 𝒔𝒕𝒐𝒑𝒑𝒆𝒅, 𝒂𝒏 𝒆𝒓𝒓𝒐𝒓 𝒘𝒊𝒍𝒍 𝒔𝒉𝒐𝒘 𝒂𝒇𝒕𝒆𝒓 𝒘𝒉𝒊𝒄𝒉 𝒚𝒐𝒖 𝒄𝒂𝒏 “𝑭𝒐𝒓𝒄𝒆 𝑹𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔” 𝒐𝒓 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒆 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒖𝒔𝒊𝒏𝒈 𝒕𝒉𝒆 𝑬𝒅𝒊𝒕 𝒎𝒆𝒏𝒖. 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝑺𝒕𝒂𝒇𝒇-𝒐𝒏𝒍𝒚 𝒊𝒏𝒇𝒐 𝒇𝒐𝒓 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","id":"𝑰𝑫","title":"𝑻𝒊𝒕𝒍𝒆","actions":"𝑨𝒄𝒕𝒊𝒐𝒏𝒔","debug":"𝑫𝒆𝒃𝒖𝒈","viewErrors":"𝑽𝒊𝒆𝒘 𝒆𝒓𝒓𝒐𝒓𝒔","viewS3":"𝑽𝒊𝒆𝒘 𝒊𝒏 𝑺𝟑"},"dialogDocumentEmbedDialog":{"responsive":"𝑹𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆","respOn":"𝑶𝒏 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","respOnHelp":"𝑭𝒊𝒍𝒍 𝒕𝒉𝒆 𝒘𝒊𝒅𝒕𝒉 𝒐𝒇 𝒕𝒉𝒆 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒄𝒐𝒏𝒕𝒂𝒊𝒏𝒆𝒓 (𝒖𝒔𝒖𝒂𝒍𝒍𝒚 𝒘𝒐𝒓𝒌𝒔 𝒃𝒆𝒔𝒕)","respOff":"𝑶𝒇𝒇","respOffHelp":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒇𝒊𝒕 𝒕𝒉𝒆 𝒔𝒊𝒛𝒆𝒔 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒃𝒆𝒍𝒐𝒘","width":"𝑾𝒊𝒅𝒕𝒉","widthAuto":"𝑾𝒊𝒍𝒍 𝒇𝒊𝒍𝒍 𝒕𝒉𝒆 𝒂𝒗𝒂𝒊𝒍𝒂𝒃𝒍𝒆 𝒔𝒑𝒂𝒄𝒆 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒔𝒆𝒕 𝒕𝒐 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒐𝒕𝒉𝒆𝒓𝒘𝒊𝒔𝒆 𝒅𝒆𝒇𝒂𝒖𝒍𝒕𝒔 𝒕𝒐 𝟕𝟎𝟎𝒑𝒙","widthFixed":"𝑺𝒆𝒕 𝒂 𝒎𝒂𝒙𝒊𝒎𝒖𝒎 𝒘𝒊𝒅𝒕𝒉 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒐𝒓 𝒔𝒆𝒕 𝒂 𝒇𝒊𝒙𝒆𝒅 𝒔𝒊𝒛𝒆 𝒊𝒇 𝒏𝒐𝒕 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆","height":"𝑯𝒆𝒊𝒈𝒉𝒕","heightAuto":"𝑻𝒉𝒆 𝒉𝒆𝒊𝒈𝒉𝒕 𝒊𝒔 𝒃𝒂𝒔𝒆𝒅 𝒐𝒏 𝒕𝒉𝒆 𝒔𝒊𝒛𝒆 𝒐𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕, 𝒘𝒊𝒕𝒉 𝒏𝒐 𝒎𝒂𝒙𝒊𝒎𝒖𝒎 𝒔𝒊𝒛𝒆. 𝑰𝒇 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒔𝒆𝒕 𝒕𝒐 𝒕𝒉𝒆 𝒉𝒆𝒊𝒈𝒉𝒕 𝒐𝒇 𝒕𝒉𝒆 𝒃𝒓𝒐𝒘𝒔𝒆𝒓 𝒘𝒊𝒏𝒅𝒐𝒘 𝒎𝒊𝒏𝒖𝒔 𝟏𝟎𝟎𝒑𝒙","heightFixed":"𝑺𝒆𝒕 𝒂 𝒎𝒂𝒙𝒊𝒎𝒖𝒎 𝒉𝒆𝒊𝒈𝒉𝒕 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆, 𝒐𝒓 𝒔𝒆𝒕 𝒂 𝒇𝒊𝒙𝒆𝒅 𝒔𝒊𝒛𝒆 𝒊𝒇 𝒏𝒐𝒕 𝒓𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆","sidebarBehavior":"𝑺𝒊𝒅𝒆𝒃𝒂𝒓 𝒃𝒆𝒉𝒂𝒗𝒊𝒐𝒓","sbResponsive":"𝑹𝒆𝒔𝒑𝒐𝒏𝒔𝒊𝒗𝒆 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","sbResponsiveHelp":"𝑺𝒉𝒐𝒘 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒂𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄𝒂𝒍𝒍𝒚 𝒐𝒏 𝒍𝒂𝒓𝒈𝒆 𝒔𝒄𝒓𝒆𝒆𝒏𝒔 𝒂𝒏𝒅 𝒉𝒊𝒅𝒆 𝒐𝒏 𝒎𝒐𝒃𝒊𝒍𝒆 𝒅𝒆𝒗𝒊𝒄𝒆𝒔. 𝑰𝒏 𝒆𝒎𝒃𝒆𝒅 𝒎𝒐𝒅𝒆, 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒉𝒊𝒅𝒅𝒆𝒏","hidden":"𝑯𝒊𝒅𝒅𝒆𝒏","visible":"𝑽𝒊𝒔𝒊𝒃𝒍𝒆","visibleDefault":"𝑽𝒊𝒔𝒊𝒃𝒍𝒆 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","sbHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒃𝒚 𝒅𝒆𝒇𝒂𝒖𝒍𝒕","sbVisibleHelp":"𝑺𝒉𝒐𝒘 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝒃𝒚 𝒅𝒆𝒇𝒂𝒖𝒍𝒕","titleBehavior":"𝑻𝒊𝒕𝒍𝒆 𝒃𝒆𝒉𝒂𝒗𝒊𝒐𝒓","tVisibleHelp":"𝑫𝒊𝒔𝒑𝒍𝒂𝒚 𝒕𝒉𝒆 𝒕𝒊𝒕𝒍𝒆 𝒂𝒏𝒅 𝒂𝒕𝒕𝒓𝒊𝒃𝒖𝒕𝒊𝒐𝒏 𝒊𝒏 𝒕𝒉𝒆 𝒉𝒆𝒂𝒅𝒆𝒓 𝒐𝒇 𝒕𝒉𝒆 𝒗𝒊𝒆𝒘𝒆𝒓","tHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒕𝒊𝒕𝒍𝒆 𝒊𝒏 𝒕𝒉𝒆 𝒉𝒆𝒂𝒅𝒆𝒓 𝒐𝒇 𝒕𝒉𝒆 𝒗𝒊𝒆𝒘𝒆𝒓 (𝒔𝒕𝒊𝒍𝒍 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒊𝒏 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓)","pdfLink":"𝑷𝑫𝑭 𝒍𝒊𝒏𝒌","plVisibleHelp":"𝑺𝒉𝒐𝒘 𝒂 𝒍𝒊𝒏𝒌 𝒕𝒐 𝒕𝒉𝒆 𝒓𝒂𝒘 𝑷𝑫𝑭 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒏 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓","plHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒔𝒊𝒅𝒆𝒃𝒂𝒓 𝑷𝑫𝑭 𝒍𝒊𝒏𝒌 (𝒇𝒊𝒍𝒆 𝒊𝒔 𝒔𝒕𝒊𝒍𝒍 𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆 𝒊𝒇 𝒕𝒉𝒆 𝑼𝑹𝑳 𝒊𝒔 𝒌𝒏𝒐𝒘𝒏)","fullscreenOption":"𝑭𝒖𝒍𝒍𝒔𝒄𝒓𝒆𝒆𝒏 𝒐𝒑𝒕𝒊𝒐𝒏","fsVisibleHelp":"𝑺𝒉𝒐𝒘 𝒂 𝒇𝒖𝒍𝒍𝒔𝒄𝒓𝒆𝒆𝒏 𝒊𝒄𝒐𝒏 𝒊𝒏 𝒕𝒉𝒆 𝒃𝒐𝒕𝒕𝒐𝒎-𝒓𝒊𝒈𝒉𝒕 𝒄𝒐𝒓𝒏𝒆𝒓","fsHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒉𝒆 𝒇𝒖𝒍𝒍𝒔𝒄𝒓𝒆𝒆𝒏 𝒐𝒑𝒕𝒊𝒐𝒏","textMode":"𝑻𝒆𝒙𝒕 𝒎𝒐𝒅𝒆","tmVisibleHelp":"𝑺𝒉𝒐𝒘 𝒂𝒏 𝒐𝒑𝒕𝒊𝒐𝒏 𝒕𝒐 𝒗𝒊𝒆𝒘 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕’𝒔 𝒕𝒆𝒙𝒕 𝒊𝒏 𝒕𝒉𝒆 𝒗𝒊𝒆𝒘 𝒅𝒓𝒐𝒑𝒅𝒐𝒘𝒏","tmHiddenHelp":"𝑯𝒊𝒅𝒆 𝒕𝒆𝒙𝒕 𝒎𝒐𝒅𝒆","contributedByFormat":"𝑪𝒐𝒏𝒕𝒓𝒊𝒃𝒖𝒕𝒆𝒅 𝒃𝒚 𝒇𝒐𝒓𝒎𝒂𝒕","cbfUserAndOrg":"𝑼𝒔𝒆𝒓 𝒂𝒏𝒅 𝒐𝒓𝒈 (𝒅𝒆𝒇𝒂𝒖𝒍𝒕)","cbfUserAndOrgHelp":"𝑺𝒉𝒐𝒘 𝒂 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕’𝒔 𝒂𝒕𝒕𝒓𝒊𝒃𝒖𝒕𝒊𝒐𝒏 𝒂𝒔 𝒕𝒉𝒆 𝒖𝒔𝒆𝒓 𝒏𝒂𝒎𝒆 𝒇𝒐𝒍𝒍𝒐𝒘𝒆𝒅 𝒃𝒚 𝒕𝒉𝒆 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","cbfOrgOnly":"𝑶𝒓𝒈 𝒐𝒏𝒍𝒚","cbfOrgOnlyHelp":"𝑨𝒕𝒕𝒓𝒊𝒃𝒖𝒕𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒋𝒖𝒔𝒕 𝒕𝒉𝒆 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","share":"𝑺𝒉𝒂𝒓𝒆 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆"},"dialogDocumentInformationDialog":{"editInformation":"𝑬𝒅𝒊𝒕 𝑰𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏 𝒇𝒐𝒓 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}"},"dialogRedactDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔","description":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒓𝒆𝒅𝒂𝒄𝒕 𝒕𝒉𝒆 𝒄𝒖𝒓𝒓𝒆𝒏𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕❓ 𝑰𝒇 𝒚𝒐𝒖 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆, 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒗𝒊𝒆𝒘𝒆𝒓 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒊𝒏𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆 𝒕𝒆𝒎𝒑𝒐𝒓𝒂𝒓𝒊𝒍𝒚 𝒘𝒉𝒊𝒍𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒆𝒔 𝒘𝒊𝒕𝒉 𝒕𝒉𝒆 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔 𝒊𝒏 𝒑𝒍𝒂𝒄𝒆. 𝑻𝒉𝒊𝒔 𝒄𝒉𝒂𝒏𝒈𝒆 𝒊𝒔 𝒊𝒓𝒓𝒆𝒗𝒆𝒓𝒔𝒊𝒃𝒍𝒆."},"dialogModifyDialog":{"title":"𝑨𝒑𝒑𝒍𝒚 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔","description":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒎𝒐𝒅𝒊𝒇𝒚 𝒕𝒉𝒆 𝒄𝒖𝒓𝒓𝒆𝒏𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕❓ 𝑰𝒇 𝒚𝒐𝒖 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆, 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒗𝒊𝒆𝒘𝒆𝒓 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒊𝒏𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆 𝒕𝒆𝒎𝒑𝒐𝒓𝒂𝒓𝒊𝒍𝒚 𝒘𝒉𝒊𝒍𝒆 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒆𝒔 𝒘𝒊𝒕𝒉 𝒕𝒉𝒆 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔. 𝑻𝒉𝒊𝒔 𝒄𝒉𝒂𝒏𝒈𝒆 𝒊𝒔 𝒊𝒓𝒓𝒆𝒗𝒆𝒓𝒔𝒊𝒃𝒍𝒆.","closeTitle":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒄𝒍𝒐𝒔𝒆","closeWarning":"𝒀𝒐𝒖 𝒘𝒊𝒍𝒍 𝒍𝒐𝒔𝒆 𝒂𝒍𝒍 𝒚𝒐𝒖𝒓 𝒖𝒏𝒂𝒑𝒑𝒍𝒊𝒆𝒅 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔. 𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒂𝒏𝒕 𝒕𝒐 𝒑𝒓𝒐𝒄𝒆𝒆𝒅❓"},"dialogDeleteNoteDialog":{"title":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒅𝒆𝒍𝒆𝒕𝒆","description":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒆 𝒄𝒖𝒓𝒓𝒆𝒏𝒕 𝒏𝒐𝒕𝒆❓"},"dialogEditSectionsDialog":{"confirmDelete":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒅𝒆𝒍𝒆𝒕𝒆","proceedingWillRemove":"𝑷𝒓𝒐𝒄𝒆𝒆𝒅𝒊𝒏𝒈 𝒘𝒊𝒍𝒍 𝒓𝒆𝒎𝒐𝒗𝒆 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 𝒔𝒆𝒄𝒕𝒊𝒐𝒏 (𝒑. {page} {title}). 𝑫𝒐 𝒚𝒐𝒖 𝒘𝒊𝒔𝒉 𝒕𝒐 𝒄𝒐𝒏𝒕𝒊𝒏𝒖𝒆❓","editSections":"𝑬𝒅𝒊𝒕 𝑺𝒆𝒄𝒕𝒊𝒐𝒏𝒔","manageSections":"𝑴𝒂𝒏𝒂𝒈𝒆 𝒔𝒆𝒄𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉 𝒂 𝒕𝒂𝒃𝒍𝒆 𝒐𝒇 𝒄𝒐𝒏𝒕𝒆𝒏𝒕𝒔.","pageAbbrevNo":"𝒑. {n}","pageAbbrev":"𝒑.","empty":"𝒀𝒐𝒖 𝒉𝒂𝒗𝒆 𝒏𝒐𝒕 𝒂𝒅𝒅𝒆𝒅 𝒂𝒏𝒚 𝒔𝒆𝒄𝒕𝒊𝒐𝒏𝒔","edit":"𝑬𝒅𝒊𝒕 𝒕𝒉𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒔𝒆𝒄𝒕𝒊𝒐𝒏","add":"𝑨𝒅𝒅 𝒂 𝒏𝒆𝒘 𝒔𝒆𝒄𝒕𝒊𝒐𝒏","title":"𝑻𝒊𝒕𝒍𝒆","missingTitle":"𝑷𝒍𝒆𝒂𝒔𝒆 𝒆𝒏𝒕𝒆𝒓 𝒂 𝒕𝒊𝒕𝒍𝒆","updateTitle":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒏𝒆𝒘 𝒕𝒊𝒕𝒍𝒆 𝒐𝒓 𝒑𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓","uniquePageNumber":"𝒀𝒐𝒖 𝒎𝒖𝒔𝒕 𝒆𝒏𝒕𝒆𝒓 𝒂 𝒖𝒏𝒊𝒒𝒖𝒆 𝒑𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓","invalidPageNumber":"𝑷𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓 𝒊𝒔 𝒊𝒏𝒗𝒂𝒍𝒊𝒅"},"dialogEmbedDialog":{"updatingDocument":"𝑼𝒑𝒅𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕...","makingPublic":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒃𝒆𝒊𝒏𝒈 𝒎𝒂𝒅𝒆 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑻𝒉𝒊𝒔 𝒎𝒂𝒚 𝒕𝒂𝒌𝒆 𝒂 𝒎𝒊𝒏𝒖𝒕𝒆 𝒐𝒓 𝒕𝒘𝒐.","wouldMakePublic":"𝑾𝒐𝒖𝒍𝒅 𝒚𝒐𝒖 𝒍𝒊𝒌𝒆 𝒕𝒐 𝒎𝒂𝒌𝒆 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒑𝒖𝒃𝒍𝒊𝒄 𝒃𝒆𝒇𝒐𝒓𝒆 𝒔𝒉𝒂𝒓𝒊𝒏𝒈❓","notPublic":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒏𝒐𝒕 𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑰𝒇 𝒚𝒐𝒖 𝒆𝒎𝒃𝒆𝒅 𝒐𝒓 𝒍𝒊𝒏𝒌 𝒊𝒕, 𝒐𝒏𝒍𝒚 𝒚𝒐𝒖 𝒂𝒏𝒅 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒂𝒃𝒍𝒆 𝒕𝒐 𝒗𝒊𝒆𝒘 𝒊𝒕 𝒖𝒏𝒕𝒊𝒍 𝒊𝒕 𝒊𝒔 𝒎𝒂𝒅𝒆 𝒑𝒖𝒃𝒍𝒊𝒄. 𝑪𝒍𝒊𝒄𝒌 𝒃𝒆𝒍𝒐𝒘 𝒘𝒉𝒆𝒏 𝒚𝒐𝒖’𝒓𝒆 𝒓𝒆𝒂𝒅𝒚 𝒕𝒐 𝒑𝒖𝒃𝒍𝒊𝒔𝒉 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄.","makePublic":"𝑴𝒂𝒌𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒑𝒖𝒃𝒍𝒊𝒄","leave":"𝑳𝒆𝒂𝒗𝒆 𝒂𝒔 𝒊𝒔","selectShare":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒔𝒉𝒂𝒓𝒆 𝒐𝒑𝒕𝒊𝒐𝒏","selectShareHelp":"𝑪𝒉𝒐𝒐𝒔𝒆 𝒘𝒉𝒆𝒕𝒉𝒆𝒓 𝒕𝒐 𝒔𝒉𝒂𝒓𝒆 𝒕𝒉𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒐𝒓 𝒋𝒖𝒔𝒕 𝒂 𝒑𝒂𝒈𝒆 𝒐𝒓 𝒏𝒐𝒕𝒆.","shareDoc":"𝑺𝒉𝒂𝒓𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","shareDocHelp":"𝑳𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕. (𝑻𝒉𝒊𝒔 𝒊𝒔 𝒕𝒉𝒆 𝒎𝒐𝒔𝒕 𝒄𝒐𝒎𝒎𝒐𝒏𝒍𝒚 𝒖𝒔𝒆𝒅 𝒔𝒉𝒂𝒓𝒆 𝒐𝒑𝒕𝒊𝒐𝒏.)","sharePage":"𝑺𝒉𝒂𝒓𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒄 𝒑𝒂𝒈𝒆","sharePageHelp":"𝑳𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒂 𝒔𝒊𝒏𝒈𝒍𝒆 𝒑𝒂𝒈𝒆 𝒐𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕. 𝑼𝒔𝒆𝒇𝒖𝒍 𝒇𝒐𝒓 𝒉𝒊𝒈𝒉𝒍𝒊𝒈𝒉𝒕𝒊𝒏𝒈 𝒂 𝒑𝒂𝒈𝒆 𝒆𝒙𝒄𝒆𝒓𝒑𝒕.","shareNote":"𝑺𝒉𝒂𝒓𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒄 𝒏𝒐𝒕𝒆","shareNoteHelpHasNote":"𝑳𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒂 𝒏𝒐𝒕𝒆 𝒘𝒊𝒕𝒉𝒊𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕. 𝑼𝒔𝒆𝒇𝒖𝒍 𝒇𝒐𝒓 𝒉𝒊𝒈𝒉𝒍𝒊𝒈𝒉𝒕𝒊𝒏𝒈 𝒂 𝒓𝒆𝒈𝒊𝒐𝒏 𝒐𝒇 𝒂 𝒑𝒂𝒈𝒆.","shareNoteHelpNoNote":"𝑶𝒏𝒄𝒆 𝒚𝒐𝒖 𝒂𝒅𝒅 𝒏𝒐𝒕𝒆𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕, 𝒖𝒔𝒆 𝒕𝒉𝒊𝒔 𝒇𝒆𝒂𝒕𝒖𝒓𝒆 𝒕𝒐 𝒍𝒊𝒏𝒌 𝒐𝒓 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒆𝒎."},"dialogErrorDialog":{"errorOccurred":"𝑨𝒏 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅","unexpectedErrorOccurred":"𝑨𝒏 𝒖𝒏𝒆𝒙𝒑𝒆𝒄𝒕𝒆𝒅 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅","tryAgain":"𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒍𝒂𝒕𝒆𝒓.","close":"𝑪𝒍𝒐𝒔𝒆","refresh":"𝑹𝒆𝒇𝒓𝒆𝒔𝒉"},"dialogNoteEmbedDialog":{"embedNote":"𝑬𝒎𝒃𝒆𝒅 𝒂 𝒏𝒐𝒕𝒆 𝒐𝒇 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒏𝒐𝒕𝒆 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒐𝒓 𝒑𝒐𝒔𝒕:"},"dialogPageEmbedDialog":{"embedPage":"𝑬𝒎𝒃𝒆𝒅 𝒂 𝒑𝒂𝒈𝒆 𝒐𝒇 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒑𝒂𝒈𝒆 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒐𝒓 𝒑𝒐𝒔𝒕:","selectPage":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅:","page":"𝑷𝒂𝒈𝒆 {n} (𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆)","otherPage":"𝑶𝒕𝒉𝒆𝒓 𝒑𝒂𝒈𝒆","enterPageNumber":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆 𝒏𝒖𝒎𝒃𝒆𝒓 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒂𝒄𝒄𝒆𝒔𝒔 𝒇𝒐𝒓 {name}","selectAccess":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒂𝒏 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 {name} 𝒊𝒏 {title}","adminAccess":"𝑨𝒅𝒎𝒊𝒏 𝑨𝒄𝒄𝒆𝒔𝒔","editAccess":"𝑬𝒅𝒊𝒕 𝑨𝒄𝒄𝒆𝒔𝒔","viewAccess":"𝑽𝒊𝒆𝒘 𝑨𝒄𝒄𝒆𝒔𝒔","adminHelp":"𝑻𝒉𝒊𝒔 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒂𝒏𝒅 𝒊𝒕𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔. 𝑻𝒉𝒆 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒊𝒏𝒗𝒊𝒕𝒆 𝒖𝒔𝒆𝒓𝒔, 𝒅𝒆𝒍𝒆𝒕𝒆 𝒖𝒔𝒆𝒓𝒔, 𝒂𝒏𝒅 𝒓𝒆𝒎𝒐𝒗𝒆 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕.","editHelp":"𝑻𝒉𝒊𝒔 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒆𝒅𝒊𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒃𝒖𝒕 𝒄𝒂𝒏𝒏𝒐𝒕 𝒆𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒊𝒕𝒔𝒆𝒍𝒇.","viewHelp":"𝑻𝒉𝒊𝒔 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓 𝒄𝒂𝒏 𝒗𝒊𝒆𝒘 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒊𝒏 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒃𝒖𝒕 𝒄𝒂𝒏𝒏𝒐𝒕 𝒆𝒅𝒊𝒕 𝒕𝒉𝒆𝒎 𝒐𝒓 𝒕𝒉𝒆 𝒑𝒓𝒐𝒋𝒆𝒄𝒕.","invalidAccess":"𝑨𝒄𝒄𝒆𝒔𝒔 𝒊𝒔 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒔𝒆𝒕 𝒕𝒐 {access}. 𝑺𝒆𝒍𝒆𝒄𝒕 𝒂 𝒅𝒊𝒇𝒇𝒆𝒓𝒆𝒏𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒍𝒆𝒗𝒆𝒍.","changeAccess":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒂𝒄𝒄𝒆𝒔𝒔"},"dialogOwnerDialog":{"selectUser":"𝑼𝒔𝒆𝒓 𝒎𝒖𝒔𝒕 𝒃𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅","selectOrg":"𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒎𝒖𝒔𝒕 𝒃𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅","changeOwner":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒐𝒘𝒏𝒆𝒓 𝒇𝒐𝒓 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","accessWarning":"𝑾𝒂𝒓𝒏𝒊𝒏𝒈: 𝒀𝒐𝒖 𝒎𝒂𝒚 𝒍𝒐𝒔𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒆 𝒔𝒑𝒆𝒄𝒊𝒇𝒊𝒆𝒅 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}} 𝒂𝒔 𝒂 𝒓𝒆𝒔𝒖𝒍𝒕 𝒐𝒇 𝒄𝒉𝒂𝒏𝒈𝒊𝒏𝒈 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒐𝒘𝒏𝒆𝒓","user":"𝑼𝒔𝒆𝒓:","filterUsers":"𝑻𝒚𝒑𝒆 𝒕𝒐 𝒇𝒊𝒍𝒕𝒆𝒓 𝒖𝒔𝒆𝒓𝒔...","filterOrgs":"𝑻𝒚𝒑𝒆 𝒕𝒐 𝒇𝒊𝒍𝒕𝒆𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏𝒔..."},"dialogProjectDialog":{"confirmDelete":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝒅𝒆𝒍𝒆𝒕𝒆","deleteProject":"𝑨𝒓𝒆 𝒚𝒐𝒖 𝒔𝒖𝒓𝒆 𝒚𝒐𝒖 𝒘𝒂𝒏𝒕 𝒕𝒐 𝒅𝒆𝒍𝒆𝒕𝒆 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 ({project})❓","editProject":"𝑬𝒅𝒊𝒕 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","createProject":"𝑪𝒓𝒆𝒂𝒕𝒆 𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","title":"𝑻𝒊𝒕𝒍𝒆...","projectDesc":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕 𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 (𝒐𝒑𝒕𝒊𝒐𝒏𝒂𝒍)","manageCollabs":"𝑴𝒂𝒏𝒂𝒈𝒆 𝑪𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒐𝒓𝒔","share":"𝑺𝒉𝒂𝒓𝒆 / 𝑬𝒎𝒃𝒆𝒅 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","enterTitle":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒕𝒊𝒕𝒍𝒆","changeTitle":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒕𝒉𝒆 𝒕𝒊𝒕𝒍𝒆 𝒐𝒓 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏"},"dialogProjectEmbedDialog":{"share":"𝑺𝒉𝒂𝒓𝒆 “{title}”","embedDesc":"𝑪𝒐𝒑𝒚 𝒕𝒉𝒆 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆 𝒕𝒐 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉𝒊𝒏 𝒂𝒏 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝒐𝒓 𝒑𝒐𝒔𝒕:","invalid":"𝑰𝒏𝒗𝒂𝒍𝒊𝒅 𝒑𝒓𝒐𝒋𝒆𝒄𝒕","cannotEmbed":"𝑪𝒂𝒏𝒏𝒐𝒕 𝒆𝒎𝒃𝒆𝒅 𝒕𝒉𝒊𝒔 𝒑𝒓𝒐𝒋𝒆𝒄𝒕, 𝒂𝒔 𝒊𝒕 𝒅𝒐𝒆𝒔 𝒏𝒐𝒕 𝒂𝒑𝒑𝒆𝒂𝒓 𝒕𝒐 𝒆𝒙𝒊𝒔𝒕."},"htmlEditor":{"preview":"𝑷𝒓𝒆𝒗𝒊𝒆𝒘:"},"image":{"error":"𝑨𝒏 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅. 𝑻𝒓𝒚 𝒓𝒆𝒇𝒓𝒆𝒔𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆"},"omniselect":{"filter":"𝑻𝒚𝒑𝒆 𝒕𝒐 𝒇𝒊𝒍𝒕𝒆𝒓 𝒍𝒂𝒏𝒈𝒖𝒂𝒈𝒆","noResults":"𝑵𝒐 𝒓𝒆𝒔𝒖𝒍𝒕𝒔. 𝑪𝒍𝒊𝒄𝒌 𝒕𝒐 𝒄𝒍𝒆𝒂𝒓 𝒇𝒊𝒍𝒕𝒆𝒓."},"shareOptions":{"errorText":"𝑨𝒏 𝒖𝒏𝒆𝒙𝒑𝒆𝒄𝒕𝒆𝒅 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅. 𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒍𝒂𝒕𝒆𝒓.","copyHtml":"𝑪𝒐𝒑𝒚 𝑯𝑻𝑴𝑳 𝒄𝒐𝒅𝒆","addShortcode":"𝑨𝒅𝒅 𝒕𝒉𝒊𝒔 𝒔𝒉𝒐𝒓𝒕𝒄𝒐𝒅𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝑾𝒐𝒓𝒅𝑷𝒓𝒆𝒔𝒔 𝒄𝒐𝒏𝒕𝒆𝒏𝒕 —","pluginRequired":"𝒑𝒍𝒖𝒈𝒊𝒏 𝒓𝒆𝒒𝒖𝒊𝒓𝒆𝒅","copyShortcode":"𝑪𝒐𝒑𝒚 𝒔𝒉𝒐𝒓𝒕𝒄𝒐𝒅𝒆","copyUrl":"𝑪𝒐𝒑𝒚 𝑼𝑹𝑳"},"specialMessage":{"contactUs":"𝑪𝒐𝒏𝒕𝒂𝒄𝒕 𝒖𝒔 𝒘𝒊𝒕𝒉 𝒃𝒖𝒈 𝒓𝒆𝒑𝒐𝒓𝒕𝒔, 𝒒𝒖𝒆𝒔𝒕𝒊𝒐𝒏𝒔, 𝒂𝒏𝒅 𝒔𝒖𝒈𝒈𝒆𝒔𝒕𝒊𝒐𝒏𝒔."},"uploadOptions":{"documentLang":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒍𝒂𝒏𝒈𝒖𝒂𝒈𝒆:","forceOcr":"𝑭𝒐𝒓𝒄𝒆 𝑶𝑪𝑹:"},"actionBar":{"selectDocs":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒔𝒐𝒎𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒕𝒐 𝒓𝒆𝒗𝒆𝒂𝒍 𝒆𝒅𝒊𝒕 𝒂𝒄𝒕𝒊𝒐𝒏𝒔","noPerms":"𝒀𝒐𝒖 𝒅𝒐 𝒏𝒐𝒕 𝒉𝒂𝒗𝒆 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 𝒕𝒐 𝒆𝒅𝒊𝒕 𝒂𝒍𝒍 𝒐𝒇 𝒕𝒉𝒆 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","editMenu":"𝑬𝒅𝒊𝒕","projectsMenu":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕𝒔"},"authSection":{"help":"𝑯𝒆𝒍𝒑","language":"𝑳𝒂𝒏𝒈𝒖𝒂𝒈𝒆","tips":"𝑻𝒊𝒑𝒔 𝒂𝒏𝒅 𝑻𝒓𝒊𝒄𝒌𝒔","searchDocs":"𝑺𝒆𝒂𝒓𝒄𝒉 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒂𝒕𝒊𝒐𝒏","apiDocs":"𝑨𝑷𝑰 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒂𝒕𝒊𝒐𝒏","emailUs":"𝑬𝒎𝒂𝒊𝒍 𝑼𝒔","acctSettings":"𝑨𝒄𝒄𝒐𝒖𝒏𝒕 𝑺𝒆𝒕𝒕𝒊𝒏𝒈𝒔","signOut":"𝑺𝒊𝒈𝒏 𝒐𝒖𝒕","changeOrg":"𝑪𝒉𝒂𝒏𝒈𝒆 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","personalAcct":"𝑷𝒆𝒓𝒔𝒐𝒏𝒂𝒍 𝑨𝒄𝒄𝒐𝒖𝒏𝒕","signIn":"𝑺𝒊𝒈𝒏 𝒊𝒏"},"documents":{"yourDocuments":"𝒀𝒐𝒖𝒓 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","searchResults":"𝑺𝒆𝒂𝒓𝒄𝒉 𝑹𝒆𝒔𝒖𝒍𝒕𝒔","accessDocuments":"𝒀𝒐𝒖𝒓 {access}𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","nameDocuments":"{name}\'𝒔 {access}𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","allDocuments":"𝑨𝒍𝒍 {access}𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","mustBeVerified":"𝒀𝒐𝒖 𝒎𝒖𝒔𝒕 𝒃𝒆 𝒂 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒋𝒐𝒖𝒓𝒏𝒂𝒍𝒊𝒔𝒕 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","upload":"𝑼𝒑𝒍𝒐𝒂𝒅","dropFile":"𝑫𝒓𝒐𝒑 𝒇𝒊𝒍𝒆 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅"},"document":{"open":"𝑶𝒑𝒆𝒏","updating":"𝑼𝒑𝒅𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕...","processing":"𝑷𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","processingError":"𝑨𝒏 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅 𝒕𝒓𝒚𝒊𝒏𝒈 𝒕𝒐 𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","remove":"𝑹𝒆𝒎𝒐𝒗𝒆","improper":"𝒀𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒂𝒔 𝒖𝒑𝒍𝒐𝒂𝒅𝒆𝒅 𝒊𝒎𝒑𝒓𝒐𝒑𝒆𝒓𝒍𝒚","project":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕","totalMatchingPages":"{n} 𝒐𝒇 {m} 𝒑𝒂𝒈𝒆𝒔 𝒎𝒂𝒕𝒄𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒒𝒖𝒆𝒓𝒚","showAll":"𝑺𝒉𝒐𝒘 𝒂𝒍𝒍","matchingPages":"{n} 𝒑𝒂𝒈𝒆𝒔 𝒎𝒂𝒕𝒄𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒒𝒖𝒆𝒓𝒚","pageAbbrev":"𝒑.","pageCount":"{n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}","source":"𝑺𝒐𝒖𝒓𝒄𝒆"},"documentThumbnail":{"pages":"𝒑𝒂𝒈𝒆𝒔","loading":"𝑳𝒐𝒂𝒅𝒊𝒏𝒈 𝒑𝒓𝒐𝒈𝒓𝒆𝒔𝒔 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏..."},"mainContainer":{"error":"𝑬𝒓𝒓𝒐𝒓","errorMsg":"𝑾𝒆 𝒄𝒐𝒖𝒍𝒅 𝒏𝒐𝒕 𝒓𝒆𝒂𝒄𝒉 𝒕𝒉𝒆 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒔𝒆𝒓𝒗𝒆𝒓. 𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒓𝒆𝒇𝒓𝒆𝒔𝒉𝒊𝒏𝒈 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆 𝒍𝒂𝒕𝒆𝒓.","refresh":"𝑹𝒆𝒇𝒓𝒆𝒔𝒉"},"editMenu":{"editDocInfo":"𝑬𝒅𝒊𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑰𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏","changeAccess":"𝑪𝒉𝒂𝒏𝒈𝒆 𝑨𝒄𝒄𝒆𝒔𝒔","editDocData":"𝑬𝒅𝒊𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑫𝒂𝒕𝒂","cancelProcessing":"𝑪𝒂𝒏𝒄𝒆𝒍 𝑷𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","forceReprocess":"𝑭𝒐𝒓𝒄𝒆 𝑹𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔","entities":"𝑬𝒏𝒕𝒊𝒕𝒊𝒆𝒔 𝑩𝑬𝑻𝑨","changeOwner":"𝑪𝒉𝒂𝒏𝒈𝒆 𝑶𝒘𝒏𝒆𝒓","delete":"𝑫𝒆𝒍𝒆𝒕𝒆","diagnosticInfo":"𝑫𝒊𝒂𝒈𝒏𝒐𝒔𝒕𝒊𝒄 𝑰𝒏𝒇𝒐"},"metaFields":{"defaultFieldInvalidText":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒉𝒂𝒔 𝒕𝒉𝒊𝒔 {fieldName}","titleFieldTitle":"𝑻𝒊𝒕𝒍𝒆","titleFieldName":"𝒏𝒂𝒎𝒆","titleFieldNameUppercase":"𝑵𝒂𝒎𝒆","titleFieldHeader":"𝑹𝒆𝒏𝒂𝒎𝒆 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","titleFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒏𝒂𝒎𝒆 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","titleFieldButton":"𝑹𝒆𝒏𝒂𝒎𝒆","titleFieldInvalidSameName":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒉𝒂𝒔 𝒕𝒉𝒊𝒔 𝒏𝒂𝒎𝒆","titleFieldInvalidEmptyName":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒗𝒂𝒍𝒊𝒅 𝒏𝒂𝒎𝒆","sourceFieldTitle":"𝑺𝒐𝒖𝒓𝒄𝒆","sourceFieldName":"𝒔𝒐𝒖𝒓𝒄𝒆","sourceFieldNameUppercase":"𝑺𝒐𝒖𝒓𝒄𝒆","sourceFieldHeader":"𝑬𝒅𝒊𝒕 𝒔𝒐𝒖𝒓𝒄𝒆 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","sourceFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒔𝒐𝒖𝒓𝒄𝒆 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","sourceFieldButton":"𝑬𝒅𝒊𝒕","descriptionFieldTitle":"𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏","descriptionFieldName":"𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏","descriptionFieldNameUppercase":"𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏","descriptionFieldHeader":"𝑬𝒅𝒊𝒕 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","descriptionFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","descriptionFieldButton":"𝑬𝒅𝒊𝒕","relatedArticleFieldTitle":"𝑹𝒆𝒍𝒂𝒕𝒆𝒅 𝑨𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳","relatedArticleFieldName":"𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳","relatedArticleFieldNameUppercase":"𝑹𝒆𝒍𝒂𝒕𝒆𝒅 𝑨𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳","relatedArticleFieldHeader":"𝑬𝒅𝒊𝒕 𝒕𝒉𝒆 𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","relatedArticleFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝒂𝒓𝒕𝒊𝒄𝒍𝒆 𝑼𝑹𝑳 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","relatedArticleFieldButton":"𝑬𝒅𝒊𝒕","publishedUrlFieldTitle":"𝑷𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳","publishedUrlFieldName":"𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳","publishedUrlFieldNameUppercase":"𝑷𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳","publishedUrlFieldHeader":"𝑬𝒅𝒊𝒕 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳 𝒇𝒐𝒓 {n, plural, one {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","publishedUrlFieldDescription":"𝑬𝒏𝒕𝒆𝒓 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒆𝒅 𝑼𝑹𝑳 𝒃𝒆𝒍𝒐𝒘 𝒇𝒐𝒓 𝒕𝒉𝒆 {n, plural, one {𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒔𝒆𝒍𝒆𝒄𝒕𝒆𝒅 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}","publishedUrlFieldButton":"𝑬𝒅𝒊𝒕"},"projectsMenu":{"newProject":"+ 𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","projMembership":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕 𝑴𝒆𝒎𝒃𝒆𝒓𝒔𝒉𝒊𝒑","selectDocs":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒕𝒐 𝒑𝒍𝒂𝒄𝒆 𝒕𝒉𝒆𝒎 𝒊𝒏 𝒑𝒓𝒐𝒋𝒆𝒄𝒕𝒔","createProj":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒂 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒕𝒐 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒂𝒏𝒅 𝒔𝒉𝒂𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔"},"noDocuments":{"noSearchResults":"𝑵𝒐 𝒔𝒆𝒂𝒓𝒄𝒉 𝒓𝒆𝒔𝒖𝒍𝒕𝒔","queryNoResults":"𝒀𝒐𝒖𝒓 𝒔𝒆𝒂𝒓𝒄𝒉 𝒒𝒖𝒆𝒓𝒚 𝒓𝒆𝒕𝒖𝒓𝒏𝒆𝒅 𝒏𝒐 𝒓𝒆𝒔𝒖𝒍𝒕𝒔. 𝑻𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒘𝒊𝒕𝒉 𝒂 𝒃𝒓𝒐𝒂𝒅𝒆𝒓 𝒔𝒆𝒂𝒓𝒄𝒉 𝒒𝒖𝒆𝒓𝒚.","welcome":"𝑾𝒆𝒍𝒄𝒐𝒎𝒆 𝒕𝒐 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅❗","verify1":"𝑵𝒐𝒕𝒆 𝒕𝒉𝒂𝒕 𝒄𝒖𝒓𝒓𝒆𝒏𝒕𝒍𝒚 𝒚𝒐𝒖𝒓 𝒂𝒄𝒄𝒐𝒖𝒏𝒕 𝒊𝒔 𝒏𝒐𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒔𝒆𝒂𝒓𝒄𝒉 𝒕𝒉𝒓𝒐𝒖𝒈𝒉 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄 𝒓𝒆𝒑𝒐𝒔𝒊𝒕𝒐𝒓𝒚, 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒚𝒐𝒖\'𝒓𝒆 𝒊𝒏𝒕𝒆𝒓𝒆𝒔𝒕𝒆𝒅 𝒊𝒏 𝒊𝒏𝒕𝒐 𝒑𝒓𝒐𝒋𝒆𝒄𝒕𝒔, 𝒍𝒆𝒂𝒗𝒆 𝒑𝒓𝒊𝒗𝒂𝒕𝒆 𝒏𝒐𝒕𝒆𝒔, 𝒂𝒏𝒅 𝒄𝒐𝒍𝒍𝒂𝒃𝒐𝒓𝒂𝒕𝒆 𝒐𝒏 𝒆𝒅𝒊𝒕𝒊𝒏𝒈 𝒂𝒏𝒅 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒐𝒕𝒉𝒆𝒓 𝒖𝒔𝒆𝒓𝒔 𝒊𝒏𝒗𝒊𝒕𝒆 𝒚𝒐𝒖 𝒕𝒐.","verify2":"𝑰𝒇 𝒚𝒐𝒖’𝒅 𝒍𝒊𝒌𝒆 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅 𝒐𝒓 𝒑𝒖𝒃𝒍𝒊𝒔𝒉 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒂𝒏𝒅 𝒚𝒐𝒖\'𝒓𝒆 𝒂 𝒘𝒐𝒓𝒌𝒊𝒏𝒈 𝒋𝒐𝒖𝒓𝒏𝒂𝒍𝒊𝒔𝒕 𝒐𝒓 𝒐𝒕𝒉𝒆𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒊𝒏𝒕𝒆𝒓𝒆𝒔𝒕𝒆𝒅 𝒊𝒏 𝒑𝒖𝒃𝒍𝒊𝒔𝒉𝒊𝒏𝒈 𝒑𝒓𝒊𝒎𝒂𝒓𝒚 𝒔𝒐𝒖𝒓𝒄𝒆 𝒎𝒂𝒕𝒆𝒓𝒊𝒂𝒍𝒔 𝒊𝒏 𝒕𝒉𝒆 𝒑𝒖𝒃𝒍𝒊𝒄 𝒊𝒏𝒕𝒆𝒓𝒆𝒔𝒕, 𝒚𝒐𝒖\'𝒍𝒍 𝒏𝒆𝒆𝒅 𝒕𝒐 𝒉𝒂𝒗𝒆 𝒚𝒐𝒖𝒓 𝒂𝒄𝒄𝒐𝒖𝒏𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒐𝒓 𝒂𝒅𝒅𝒆𝒅 𝒕𝒐 𝒂 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏. 𝑻𝒉𝒊𝒔 𝒊𝒔 𝒂 𝒔𝒊𝒎𝒑𝒍𝒆 𝒑𝒓𝒐𝒄𝒆𝒔𝒔:","verify3":"𝑭𝒊𝒓𝒔𝒕, 𝒔𝒆𝒆 𝒊𝒇 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒂𝒍𝒓𝒆𝒂𝒅𝒚 𝒆𝒙𝒊𝒔𝒕𝒔 𝒂𝒏𝒅, 𝒊𝒇 𝒚𝒐𝒖 𝒇𝒊𝒏𝒅 𝒊𝒕, 𝒄𝒍𝒊𝒄𝒌 \\"𝑹𝒆𝒒𝒖𝒆𝒔𝒕 𝒕𝒐 𝑱𝒐𝒊𝒏\\" 𝒐𝒏 𝒊𝒕𝒔 𝒑𝒂𝒈𝒆.","verify4":"𝑰𝒇 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏 𝒉𝒂𝒔 𝒏𝒐𝒕 𝒃𝒆𝒆𝒏 𝒗𝒆𝒓𝒊𝒇𝒊𝒆𝒅 𝒚𝒆𝒕, 𝒐𝒓 𝒊𝒇 𝒚𝒐𝒖\'𝒓𝒆 𝒂 𝒇𝒓𝒆𝒆𝒍𝒂𝒏𝒄𝒆𝒓, 𝒓𝒆𝒒𝒖𝒆𝒔𝒕 𝒗𝒆𝒓𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏 𝒉𝒆𝒓𝒆. 𝑹𝒆𝒒𝒖𝒆𝒔𝒕𝒔 𝒖𝒔𝒖𝒂𝒍𝒍𝒚 𝒕𝒂𝒌𝒆 𝒕𝒘𝒐 𝒃𝒖𝒔𝒊𝒏𝒆𝒔𝒔 𝒅𝒂𝒚𝒔 𝒕𝒐 𝒑𝒓𝒐𝒄𝒆𝒔𝒔.","uploadFirst":"𝑼𝒑𝒍𝒐𝒂𝒅 𝒚𝒐𝒖𝒓 𝒇𝒊𝒓𝒔𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","upload1":"𝑼𝒑𝒍𝒐𝒂𝒅 𝒂 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒇𝒊𝒍𝒆 𝒕𝒐 𝒈𝒆𝒕 𝒔𝒕𝒂𝒓𝒕𝒆𝒅 𝒖𝒔𝒊𝒏𝒈 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅. 𝒀𝒐𝒖 𝒄𝒂𝒏 𝒅𝒓𝒂𝒈 𝒕𝒉𝒆 𝒇𝒊𝒍𝒆 𝒊𝒏𝒕𝒐 𝒕𝒉𝒊𝒔 𝒘𝒊𝒏𝒅𝒐𝒘, 𝒐𝒓 𝒄𝒍𝒊𝒄𝒌 𝒐𝒏 𝒕𝒉𝒆 𝒃𝒍𝒖𝒆 “𝑼𝒑𝒍𝒐𝒂𝒅” 𝒃𝒖𝒕𝒕𝒐𝒏 𝒂𝒃𝒐𝒗𝒆.","upload2":"𝑶𝒏𝒄𝒆 𝒚𝒐𝒖 𝒖𝒑𝒍𝒐𝒂𝒅 𝒂 𝒇𝒊𝒍𝒆, 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒘𝒊𝒍𝒍 𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒂𝒏𝒅 𝒆𝒙𝒕𝒓𝒂𝒄𝒕 𝒊𝒕𝒔 𝒄𝒐𝒏𝒕𝒆𝒏𝒕𝒔. 𝑰𝒕 𝒎𝒂𝒚 𝒕𝒂𝒌𝒆 𝒂 𝒇𝒆𝒘 𝒎𝒊𝒏𝒖𝒕𝒆𝒔 𝒇𝒐𝒓 𝒕𝒉𝒊𝒔 𝒕𝒐 𝒄𝒐𝒎𝒑𝒍𝒆𝒕𝒆, 𝒃𝒖𝒕 𝒐𝒏𝒄𝒆 𝒊𝒕’𝒔 𝒅𝒐𝒏𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒐𝒑𝒕𝒊𝒎𝒊𝒛𝒆𝒅 𝒇𝒐𝒓 𝒂𝒏𝒂𝒍𝒚𝒔𝒊𝒔 𝒂𝒏𝒅 𝒔𝒉𝒂𝒓𝒊𝒏𝒈 𝒐𝒏 𝒕𝒉𝒆 𝒘𝒆𝒃."},"paginator":{"of":"𝒐𝒇","document":"{n, plural, one {𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}"},"processingBar":{"doneProcessing":"𝑫𝒐𝒏𝒆 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","processingDocuments":"𝑷𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 {n, plural, one {𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕} other {# 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔}}"},"searchBar":{"tips":"𝑺𝒆𝒂𝒓𝒄𝒉 𝒕𝒊𝒑𝒔: 𝒂𝒅𝒅 𝒇𝒊𝒍𝒕𝒆𝒓𝒔 𝒃𝒚 𝒕𝒚𝒑𝒊𝒏𝒈 𝒖𝒔𝒆𝒓:, 𝒑𝒓𝒐𝒋𝒆𝒄𝒕:, 𝒐𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏:, 𝒆𝒕𝒄. 𝑼𝒔𝒆 𝒔𝒐𝒓𝒕: 𝒕𝒐 𝒐𝒓𝒅𝒆𝒓 𝒓𝒆𝒔𝒖𝒍𝒕𝒔.","learnMore":"𝑳𝒆𝒂𝒓𝒏 𝒎𝒐𝒓𝒆","search":"𝑺𝒆𝒂𝒓𝒄𝒉"},"searchLink":{"search":"𝑺𝒆𝒂𝒓𝒄𝒉 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒄𝒐𝒍𝒍𝒆𝒄𝒕𝒊𝒐𝒏"},"projects":{"header":"𝑷𝒓𝒐𝒋𝒆𝒄𝒕𝒔","allDocuments":"𝑨𝒍𝒍 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","yourDocuments":"𝒀𝒐𝒖𝒓 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","yourPubDocuments":"𝒀𝒐𝒖𝒓 𝑷𝒖𝒃𝒍𝒊𝒄 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","orgDocuments":"{name}’𝒔 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔","newProject":"+ 𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕","createProject":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒚𝒐𝒖𝒓 𝒇𝒊𝒓𝒔𝒕 𝒑𝒓𝒐𝒋𝒆𝒄𝒕 𝒃𝒚 𝒄𝒍𝒊𝒄𝒌𝒊𝒏𝒈 “𝑵𝒆𝒘 𝑷𝒓𝒐𝒋𝒆𝒄𝒕” 𝒂𝒃𝒐𝒗𝒆."},"uploadDialog":{"docUpload":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑼𝒑𝒍𝒐𝒂𝒅","docUploadProj":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑼𝒑𝒍𝒐𝒂𝒅 𝒕𝒐 {title}","beginUpload":"𝑩𝒆𝒈𝒊𝒏 𝒖𝒑𝒍𝒐𝒂𝒅","pdfSizeWarning":"𝒀𝒐𝒖 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒖𝒑𝒍𝒐𝒂𝒅 𝑷𝑫𝑭 𝒇𝒊𝒍𝒆𝒔 𝒖𝒏𝒅𝒆𝒓 {size}.","nonPdfSizeWarning":"𝒀𝒐𝒖 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒖𝒑𝒍𝒐𝒂𝒅 𝒏𝒐𝒏-𝑷𝑫𝑭 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒇𝒊𝒍𝒆𝒔 𝒖𝒏𝒅𝒆𝒓 {size}.","fileReady":"{n, plural, one {𝒇𝒊𝒍𝒆} other {𝒇𝒊𝒍𝒆𝒔}} 𝒓𝒆𝒂𝒅𝒚 𝒕𝒐 𝒖𝒑𝒍𝒐𝒂𝒅","fileLimitWarning":"𝒀𝒐𝒖 𝒄𝒂𝒏 𝒐𝒏𝒍𝒚 𝒖𝒑𝒍𝒐𝒂𝒅 {limit} 𝒇𝒊𝒍𝒆𝒔 𝒂𝒕 𝒐𝒏𝒄𝒆.","moreOptions":"𝑴𝒐𝒓𝒆 𝒐𝒑𝒕𝒊𝒐𝒏𝒔","selectFiles":"+ 𝑺𝒆𝒍𝒆𝒄𝒕 𝒇𝒊𝒍𝒆𝒔","dragDrop":"𝑫𝒓𝒂𝒈 𝒂𝒏𝒅 𝒅𝒓𝒐𝒑 𝒇𝒊𝒍𝒆𝒔 𝒉𝒆𝒓𝒆","publicMsg":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒑𝒖𝒃𝒍𝒊𝒄𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆.","collabMsg":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖𝒓 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏.","privateMsg":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖 𝒂𝒍𝒐𝒏𝒆.","collabName":"𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","submitting":"𝑨𝒍𝒎𝒐𝒔𝒕 𝒅𝒐𝒏𝒆... 𝒔𝒖𝒃𝒎𝒊𝒕𝒕𝒊𝒏𝒈 𝒖𝒑𝒍𝒐𝒂𝒅𝒆𝒅 𝒇𝒊𝒍𝒆𝒔 𝒇𝒐𝒓 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 ({percent})","uploading":"𝑼𝒑𝒍𝒐𝒂𝒅𝒊𝒏𝒈 ... ({uploaded}/{length})","gettingInfo":"𝑮𝒆𝒕𝒕𝒊𝒏𝒈 𝒖𝒑𝒍𝒐𝒂𝒅 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏 ({percent})","pleaseLeaveOpen":"𝑷𝒍𝒆𝒂𝒔𝒆 𝒍𝒆𝒂𝒗𝒆 𝒕𝒉𝒊𝒔 𝒑𝒂𝒈𝒆 𝒐𝒑𝒆𝒏 𝒘𝒉𝒊𝒍𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔 𝒖𝒑𝒍𝒐𝒂𝒅. 𝑻𝒉𝒊𝒔 𝒅𝒊𝒂𝒍𝒐𝒈 𝒘𝒊𝒍𝒍 𝒂𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄𝒂𝒍𝒍𝒚 𝒄𝒍𝒐𝒔𝒆 𝒘𝒉𝒆𝒏 𝒕𝒉𝒆𝒚 𝒉𝒂𝒗𝒆 𝒇𝒊𝒏𝒊𝒔𝒉𝒆𝒅 𝒖𝒑𝒍𝒐𝒂𝒅𝒊𝒏𝒈.","errorHeading":"𝑬𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅 𝒘𝒉𝒊𝒍𝒆 𝒖𝒑𝒍𝒐𝒂𝒅𝒊𝒏𝒈","errorMsg":"𝑾𝒆 𝒇𝒂𝒊𝒍𝒆𝒅 𝒕𝒐 {errorMessage}. 𝑷𝒍𝒆𝒂𝒔𝒆 𝒕𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒍𝒂𝒕𝒆𝒓.","editDocInfo":"𝑬𝒅𝒊𝒕 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏:","untitled":"𝑼𝒏𝒕𝒊𝒕𝒍𝒆𝒅","uploadFiles":"𝑼𝒑𝒍𝒐𝒂𝒅 𝒂𝒅𝒅𝒊𝒕𝒊𝒐𝒏𝒂𝒍 𝒇𝒊𝒍𝒆𝒔","selectMore":"+ 𝑺𝒆𝒍𝒆𝒄𝒕 𝒎𝒐𝒓𝒆 𝒇𝒊𝒍𝒆𝒔","dragDropMore":"𝑫𝒓𝒂𝒈 𝒂𝒏𝒅 𝒅𝒓𝒐𝒑 𝒂𝒅𝒅𝒊𝒕𝒊𝒐𝒏𝒂𝒍 𝒇𝒊𝒍𝒆𝒔 𝒉𝒆𝒓𝒆"},"embedNote":{"viewTheNote":"𝑽𝒊𝒆𝒘 𝒕𝒉𝒆 𝒏𝒐𝒕𝒆 ‘{title}‘ 𝒊𝒏 𝒊𝒕𝒔 𝒐𝒓𝒊𝒈𝒊𝒏𝒂𝒍 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒄𝒐𝒏𝒕𝒆𝒙𝒕 𝒐𝒏 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒏 𝒂 𝒏𝒆𝒘 𝒘𝒊𝒏𝒅𝒐𝒘 𝒐𝒓 𝒕𝒂𝒃","viewDoc":"𝑽𝒊𝒆𝒘 𝒕𝒉𝒆 𝒆𝒏𝒕𝒊𝒓𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅"},"embedPage":{"viewDoc":"𝑽𝒊𝒆𝒘 𝒆𝒏𝒕𝒊𝒓𝒆 {title} 𝒐𝒏 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒏 𝒏𝒆𝒘 𝒘𝒊𝒏𝒅𝒐𝒘 𝒐𝒓 𝒕𝒂𝒃","pageOf":"𝑷𝒂𝒈𝒆 {page} 𝒐𝒇 {title}","gotoDocCloud":"𝑮𝒐 𝒕𝒐 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒏 𝒏𝒆𝒘 𝒘𝒊𝒏𝒅𝒐𝒘 𝒐𝒓 𝒕𝒂𝒃"},"entities":{"back":"𝑩𝒂𝒄𝒌","page":"𝑷𝒂𝒈𝒆","of":"𝒐𝒇","totalEntityResult":"{n, plural, one {# 𝒕𝒐𝒕𝒂𝒍 𝒆𝒏𝒕𝒊𝒕𝒚 𝒓𝒆𝒔𝒖𝒍𝒕} other {# 𝒕𝒐𝒕𝒂𝒍 𝒆𝒏𝒕𝒊𝒕𝒚 𝒓𝒆𝒔𝒖𝒍𝒕𝒔}} ","filter":"𝑭𝒊𝒍𝒕𝒆𝒓","applyFilters":"𝑨𝒑𝒑𝒍𝒚 𝒇𝒊𝒍𝒕𝒆𝒓𝒔","kind":"𝑲𝒊𝒏𝒅","clear":"𝑪𝒍𝒆𝒂𝒓","person":"𝑷𝒆𝒓𝒔𝒐𝒏","org":"𝑶𝒓𝒈𝒂𝒏𝒊𝒛𝒂𝒕𝒊𝒐𝒏","location":"𝑳𝒐𝒄𝒂𝒕𝒊𝒐𝒏","event":"𝑬𝒗𝒆𝒏𝒕","workOfArt":"𝑾𝒐𝒓𝒌 𝒐𝒇 𝑨𝒓𝒕","consumerGood":"𝑪𝒐𝒏𝒔𝒖𝒎𝒆𝒓 𝑮𝒐𝒐𝒅","address":"𝑨𝒅𝒅𝒓𝒆𝒔𝒔","date":"𝑫𝒂𝒕𝒆","number":"𝑵𝒖𝒎𝒃𝒆𝒓","phoneNumber":"𝑷𝒉𝒐𝒏𝒆 𝑵𝒖𝒎𝒃𝒆𝒓","price":"𝑷𝒓𝒊𝒄𝒆","unknown":"𝑼𝒏𝒌𝒏𝒐𝒘𝒏","other":"𝑶𝒕𝒉𝒆𝒓","occurrences":"𝑶𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆𝒔","proper":"𝑷𝒓𝒐𝒑𝒆𝒓","common":"𝑪𝒐𝒎𝒎𝒐𝒏","advanced":"𝑨𝒅𝒗𝒂𝒏𝒄𝒆𝒅","relevanceThreshold":"𝑹𝒆𝒍𝒆𝒗𝒂𝒏𝒄𝒆 𝒕𝒉𝒓𝒆𝒔𝒉𝒐𝒍𝒅:","knowledgeGraph":"𝑲𝒏𝒐𝒘𝒍𝒆𝒅𝒈𝒆 𝒈𝒓𝒂𝒑𝒉:","hasKG":"𝑯𝒂𝒔 𝒂 𝒌𝒏𝒐𝒘𝒍𝒆𝒅𝒈𝒆 𝒈𝒓𝒂𝒑𝒉 𝑰𝑫","noKG":"𝑫𝒐𝒆𝒔 𝒏𝒐𝒕 𝒉𝒂𝒗𝒆 𝒂 𝒌𝒏𝒐𝒘𝒍𝒆𝒅𝒈𝒆 𝒈𝒓𝒂𝒑𝒉 𝑰𝑫","wikiUrl":"𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂 𝑼𝑹𝑳:","hasWiki":"𝑯𝒂𝒔 𝒂 𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂 𝑼𝑹𝑳","noWiki":"𝑫𝒐𝒆𝒔 𝒏𝒐𝒕 𝒉𝒂𝒗𝒆 𝒂 𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂 𝑼𝑹𝑳","occurrence":"{n, plural, zero {} one {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆} other {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆𝒔}}","wikipedia":"𝑾𝒊𝒌𝒊𝒑𝒆𝒅𝒊𝒂","entityExtraction":"𝑬𝒏𝒕𝒊𝒕𝒚 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒐𝒏 𝒇𝒐𝒓 “{title}”","extractingEntities":"𝑬𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒏𝒈 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔...","welcome":"𝑾𝒆𝒍𝒄𝒐𝒎𝒆 𝒕𝒐 𝒆𝒏𝒕𝒊𝒕𝒚 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒐𝒏❗ 𝑻𝒉𝒊𝒔 𝒇𝒆𝒂𝒕𝒖𝒓𝒆 𝒊𝒔 𝒗𝒆𝒓𝒚 𝒎𝒖𝒄𝒉 𝒊𝒏 𝒑𝒓𝒐𝒈𝒓𝒆𝒔𝒔 𝒃𝒖𝒕 𝒘𝒆 𝒘𝒂𝒏𝒕 𝒊𝒕 𝒊𝒏 𝒚𝒐𝒖𝒓 𝒉𝒂𝒏𝒅𝒔 𝒆𝒂𝒓𝒍𝒚 𝒕𝒐 𝒘𝒆𝒍𝒄𝒐𝒎𝒆 𝒂𝒏𝒚 𝒇𝒆𝒆𝒅𝒃𝒂𝒄𝒌 𝒚𝒐𝒖 𝒎𝒊𝒈𝒉𝒕 𝒉𝒂𝒗𝒆.","manual":"𝑹𝒊𝒈𝒉𝒕 𝒏𝒐𝒘 𝒕𝒉𝒆 𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒇𝒐𝒓 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒊𝒏𝒈 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔 𝒊𝒔 𝒎𝒂𝒏𝒖𝒂𝒍. 𝑻𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒉𝒂𝒔 𝒏𝒐𝒕 𝒉𝒂𝒅 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔 𝒆𝒙𝒕𝒓𝒂𝒄𝒕𝒆𝒅 𝒚𝒆𝒕, 𝒔𝒐 𝒄𝒍𝒊𝒄𝒌 𝒃𝒆𝒍𝒐𝒘 𝒕𝒐 𝒈𝒆𝒕 𝒔𝒕𝒂𝒓𝒕𝒆𝒅.","error":"𝑨𝒏 𝒖𝒏𝒆𝒙𝒑𝒆𝒄𝒕𝒆𝒅 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅","extract":"𝑬𝒙𝒕𝒓𝒂𝒄𝒕 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔","noEntities":"𝑻𝒉𝒆𝒓𝒆 𝒂𝒓𝒆 𝒏𝒐 𝒆𝒏𝒕𝒊𝒕𝒊𝒆𝒔. 𝑻𝒉𝒊𝒔 𝒄𝒐𝒖𝒍𝒅 𝒉𝒂𝒑𝒑𝒆𝒏 𝒊𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒅𝒐𝒆𝒔𝒏’𝒕 𝒉𝒂𝒗𝒆 𝒕𝒆𝒙𝒕, 𝒊𝒔 𝒏𝒐𝒏-𝑬𝒏𝒈𝒍𝒊𝒔𝒉 (𝒐𝒏𝒍𝒚 𝑬𝒏𝒈𝒍𝒊𝒔𝒉 𝒊𝒔 𝒔𝒖𝒑𝒑𝒐𝒓𝒕𝒆𝒅 𝒇𝒐𝒓 𝒏𝒐𝒘), 𝒐𝒓 𝒔𝒐𝒎𝒆 𝒆𝒓𝒓𝒐𝒓 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒅.","starting":"𝑺𝒕𝒂𝒓𝒕𝒊𝒏𝒈 𝒆𝒙𝒕𝒂𝒄𝒕𝒊𝒐𝒏..."},"home":{"about":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝑪𝒍𝒐𝒖𝒅 𝒊𝒔 𝒂𝒏 𝒂𝒍𝒍-𝒊𝒏-𝒐𝒏𝒆 𝒑𝒍𝒂𝒕𝒇𝒐𝒓𝒎 𝒇𝒐𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔: 𝒖𝒑𝒍𝒐𝒂𝒅, 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆, 𝒂𝒏𝒂𝒍𝒚𝒛𝒆, 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒆, 𝒔𝒆𝒂𝒓𝒄𝒉, 𝒂𝒏𝒅 𝒆𝒎𝒃𝒆𝒅.","viewPublicDocs":"𝑽𝒊𝒆𝒘 𝒑𝒖𝒃𝒍𝒊𝒄 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕𝒔"},"annotation":{"title":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏 𝑻𝒊𝒕𝒍𝒆","description":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏 𝑫𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 (𝒐𝒑𝒕𝒊𝒐𝒏𝒂𝒍)","unchanged":"𝑵𝒐𝒕𝒆 𝒓𝒆𝒎𝒂𝒊𝒏𝒔 𝒖𝒏𝒄𝒉𝒂𝒏𝒈𝒆𝒅","noTitle":"𝑬𝒏𝒕𝒆𝒓 𝒂 𝒕𝒊𝒕𝒍𝒆 𝒇𝒐𝒓 𝒕𝒉𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏","org":"𝑻𝒉𝒊𝒔 𝒏𝒐𝒕𝒆 𝒊𝒔 𝒐𝒏𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖 𝒂𝒏𝒅 𝒐𝒕𝒉𝒆𝒓𝒔 𝒘𝒊𝒕𝒉 𝒆𝒅𝒊𝒕 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒕𝒉𝒊𝒔 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","private":"𝑻𝒉𝒊𝒔 𝒑𝒓𝒊𝒗𝒂𝒕𝒆 𝒏𝒐𝒕𝒆 𝒊𝒔 𝒐𝒏𝒍𝒚 𝒗𝒊𝒔𝒊𝒃𝒍𝒆 𝒕𝒐 𝒚𝒐𝒖","by":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆𝒅 𝒃𝒚 {name}","byOrg":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆𝒅 𝒃𝒚 {name}, {org}","addPageNote":"𝑨𝒅𝒅 𝒑𝒂𝒈𝒆 𝒏𝒐𝒕𝒆"},"viewDropdown":{"document":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕","plainText":"𝑷𝒍𝒂𝒊𝒏 𝑻𝒆𝒙𝒕","thumbnail":"𝑻𝒉𝒖𝒎𝒃𝒏𝒂𝒊𝒍","notes":"𝑵𝒐𝒕𝒆𝒔","search":"𝑺𝒆𝒂𝒓𝒄𝒉 𝑹𝒆𝒔𝒖𝒍𝒕𝒔"},"zoom":{"fitWidth":"𝑭𝒊𝒕 𝒘𝒊𝒅𝒕𝒉","fitHeight":"𝑭𝒊𝒕 𝒉𝒆𝒊𝒈𝒉𝒕"},"titleHeader":{"contributedBy":"𝑪𝒐𝒏𝒕𝒓𝒊𝒃𝒖𝒕𝒆𝒅 𝒃𝒚 {name}"},"annotatePane":{"annotateDocument":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕","desc":"𝑯𝒊𝒈𝒉𝒍𝒊𝒈𝒉𝒕 𝒂 𝒑𝒐𝒓𝒕𝒊𝒐𝒏 𝒐𝒇 𝒕𝒉𝒆 𝒑𝒂𝒈𝒆, 𝒐𝒓 𝒄𝒍𝒊𝒄𝒌 𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆𝒔 𝒕𝒐 𝒄𝒓𝒆𝒂𝒕𝒆 𝒂 𝒏𝒐𝒕𝒆."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝑷𝒂𝒈𝒆} other {# 𝑷𝒂𝒈𝒆𝒔}} 𝑺𝒆𝒍𝒆𝒄𝒕𝒆𝒅","applyModifications":"𝑨𝒑𝒑𝒍𝒚 𝑴𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔","duplicate":"𝑫𝒖𝒑𝒍𝒊𝒄𝒂𝒕𝒆","move":"𝑴𝒐𝒗𝒆","unselect":"𝑼𝒏𝒔𝒆𝒍𝒆𝒄𝒕","remove":"𝑹𝒆𝒎𝒐𝒗𝒆","insertPages":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝑷𝒂𝒈𝒆} other {# 𝑷𝒂𝒈𝒆𝒔}}","pagesPending":"{n, plural, one {# 𝑷𝒂𝒈𝒆} other {# 𝑷𝒂𝒈𝒆𝒔}} 𝑷𝒆𝒏𝒅𝒊𝒏𝒈 𝑰𝒏𝒔𝒆𝒓𝒕𝒊𝒐𝒏","insertBegin":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}} 𝒂𝒕 𝒃𝒆𝒈𝒊𝒏𝒏𝒊𝒏𝒈.","insertEnd":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}} 𝒂𝒕 𝒆𝒏𝒅.","insertBetween":"𝑰𝒏𝒔𝒆𝒓𝒕 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}} 𝒊𝒏 𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆 {p0} 𝒂𝒏𝒅 {p1}.","click":"𝑪𝒍𝒊𝒄𝒌 𝒊𝒏-𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆𝒔 𝒃𝒆𝒍𝒐𝒘 𝒕𝒐 𝒎𝒂𝒓𝒌 𝒘𝒉𝒆𝒓𝒆 𝒕𝒐 𝒑𝒂𝒔𝒕𝒆 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}.","insert":"𝑰𝒏𝒔𝒆𝒓𝒕","insertAtEnd":"𝑰𝒏𝒔𝒆𝒓𝒕 𝒂𝒕 𝒆𝒏𝒅","insertPosition":"𝑰𝒏𝒔𝒆𝒓𝒕 𝒑𝒂𝒈𝒆𝒔 𝒂𝒕 𝒑𝒐𝒔𝒊𝒕𝒊𝒐𝒏","insertOtherDoc":"𝑰𝒏𝒔𝒆𝒓𝒕 𝒇𝒓𝒐𝒎 𝒐𝒕𝒉𝒆𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕","modifyPages":"𝑴𝒐𝒅𝒊𝒇𝒚 𝑷𝒂𝒈𝒆𝒔","select":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒑𝒂𝒈𝒆𝒔 𝒃𝒆𝒍𝒐𝒘 𝒕𝒐 𝒂𝒑𝒑𝒍𝒚 𝒎𝒐𝒅𝒊𝒇𝒊𝒄𝒂𝒕𝒊𝒐𝒏𝒔 (𝒑𝒂𝒈𝒆 𝒓𝒐𝒕𝒂𝒕𝒊𝒐𝒏, 𝒓𝒆𝒂𝒓𝒓𝒂𝒏𝒈𝒊𝒏𝒈, 𝒂𝒏𝒅 𝒅𝒆𝒍𝒆𝒕𝒊𝒐𝒏). 𝑪𝒍𝒊𝒄𝒌 𝒊𝒏-𝒃𝒆𝒕𝒘𝒆𝒆𝒏 𝒑𝒂𝒈𝒆𝒔 𝒕𝒐 𝒊𝒏𝒔𝒆𝒓𝒕.","undo":"𝑼𝒏𝒅𝒐","redo":"𝑹𝒆𝒅𝒐"},"redactPane":{"redactDoc":"𝑹𝒆𝒅𝒂𝒄𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕","desc":"𝑪𝒍𝒊𝒄𝒌 𝒂𝒏𝒅 𝒅𝒓𝒂𝒈 𝒕𝒐 𝒅𝒓𝒂𝒘 𝒂 𝒃𝒍𝒂𝒄𝒌 𝒓𝒆𝒄𝒕𝒂𝒏𝒈𝒍𝒆 𝒐𝒗𝒆𝒓 𝒆𝒂𝒄𝒉 𝒑𝒐𝒓𝒕𝒊𝒐𝒏 𝒐𝒇 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖’𝒅 𝒍𝒊𝒌𝒆 𝒕𝒐 𝒓𝒆𝒅𝒂𝒄𝒕. 𝑨𝒔𝒔𝒐𝒄𝒊𝒂𝒕𝒆𝒅 𝒕𝒆𝒙𝒕 𝒘𝒊𝒍𝒍 𝒃𝒆 𝒓𝒆𝒎𝒐𝒗𝒆𝒅 𝒘𝒉𝒆𝒏 𝒚𝒐𝒖 𝒔𝒂𝒗𝒆 𝒚𝒐𝒖𝒓 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔.","confirm":"𝑪𝒐𝒏𝒇𝒊𝒓𝒎 𝑹𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔","undo":"𝑼𝒏𝒅𝒐"},"searchPane":{"yourQuery":"𝒀𝒐𝒖𝒓 𝒒𝒖𝒆𝒓𝒚 {search} 𝒘𝒂𝒔 𝒇𝒐𝒖𝒏𝒅 𝒐𝒏 {n, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}"},"selectNotePane":{"selectNote":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒂 𝒏𝒐𝒕𝒆","desc":"𝑺𝒆𝒍𝒆𝒄𝒕 𝒕𝒉𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏 𝒕𝒉𝒂𝒕 𝒚𝒐𝒖 𝒘𝒂𝒏𝒕 𝒕𝒐 𝒔𝒉𝒂𝒓𝒆."},"searchResults":{"resultPages":"{results, plural, one {# 𝒓𝒆𝒔𝒖𝒍𝒕} other {# 𝒓𝒆𝒔𝒖𝒍𝒕𝒔}} 𝒂𝒄𝒓𝒐𝒔𝒔 {pages, plural, one {# 𝒑𝒂𝒈𝒆} other {# 𝒑𝒂𝒈𝒆𝒔}}","noSearchResults":"𝑵𝒐 𝒔𝒆𝒂𝒓𝒄𝒉 𝒓𝒆𝒔𝒖𝒍𝒕𝒔. 𝑻𝒓𝒚 𝒂𝒈𝒂𝒊𝒏 𝒘𝒊𝒕𝒉 𝒂 𝒃𝒓𝒐𝒂𝒅𝒆𝒓 𝒒𝒖𝒆𝒓𝒚.","occurrences":"{n, plural, one {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆} other {# 𝒐𝒄𝒄𝒖𝒓𝒓𝒆𝒏𝒄𝒆𝒔}}"},"sidebar":{"updating":"𝑼𝒑𝒅𝒂𝒕𝒊𝒏𝒈 𝒅𝒐𝒄𝒖𝒄𝒎𝒆𝒏𝒕...","original":"𝑶𝒓𝒊𝒈𝒊𝒏𝒂𝒍 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 (𝑷𝑫𝑭) »","related":"𝑹𝒆𝒍𝒂𝒕𝒆𝒅 𝑨𝒓𝒕𝒊𝒄𝒍𝒆 »","contributed":"𝑪𝒐𝒏𝒕𝒓𝒊𝒃𝒖𝒕𝒆𝒅 𝒃𝒚 {name}","source":"𝑺𝒐𝒖𝒓𝒄𝒆: {source}","actions":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑨𝒄𝒕𝒊𝒐𝒏𝒔","share":"𝑺𝒉𝒂𝒓𝒆","shareDesc":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒂𝒏 𝒆𝒎𝒃𝒆𝒅 𝒐𝒓 𝒔𝒉𝒂𝒓𝒆 𝒐𝒏 𝒔𝒐𝒄𝒊𝒂𝒍 𝒎𝒆𝒅𝒊𝒂.","annotate":"𝑨𝒏𝒏𝒐𝒕𝒂𝒕𝒆","annotateDesc":"𝑴𝒂𝒌𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒌𝒆𝒆𝒑 𝒏𝒐𝒕𝒆𝒔 𝒐𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","redact":"𝑹𝒆𝒅𝒂𝒄𝒕","redactDesc":"𝑪𝒓𝒆𝒂𝒕𝒆 𝒓𝒆𝒅𝒂𝒄𝒕𝒊𝒐𝒏𝒔 𝒐𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒕𝒐 𝒉𝒊𝒅𝒆 𝒕𝒆𝒙𝒕. 𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒍𝒍 𝒓𝒆𝒑𝒓𝒐𝒄𝒆𝒔𝒔 𝒂𝒇𝒕𝒆𝒓𝒘𝒂𝒓𝒅𝒔.","modify":"𝑴𝒐𝒅𝒊𝒇𝒚 𝑷𝒂𝒈𝒆𝒔","modifyDesc":"𝑹𝒆𝒂𝒓𝒓𝒂𝒏𝒈𝒆, 𝒓𝒐𝒕𝒂𝒕𝒆, 𝒅𝒆𝒍𝒆𝒕𝒆, 𝒊𝒏𝒔𝒆𝒓𝒕, 𝒂𝒏𝒅 𝒔𝒑𝒍𝒊𝒕 𝒑𝒂𝒈𝒆𝒔.","info":"𝑬𝒅𝒊𝒕 𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝑰𝒏𝒇𝒐","infoDesc":"𝑴𝒐𝒅𝒊𝒇𝒚 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒏𝒇𝒐𝒓𝒎𝒂𝒕𝒊𝒐𝒏 𝒍𝒊𝒌𝒆 𝒅𝒆𝒔𝒄𝒓𝒊𝒑𝒕𝒊𝒐𝒏 𝒂𝒏𝒅 𝒓𝒆𝒍𝒂𝒕𝒆𝒅 𝑼𝑹𝑳.","data":"𝑬𝒅𝒊𝒕 𝑻𝒂𝒈𝒔 𝒂𝒏𝒅 𝑫𝒂𝒕𝒂","dataDesc":"𝑨𝒅𝒅 𝒕𝒂𝒈𝒔 𝒂𝒏𝒅 𝒌𝒆𝒚/𝒗𝒂𝒍𝒖𝒆 𝒑𝒂𝒊𝒓𝒔 𝒕𝒐 𝒄𝒂𝒕𝒆𝒈𝒐𝒓𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕.","sections":"𝑬𝒅𝒊𝒕 𝑺𝒆𝒄𝒕𝒊𝒐𝒏𝒔","sectionsDesc":"𝑨𝒅𝒅 𝒔𝒆𝒄𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒐𝒓𝒈𝒂𝒏𝒊𝒛𝒆 𝒚𝒐𝒖𝒓 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒘𝒊𝒕𝒉 𝒂 𝒕𝒂𝒃𝒍𝒆 𝒐𝒇 𝒄𝒐𝒏𝒕𝒆𝒏𝒕𝒔.","privateNote":"𝑨𝒅𝒅 𝑷𝒓𝒊𝒗𝒂𝒕𝒆 𝑵𝒐𝒕𝒆","privateNoteDesc":"𝑴𝒂𝒌𝒆 𝒂𝒏𝒏𝒐𝒕𝒂𝒕𝒊𝒐𝒏𝒔 𝒕𝒐 𝒌𝒆𝒆𝒑 𝒏𝒐𝒕𝒆𝒔 𝒐𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕."},"viewer":{"notFound":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒏𝒐𝒕 𝒇𝒐𝒖𝒏𝒅","notFoundDesc":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅 𝒆𝒊𝒕𝒉𝒆𝒓 𝒅𝒐𝒆𝒔 𝒏𝒐𝒕 𝒆𝒙𝒊𝒔𝒕 𝒐𝒓 𝒚𝒐𝒖 𝒍𝒂𝒄𝒌 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 𝒕𝒐 𝒂𝒄𝒄𝒆𝒔𝒔 𝒊𝒕","processing":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒊𝒔 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈","processingDesc":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅 𝒊𝒔 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒂𝒏𝒅 𝒘𝒊𝒍𝒍 𝒂𝒖𝒕𝒐𝒎𝒂𝒕𝒊𝒄𝒂𝒍𝒍𝒚 𝒓𝒆𝒇𝒓𝒆𝒔𝒉 𝒘𝒉𝒆𝒏 𝒊𝒕 𝒊𝒔 𝒓𝒆𝒂𝒅𝒚","error":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒉𝒂𝒔 𝒆𝒏𝒄𝒐𝒖𝒏𝒕𝒆𝒓𝒆𝒅 𝒂𝒏 𝒆𝒓𝒓𝒐𝒓","errorDesc":"𝑨 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒆𝒓𝒓𝒐𝒓 𝒉𝒂𝒔 𝒃𝒆𝒆𝒏 𝒆𝒏𝒄𝒐𝒖𝒏𝒕𝒆𝒓𝒆𝒅 𝒊𝒏 𝒕𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅","accessible":"𝑫𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒏𝒐𝒕 𝒂𝒄𝒄𝒆𝒔𝒔𝒊𝒃𝒍𝒆","accessibleDesc":"𝑻𝒉𝒆 𝒅𝒐𝒄𝒖𝒎𝒆𝒏𝒕 𝒚𝒐𝒖 𝒓𝒆𝒒𝒖𝒆𝒔𝒕𝒆𝒅 𝒊𝒔 𝒔𝒕𝒊𝒍𝒍 𝒑𝒓𝒐𝒄𝒆𝒔𝒔𝒊𝒏𝒈 𝒐𝒓 𝒚𝒐𝒖 𝒍𝒂𝒄𝒌 𝒑𝒆𝒓𝒎𝒊𝒔𝒔𝒊𝒐𝒏 𝒕𝒐 𝒂𝒄𝒄𝒆𝒔𝒔 𝒕𝒐 𝒊𝒕"}}');
-./public/9523.51f3de085ff5f608790b.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="4ec5536a-b3b0-451f-b37b-9561b1a8ac44",e._sentryDebugIdIdentifier="sentry-dbid-4ec5536a-b3b0-451f-b37b-9561b1a8ac44")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[9523],{9523:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"𝕰𝖒𝖆𝖎𝖑 𝖆𝖉𝖉𝖗𝖊𝖘𝖘","loading":"𝕷𝖔𝖆𝖉𝖎𝖓𝖌...","documentCloud":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉","home":"𝕳𝖔𝖒𝖊"},"homeTemplate":{"signedIn":"𝕾𝖎𝖌𝖓𝖊𝖉 𝖎𝖓 𝖆𝖘 {name}","signOut":"𝕾𝖎𝖌𝖓 𝖔𝖚𝖙","signIn":"𝕾𝖎𝖌𝖓 𝖎𝖓","signUp":"𝕾𝖎𝖌𝖓 𝖚𝖕","goToApp":"𝕲𝖔 𝖙𝖔 𝖆𝖕𝖕"},"accessToggle":{"public":"𝕹𝖔𝖙𝖊 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖆𝖓𝖞𝖔𝖓𝖊 𝖜𝖎𝖙𝖍 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","collaborator":"𝕹𝖔𝖙𝖊 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖆𝖓𝖞𝖔𝖓𝖊 𝖜𝖍𝖔 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","private":"𝕹𝖔𝖙𝖊 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚 𝖆𝖑𝖔𝖓𝖊.","publicName":"𝕻𝖚𝖇𝖑𝖎𝖈","collaboratorName":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗","privateName":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊"},"accessIcon":{"private":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝕬𝖈𝖈𝖊𝖘𝖘","organization":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖙𝖔 𝖄𝖔𝖚𝖗 𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","public":"𝕻𝖚𝖇𝖑𝖎𝖈 𝕬𝖈𝖈𝖊𝖘𝖘","privateExplanation":"𝕺𝖓𝖑𝖞 𝖞𝖔𝖚 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","organizationExplanation":"𝕺𝖓𝖑𝖞 𝖒𝖊𝖒𝖇𝖊𝖗𝖘 𝖔𝖋 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","publicExplanation":"𝕬𝖓𝖞𝖔𝖓𝖊 𝖈𝖆𝖓 𝖘𝖊𝖆𝖗𝖈𝖍 𝖆𝖓𝖉 𝖛𝖎𝖊𝖜 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙"},"appearanceCustomizer":{"customizeAppearance":"𝕮𝖚𝖘𝖙𝖔𝖒𝖎𝖟𝖊 𝕬𝖕𝖕𝖊𝖆𝖗𝖆𝖓𝖈𝖊","hide":"𝕳𝖎𝖉𝖊 𝖍𝖊𝖑𝖕 𝖙𝖊𝖝𝖙","show":"𝕾𝖍𝖔𝖜 𝖍𝖊𝖑𝖕 𝖙𝖊𝖝𝖙"},"appearanceDimension":{"responsive":"𝕬𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","fixed":"𝕱𝖎𝖝𝖊𝖉"},"calendar":{"jan":"𝕵𝖆𝖓𝖚𝖆𝖗𝖞","feb":"𝕱𝖊𝖇𝖗𝖚𝖆𝖗𝖞","mar":"𝕸𝖆𝖗𝖈𝖍","apr":"𝕬𝖕𝖗𝖎𝖑","may":"𝕸𝖆𝖞","jun":"𝕵𝖚𝖓𝖊","jul":"𝕵𝖚𝖑𝖞","aug":"𝕬𝖚𝖌𝖚𝖘𝖙","sep":"𝕾𝖊𝖕𝖙𝖊𝖒𝖇𝖊𝖗","oct":"𝕺𝖈𝖙𝖔𝖇𝖊𝖗","nov":"𝕹𝖔𝖛𝖊𝖒𝖇𝖊𝖗","dec":"𝕯𝖊𝖈𝖊𝖒𝖇𝖊𝖗","hourShortcode":"𝕳𝕳","minuteShortcode":"𝕸𝕸"},"dialog":{"cancel":"𝕮𝖆𝖓𝖈𝖊𝖑","delete":"𝕯𝖊𝖑𝖊𝖙𝖊","done":"𝕯𝖔𝖓𝖊","edit":"𝕰𝖉𝖎𝖙","remove":"𝕽𝖊𝖒𝖔𝖛𝖊","save":"𝕾𝖆𝖛𝖊","create":"𝕮𝖗𝖊𝖆𝖙𝖊","ok":"𝕺𝖐","update":"𝖀𝖕𝖉𝖆𝖙𝖊","dismiss":"𝕯𝖎𝖘𝖒𝖎𝖘𝖘","continue":"𝕮𝖔𝖓𝖙𝖎𝖓𝖚𝖊"},"dialogAccessDialog":{"changeAccess":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖋𝖔𝖗 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","selectAccess":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖆𝖓 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","public":"𝕻𝖚𝖇𝖑𝖎𝖈 𝖆𝖈𝖈𝖊𝖘𝖘","publicDesc":"𝕬𝖓𝖞𝖔𝖓𝖊 𝖔𝖓 𝖙𝖍𝖊 𝖎𝖓𝖙𝖊𝖗𝖓𝖊𝖙 𝖈𝖆𝖓 𝖘𝖊𝖆𝖗𝖈𝖍 𝖋𝖔𝖗 𝖆𝖓𝖉 𝖛𝖎𝖊𝖜 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","verifiedHelp":"𝕺𝖓𝖑𝖞 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖚𝖘𝖊𝖗𝖘 𝖔𝖗 𝖒𝖊𝖒𝖇𝖊𝖗𝖘 𝖔𝖋 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓𝖘 𝖈𝖆𝖓 𝖒𝖆𝖐𝖊 𝖚𝖕𝖑𝖔𝖆𝖉𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕴𝖋 𝖞𝖔𝖚\'𝖗𝖊 𝖆 𝖏𝖔𝖚𝖗𝖓𝖆𝖑𝖎𝖘𝖙 𝖔𝖗 𝖔𝖙𝖍𝖊𝖗𝖜𝖎𝖘𝖊 𝖜𝖔𝖗𝖐 𝖎𝖓 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖎𝖓𝖌 𝖛𝖊𝖙𝖙𝖊𝖉 𝖒𝖆𝖙𝖊𝖗𝖎𝖆𝖑𝖘 𝖙𝖔 𝖎𝖓𝖋𝖔𝖗𝖒 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈, 𝖑𝖊𝖆𝖗𝖓 𝖒𝖔𝖗𝖊 𝖆𝖓𝖉 𝖗𝖊𝖖𝖚𝖊𝖘𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓 𝖍𝖊𝖗𝖊.","privateToOrg":"𝖄𝖔𝖚 𝖈𝖆𝖓’𝖙 𝖈𝖍𝖆𝖓𝖌𝖊 𝖙𝖍𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑 𝖙𝖔 “𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓” 𝖇𝖊𝖈𝖆𝖚𝖘𝖊 {n, plural, one {𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘} other {𝖔𝖓𝖊 𝖔𝖗 𝖒𝖔𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖆𝖗𝖊}} 𝖆𝖘𝖘𝖔𝖈𝖎𝖆𝖙𝖊𝖉 𝖜𝖎𝖙𝖍 𝖞𝖔𝖚𝖗 𝖎𝖓𝖉𝖎𝖛𝖎𝖉𝖚𝖆𝖑 𝖆𝖈𝖈𝖔𝖚𝖓𝖙, 𝖓𝖔𝖙 𝖆𝖓 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓. 𝕿𝖔 𝖆𝖉𝖉 {n, plural, one {𝖎𝖙} other {𝖙𝖍𝖊𝖒}} 𝖙𝖔 𝖆𝖓 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓, 𝖘𝖊𝖑𝖊𝖈𝖙 {n, plural, one {𝖎𝖙} other {𝖙𝖍𝖊𝖒}} 𝖋𝖗𝖔𝖒 𝖙𝖍𝖊 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙 𝖛𝖎𝖊𝖜 𝖆𝖓𝖉 𝖈𝖑𝖎𝖈𝖐 “𝕮𝖍𝖆𝖓𝖌𝖊 𝕺𝖜𝖓𝖊𝖗.” 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖏𝖔𝖎𝖓 𝖔𝖗 𝖈𝖗𝖊𝖆𝖙𝖊 𝖆𝖓 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖔𝖓 𝖙𝖍𝖎𝖘 𝖕𝖆𝖌𝖊.","private":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖆𝖈𝖈𝖊𝖘𝖘","privateDesc":"𝕺𝖓𝖑𝖞 𝖕𝖊𝖔𝖕𝖑𝖊 𝖜𝖎𝖙𝖍 𝖊𝖝𝖕𝖑𝖎𝖈𝖎𝖙 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 (𝖛𝖎𝖆 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖎𝖔𝖓) 𝖍𝖆𝖛𝖊 𝖆𝖈𝖈𝖊𝖘𝖘.","organization":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","organizationDesc":"𝕺𝖓𝖑𝖞 𝖙𝖍𝖊 𝖕𝖊𝖔𝖕𝖑𝖊 𝖎𝖓 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖍𝖆𝖛𝖊 𝖆𝖈𝖈𝖊𝖘𝖘.","schedulePublication":"𝕾𝖈𝖍𝖊𝖉𝖚𝖑𝖊 𝖕𝖚𝖇𝖑𝖎𝖈𝖆𝖙𝖎𝖔𝖓","scheduleHelp":"𝕿𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖒𝖆𝖉𝖊 𝖕𝖚𝖇𝖑𝖎𝖈 𝖆𝖙 𝖙𝖍𝖊 𝖌𝖎𝖛𝖊𝖓 𝖉𝖆𝖙𝖊 𝖆𝖓𝖉 𝖙𝖎𝖒𝖊. 𝕻𝖚𝖇𝖑𝖎𝖈𝖆𝖙𝖎𝖔𝖓 𝖙𝖎𝖒𝖊 𝖎𝖘 𝖑𝖔𝖈𝖆𝖑{timezone}.","unchanged":"𝕬𝖈𝖈𝖊𝖘𝖘 𝖎𝖘 𝖚𝖓𝖈𝖍𝖆𝖓𝖌𝖊𝖉. 𝕾𝖊𝖑𝖊𝖈𝖙 𝖆 𝖉𝖎𝖋𝖋𝖊𝖗𝖊𝖓𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑.","future":"𝕸𝖚𝖘𝖙 𝖘𝖊𝖑𝖊𝖈𝖙 𝖆 𝖙𝖎𝖒𝖊 𝖎𝖓 𝖙𝖍𝖊 𝖋𝖚𝖙𝖚𝖗𝖊","change":"𝕮𝖍𝖆𝖓𝖌𝖊"},"dialogCollaboratorDialog":{"confirm":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖒𝖔𝖛𝖊 𝖚𝖘𝖊𝖗","confirmMsg":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖗𝖊𝖒𝖔𝖛𝖊 {name} 𝖋𝖗𝖔𝖒 {title}. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","addCollaborators":"𝕬𝖉𝖉 𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘","invite":"𝕻𝖚𝖙 𝖎𝖓 𝖙𝖍𝖊 𝖊𝖒𝖆𝖎𝖑 𝖔𝖋 𝖆𝖓 𝖊𝖝𝖎𝖘𝖙𝖎𝖓𝖌 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖚𝖘𝖊𝖗 𝖇𝖊𝖑𝖔𝖜. 𝕴𝖋 𝖙𝖍𝖊𝖞 𝖉𝖔𝖓\'𝖙 𝖍𝖆𝖛𝖊 𝖆𝖓 𝖆𝖈𝖈𝖔𝖚𝖓𝖙, 𝖍𝖆𝖛𝖊 𝖙𝖍𝖊𝖒 𝖗𝖊𝖌𝖎𝖘𝖙𝖊𝖗 𝖍𝖊𝖗𝖊 𝖋𝖔𝖗 𝖋𝖗𝖊𝖊, 𝖆𝖓𝖉 𝖙𝖍𝖊𝖓 𝖆𝖘𝖐 𝖙𝖍𝖊𝖒 𝖙𝖔 𝖑𝖔𝖌 𝖎𝖓 𝖙𝖔 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖆𝖙 𝖑𝖊𝖆𝖘𝖙 𝖔𝖓𝖈𝖊.","admin":"𝕬𝖉𝖒𝖎𝖓","view":"𝖁𝖎𝖊𝖜","adminHelp":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖆𝖓𝖉 𝖎𝖙𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","editHelp":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙","viewHelp":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙","add":"𝕬𝖉𝖉","empty":"𝖄𝖔𝖚 𝖍𝖆𝖛𝖊 𝖓𝖔𝖙 𝖞𝖊𝖙 𝖆𝖉𝖉𝖊𝖉 𝖆𝖓𝖞 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖙𝖔 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙. 𝕴𝖓𝖛𝖎𝖙𝖊 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖙𝖔 𝖌𝖗𝖆𝖓𝖙 𝖔𝖙𝖍𝖊𝖗 𝖚𝖘𝖊𝖗𝖘 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖘𝖍𝖆𝖗𝖊𝖉 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖈𝖔𝖓𝖙𝖗𝖔𝖑 𝖜𝖍𝖊𝖙𝖍𝖊𝖗 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖍𝖆𝖛𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖛𝖎𝖊𝖜/𝖊𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙’𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖔𝖗 𝖇𝖊 𝖆𝖓 𝖆𝖉𝖒𝖎𝖓 𝖜𝖎𝖙𝖍 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓𝖘 𝖙𝖔 𝖎𝖓𝖛𝖎𝖙𝖊 𝖔𝖙𝖍𝖊𝖗 𝖚𝖘𝖊𝖗𝖘 𝖆𝖓𝖉 𝖊𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖎𝖙𝖘𝖊𝖑𝖋.","manageCollaborators":"𝕸𝖆𝖓𝖆𝖌𝖊 𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘","name":"𝕹𝖆𝖒𝖊","access":"𝕬𝖈𝖈𝖊𝖘𝖘","you":"(𝖞𝖔𝖚)"},"dialogDataDialog":{"confirm":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖒𝖔𝖛𝖊 𝖉𝖆𝖙𝖆 𝖕𝖔𝖎𝖓𝖙","removeMsg":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖗𝖊𝖒𝖔𝖛𝖊 𝖙𝖍𝖊 {key}{value} 𝖉𝖆𝖙𝖆 𝖕𝖔𝖎𝖓𝖙 𝖋𝖗𝖔𝖒 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","addData":"𝕬𝖉𝖉 𝕯𝖆𝖙𝖆 𝖋𝖔𝖗 {n, plural, one {𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","tag":"𝕿𝖆𝖌","value":"𝖁𝖆𝖑𝖚𝖊","key":"𝕶𝖊𝖞","keyValue":"𝕶𝖊𝖞 / 𝖁𝖆𝖑𝖚𝖊","tagInfo":"𝕬𝖉𝖉 𝖈𝖚𝖘𝖙𝖔𝖒 𝖙𝖆𝖌𝖘 𝖙𝖔 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘.","eg":"𝖊.𝖌.","exampleTagReport":"𝖗𝖊𝖕𝖔𝖗𝖙","exampleTagLawsuit":"𝖑𝖆𝖜𝖘𝖚𝖎𝖙","exampleTagEmail":"𝖊𝖒𝖆𝖎𝖑","keyValueInfo":"𝕬𝖉𝖉 𝖈𝖚𝖘𝖙𝖔𝖒 𝖐𝖊𝖞 / 𝖛𝖆𝖑𝖚𝖊 𝖕𝖆𝖎𝖗𝖘 𝖋𝖔𝖗 𝖕𝖗𝖊𝖈𝖎𝖘𝖊 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖔𝖋 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘.","exampleKVState":"𝖘𝖙𝖆𝖙𝖊:&𝖓𝖇𝖘𝖕;𝕮𝖆𝖑𝖎𝖋𝖔𝖗𝖓𝖎𝖆","exampleKVYear":"𝖞𝖊𝖆𝖗:&𝖓𝖇𝖘𝖕;𝟐𝟎𝟏𝟔","exampleKVType":"𝖙𝖞𝖕𝖊:&𝖓𝖇𝖘𝖕;𝖒𝖊𝖒𝖔","enterTag":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖙𝖆𝖌","enterKey":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖐𝖊𝖞","keyInvalid":"𝕶𝖊𝖞𝖘 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖈𝖔𝖓𝖙𝖆𝖎𝖓 𝖑𝖊𝖙𝖙𝖊𝖗𝖘, 𝖓𝖚𝖒𝖇𝖊𝖗𝖘, 𝖚𝖓𝖉𝖊𝖗𝖘𝖈𝖔𝖗𝖊𝖘 (_), 𝖆𝖓𝖉 𝖉𝖆𝖘𝖍𝖊𝖘 (-)","emptyMsg":"𝖄𝖔𝖚 𝖍𝖆𝖛𝖊 𝖓𝖔𝖙 𝖞𝖊𝖙 𝖆𝖉𝖉𝖊𝖉 𝖆𝖓𝖞 𝖉𝖆𝖙𝖆 𝖙𝖔 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝕬𝖉𝖉 𝖙𝖆𝖌𝖘 𝖆𝖓𝖉 𝖐𝖊𝖞/𝖛𝖆𝖑𝖚𝖊 𝖕𝖆𝖎𝖗𝖘 𝖙𝖔 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖊 𝖆𝖓𝖉 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖋𝖎𝖑𝖙𝖊𝖗 𝖆𝖓𝖉 𝖘𝖊𝖆𝖗𝖈𝖍 𝖔𝖓 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖉𝖆𝖙𝖆 𝖙𝖔 𝖌𝖎𝖛𝖊 𝖞𝖔𝖚 𝖕𝖔𝖜𝖊𝖗𝖋𝖚𝖑 𝖈𝖔𝖓𝖙𝖗𝖔𝖑 𝖔𝖛𝖊𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙.","manageDocumentData":"𝕸𝖆𝖓𝖆𝖌𝖊 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕯𝖆𝖙𝖆","valueUnchanged":"𝖁𝖆𝖑𝖚𝖊 𝖗𝖊𝖒𝖆𝖎𝖓𝖘 𝖚𝖓𝖈𝖍𝖆𝖓𝖌𝖊𝖉","kvCannotBeEmpty":"𝕶𝖊𝖞/𝖛𝖆𝖑𝖚𝖊 𝖈𝖆𝖓𝖓𝖔𝖙 𝖇𝖊 𝖊𝖒𝖕𝖙𝖞"},"dialogReprocessDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘","reprocessDocs":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖋𝖔𝖗𝖈𝖊 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖙𝖔 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖕𝖆𝖌𝖊 𝖆𝖓𝖉 𝖎𝖒𝖆𝖌𝖊 𝖙𝖊𝖝𝖙. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","reprocessSingleDoc":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖋𝖔𝖗𝖈𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖕𝖆𝖌𝖊 𝖆𝖓𝖉 𝖎𝖒𝖆𝖌𝖊 𝖙𝖊𝖝𝖙. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","confirm":"𝕽𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘"},"dialogDeleteDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘","deleteDocs":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖕𝖊𝖗𝖒𝖆𝖓𝖊𝖓𝖙𝖑𝖞 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓"},"dialogCancelProcessingDialog":{"title":"𝕮𝖆𝖓𝖈𝖊𝖑 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","deleteDocs":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖋𝖔𝖗𝖈𝖊 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖙𝖔 𝖘𝖙𝖔𝖕 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌. 𝕬𝖋𝖙𝖊𝖗 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖍𝖆𝖘 𝖇𝖊𝖊𝖓 𝖘𝖙𝖔𝖕𝖕𝖊𝖉, 𝖆𝖓 𝖊𝖗𝖗𝖔𝖗 𝖜𝖎𝖑𝖑 𝖘𝖍𝖔𝖜 𝖆𝖋𝖙𝖊𝖗 𝖜𝖍𝖎𝖈𝖍 𝖞𝖔𝖚 𝖈𝖆𝖓 “𝕱𝖔𝖗𝖈𝖊 𝕽𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘” 𝖔𝖗 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖊 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖚𝖘𝖎𝖓𝖌 𝖙𝖍𝖊 𝕰𝖉𝖎𝖙 𝖒𝖊𝖓𝖚. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝕾𝖙𝖆𝖋𝖋-𝖔𝖓𝖑𝖞 𝖎𝖓𝖋𝖔 𝖋𝖔𝖗 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","id":"𝕴𝕯","title":"𝕿𝖎𝖙𝖑𝖊","actions":"𝕬𝖈𝖙𝖎𝖔𝖓𝖘","debug":"𝕯𝖊𝖇𝖚𝖌","viewErrors":"𝖁𝖎𝖊𝖜 𝖊𝖗𝖗𝖔𝖗𝖘","viewS3":"𝖁𝖎𝖊𝖜 𝖎𝖓 𝕾𝟑"},"dialogDocumentEmbedDialog":{"responsive":"𝕽𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊","respOn":"𝕺𝖓 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","respOnHelp":"𝕱𝖎𝖑𝖑 𝖙𝖍𝖊 𝖜𝖎𝖉𝖙𝖍 𝖔𝖋 𝖙𝖍𝖊 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖈𝖔𝖓𝖙𝖆𝖎𝖓𝖊𝖗 (𝖚𝖘𝖚𝖆𝖑𝖑𝖞 𝖜𝖔𝖗𝖐𝖘 𝖇𝖊𝖘𝖙)","respOff":"𝕺𝖋𝖋","respOffHelp":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖋𝖎𝖙 𝖙𝖍𝖊 𝖘𝖎𝖟𝖊𝖘 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖇𝖊𝖑𝖔𝖜","width":"𝖂𝖎𝖉𝖙𝖍","widthAuto":"𝖂𝖎𝖑𝖑 𝖋𝖎𝖑𝖑 𝖙𝖍𝖊 𝖆𝖛𝖆𝖎𝖑𝖆𝖇𝖑𝖊 𝖘𝖕𝖆𝖈𝖊 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖘𝖊𝖙 𝖙𝖔 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖔𝖙𝖍𝖊𝖗𝖜𝖎𝖘𝖊 𝖉𝖊𝖋𝖆𝖚𝖑𝖙𝖘 𝖙𝖔 𝟕𝟎𝟎𝖕𝖝","widthFixed":"𝕾𝖊𝖙 𝖆 𝖒𝖆𝖝𝖎𝖒𝖚𝖒 𝖜𝖎𝖉𝖙𝖍 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖔𝖗 𝖘𝖊𝖙 𝖆 𝖋𝖎𝖝𝖊𝖉 𝖘𝖎𝖟𝖊 𝖎𝖋 𝖓𝖔𝖙 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊","height":"𝕳𝖊𝖎𝖌𝖍𝖙","heightAuto":"𝕿𝖍𝖊 𝖍𝖊𝖎𝖌𝖍𝖙 𝖎𝖘 𝖇𝖆𝖘𝖊𝖉 𝖔𝖓 𝖙𝖍𝖊 𝖘𝖎𝖟𝖊 𝖔𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙, 𝖜𝖎𝖙𝖍 𝖓𝖔 𝖒𝖆𝖝𝖎𝖒𝖚𝖒 𝖘𝖎𝖟𝖊. 𝕴𝖋 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖘𝖊𝖙 𝖙𝖔 𝖙𝖍𝖊 𝖍𝖊𝖎𝖌𝖍𝖙 𝖔𝖋 𝖙𝖍𝖊 𝖇𝖗𝖔𝖜𝖘𝖊𝖗 𝖜𝖎𝖓𝖉𝖔𝖜 𝖒𝖎𝖓𝖚𝖘 𝟏𝟎𝟎𝖕𝖝","heightFixed":"𝕾𝖊𝖙 𝖆 𝖒𝖆𝖝𝖎𝖒𝖚𝖒 𝖍𝖊𝖎𝖌𝖍𝖙 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖔𝖗 𝖘𝖊𝖙 𝖆 𝖋𝖎𝖝𝖊𝖉 𝖘𝖎𝖟𝖊 𝖎𝖋 𝖓𝖔𝖙 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊","sidebarBehavior":"𝕾𝖎𝖉𝖊𝖇𝖆𝖗 𝖇𝖊𝖍𝖆𝖛𝖎𝖔𝖗","sbResponsive":"𝕽𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","sbResponsiveHelp":"𝕾𝖍𝖔𝖜 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖆𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈𝖆𝖑𝖑𝖞 𝖔𝖓 𝖑𝖆𝖗𝖌𝖊 𝖘𝖈𝖗𝖊𝖊𝖓𝖘 𝖆𝖓𝖉 𝖍𝖎𝖉𝖊 𝖔𝖓 𝖒𝖔𝖇𝖎𝖑𝖊 𝖉𝖊𝖛𝖎𝖈𝖊𝖘. 𝕴𝖓 𝖊𝖒𝖇𝖊𝖉 𝖒𝖔𝖉𝖊, 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖍𝖎𝖉𝖉𝖊𝖓","hidden":"𝕳𝖎𝖉𝖉𝖊𝖓","visible":"𝖁𝖎𝖘𝖎𝖇𝖑𝖊","visibleDefault":"𝖁𝖎𝖘𝖎𝖇𝖑𝖊 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","sbHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖇𝖞 𝖉𝖊𝖋𝖆𝖚𝖑𝖙","sbVisibleHelp":"𝕾𝖍𝖔𝖜 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖇𝖞 𝖉𝖊𝖋𝖆𝖚𝖑𝖙","titleBehavior":"𝕿𝖎𝖙𝖑𝖊 𝖇𝖊𝖍𝖆𝖛𝖎𝖔𝖗","tVisibleHelp":"𝕯𝖎𝖘𝖕𝖑𝖆𝖞 𝖙𝖍𝖊 𝖙𝖎𝖙𝖑𝖊 𝖆𝖓𝖉 𝖆𝖙𝖙𝖗𝖎𝖇𝖚𝖙𝖎𝖔𝖓 𝖎𝖓 𝖙𝖍𝖊 𝖍𝖊𝖆𝖉𝖊𝖗 𝖔𝖋 𝖙𝖍𝖊 𝖛𝖎𝖊𝖜𝖊𝖗","tHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖙𝖎𝖙𝖑𝖊 𝖎𝖓 𝖙𝖍𝖊 𝖍𝖊𝖆𝖉𝖊𝖗 𝖔𝖋 𝖙𝖍𝖊 𝖛𝖎𝖊𝖜𝖊𝖗 (𝖘𝖙𝖎𝖑𝖑 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖎𝖓 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗)","pdfLink":"𝕻𝕯𝕱 𝖑𝖎𝖓𝖐","plVisibleHelp":"𝕾𝖍𝖔𝖜 𝖆 𝖑𝖎𝖓𝖐 𝖙𝖔 𝖙𝖍𝖊 𝖗𝖆𝖜 𝕻𝕯𝕱 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖓 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗","plHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝕻𝕯𝕱 𝖑𝖎𝖓𝖐 (𝖋𝖎𝖑𝖊 𝖎𝖘 𝖘𝖙𝖎𝖑𝖑 𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊 𝖎𝖋 𝖙𝖍𝖊 𝖀𝕽𝕷 𝖎𝖘 𝖐𝖓𝖔𝖜𝖓)","fullscreenOption":"𝕱𝖚𝖑𝖑𝖘𝖈𝖗𝖊𝖊𝖓 𝖔𝖕𝖙𝖎𝖔𝖓","fsVisibleHelp":"𝕾𝖍𝖔𝖜 𝖆 𝖋𝖚𝖑𝖑𝖘𝖈𝖗𝖊𝖊𝖓 𝖎𝖈𝖔𝖓 𝖎𝖓 𝖙𝖍𝖊 𝖇𝖔𝖙𝖙𝖔𝖒-𝖗𝖎𝖌𝖍𝖙 𝖈𝖔𝖗𝖓𝖊𝖗","fsHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖋𝖚𝖑𝖑𝖘𝖈𝖗𝖊𝖊𝖓 𝖔𝖕𝖙𝖎𝖔𝖓","textMode":"𝕿𝖊𝖝𝖙 𝖒𝖔𝖉𝖊","tmVisibleHelp":"𝕾𝖍𝖔𝖜 𝖆𝖓 𝖔𝖕𝖙𝖎𝖔𝖓 𝖙𝖔 𝖛𝖎𝖊𝖜 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙’𝖘 𝖙𝖊𝖝𝖙 𝖎𝖓 𝖙𝖍𝖊 𝖛𝖎𝖊𝖜 𝖉𝖗𝖔𝖕𝖉𝖔𝖜𝖓","tmHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖊𝖝𝖙 𝖒𝖔𝖉𝖊","contributedByFormat":"𝕮𝖔𝖓𝖙𝖗𝖎𝖇𝖚𝖙𝖊𝖉 𝖇𝖞 𝖋𝖔𝖗𝖒𝖆𝖙","cbfUserAndOrg":"𝖀𝖘𝖊𝖗 𝖆𝖓𝖉 𝖔𝖗𝖌 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","cbfUserAndOrgHelp":"𝕾𝖍𝖔𝖜 𝖆 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙’𝖘 𝖆𝖙𝖙𝖗𝖎𝖇𝖚𝖙𝖎𝖔𝖓 𝖆𝖘 𝖙𝖍𝖊 𝖚𝖘𝖊𝖗 𝖓𝖆𝖒𝖊 𝖋𝖔𝖑𝖑𝖔𝖜𝖊𝖉 𝖇𝖞 𝖙𝖍𝖊 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","cbfOrgOnly":"𝕺𝖗𝖌 𝖔𝖓𝖑𝖞","cbfOrgOnlyHelp":"𝕬𝖙𝖙𝖗𝖎𝖇𝖚𝖙𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖏𝖚𝖘𝖙 𝖙𝖍𝖊 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","share":"𝕾𝖍𝖆𝖗𝖊 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊"},"dialogDocumentInformationDialog":{"editInformation":"𝕰𝖉𝖎𝖙 𝕴𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓 𝖋𝖔𝖗 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}"},"dialogRedactDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘","description":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖗𝖊𝖉𝖆𝖈𝖙 𝖙𝖍𝖊 𝖈𝖚𝖗𝖗𝖊𝖓𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙❓ 𝕴𝖋 𝖞𝖔𝖚 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊, 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖛𝖎𝖊𝖜𝖊𝖗 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖎𝖓𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊 𝖙𝖊𝖒𝖕𝖔𝖗𝖆𝖗𝖎𝖑𝖞 𝖜𝖍𝖎𝖑𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖊𝖘 𝖜𝖎𝖙𝖍 𝖙𝖍𝖊 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘 𝖎𝖓 𝖕𝖑𝖆𝖈𝖊. 𝕿𝖍𝖎𝖘 𝖈𝖍𝖆𝖓𝖌𝖊 𝖎𝖘 𝖎𝖗𝖗𝖊𝖛𝖊𝖗𝖘𝖎𝖇𝖑𝖊."},"dialogModifyDialog":{"title":"𝕬𝖕𝖕𝖑𝖞 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘","description":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖒𝖔𝖉𝖎𝖋𝖞 𝖙𝖍𝖊 𝖈𝖚𝖗𝖗𝖊𝖓𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙❓ 𝕴𝖋 𝖞𝖔𝖚 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊, 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖛𝖎𝖊𝖜𝖊𝖗 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖎𝖓𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊 𝖙𝖊𝖒𝖕𝖔𝖗𝖆𝖗𝖎𝖑𝖞 𝖜𝖍𝖎𝖑𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖊𝖘 𝖜𝖎𝖙𝖍 𝖙𝖍𝖊 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘. 𝕿𝖍𝖎𝖘 𝖈𝖍𝖆𝖓𝖌𝖊 𝖎𝖘 𝖎𝖗𝖗𝖊𝖛𝖊𝖗𝖘𝖎𝖇𝖑𝖊.","closeTitle":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖈𝖑𝖔𝖘𝖊","closeWarning":"𝖄𝖔𝖚 𝖜𝖎𝖑𝖑 𝖑𝖔𝖘𝖊 𝖆𝖑𝖑 𝖞𝖔𝖚𝖗 𝖚𝖓𝖆𝖕𝖕𝖑𝖎𝖊𝖉 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘. 𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖆𝖓𝖙 𝖙𝖔 𝖕𝖗𝖔𝖈𝖊𝖊𝖉❓"},"dialogDeleteNoteDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖉𝖊𝖑𝖊𝖙𝖊","description":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖊 𝖈𝖚𝖗𝖗𝖊𝖓𝖙 𝖓𝖔𝖙𝖊❓"},"dialogEditSectionsDialog":{"confirmDelete":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖉𝖊𝖑𝖊𝖙𝖊","proceedingWillRemove":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖗𝖊𝖒𝖔𝖛𝖊 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖘𝖊𝖈𝖙𝖎𝖔𝖓 (𝖕. {page} {title}). 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","editSections":"𝕰𝖉𝖎𝖙 𝕾𝖊𝖈𝖙𝖎𝖔𝖓𝖘","manageSections":"𝕸𝖆𝖓𝖆𝖌𝖊 𝖘𝖊𝖈𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍 𝖆 𝖙𝖆𝖇𝖑𝖊 𝖔𝖋 𝖈𝖔𝖓𝖙𝖊𝖓𝖙𝖘.","pageAbbrevNo":"𝖕. {n}","pageAbbrev":"𝖕.","empty":"𝖄𝖔𝖚 𝖍𝖆𝖛𝖊 𝖓𝖔𝖙 𝖆𝖉𝖉𝖊𝖉 𝖆𝖓𝖞 𝖘𝖊𝖈𝖙𝖎𝖔𝖓𝖘","edit":"𝕰𝖉𝖎𝖙 𝖙𝖍𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖘𝖊𝖈𝖙𝖎𝖔𝖓","add":"𝕬𝖉𝖉 𝖆 𝖓𝖊𝖜 𝖘𝖊𝖈𝖙𝖎𝖔𝖓","title":"𝕿𝖎𝖙𝖑𝖊","missingTitle":"𝕻𝖑𝖊𝖆𝖘𝖊 𝖊𝖓𝖙𝖊𝖗 𝖆 𝖙𝖎𝖙𝖑𝖊","updateTitle":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖓𝖊𝖜 𝖙𝖎𝖙𝖑𝖊 𝖔𝖗 𝖕𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗","uniquePageNumber":"𝖄𝖔𝖚 𝖒𝖚𝖘𝖙 𝖊𝖓𝖙𝖊𝖗 𝖆 𝖚𝖓𝖎𝖖𝖚𝖊 𝖕𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗","invalidPageNumber":"𝕻𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗 𝖎𝖘 𝖎𝖓𝖛𝖆𝖑𝖎𝖉"},"dialogEmbedDialog":{"updatingDocument":"𝖀𝖕𝖉𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙...","makingPublic":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖇𝖊𝖎𝖓𝖌 𝖒𝖆𝖉𝖊 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕿𝖍𝖎𝖘 𝖒𝖆𝖞 𝖙𝖆𝖐𝖊 𝖆 𝖒𝖎𝖓𝖚𝖙𝖊 𝖔𝖗 𝖙𝖜𝖔.","wouldMakePublic":"𝖂𝖔𝖚𝖑𝖉 𝖞𝖔𝖚 𝖑𝖎𝖐𝖊 𝖙𝖔 𝖒𝖆𝖐𝖊 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖕𝖚𝖇𝖑𝖎𝖈 𝖇𝖊𝖋𝖔𝖗𝖊 𝖘𝖍𝖆𝖗𝖎𝖓𝖌❓","notPublic":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖓𝖔𝖙 𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕴𝖋 𝖞𝖔𝖚 𝖊𝖒𝖇𝖊𝖉 𝖔𝖗 𝖑𝖎𝖓𝖐 𝖎𝖙, 𝖔𝖓𝖑𝖞 𝖞𝖔𝖚 𝖆𝖓𝖉 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖆𝖇𝖑𝖊 𝖙𝖔 𝖛𝖎𝖊𝖜 𝖎𝖙 𝖚𝖓𝖙𝖎𝖑 𝖎𝖙 𝖎𝖘 𝖒𝖆𝖉𝖊 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕮𝖑𝖎𝖈𝖐 𝖇𝖊𝖑𝖔𝖜 𝖜𝖍𝖊𝖓 𝖞𝖔𝖚’𝖗𝖊 𝖗𝖊𝖆𝖉𝖞 𝖙𝖔 𝖕𝖚𝖇𝖑𝖎𝖘𝖍 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈.","makePublic":"𝕸𝖆𝖐𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖕𝖚𝖇𝖑𝖎𝖈","leave":"𝕷𝖊𝖆𝖛𝖊 𝖆𝖘 𝖎𝖘","selectShare":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖘𝖍𝖆𝖗𝖊 𝖔𝖕𝖙𝖎𝖔𝖓","selectShareHelp":"𝕮𝖍𝖔𝖔𝖘𝖊 𝖜𝖍𝖊𝖙𝖍𝖊𝖗 𝖙𝖔 𝖘𝖍𝖆𝖗𝖊 𝖙𝖍𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖔𝖗 𝖏𝖚𝖘𝖙 𝖆 𝖕𝖆𝖌𝖊 𝖔𝖗 𝖓𝖔𝖙𝖊.","shareDoc":"𝕾𝖍𝖆𝖗𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","shareDocHelp":"𝕷𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙. (𝕿𝖍𝖎𝖘 𝖎𝖘 𝖙𝖍𝖊 𝖒𝖔𝖘𝖙 𝖈𝖔𝖒𝖒𝖔𝖓𝖑𝖞 𝖚𝖘𝖊𝖉 𝖘𝖍𝖆𝖗𝖊 𝖔𝖕𝖙𝖎𝖔𝖓.)","sharePage":"𝕾𝖍𝖆𝖗𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖈 𝖕𝖆𝖌𝖊","sharePageHelp":"𝕷𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖆 𝖘𝖎𝖓𝖌𝖑𝖊 𝖕𝖆𝖌𝖊 𝖔𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙. 𝖀𝖘𝖊𝖋𝖚𝖑 𝖋𝖔𝖗 𝖍𝖎𝖌𝖍𝖑𝖎𝖌𝖍𝖙𝖎𝖓𝖌 𝖆 𝖕𝖆𝖌𝖊 𝖊𝖝𝖈𝖊𝖗𝖕𝖙.","shareNote":"𝕾𝖍𝖆𝖗𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖈 𝖓𝖔𝖙𝖊","shareNoteHelpHasNote":"𝕷𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖆 𝖓𝖔𝖙𝖊 𝖜𝖎𝖙𝖍𝖎𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙. 𝖀𝖘𝖊𝖋𝖚𝖑 𝖋𝖔𝖗 𝖍𝖎𝖌𝖍𝖑𝖎𝖌𝖍𝖙𝖎𝖓𝖌 𝖆 𝖗𝖊𝖌𝖎𝖔𝖓 𝖔𝖋 𝖆 𝖕𝖆𝖌𝖊.","shareNoteHelpNoNote":"𝕺𝖓𝖈𝖊 𝖞𝖔𝖚 𝖆𝖉𝖉 𝖓𝖔𝖙𝖊𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙, 𝖚𝖘𝖊 𝖙𝖍𝖎𝖘 𝖋𝖊𝖆𝖙𝖚𝖗𝖊 𝖙𝖔 𝖑𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖊𝖒."},"dialogErrorDialog":{"errorOccurred":"𝕬𝖓 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉","unexpectedErrorOccurred":"𝕬𝖓 𝖚𝖓𝖊𝖝𝖕𝖊𝖈𝖙𝖊𝖉 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉","tryAgain":"𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖑𝖆𝖙𝖊𝖗.","close":"𝕮𝖑𝖔𝖘𝖊","refresh":"𝕽𝖊𝖋𝖗𝖊𝖘𝖍"},"dialogNoteEmbedDialog":{"embedNote":"𝕰𝖒𝖇𝖊𝖉 𝖆 𝖓𝖔𝖙𝖊 𝖔𝖋 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖓𝖔𝖙𝖊 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖔𝖗 𝖕𝖔𝖘𝖙:"},"dialogPageEmbedDialog":{"embedPage":"𝕰𝖒𝖇𝖊𝖉 𝖆 𝖕𝖆𝖌𝖊 𝖔𝖋 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖕𝖆𝖌𝖊 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖔𝖗 𝖕𝖔𝖘𝖙:","selectPage":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉:","page":"𝕻𝖆𝖌𝖊 {n} (𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊)","otherPage":"𝕺𝖙𝖍𝖊𝖗 𝖕𝖆𝖌𝖊","enterPageNumber":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖋𝖔𝖗 {name}","selectAccess":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖆𝖓 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 {name} 𝖎𝖓 {title}","adminAccess":"𝕬𝖉𝖒𝖎𝖓 𝕬𝖈𝖈𝖊𝖘𝖘","editAccess":"𝕰𝖉𝖎𝖙 𝕬𝖈𝖈𝖊𝖘𝖘","viewAccess":"𝖁𝖎𝖊𝖜 𝕬𝖈𝖈𝖊𝖘𝖘","adminHelp":"𝕿𝖍𝖎𝖘 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖆𝖓𝖉 𝖎𝖙𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝕿𝖍𝖊 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖎𝖓𝖛𝖎𝖙𝖊 𝖚𝖘𝖊𝖗𝖘, 𝖉𝖊𝖑𝖊𝖙𝖊 𝖚𝖘𝖊𝖗𝖘, 𝖆𝖓𝖉 𝖗𝖊𝖒𝖔𝖛𝖊 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙.","editHelp":"𝕿𝖍𝖎𝖘 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖇𝖚𝖙 𝖈𝖆𝖓𝖓𝖔𝖙 𝖊𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖎𝖙𝖘𝖊𝖑𝖋.","viewHelp":"𝕿𝖍𝖎𝖘 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖇𝖚𝖙 𝖈𝖆𝖓𝖓𝖔𝖙 𝖊𝖉𝖎𝖙 𝖙𝖍𝖊𝖒 𝖔𝖗 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙.","invalidAccess":"𝕬𝖈𝖈𝖊𝖘𝖘 𝖎𝖘 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖘𝖊𝖙 𝖙𝖔 {access}. 𝕾𝖊𝖑𝖊𝖈𝖙 𝖆 𝖉𝖎𝖋𝖋𝖊𝖗𝖊𝖓𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑.","changeAccess":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖆𝖈𝖈𝖊𝖘𝖘"},"dialogOwnerDialog":{"selectUser":"𝖀𝖘𝖊𝖗 𝖒𝖚𝖘𝖙 𝖇𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉","selectOrg":"𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖒𝖚𝖘𝖙 𝖇𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉","changeOwner":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖔𝖜𝖓𝖊𝖗 𝖋𝖔𝖗 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","accessWarning":"𝖂𝖆𝖗𝖓𝖎𝖓𝖌: 𝖄𝖔𝖚 𝖒𝖆𝖞 𝖑𝖔𝖘𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖆𝖘 𝖆 𝖗𝖊𝖘𝖚𝖑𝖙 𝖔𝖋 𝖈𝖍𝖆𝖓𝖌𝖎𝖓𝖌 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖔𝖜𝖓𝖊𝖗","user":"𝖀𝖘𝖊𝖗:","filterUsers":"𝕿𝖞𝖕𝖊 𝖙𝖔 𝖋𝖎𝖑𝖙𝖊𝖗 𝖚𝖘𝖊𝖗𝖘...","filterOrgs":"𝕿𝖞𝖕𝖊 𝖙𝖔 𝖋𝖎𝖑𝖙𝖊𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓𝖘..."},"dialogProjectDialog":{"confirmDelete":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖉𝖊𝖑𝖊𝖙𝖊","deleteProject":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖆𝖓𝖙 𝖙𝖔 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 ({project})❓","editProject":"𝕰𝖉𝖎𝖙 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","createProject":"𝕮𝖗𝖊𝖆𝖙𝖊 𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","title":"𝕿𝖎𝖙𝖑𝖊...","projectDesc":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙 𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 (𝖔𝖕𝖙𝖎𝖔𝖓𝖆𝖑)","manageCollabs":"𝕸𝖆𝖓𝖆𝖌𝖊 𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘","share":"𝕾𝖍𝖆𝖗𝖊 / 𝕰𝖒𝖇𝖊𝖉 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","enterTitle":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖙𝖎𝖙𝖑𝖊","changeTitle":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖙𝖍𝖊 𝖙𝖎𝖙𝖑𝖊 𝖔𝖗 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓"},"dialogProjectEmbedDialog":{"share":"𝕾𝖍𝖆𝖗𝖊 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖔𝖗 𝖕𝖔𝖘𝖙:","invalid":"𝕴𝖓𝖛𝖆𝖑𝖎𝖉 𝖕𝖗𝖔𝖏𝖊𝖈𝖙","cannotEmbed":"𝕮𝖆𝖓𝖓𝖔𝖙 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙, 𝖆𝖘 𝖎𝖙 𝖉𝖔𝖊𝖘 𝖓𝖔𝖙 𝖆𝖕𝖕𝖊𝖆𝖗 𝖙𝖔 𝖊𝖝𝖎𝖘𝖙."},"htmlEditor":{"preview":"𝕻𝖗𝖊𝖛𝖎𝖊𝖜:"},"image":{"error":"𝕬𝖓 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉. 𝕿𝖗𝖞 𝖗𝖊𝖋𝖗𝖊𝖘𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊"},"omniselect":{"filter":"𝕿𝖞𝖕𝖊 𝖙𝖔 𝖋𝖎𝖑𝖙𝖊𝖗 𝖑𝖆𝖓𝖌𝖚𝖆𝖌𝖊","noResults":"𝕹𝖔 𝖗𝖊𝖘𝖚𝖑𝖙𝖘. 𝕮𝖑𝖎𝖈𝖐 𝖙𝖔 𝖈𝖑𝖊𝖆𝖗 𝖋𝖎𝖑𝖙𝖊𝖗."},"shareOptions":{"errorText":"𝕬𝖓 𝖚𝖓𝖊𝖝𝖕𝖊𝖈𝖙𝖊𝖉 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉. 𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖑𝖆𝖙𝖊𝖗.","copyHtml":"𝕮𝖔𝖕𝖞 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊","addShortcode":"𝕬𝖉𝖉 𝖙𝖍𝖎𝖘 𝖘𝖍𝖔𝖗𝖙𝖈𝖔𝖉𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖂𝖔𝖗𝖉𝕻𝖗𝖊𝖘𝖘 𝖈𝖔𝖓𝖙𝖊𝖓𝖙 —","pluginRequired":"𝖕𝖑𝖚𝖌𝖎𝖓 𝖗𝖊𝖖𝖚𝖎𝖗𝖊𝖉","copyShortcode":"𝕮𝖔𝖕𝖞 𝖘𝖍𝖔𝖗𝖙𝖈𝖔𝖉𝖊","copyUrl":"𝕮𝖔𝖕𝖞 𝖀𝕽𝕷"},"specialMessage":{"contactUs":"𝕮𝖔𝖓𝖙𝖆𝖈𝖙 𝖚𝖘 𝖜𝖎𝖙𝖍 𝖇𝖚𝖌 𝖗𝖊𝖕𝖔𝖗𝖙𝖘, 𝖖𝖚𝖊𝖘𝖙𝖎𝖔𝖓𝖘, 𝖆𝖓𝖉 𝖘𝖚𝖌𝖌𝖊𝖘𝖙𝖎𝖔𝖓𝖘."},"uploadOptions":{"documentLang":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖑𝖆𝖓𝖌𝖚𝖆𝖌𝖊:","forceOcr":"𝕱𝖔𝖗𝖈𝖊 𝕺𝕮𝕽:"},"actionBar":{"selectDocs":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖘𝖔𝖒𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖙𝖔 𝖗𝖊𝖛𝖊𝖆𝖑 𝖊𝖉𝖎𝖙 𝖆𝖈𝖙𝖎𝖔𝖓𝖘","noPerms":"𝖄𝖔𝖚 𝖉𝖔 𝖓𝖔𝖙 𝖍𝖆𝖛𝖊 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 𝖙𝖔 𝖊𝖉𝖎𝖙 𝖆𝖑𝖑 𝖔𝖋 𝖙𝖍𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","editMenu":"𝕰𝖉𝖎𝖙","projectsMenu":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙𝖘"},"authSection":{"help":"𝕳𝖊𝖑𝖕","language":"𝕷𝖆𝖓𝖌𝖚𝖆𝖌𝖊","tips":"𝕿𝖎𝖕𝖘 𝖆𝖓𝖉 𝕿𝖗𝖎𝖈𝖐𝖘","searchDocs":"𝕾𝖊𝖆𝖗𝖈𝖍 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖆𝖙𝖎𝖔𝖓","apiDocs":"𝕬𝕻𝕴 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖆𝖙𝖎𝖔𝖓","emailUs":"𝕰𝖒𝖆𝖎𝖑 𝖀𝖘","acctSettings":"𝕬𝖈𝖈𝖔𝖚𝖓𝖙 𝕾𝖊𝖙𝖙𝖎𝖓𝖌𝖘","signOut":"𝕾𝖎𝖌𝖓 𝖔𝖚𝖙","changeOrg":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","personalAcct":"𝕻𝖊𝖗𝖘𝖔𝖓𝖆𝖑 𝕬𝖈𝖈𝖔𝖚𝖓𝖙","signIn":"𝕾𝖎𝖌𝖓 𝖎𝖓"},"documents":{"yourDocuments":"𝖄𝖔𝖚𝖗 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","searchResults":"𝕾𝖊𝖆𝖗𝖈𝖍 𝕽𝖊𝖘𝖚𝖑𝖙𝖘","accessDocuments":"𝖄𝖔𝖚𝖗 {access}𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","nameDocuments":"{name}\'𝖘 {access}𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","allDocuments":"𝕬𝖑𝖑 {access}𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","mustBeVerified":"𝖄𝖔𝖚 𝖒𝖚𝖘𝖙 𝖇𝖊 𝖆 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖏𝖔𝖚𝖗𝖓𝖆𝖑𝖎𝖘𝖙 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","upload":"𝖀𝖕𝖑𝖔𝖆𝖉","dropFile":"𝕯𝖗𝖔𝖕 𝖋𝖎𝖑𝖊 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉"},"document":{"open":"𝕺𝖕𝖊𝖓","updating":"𝖀𝖕𝖉𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙...","processing":"𝕻𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","processingError":"𝕬𝖓 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉 𝖙𝖗𝖞𝖎𝖓𝖌 𝖙𝖔 𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","remove":"𝕽𝖊𝖒𝖔𝖛𝖊","improper":"𝖄𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖆𝖘 𝖚𝖕𝖑𝖔𝖆𝖉𝖊𝖉 𝖎𝖒𝖕𝖗𝖔𝖕𝖊𝖗𝖑𝖞","project":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙","totalMatchingPages":"{n} 𝖔𝖋 {m} 𝖕𝖆𝖌𝖊𝖘 𝖒𝖆𝖙𝖈𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖖𝖚𝖊𝖗𝖞","showAll":"𝕾𝖍𝖔𝖜 𝖆𝖑𝖑","matchingPages":"{n} 𝖕𝖆𝖌𝖊𝖘 𝖒𝖆𝖙𝖈𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖖𝖚𝖊𝖗𝖞","pageAbbrev":"𝖕.","pageCount":"{n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}","source":"𝕾𝖔𝖚𝖗𝖈𝖊"},"documentThumbnail":{"pages":"𝖕𝖆𝖌𝖊𝖘","loading":"𝕷𝖔𝖆𝖉𝖎𝖓𝖌 𝖕𝖗𝖔𝖌𝖗𝖊𝖘𝖘 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓..."},"mainContainer":{"error":"𝕰𝖗𝖗𝖔𝖗","errorMsg":"𝖂𝖊 𝖈𝖔𝖚𝖑𝖉 𝖓𝖔𝖙 𝖗𝖊𝖆𝖈𝖍 𝖙𝖍𝖊 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖘𝖊𝖗𝖛𝖊𝖗. 𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖗𝖊𝖋𝖗𝖊𝖘𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊 𝖑𝖆𝖙𝖊𝖗.","refresh":"𝕽𝖊𝖋𝖗𝖊𝖘𝖍"},"editMenu":{"editDocInfo":"𝕰𝖉𝖎𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕴𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓","changeAccess":"𝕮𝖍𝖆𝖓𝖌𝖊 𝕬𝖈𝖈𝖊𝖘𝖘","editDocData":"𝕰𝖉𝖎𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕯𝖆𝖙𝖆","cancelProcessing":"𝕮𝖆𝖓𝖈𝖊𝖑 𝕻𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","forceReprocess":"𝕱𝖔𝖗𝖈𝖊 𝕽𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘","entities":"𝕰𝖓𝖙𝖎𝖙𝖎𝖊𝖘 𝕭𝕰𝕿𝕬","changeOwner":"𝕮𝖍𝖆𝖓𝖌𝖊 𝕺𝖜𝖓𝖊𝖗","delete":"𝕯𝖊𝖑𝖊𝖙𝖊","diagnosticInfo":"𝕯𝖎𝖆𝖌𝖓𝖔𝖘𝖙𝖎𝖈 𝕴𝖓𝖋𝖔"},"metaFields":{"defaultFieldInvalidText":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖍𝖆𝖘 𝖙𝖍𝖎𝖘 {fieldName}","titleFieldTitle":"𝕿𝖎𝖙𝖑𝖊","titleFieldName":"𝖓𝖆𝖒𝖊","titleFieldNameUppercase":"𝕹𝖆𝖒𝖊","titleFieldHeader":"𝕽𝖊𝖓𝖆𝖒𝖊 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","titleFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖓𝖆𝖒𝖊 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","titleFieldButton":"𝕽𝖊𝖓𝖆𝖒𝖊","titleFieldInvalidSameName":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖍𝖆𝖘 𝖙𝖍𝖎𝖘 𝖓𝖆𝖒𝖊","titleFieldInvalidEmptyName":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖛𝖆𝖑𝖎𝖉 𝖓𝖆𝖒𝖊","sourceFieldTitle":"𝕾𝖔𝖚𝖗𝖈𝖊","sourceFieldName":"𝖘𝖔𝖚𝖗𝖈𝖊","sourceFieldNameUppercase":"𝕾𝖔𝖚𝖗𝖈𝖊","sourceFieldHeader":"𝕰𝖉𝖎𝖙 𝖘𝖔𝖚𝖗𝖈𝖊 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","sourceFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖘𝖔𝖚𝖗𝖈𝖊 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","sourceFieldButton":"𝕰𝖉𝖎𝖙","descriptionFieldTitle":"𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓","descriptionFieldName":"𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓","descriptionFieldNameUppercase":"𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓","descriptionFieldHeader":"𝕰𝖉𝖎𝖙 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","descriptionFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","descriptionFieldButton":"𝕰𝖉𝖎𝖙","relatedArticleFieldTitle":"𝕽𝖊𝖑𝖆𝖙𝖊𝖉 𝕬𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷","relatedArticleFieldName":"𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷","relatedArticleFieldNameUppercase":"𝕽𝖊𝖑𝖆𝖙𝖊𝖉 𝕬𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷","relatedArticleFieldHeader":"𝕰𝖉𝖎𝖙 𝖙𝖍𝖊 𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","relatedArticleFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","relatedArticleFieldButton":"𝕰𝖉𝖎𝖙","publishedUrlFieldTitle":"𝕻𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷","publishedUrlFieldName":"𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷","publishedUrlFieldNameUppercase":"𝕻𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷","publishedUrlFieldHeader":"𝕰𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","publishedUrlFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","publishedUrlFieldButton":"𝕰𝖉𝖎𝖙"},"projectsMenu":{"newProject":"+ 𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","projMembership":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙 𝕸𝖊𝖒𝖇𝖊𝖗𝖘𝖍𝖎𝖕","selectDocs":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖙𝖔 𝖕𝖑𝖆𝖈𝖊 𝖙𝖍𝖊𝖒 𝖎𝖓 𝖕𝖗𝖔𝖏𝖊𝖈𝖙𝖘","createProj":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖆 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖙𝖔 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖆𝖓𝖉 𝖘𝖍𝖆𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘"},"noDocuments":{"noSearchResults":"𝕹𝖔 𝖘𝖊𝖆𝖗𝖈𝖍 𝖗𝖊𝖘𝖚𝖑𝖙𝖘","queryNoResults":"𝖄𝖔𝖚𝖗 𝖘𝖊𝖆𝖗𝖈𝖍 𝖖𝖚𝖊𝖗𝖞 𝖗𝖊𝖙𝖚𝖗𝖓𝖊𝖉 𝖓𝖔 𝖗𝖊𝖘𝖚𝖑𝖙𝖘. 𝕿𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖜𝖎𝖙𝖍 𝖆 𝖇𝖗𝖔𝖆𝖉𝖊𝖗 𝖘𝖊𝖆𝖗𝖈𝖍 𝖖𝖚𝖊𝖗𝖞.","welcome":"𝖂𝖊𝖑𝖈𝖔𝖒𝖊 𝖙𝖔 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉❗","verify1":"𝕹𝖔𝖙𝖊 𝖙𝖍𝖆𝖙 𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖞𝖔𝖚𝖗 𝖆𝖈𝖈𝖔𝖚𝖓𝖙 𝖎𝖘 𝖓𝖔𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖘𝖊𝖆𝖗𝖈𝖍 𝖙𝖍𝖗𝖔𝖚𝖌𝖍 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈 𝖗𝖊𝖕𝖔𝖘𝖎𝖙𝖔𝖗𝖞, 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖞𝖔𝖚\'𝖗𝖊 𝖎𝖓𝖙𝖊𝖗𝖊𝖘𝖙𝖊𝖉 𝖎𝖓 𝖎𝖓𝖙𝖔 𝖕𝖗𝖔𝖏𝖊𝖈𝖙𝖘, 𝖑𝖊𝖆𝖛𝖊 𝖕𝖗𝖎𝖛𝖆𝖙𝖊 𝖓𝖔𝖙𝖊𝖘, 𝖆𝖓𝖉 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖊 𝖔𝖓 𝖊𝖉𝖎𝖙𝖎𝖓𝖌 𝖆𝖓𝖉 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖔𝖙𝖍𝖊𝖗 𝖚𝖘𝖊𝖗𝖘 𝖎𝖓𝖛𝖎𝖙𝖊 𝖞𝖔𝖚 𝖙𝖔.","verify2":"𝕴𝖋 𝖞𝖔𝖚’𝖉 𝖑𝖎𝖐𝖊 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉 𝖔𝖗 𝖕𝖚𝖇𝖑𝖎𝖘𝖍 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖆𝖓𝖉 𝖞𝖔𝖚\'𝖗𝖊 𝖆 𝖜𝖔𝖗𝖐𝖎𝖓𝖌 𝖏𝖔𝖚𝖗𝖓𝖆𝖑𝖎𝖘𝖙 𝖔𝖗 𝖔𝖙𝖍𝖊𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖎𝖓𝖙𝖊𝖗𝖊𝖘𝖙𝖊𝖉 𝖎𝖓 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖎𝖓𝖌 𝖕𝖗𝖎𝖒𝖆𝖗𝖞 𝖘𝖔𝖚𝖗𝖈𝖊 𝖒𝖆𝖙𝖊𝖗𝖎𝖆𝖑𝖘 𝖎𝖓 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈 𝖎𝖓𝖙𝖊𝖗𝖊𝖘𝖙, 𝖞𝖔𝖚\'𝖑𝖑 𝖓𝖊𝖊𝖉 𝖙𝖔 𝖍𝖆𝖛𝖊 𝖞𝖔𝖚𝖗 𝖆𝖈𝖈𝖔𝖚𝖓𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖔𝖗 𝖆𝖉𝖉𝖊𝖉 𝖙𝖔 𝖆 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓. 𝕿𝖍𝖎𝖘 𝖎𝖘 𝖆 𝖘𝖎𝖒𝖕𝖑𝖊 𝖕𝖗𝖔𝖈𝖊𝖘𝖘:","verify3":"𝕱𝖎𝖗𝖘𝖙, 𝖘𝖊𝖊 𝖎𝖋 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖊𝖝𝖎𝖘𝖙𝖘 𝖆𝖓𝖉, 𝖎𝖋 𝖞𝖔𝖚 𝖋𝖎𝖓𝖉 𝖎𝖙, 𝖈𝖑𝖎𝖈𝖐 \\"𝕽𝖊𝖖𝖚𝖊𝖘𝖙 𝖙𝖔 𝕵𝖔𝖎𝖓\\" 𝖔𝖓 𝖎𝖙𝖘 𝖕𝖆𝖌𝖊.","verify4":"𝕴𝖋 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖍𝖆𝖘 𝖓𝖔𝖙 𝖇𝖊𝖊𝖓 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖞𝖊𝖙, 𝖔𝖗 𝖎𝖋 𝖞𝖔𝖚\'𝖗𝖊 𝖆 𝖋𝖗𝖊𝖊𝖑𝖆𝖓𝖈𝖊𝖗, 𝖗𝖊𝖖𝖚𝖊𝖘𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓 𝖍𝖊𝖗𝖊. 𝕽𝖊𝖖𝖚𝖊𝖘𝖙𝖘 𝖚𝖘𝖚𝖆𝖑𝖑𝖞 𝖙𝖆𝖐𝖊 𝖙𝖜𝖔 𝖇𝖚𝖘𝖎𝖓𝖊𝖘𝖘 𝖉𝖆𝖞𝖘 𝖙𝖔 𝖕𝖗𝖔𝖈𝖊𝖘𝖘.","uploadFirst":"𝖀𝖕𝖑𝖔𝖆𝖉 𝖞𝖔𝖚𝖗 𝖋𝖎𝖗𝖘𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","upload1":"𝖀𝖕𝖑𝖔𝖆𝖉 𝖆 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖋𝖎𝖑𝖊 𝖙𝖔 𝖌𝖊𝖙 𝖘𝖙𝖆𝖗𝖙𝖊𝖉 𝖚𝖘𝖎𝖓𝖌 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖉𝖗𝖆𝖌 𝖙𝖍𝖊 𝖋𝖎𝖑𝖊 𝖎𝖓𝖙𝖔 𝖙𝖍𝖎𝖘 𝖜𝖎𝖓𝖉𝖔𝖜, 𝖔𝖗 𝖈𝖑𝖎𝖈𝖐 𝖔𝖓 𝖙𝖍𝖊 𝖇𝖑𝖚𝖊 “𝖀𝖕𝖑𝖔𝖆𝖉” 𝖇𝖚𝖙𝖙𝖔𝖓 𝖆𝖇𝖔𝖛𝖊.","upload2":"𝕺𝖓𝖈𝖊 𝖞𝖔𝖚 𝖚𝖕𝖑𝖔𝖆𝖉 𝖆 𝖋𝖎𝖑𝖊, 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖜𝖎𝖑𝖑 𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖆𝖓𝖉 𝖊𝖝𝖙𝖗𝖆𝖈𝖙 𝖎𝖙𝖘 𝖈𝖔𝖓𝖙𝖊𝖓𝖙𝖘. 𝕴𝖙 𝖒𝖆𝖞 𝖙𝖆𝖐𝖊 𝖆 𝖋𝖊𝖜 𝖒𝖎𝖓𝖚𝖙𝖊𝖘 𝖋𝖔𝖗 𝖙𝖍𝖎𝖘 𝖙𝖔 𝖈𝖔𝖒𝖕𝖑𝖊𝖙𝖊, 𝖇𝖚𝖙 𝖔𝖓𝖈𝖊 𝖎𝖙’𝖘 𝖉𝖔𝖓𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖔𝖕𝖙𝖎𝖒𝖎𝖟𝖊𝖉 𝖋𝖔𝖗 𝖆𝖓𝖆𝖑𝖞𝖘𝖎𝖘 𝖆𝖓𝖉 𝖘𝖍𝖆𝖗𝖎𝖓𝖌 𝖔𝖓 𝖙𝖍𝖊 𝖜𝖊𝖇."},"paginator":{"of":"𝖔𝖋","document":"{n, plural, one {𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}"},"processingBar":{"doneProcessing":"𝕯𝖔𝖓𝖊 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","processingDocuments":"𝕻𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}"},"searchBar":{"tips":"𝕾𝖊𝖆𝖗𝖈𝖍 𝖙𝖎𝖕𝖘: 𝖆𝖉𝖉 𝖋𝖎𝖑𝖙𝖊𝖗𝖘 𝖇𝖞 𝖙𝖞𝖕𝖎𝖓𝖌 𝖚𝖘𝖊𝖗:, 𝖕𝖗𝖔𝖏𝖊𝖈𝖙:, 𝖔𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓:, 𝖊𝖙𝖈. 𝖀𝖘𝖊 𝖘𝖔𝖗𝖙: 𝖙𝖔 𝖔𝖗𝖉𝖊𝖗 𝖗𝖊𝖘𝖚𝖑𝖙𝖘.","learnMore":"𝕷𝖊𝖆𝖗𝖓 𝖒𝖔𝖗𝖊","search":"𝕾𝖊𝖆𝖗𝖈𝖍"},"searchLink":{"search":"𝕾𝖊𝖆𝖗𝖈𝖍 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖈𝖔𝖑𝖑𝖊𝖈𝖙𝖎𝖔𝖓"},"projects":{"header":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙𝖘","allDocuments":"𝕬𝖑𝖑 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","yourDocuments":"𝖄𝖔𝖚𝖗 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","yourPubDocuments":"𝖄𝖔𝖚𝖗 𝕻𝖚𝖇𝖑𝖎𝖈 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","orgDocuments":"{name}’𝖘 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","newProject":"+ 𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","createProject":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖞𝖔𝖚𝖗 𝖋𝖎𝖗𝖘𝖙 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖇𝖞 𝖈𝖑𝖎𝖈𝖐𝖎𝖓𝖌 “𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙” 𝖆𝖇𝖔𝖛𝖊."},"uploadDialog":{"docUpload":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖀𝖕𝖑𝖔𝖆𝖉","docUploadProj":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖀𝖕𝖑𝖔𝖆𝖉 𝖙𝖔 {title}","beginUpload":"𝕭𝖊𝖌𝖎𝖓 𝖚𝖕𝖑𝖔𝖆𝖉","pdfSizeWarning":"𝖄𝖔𝖚 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖚𝖕𝖑𝖔𝖆𝖉 𝕻𝕯𝕱 𝖋𝖎𝖑𝖊𝖘 𝖚𝖓𝖉𝖊𝖗 {size}.","nonPdfSizeWarning":"𝖄𝖔𝖚 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖚𝖕𝖑𝖔𝖆𝖉 𝖓𝖔𝖓-𝕻𝕯𝕱 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖋𝖎𝖑𝖊𝖘 𝖚𝖓𝖉𝖊𝖗 {size}.","fileReady":"{n, plural, one {𝖋𝖎𝖑𝖊} other {𝖋𝖎𝖑𝖊𝖘}} 𝖗𝖊𝖆𝖉𝖞 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉","fileLimitWarning":"𝖄𝖔𝖚 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖚𝖕𝖑𝖔𝖆𝖉 {limit} 𝖋𝖎𝖑𝖊𝖘 𝖆𝖙 𝖔𝖓𝖈𝖊.","moreOptions":"𝕸𝖔𝖗𝖊 𝖔𝖕𝖙𝖎𝖔𝖓𝖘","selectFiles":"+ 𝕾𝖊𝖑𝖊𝖈𝖙 𝖋𝖎𝖑𝖊𝖘","dragDrop":"𝕯𝖗𝖆𝖌 𝖆𝖓𝖉 𝖉𝖗𝖔𝖕 𝖋𝖎𝖑𝖊𝖘 𝖍𝖊𝖗𝖊","publicMsg":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖕𝖚𝖇𝖑𝖎𝖈𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊.","collabMsg":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓.","privateMsg":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚 𝖆𝖑𝖔𝖓𝖊.","collabName":"𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","submitting":"𝕬𝖑𝖒𝖔𝖘𝖙 𝖉𝖔𝖓𝖊... 𝖘𝖚𝖇𝖒𝖎𝖙𝖙𝖎𝖓𝖌 𝖚𝖕𝖑𝖔𝖆𝖉𝖊𝖉 𝖋𝖎𝖑𝖊𝖘 𝖋𝖔𝖗 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 ({percent})","uploading":"𝖀𝖕𝖑𝖔𝖆𝖉𝖎𝖓𝖌 ... ({uploaded}/{length})","gettingInfo":"𝕲𝖊𝖙𝖙𝖎𝖓𝖌 𝖚𝖕𝖑𝖔𝖆𝖉 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓 ({percent})","pleaseLeaveOpen":"𝕻𝖑𝖊𝖆𝖘𝖊 𝖑𝖊𝖆𝖛𝖊 𝖙𝖍𝖎𝖘 𝖕𝖆𝖌𝖊 𝖔𝖕𝖊𝖓 𝖜𝖍𝖎𝖑𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖚𝖕𝖑𝖔𝖆𝖉. 𝕿𝖍𝖎𝖘 𝖉𝖎𝖆𝖑𝖔𝖌 𝖜𝖎𝖑𝖑 𝖆𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈𝖆𝖑𝖑𝖞 𝖈𝖑𝖔𝖘𝖊 𝖜𝖍𝖊𝖓 𝖙𝖍𝖊𝖞 𝖍𝖆𝖛𝖊 𝖋𝖎𝖓𝖎𝖘𝖍𝖊𝖉 𝖚𝖕𝖑𝖔𝖆𝖉𝖎𝖓𝖌.","errorHeading":"𝕰𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉 𝖜𝖍𝖎𝖑𝖊 𝖚𝖕𝖑𝖔𝖆𝖉𝖎𝖓𝖌","errorMsg":"𝖂𝖊 𝖋𝖆𝖎𝖑𝖊𝖉 𝖙𝖔 {errorMessage}. 𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖑𝖆𝖙𝖊𝖗.","editDocInfo":"𝕰𝖉𝖎𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓:","untitled":"𝖀𝖓𝖙𝖎𝖙𝖑𝖊𝖉","uploadFiles":"𝖀𝖕𝖑𝖔𝖆𝖉 𝖆𝖉𝖉𝖎𝖙𝖎𝖔𝖓𝖆𝖑 𝖋𝖎𝖑𝖊𝖘","selectMore":"+ 𝕾𝖊𝖑𝖊𝖈𝖙 𝖒𝖔𝖗𝖊 𝖋𝖎𝖑𝖊𝖘","dragDropMore":"𝕯𝖗𝖆𝖌 𝖆𝖓𝖉 𝖉𝖗𝖔𝖕 𝖆𝖉𝖉𝖎𝖙𝖎𝖔𝖓𝖆𝖑 𝖋𝖎𝖑𝖊𝖘 𝖍𝖊𝖗𝖊"},"embedNote":{"viewTheNote":"𝖁𝖎𝖊𝖜 𝖙𝖍𝖊 𝖓𝖔𝖙𝖊 ‘{title}‘ 𝖎𝖓 𝖎𝖙𝖘 𝖔𝖗𝖎𝖌𝖎𝖓𝖆𝖑 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖈𝖔𝖓𝖙𝖊𝖝𝖙 𝖔𝖓 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖓 𝖆 𝖓𝖊𝖜 𝖜𝖎𝖓𝖉𝖔𝖜 𝖔𝖗 𝖙𝖆𝖇","viewDoc":"𝖁𝖎𝖊𝖜 𝖙𝖍𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉"},"embedPage":{"viewDoc":"𝖁𝖎𝖊𝖜 𝖊𝖓𝖙𝖎𝖗𝖊 {title} 𝖔𝖓 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖓 𝖓𝖊𝖜 𝖜𝖎𝖓𝖉𝖔𝖜 𝖔𝖗 𝖙𝖆𝖇","pageOf":"𝕻𝖆𝖌𝖊 {page} 𝖔𝖋 {title}","gotoDocCloud":"𝕲𝖔 𝖙𝖔 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖓 𝖓𝖊𝖜 𝖜𝖎𝖓𝖉𝖔𝖜 𝖔𝖗 𝖙𝖆𝖇"},"entities":{"back":"𝕭𝖆𝖈𝖐","page":"𝕻𝖆𝖌𝖊","of":"𝖔𝖋","totalEntityResult":"{n, plural, one {# 𝖙𝖔𝖙𝖆𝖑 𝖊𝖓𝖙𝖎𝖙𝖞 𝖗𝖊𝖘𝖚𝖑𝖙} other {# 𝖙𝖔𝖙𝖆𝖑 𝖊𝖓𝖙𝖎𝖙𝖞 𝖗𝖊𝖘𝖚𝖑𝖙𝖘}} ","filter":"𝕱𝖎𝖑𝖙𝖊𝖗","applyFilters":"𝕬𝖕𝖕𝖑𝖞 𝖋𝖎𝖑𝖙𝖊𝖗𝖘","kind":"𝕶𝖎𝖓𝖉","clear":"𝕮𝖑𝖊𝖆𝖗","person":"𝕻𝖊𝖗𝖘𝖔𝖓","org":"𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","location":"𝕷𝖔𝖈𝖆𝖙𝖎𝖔𝖓","event":"𝕰𝖛𝖊𝖓𝖙","workOfArt":"𝖂𝖔𝖗𝖐 𝖔𝖋 𝕬𝖗𝖙","consumerGood":"𝕮𝖔𝖓𝖘𝖚𝖒𝖊𝖗 𝕲𝖔𝖔𝖉","address":"𝕬𝖉𝖉𝖗𝖊𝖘𝖘","date":"𝕯𝖆𝖙𝖊","number":"𝕹𝖚𝖒𝖇𝖊𝖗","phoneNumber":"𝕻𝖍𝖔𝖓𝖊 𝕹𝖚𝖒𝖇𝖊𝖗","price":"𝕻𝖗𝖎𝖈𝖊","unknown":"𝖀𝖓𝖐𝖓𝖔𝖜𝖓","other":"𝕺𝖙𝖍𝖊𝖗","occurrences":"𝕺𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊𝖘","proper":"𝕻𝖗𝖔𝖕𝖊𝖗","common":"𝕮𝖔𝖒𝖒𝖔𝖓","advanced":"𝕬𝖉𝖛𝖆𝖓𝖈𝖊𝖉","relevanceThreshold":"𝕽𝖊𝖑𝖊𝖛𝖆𝖓𝖈𝖊 𝖙𝖍𝖗𝖊𝖘𝖍𝖔𝖑𝖉:","knowledgeGraph":"𝕶𝖓𝖔𝖜𝖑𝖊𝖉𝖌𝖊 𝖌𝖗𝖆𝖕𝖍:","hasKG":"𝕳𝖆𝖘 𝖆 𝖐𝖓𝖔𝖜𝖑𝖊𝖉𝖌𝖊 𝖌𝖗𝖆𝖕𝖍 𝕴𝕯","noKG":"𝕯𝖔𝖊𝖘 𝖓𝖔𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖐𝖓𝖔𝖜𝖑𝖊𝖉𝖌𝖊 𝖌𝖗𝖆𝖕𝖍 𝕴𝕯","wikiUrl":"𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆 𝖀𝕽𝕷:","hasWiki":"𝕳𝖆𝖘 𝖆 𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆 𝖀𝕽𝕷","noWiki":"𝕯𝖔𝖊𝖘 𝖓𝖔𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆 𝖀𝕽𝕷","occurrence":"{n, plural, zero {} one {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊} other {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊𝖘}}","wikipedia":"𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆","entityExtraction":"𝕰𝖓𝖙𝖎𝖙𝖞 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖔𝖓 𝖋𝖔𝖗 “{title}”","extractingEntities":"𝕰𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖓𝖌 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘...","welcome":"𝖂𝖊𝖑𝖈𝖔𝖒𝖊 𝖙𝖔 𝖊𝖓𝖙𝖎𝖙𝖞 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖔𝖓❗ 𝕿𝖍𝖎𝖘 𝖋𝖊𝖆𝖙𝖚𝖗𝖊 𝖎𝖘 𝖛𝖊𝖗𝖞 𝖒𝖚𝖈𝖍 𝖎𝖓 𝖕𝖗𝖔𝖌𝖗𝖊𝖘𝖘 𝖇𝖚𝖙 𝖜𝖊 𝖜𝖆𝖓𝖙 𝖎𝖙 𝖎𝖓 𝖞𝖔𝖚𝖗 𝖍𝖆𝖓𝖉𝖘 𝖊𝖆𝖗𝖑𝖞 𝖙𝖔 𝖜𝖊𝖑𝖈𝖔𝖒𝖊 𝖆𝖓𝖞 𝖋𝖊𝖊𝖉𝖇𝖆𝖈𝖐 𝖞𝖔𝖚 𝖒𝖎𝖌𝖍𝖙 𝖍𝖆𝖛𝖊.","manual":"𝕽𝖎𝖌𝖍𝖙 𝖓𝖔𝖜 𝖙𝖍𝖊 𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖋𝖔𝖗 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖓𝖌 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘 𝖎𝖘 𝖒𝖆𝖓𝖚𝖆𝖑. 𝕿𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖍𝖆𝖘 𝖓𝖔𝖙 𝖍𝖆𝖉 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖊𝖉 𝖞𝖊𝖙, 𝖘𝖔 𝖈𝖑𝖎𝖈𝖐 𝖇𝖊𝖑𝖔𝖜 𝖙𝖔 𝖌𝖊𝖙 𝖘𝖙𝖆𝖗𝖙𝖊𝖉.","error":"𝕬𝖓 𝖚𝖓𝖊𝖝𝖕𝖊𝖈𝖙𝖊𝖉 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉","extract":"𝕰𝖝𝖙𝖗𝖆𝖈𝖙 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘","noEntities":"𝕿𝖍𝖊𝖗𝖊 𝖆𝖗𝖊 𝖓𝖔 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘. 𝕿𝖍𝖎𝖘 𝖈𝖔𝖚𝖑𝖉 𝖍𝖆𝖕𝖕𝖊𝖓 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖉𝖔𝖊𝖘𝖓’𝖙 𝖍𝖆𝖛𝖊 𝖙𝖊𝖝𝖙, 𝖎𝖘 𝖓𝖔𝖓-𝕰𝖓𝖌𝖑𝖎𝖘𝖍 (𝖔𝖓𝖑𝖞 𝕰𝖓𝖌𝖑𝖎𝖘𝖍 𝖎𝖘 𝖘𝖚𝖕𝖕𝖔𝖗𝖙𝖊𝖉 𝖋𝖔𝖗 𝖓𝖔𝖜), 𝖔𝖗 𝖘𝖔𝖒𝖊 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉.","starting":"𝕾𝖙𝖆𝖗𝖙𝖎𝖓𝖌 𝖊𝖝𝖙𝖆𝖈𝖙𝖎𝖔𝖓..."},"home":{"about":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖘 𝖆𝖓 𝖆𝖑𝖑-𝖎𝖓-𝖔𝖓𝖊 𝖕𝖑𝖆𝖙𝖋𝖔𝖗𝖒 𝖋𝖔𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘: 𝖚𝖕𝖑𝖔𝖆𝖉, 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊, 𝖆𝖓𝖆𝖑𝖞𝖟𝖊, 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖊, 𝖘𝖊𝖆𝖗𝖈𝖍, 𝖆𝖓𝖉 𝖊𝖒𝖇𝖊𝖉.","viewPublicDocs":"𝖁𝖎𝖊𝖜 𝖕𝖚𝖇𝖑𝖎𝖈 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘"},"annotation":{"title":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓 𝕿𝖎𝖙𝖑𝖊","description":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓 𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 (𝖔𝖕𝖙𝖎𝖔𝖓𝖆𝖑)","unchanged":"𝕹𝖔𝖙𝖊 𝖗𝖊𝖒𝖆𝖎𝖓𝖘 𝖚𝖓𝖈𝖍𝖆𝖓𝖌𝖊𝖉","noTitle":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖙𝖎𝖙𝖑𝖊 𝖋𝖔𝖗 𝖙𝖍𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓","org":"𝕿𝖍𝖎𝖘 𝖓𝖔𝖙𝖊 𝖎𝖘 𝖔𝖓𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚 𝖆𝖓𝖉 𝖔𝖙𝖍𝖊𝖗𝖘 𝖜𝖎𝖙𝖍 𝖊𝖉𝖎𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","private":"𝕿𝖍𝖎𝖘 𝖕𝖗𝖎𝖛𝖆𝖙𝖊 𝖓𝖔𝖙𝖊 𝖎𝖘 𝖔𝖓𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚","by":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊𝖉 𝖇𝖞 {name}","byOrg":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊𝖉 𝖇𝖞 {name}, {org}","addPageNote":"𝕬𝖉𝖉 𝖕𝖆𝖌𝖊 𝖓𝖔𝖙𝖊"},"viewDropdown":{"document":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙","plainText":"𝕻𝖑𝖆𝖎𝖓 𝕿𝖊𝖝𝖙","thumbnail":"𝕿𝖍𝖚𝖒𝖇𝖓𝖆𝖎𝖑","notes":"𝕹𝖔𝖙𝖊𝖘","search":"𝕾𝖊𝖆𝖗𝖈𝖍 𝕽𝖊𝖘𝖚𝖑𝖙𝖘"},"zoom":{"fitWidth":"𝕱𝖎𝖙 𝖜𝖎𝖉𝖙𝖍","fitHeight":"𝕱𝖎𝖙 𝖍𝖊𝖎𝖌𝖍𝖙"},"titleHeader":{"contributedBy":"𝕮𝖔𝖓𝖙𝖗𝖎𝖇𝖚𝖙𝖊𝖉 𝖇𝖞 {name}"},"annotatePane":{"annotateDocument":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙","desc":"𝕳𝖎𝖌𝖍𝖑𝖎𝖌𝖍𝖙 𝖆 𝖕𝖔𝖗𝖙𝖎𝖔𝖓 𝖔𝖋 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊, 𝖔𝖗 𝖈𝖑𝖎𝖈𝖐 𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊𝖘 𝖙𝖔 𝖈𝖗𝖊𝖆𝖙𝖊 𝖆 𝖓𝖔𝖙𝖊."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝕻𝖆𝖌𝖊} other {# 𝕻𝖆𝖌𝖊𝖘}} 𝕾𝖊𝖑𝖊𝖈𝖙𝖊𝖉","applyModifications":"𝕬𝖕𝖕𝖑𝖞 𝕸𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘","duplicate":"𝕯𝖚𝖕𝖑𝖎𝖈𝖆𝖙𝖊","move":"𝕸𝖔𝖛𝖊","unselect":"𝖀𝖓𝖘𝖊𝖑𝖊𝖈𝖙","remove":"𝕽𝖊𝖒𝖔𝖛𝖊","insertPages":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝕻𝖆𝖌𝖊} other {# 𝕻𝖆𝖌𝖊𝖘}}","pagesPending":"{n, plural, one {# 𝕻𝖆𝖌𝖊} other {# 𝕻𝖆𝖌𝖊𝖘}} 𝕻𝖊𝖓𝖉𝖎𝖓𝖌 𝕴𝖓𝖘𝖊𝖗𝖙𝖎𝖔𝖓","insertBegin":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}} 𝖆𝖙 𝖇𝖊𝖌𝖎𝖓𝖓𝖎𝖓𝖌.","insertEnd":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}} 𝖆𝖙 𝖊𝖓𝖉.","insertBetween":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}} 𝖎𝖓 𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊 {p0} 𝖆𝖓𝖉 {p1}.","click":"𝕮𝖑𝖎𝖈𝖐 𝖎𝖓-𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊𝖘 𝖇𝖊𝖑𝖔𝖜 𝖙𝖔 𝖒𝖆𝖗𝖐 𝖜𝖍𝖊𝖗𝖊 𝖙𝖔 𝖕𝖆𝖘𝖙𝖊 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}.","insert":"𝕴𝖓𝖘𝖊𝖗𝖙","insertAtEnd":"𝕴𝖓𝖘𝖊𝖗𝖙 𝖆𝖙 𝖊𝖓𝖉","insertPosition":"𝕴𝖓𝖘𝖊𝖗𝖙 𝖕𝖆𝖌𝖊𝖘 𝖆𝖙 𝖕𝖔𝖘𝖎𝖙𝖎𝖔𝖓","insertOtherDoc":"𝕴𝖓𝖘𝖊𝖗𝖙 𝖋𝖗𝖔𝖒 𝖔𝖙𝖍𝖊𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","modifyPages":"𝕸𝖔𝖉𝖎𝖋𝖞 𝕻𝖆𝖌𝖊𝖘","select":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖕𝖆𝖌𝖊𝖘 𝖇𝖊𝖑𝖔𝖜 𝖙𝖔 𝖆𝖕𝖕𝖑𝖞 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘 (𝖕𝖆𝖌𝖊 𝖗𝖔𝖙𝖆𝖙𝖎𝖔𝖓, 𝖗𝖊𝖆𝖗𝖗𝖆𝖓𝖌𝖎𝖓𝖌, 𝖆𝖓𝖉 𝖉𝖊𝖑𝖊𝖙𝖎𝖔𝖓). 𝕮𝖑𝖎𝖈𝖐 𝖎𝖓-𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊𝖘 𝖙𝖔 𝖎𝖓𝖘𝖊𝖗𝖙.","undo":"𝖀𝖓𝖉𝖔","redo":"𝕽𝖊𝖉𝖔"},"redactPane":{"redactDoc":"𝕽𝖊𝖉𝖆𝖈𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙","desc":"𝕮𝖑𝖎𝖈𝖐 𝖆𝖓𝖉 𝖉𝖗𝖆𝖌 𝖙𝖔 𝖉𝖗𝖆𝖜 𝖆 𝖇𝖑𝖆𝖈𝖐 𝖗𝖊𝖈𝖙𝖆𝖓𝖌𝖑𝖊 𝖔𝖛𝖊𝖗 𝖊𝖆𝖈𝖍 𝖕𝖔𝖗𝖙𝖎𝖔𝖓 𝖔𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚’𝖉 𝖑𝖎𝖐𝖊 𝖙𝖔 𝖗𝖊𝖉𝖆𝖈𝖙. 𝕬𝖘𝖘𝖔𝖈𝖎𝖆𝖙𝖊𝖉 𝖙𝖊𝖝𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖗𝖊𝖒𝖔𝖛𝖊𝖉 𝖜𝖍𝖊𝖓 𝖞𝖔𝖚 𝖘𝖆𝖛𝖊 𝖞𝖔𝖚𝖗 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘.","confirm":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝕽𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘","undo":"𝖀𝖓𝖉𝖔"},"searchPane":{"yourQuery":"𝖄𝖔𝖚𝖗 𝖖𝖚𝖊𝖗𝖞 {search} 𝖜𝖆𝖘 𝖋𝖔𝖚𝖓𝖉 𝖔𝖓 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}"},"selectNotePane":{"selectNote":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖆 𝖓𝖔𝖙𝖊","desc":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖙𝖍𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓 𝖙𝖍𝖆𝖙 𝖞𝖔𝖚 𝖜𝖆𝖓𝖙 𝖙𝖔 𝖘𝖍𝖆𝖗𝖊."},"searchResults":{"resultPages":"{results, plural, one {# 𝖗𝖊𝖘𝖚𝖑𝖙} other {# 𝖗𝖊𝖘𝖚𝖑𝖙𝖘}} 𝖆𝖈𝖗𝖔𝖘𝖘 {pages, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}","noSearchResults":"𝕹𝖔 𝖘𝖊𝖆𝖗𝖈𝖍 𝖗𝖊𝖘𝖚𝖑𝖙𝖘. 𝕿𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖜𝖎𝖙𝖍 𝖆 𝖇𝖗𝖔𝖆𝖉𝖊𝖗 𝖖𝖚𝖊𝖗𝖞.","occurrences":"{n, plural, one {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊} other {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊𝖘}}"},"sidebar":{"updating":"𝖀𝖕𝖉𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖈𝖒𝖊𝖓𝖙...","original":"𝕺𝖗𝖎𝖌𝖎𝖓𝖆𝖑 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 (𝕻𝕯𝕱) »","related":"𝕽𝖊𝖑𝖆𝖙𝖊𝖉 𝕬𝖗𝖙𝖎𝖈𝖑𝖊 »","contributed":"𝕮𝖔𝖓𝖙𝖗𝖎𝖇𝖚𝖙𝖊𝖉 𝖇𝖞 {name}","source":"𝕾𝖔𝖚𝖗𝖈𝖊: {source}","actions":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕬𝖈𝖙𝖎𝖔𝖓𝖘","share":"𝕾𝖍𝖆𝖗𝖊","shareDesc":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖆𝖓 𝖊𝖒𝖇𝖊𝖉 𝖔𝖗 𝖘𝖍𝖆𝖗𝖊 𝖔𝖓 𝖘𝖔𝖈𝖎𝖆𝖑 𝖒𝖊𝖉𝖎𝖆.","annotate":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊","annotateDesc":"𝕸𝖆𝖐𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖐𝖊𝖊𝖕 𝖓𝖔𝖙𝖊𝖘 𝖔𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","redact":"𝕽𝖊𝖉𝖆𝖈𝖙","redactDesc":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘 𝖔𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖍𝖎𝖉𝖊 𝖙𝖊𝖝𝖙. 𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖆𝖋𝖙𝖊𝖗𝖜𝖆𝖗𝖉𝖘.","modify":"𝕸𝖔𝖉𝖎𝖋𝖞 𝕻𝖆𝖌𝖊𝖘","modifyDesc":"𝕽𝖊𝖆𝖗𝖗𝖆𝖓𝖌𝖊, 𝖗𝖔𝖙𝖆𝖙𝖊, 𝖉𝖊𝖑𝖊𝖙𝖊, 𝖎𝖓𝖘𝖊𝖗𝖙, 𝖆𝖓𝖉 𝖘𝖕𝖑𝖎𝖙 𝖕𝖆𝖌𝖊𝖘.","info":"𝕰𝖉𝖎𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕴𝖓𝖋𝖔","infoDesc":"𝕸𝖔𝖉𝖎𝖋𝖞 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓 𝖑𝖎𝖐𝖊 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 𝖆𝖓𝖉 𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖀𝕽𝕷.","data":"𝕰𝖉𝖎𝖙 𝕿𝖆𝖌𝖘 𝖆𝖓𝖉 𝕯𝖆𝖙𝖆","dataDesc":"𝕬𝖉𝖉 𝖙𝖆𝖌𝖘 𝖆𝖓𝖉 𝖐𝖊𝖞/𝖛𝖆𝖑𝖚𝖊 𝖕𝖆𝖎𝖗𝖘 𝖙𝖔 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","sections":"𝕰𝖉𝖎𝖙 𝕾𝖊𝖈𝖙𝖎𝖔𝖓𝖘","sectionsDesc":"𝕬𝖉𝖉 𝖘𝖊𝖈𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍 𝖆 𝖙𝖆𝖇𝖑𝖊 𝖔𝖋 𝖈𝖔𝖓𝖙𝖊𝖓𝖙𝖘.","privateNote":"𝕬𝖉𝖉 𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝕹𝖔𝖙𝖊","privateNoteDesc":"𝕸𝖆𝖐𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖐𝖊𝖊𝖕 𝖓𝖔𝖙𝖊𝖘 𝖔𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙."},"viewer":{"notFound":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖓𝖔𝖙 𝖋𝖔𝖚𝖓𝖉","notFoundDesc":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉 𝖊𝖎𝖙𝖍𝖊𝖗 𝖉𝖔𝖊𝖘 𝖓𝖔𝖙 𝖊𝖝𝖎𝖘𝖙 𝖔𝖗 𝖞𝖔𝖚 𝖑𝖆𝖈𝖐 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 𝖙𝖔 𝖆𝖈𝖈𝖊𝖘𝖘 𝖎𝖙","processing":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","processingDesc":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉 𝖎𝖘 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖆𝖓𝖉 𝖜𝖎𝖑𝖑 𝖆𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈𝖆𝖑𝖑𝖞 𝖗𝖊𝖋𝖗𝖊𝖘𝖍 𝖜𝖍𝖊𝖓 𝖎𝖙 𝖎𝖘 𝖗𝖊𝖆𝖉𝖞","error":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖍𝖆𝖘 𝖊𝖓𝖈𝖔𝖚𝖓𝖙𝖊𝖗𝖊𝖉 𝖆𝖓 𝖊𝖗𝖗𝖔𝖗","errorDesc":"𝕬 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖊𝖗𝖗𝖔𝖗 𝖍𝖆𝖘 𝖇𝖊𝖊𝖓 𝖊𝖓𝖈𝖔𝖚𝖓𝖙𝖊𝖗𝖊𝖉 𝖎𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉","accessible":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖓𝖔𝖙 𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊","accessibleDesc":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉 𝖎𝖘 𝖘𝖙𝖎𝖑𝖑 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖔𝖗 𝖞𝖔𝖚 𝖑𝖆𝖈𝖐 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 𝖙𝖔 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖎𝖙"}}')}}]);
-./public/7098.ec0da6c64524cecb5269.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="a56a39ee-804f-4e16-94d6-5a16b7ca3b91",e._sentryDebugIdIdentifier="sentry-dbid-a56a39ee-804f-4e16-94d6-5a16b7ca3b91")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[7098],{7098:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"𝙴𝚖𝚊𝚒𝚕 𝚊𝚍𝚍𝚛𝚎𝚜𝚜","loading":"𝙻𝚘𝚊𝚍𝚒𝚗𝚐...","documentCloud":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍","home":"𝙷𝚘𝚖𝚎"},"homeTemplate":{"signedIn":"𝚂𝚒𝚐𝚗𝚎𝚍 𝚒𝚗 𝚊𝚜 {name}","signOut":"𝚂𝚒𝚐𝚗 𝚘𝚞𝚝","signIn":"𝚂𝚒𝚐𝚗 𝚒𝚗","signUp":"𝚂𝚒𝚐𝚗 𝚞𝚙","goToApp":"𝙶𝚘 𝚝𝚘 𝚊𝚙𝚙"},"accessToggle":{"public":"𝙽𝚘𝚝𝚎 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚊𝚗𝚢𝚘𝚗𝚎 𝚠𝚒𝚝𝚑 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","collaborator":"𝙽𝚘𝚝𝚎 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚊𝚗𝚢𝚘𝚗𝚎 𝚠𝚑𝚘 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","private":"𝙽𝚘𝚝𝚎 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞 𝚊𝚕𝚘𝚗𝚎.","publicName":"𝙿𝚞𝚋𝚕𝚒𝚌","collaboratorName":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛","privateName":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎"},"accessIcon":{"private":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝙰𝚌𝚌𝚎𝚜𝚜","organization":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚝𝚘 𝚈𝚘𝚞𝚛 𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","public":"𝙿𝚞𝚋𝚕𝚒𝚌 𝙰𝚌𝚌𝚎𝚜𝚜","privateExplanation":"𝙾𝚗𝚕𝚢 𝚢𝚘𝚞 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","organizationExplanation":"𝙾𝚗𝚕𝚢 𝚖𝚎𝚖𝚋𝚎𝚛𝚜 𝚘𝚏 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","publicExplanation":"𝙰𝚗𝚢𝚘𝚗𝚎 𝚌𝚊𝚗 𝚜𝚎𝚊𝚛𝚌𝚑 𝚊𝚗𝚍 𝚟𝚒𝚎𝚠 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝"},"appearanceCustomizer":{"customizeAppearance":"𝙲𝚞𝚜𝚝𝚘𝚖𝚒𝚣𝚎 𝙰𝚙𝚙𝚎𝚊𝚛𝚊𝚗𝚌𝚎","hide":"𝙷𝚒𝚍𝚎 𝚑𝚎𝚕𝚙 𝚝𝚎𝚡𝚝","show":"𝚂𝚑𝚘𝚠 𝚑𝚎𝚕𝚙 𝚝𝚎𝚡𝚝"},"appearanceDimension":{"responsive":"𝙰𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","fixed":"𝙵𝚒𝚡𝚎𝚍"},"calendar":{"jan":"𝙹𝚊𝚗𝚞𝚊𝚛𝚢","feb":"𝙵𝚎𝚋𝚛𝚞𝚊𝚛𝚢","mar":"𝙼𝚊𝚛𝚌𝚑","apr":"𝙰𝚙𝚛𝚒𝚕","may":"𝙼𝚊𝚢","jun":"𝙹𝚞𝚗𝚎","jul":"𝙹𝚞𝚕𝚢","aug":"𝙰𝚞𝚐𝚞𝚜𝚝","sep":"𝚂𝚎𝚙𝚝𝚎𝚖𝚋𝚎𝚛","oct":"𝙾𝚌𝚝𝚘𝚋𝚎𝚛","nov":"𝙽𝚘𝚟𝚎𝚖𝚋𝚎𝚛","dec":"𝙳𝚎𝚌𝚎𝚖𝚋𝚎𝚛","hourShortcode":"𝙷𝙷","minuteShortcode":"𝙼𝙼"},"dialog":{"cancel":"𝙲𝚊𝚗𝚌𝚎𝚕","delete":"𝙳𝚎𝚕𝚎𝚝𝚎","done":"𝙳𝚘𝚗𝚎","edit":"𝙴𝚍𝚒𝚝","remove":"𝚁𝚎𝚖𝚘𝚟𝚎","save":"𝚂𝚊𝚟𝚎","create":"𝙲𝚛𝚎𝚊𝚝𝚎","ok":"𝙾𝚔","update":"𝚄𝚙𝚍𝚊𝚝𝚎","dismiss":"𝙳𝚒𝚜𝚖𝚒𝚜𝚜","continue":"𝙲𝚘𝚗𝚝𝚒𝚗𝚞𝚎"},"dialogAccessDialog":{"changeAccess":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚏𝚘𝚛 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","selectAccess":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚊𝚗 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","public":"𝙿𝚞𝚋𝚕𝚒𝚌 𝚊𝚌𝚌𝚎𝚜𝚜","publicDesc":"𝙰𝚗𝚢𝚘𝚗𝚎 𝚘𝚗 𝚝𝚑𝚎 𝚒𝚗𝚝𝚎𝚛𝚗𝚎𝚝 𝚌𝚊𝚗 𝚜𝚎𝚊𝚛𝚌𝚑 𝚏𝚘𝚛 𝚊𝚗𝚍 𝚟𝚒𝚎𝚠 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","verifiedHelp":"𝙾𝚗𝚕𝚢 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚞𝚜𝚎𝚛𝚜 𝚘𝚛 𝚖𝚎𝚖𝚋𝚎𝚛𝚜 𝚘𝚏 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗𝚜 𝚌𝚊𝚗 𝚖𝚊𝚔𝚎 𝚞𝚙𝚕𝚘𝚊𝚍𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚙𝚞𝚋𝚕𝚒𝚌. 𝙸𝚏 𝚢𝚘𝚞'𝚛𝚎 𝚊 𝚓𝚘𝚞𝚛𝚗𝚊𝚕𝚒𝚜𝚝 𝚘𝚛 𝚘𝚝𝚑𝚎𝚛𝚠𝚒𝚜𝚎 𝚠𝚘𝚛𝚔 𝚒𝚗 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚒𝚗𝚐 𝚟𝚎𝚝𝚝𝚎𝚍 𝚖𝚊𝚝𝚎𝚛𝚒𝚊𝚕𝚜 𝚝𝚘 𝚒𝚗𝚏𝚘𝚛𝚖 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌, 𝚕𝚎𝚊𝚛𝚗 𝚖𝚘𝚛𝚎 𝚊𝚗𝚍 𝚛𝚎𝚚𝚞𝚎𝚜𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚑𝚎𝚛𝚎.","privateToOrg":"𝚈𝚘𝚞 𝚌𝚊𝚗’𝚝 𝚌𝚑𝚊𝚗𝚐𝚎 𝚝𝚑𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕 𝚝𝚘 “𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗” 𝚋𝚎𝚌𝚊𝚞𝚜𝚎 {n, plural, one {𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜} other {𝚘𝚗𝚎 𝚘𝚛 𝚖𝚘𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚊𝚛𝚎}} 𝚊𝚜𝚜𝚘𝚌𝚒𝚊𝚝𝚎𝚍 𝚠𝚒𝚝𝚑 𝚢𝚘𝚞𝚛 𝚒𝚗𝚍𝚒𝚟𝚒𝚍𝚞𝚊𝚕 𝚊𝚌𝚌𝚘𝚞𝚗𝚝, 𝚗𝚘𝚝 𝚊𝚗 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗. 𝚃𝚘 𝚊𝚍𝚍 {n, plural, one {𝚒𝚝} other {𝚝𝚑𝚎𝚖}} 𝚝𝚘 𝚊𝚗 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗, 𝚜𝚎𝚕𝚎𝚌𝚝 {n, plural, one {𝚒𝚝} other {𝚝𝚑𝚎𝚖}} 𝚏𝚛𝚘𝚖 𝚝𝚑𝚎 𝚖𝚊𝚗𝚊𝚐𝚎𝚖𝚎𝚗𝚝 𝚟𝚒𝚎𝚠 𝚊𝚗𝚍 𝚌𝚕𝚒𝚌𝚔 “𝙲𝚑𝚊𝚗𝚐𝚎 𝙾𝚠𝚗𝚎𝚛.” 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚓𝚘𝚒𝚗 𝚘𝚛 𝚌𝚛𝚎𝚊𝚝𝚎 𝚊𝚗 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚘𝚗 𝚝𝚑𝚒𝚜 𝚙𝚊𝚐𝚎.","private":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚊𝚌𝚌𝚎𝚜𝚜","privateDesc":"𝙾𝚗𝚕𝚢 𝚙𝚎𝚘𝚙𝚕𝚎 𝚠𝚒𝚝𝚑 𝚎𝚡𝚙𝚕𝚒𝚌𝚒𝚝 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 (𝚟𝚒𝚊 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚒𝚘𝚗) 𝚑𝚊𝚟𝚎 𝚊𝚌𝚌𝚎𝚜𝚜.","organization":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","organizationDesc":"𝙾𝚗𝚕𝚢 𝚝𝚑𝚎 𝚙𝚎𝚘𝚙𝚕𝚎 𝚒𝚗 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚑𝚊𝚟𝚎 𝚊𝚌𝚌𝚎𝚜𝚜.","schedulePublication":"𝚂𝚌𝚑𝚎𝚍𝚞𝚕𝚎 𝚙𝚞𝚋𝚕𝚒𝚌𝚊𝚝𝚒𝚘𝚗","scheduleHelp":"𝚃𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚖𝚊𝚍𝚎 𝚙𝚞𝚋𝚕𝚒𝚌 𝚊𝚝 𝚝𝚑𝚎 𝚐𝚒𝚟𝚎𝚗 𝚍𝚊𝚝𝚎 𝚊𝚗𝚍 𝚝𝚒𝚖𝚎. 𝙿𝚞𝚋𝚕𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚝𝚒𝚖𝚎 𝚒𝚜 𝚕𝚘𝚌𝚊𝚕{timezone}.","unchanged":"𝙰𝚌𝚌𝚎𝚜𝚜 𝚒𝚜 𝚞𝚗𝚌𝚑𝚊𝚗𝚐𝚎𝚍. 𝚂𝚎𝚕𝚎𝚌𝚝 𝚊 𝚍𝚒𝚏𝚏𝚎𝚛𝚎𝚗𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕.","future":"𝙼𝚞𝚜𝚝 𝚜𝚎𝚕𝚎𝚌𝚝 𝚊 𝚝𝚒𝚖𝚎 𝚒𝚗 𝚝𝚑𝚎 𝚏𝚞𝚝𝚞𝚛𝚎","change":"𝙲𝚑𝚊𝚗𝚐𝚎"},"dialogCollaboratorDialog":{"confirm":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚖𝚘𝚟𝚎 𝚞𝚜𝚎𝚛","confirmMsg":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚛𝚎𝚖𝚘𝚟𝚎 {name} 𝚏𝚛𝚘𝚖 {title}. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","addCollaborators":"𝙰𝚍𝚍 𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜","invite":"𝙿𝚞𝚝 𝚒𝚗 𝚝𝚑𝚎 𝚎𝚖𝚊𝚒𝚕 𝚘𝚏 𝚊𝚗 𝚎𝚡𝚒𝚜𝚝𝚒𝚗𝚐 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚞𝚜𝚎𝚛 𝚋𝚎𝚕𝚘𝚠. 𝙸𝚏 𝚝𝚑𝚎𝚢 𝚍𝚘𝚗'𝚝 𝚑𝚊𝚟𝚎 𝚊𝚗 𝚊𝚌𝚌𝚘𝚞𝚗𝚝, 𝚑𝚊𝚟𝚎 𝚝𝚑𝚎𝚖 𝚛𝚎𝚐𝚒𝚜𝚝𝚎𝚛 𝚑𝚎𝚛𝚎 𝚏𝚘𝚛 𝚏𝚛𝚎𝚎, 𝚊𝚗𝚍 𝚝𝚑𝚎𝚗 𝚊𝚜𝚔 𝚝𝚑𝚎𝚖 𝚝𝚘 𝚕𝚘𝚐 𝚒𝚗 𝚝𝚘 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚊𝚝 𝚕𝚎𝚊𝚜𝚝 𝚘𝚗𝚌𝚎.","admin":"𝙰𝚍𝚖𝚒𝚗","view":"𝚅𝚒𝚎𝚠","adminHelp":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚊𝚗𝚍 𝚒𝚝𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","editHelp":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝","viewHelp":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝","add":"𝙰𝚍𝚍","empty":"𝚈𝚘𝚞 𝚑𝚊𝚟𝚎 𝚗𝚘𝚝 𝚢𝚎𝚝 𝚊𝚍𝚍𝚎𝚍 𝚊𝚗𝚢 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚝𝚘 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝. 𝙸𝚗𝚟𝚒𝚝𝚎 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚝𝚘 𝚐𝚛𝚊𝚗𝚝 𝚘𝚝𝚑𝚎𝚛 𝚞𝚜𝚎𝚛𝚜 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚜𝚑𝚊𝚛𝚎𝚍 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚌𝚘𝚗𝚝𝚛𝚘𝚕 𝚠𝚑𝚎𝚝𝚑𝚎𝚛 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚑𝚊𝚟𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚟𝚒𝚎𝚠/𝚎𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝’𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚘𝚛 𝚋𝚎 𝚊𝚗 𝚊𝚍𝚖𝚒𝚗 𝚠𝚒𝚝𝚑 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗𝚜 𝚝𝚘 𝚒𝚗𝚟𝚒𝚝𝚎 𝚘𝚝𝚑𝚎𝚛 𝚞𝚜𝚎𝚛𝚜 𝚊𝚗𝚍 𝚎𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚒𝚝𝚜𝚎𝚕𝚏.","manageCollaborators":"𝙼𝚊𝚗𝚊𝚐𝚎 𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜","name":"𝙽𝚊𝚖𝚎","access":"𝙰𝚌𝚌𝚎𝚜𝚜","you":"(𝚢𝚘𝚞)"},"dialogDataDialog":{"confirm":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚖𝚘𝚟𝚎 𝚍𝚊𝚝𝚊 𝚙𝚘𝚒𝚗𝚝","removeMsg":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚛𝚎𝚖𝚘𝚟𝚎 𝚝𝚑𝚎 {key}{value} 𝚍𝚊𝚝𝚊 𝚙𝚘𝚒𝚗𝚝 𝚏𝚛𝚘𝚖 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","addData":"𝙰𝚍𝚍 𝙳𝚊𝚝𝚊 𝚏𝚘𝚛 {n, plural, one {𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","tag":"𝚃𝚊𝚐","value":"𝚅𝚊𝚕𝚞𝚎","key":"𝙺𝚎𝚢","keyValue":"𝙺𝚎𝚢 / 𝚅𝚊𝚕𝚞𝚎","tagInfo":"𝙰𝚍𝚍 𝚌𝚞𝚜𝚝𝚘𝚖 𝚝𝚊𝚐𝚜 𝚝𝚘 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜.","eg":"𝚎.𝚐.","exampleTagReport":"𝚛𝚎𝚙𝚘𝚛𝚝","exampleTagLawsuit":"𝚕𝚊𝚠𝚜𝚞𝚒𝚝","exampleTagEmail":"𝚎𝚖𝚊𝚒𝚕","keyValueInfo":"𝙰𝚍𝚍 𝚌𝚞𝚜𝚝𝚘𝚖 𝚔𝚎𝚢 / 𝚟𝚊𝚕𝚞𝚎 𝚙𝚊𝚒𝚛𝚜 𝚏𝚘𝚛 𝚙𝚛𝚎𝚌𝚒𝚜𝚎 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚘𝚏 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜.","exampleKVState":"𝚜𝚝𝚊𝚝𝚎:&𝚗𝚋𝚜𝚙;𝙲𝚊𝚕𝚒𝚏𝚘𝚛𝚗𝚒𝚊","exampleKVYear":"𝚢𝚎𝚊𝚛:&𝚗𝚋𝚜𝚙;𝟸𝟶𝟷𝟼","exampleKVType":"𝚝𝚢𝚙𝚎:&𝚗𝚋𝚜𝚙;𝚖𝚎𝚖𝚘","enterTag":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚝𝚊𝚐","enterKey":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚔𝚎𝚢","keyInvalid":"𝙺𝚎𝚢𝚜 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚌𝚘𝚗𝚝𝚊𝚒𝚗 𝚕𝚎𝚝𝚝𝚎𝚛𝚜, 𝚗𝚞𝚖𝚋𝚎𝚛𝚜, 𝚞𝚗𝚍𝚎𝚛𝚜𝚌𝚘𝚛𝚎𝚜 (_), 𝚊𝚗𝚍 𝚍𝚊𝚜𝚑𝚎𝚜 (-)","emptyMsg":"𝚈𝚘𝚞 𝚑𝚊𝚟𝚎 𝚗𝚘𝚝 𝚢𝚎𝚝 𝚊𝚍𝚍𝚎𝚍 𝚊𝚗𝚢 𝚍𝚊𝚝𝚊 𝚝𝚘 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝙰𝚍𝚍 𝚝𝚊𝚐𝚜 𝚊𝚗𝚍 𝚔𝚎𝚢/𝚟𝚊𝚕𝚞𝚎 𝚙𝚊𝚒𝚛𝚜 𝚝𝚘 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚎 𝚊𝚗𝚍 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚏𝚒𝚕𝚝𝚎𝚛 𝚊𝚗𝚍 𝚜𝚎𝚊𝚛𝚌𝚑 𝚘𝚗 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚍𝚊𝚝𝚊 𝚝𝚘 𝚐𝚒𝚟𝚎 𝚢𝚘𝚞 𝚙𝚘𝚠𝚎𝚛𝚏𝚞𝚕 𝚌𝚘𝚗𝚝𝚛𝚘𝚕 𝚘𝚟𝚎𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚖𝚊𝚗𝚊𝚐𝚎𝚖𝚎𝚗𝚝.","manageDocumentData":"𝙼𝚊𝚗𝚊𝚐𝚎 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙳𝚊𝚝𝚊","valueUnchanged":"𝚅𝚊𝚕𝚞𝚎 𝚛𝚎𝚖𝚊𝚒𝚗𝚜 𝚞𝚗𝚌𝚑𝚊𝚗𝚐𝚎𝚍","kvCannotBeEmpty":"𝙺𝚎𝚢/𝚟𝚊𝚕𝚞𝚎 𝚌𝚊𝚗𝚗𝚘𝚝 𝚋𝚎 𝚎𝚖𝚙𝚝𝚢"},"dialogReprocessDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜","reprocessDocs":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚏𝚘𝚛𝚌𝚎 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚝𝚘 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚙𝚊𝚐𝚎 𝚊𝚗𝚍 𝚒𝚖𝚊𝚐𝚎 𝚝𝚎𝚡𝚝. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","reprocessSingleDoc":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚏𝚘𝚛𝚌𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚙𝚊𝚐𝚎 𝚊𝚗𝚍 𝚒𝚖𝚊𝚐𝚎 𝚝𝚎𝚡𝚝. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","confirm":"𝚁𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜"},"dialogDeleteDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜","deleteDocs":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚙𝚎𝚛𝚖𝚊𝚗𝚎𝚗𝚝𝚕𝚢 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?"},"dialogCancelProcessingDialog":{"title":"𝙲𝚊𝚗𝚌𝚎𝚕 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","deleteDocs":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚏𝚘𝚛𝚌𝚎 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚝𝚘 𝚜𝚝𝚘𝚙 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐. 𝙰𝚏𝚝𝚎𝚛 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚑𝚊𝚜 𝚋𝚎𝚎𝚗 𝚜𝚝𝚘𝚙𝚙𝚎𝚍, 𝚊𝚗 𝚎𝚛𝚛𝚘𝚛 𝚠𝚒𝚕𝚕 𝚜𝚑𝚘𝚠 𝚊𝚏𝚝𝚎𝚛 𝚠𝚑𝚒𝚌𝚑 𝚢𝚘𝚞 𝚌𝚊𝚗 “𝙵𝚘𝚛𝚌𝚎 𝚁𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜” 𝚘𝚛 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚎 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚞𝚜𝚒𝚗𝚐 𝚝𝚑𝚎 𝙴𝚍𝚒𝚝 𝚖𝚎𝚗𝚞. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝚂𝚝𝚊𝚏𝚏-𝚘𝚗𝚕𝚢 𝚒𝚗𝚏𝚘 𝚏𝚘𝚛 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","id":"𝙸𝙳","title":"𝚃𝚒𝚝𝚕𝚎","actions":"𝙰𝚌𝚝𝚒𝚘𝚗𝚜","debug":"𝙳𝚎𝚋𝚞𝚐","viewErrors":"𝚅𝚒𝚎𝚠 𝚎𝚛𝚛𝚘𝚛𝚜","viewS3":"𝚅𝚒𝚎𝚠 𝚒𝚗 𝚂𝟹"},"dialogDocumentEmbedDialog":{"responsive":"𝚁𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎","respOn":"𝙾𝚗 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","respOnHelp":"𝙵𝚒𝚕𝚕 𝚝𝚑𝚎 𝚠𝚒𝚍𝚝𝚑 𝚘𝚏 𝚝𝚑𝚎 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚌𝚘𝚗𝚝𝚊𝚒𝚗𝚎𝚛 (𝚞𝚜𝚞𝚊𝚕𝚕𝚢 𝚠𝚘𝚛𝚔𝚜 𝚋𝚎𝚜𝚝)","respOff":"𝙾𝚏𝚏","respOffHelp":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚏𝚒𝚝 𝚝𝚑𝚎 𝚜𝚒𝚣𝚎𝚜 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚋𝚎𝚕𝚘𝚠","width":"𝚆𝚒𝚍𝚝𝚑","widthAuto":"𝚆𝚒𝚕𝚕 𝚏𝚒𝚕𝚕 𝚝𝚑𝚎 𝚊𝚟𝚊𝚒𝚕𝚊𝚋𝚕𝚎 𝚜𝚙𝚊𝚌𝚎 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚜𝚎𝚝 𝚝𝚘 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚘𝚝𝚑𝚎𝚛𝚠𝚒𝚜𝚎 𝚍𝚎𝚏𝚊𝚞𝚕𝚝𝚜 𝚝𝚘 𝟽𝟶𝟶𝚙𝚡","widthFixed":"𝚂𝚎𝚝 𝚊 𝚖𝚊𝚡𝚒𝚖𝚞𝚖 𝚠𝚒𝚍𝚝𝚑 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚘𝚛 𝚜𝚎𝚝 𝚊 𝚏𝚒𝚡𝚎𝚍 𝚜𝚒𝚣𝚎 𝚒𝚏 𝚗𝚘𝚝 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎","height":"𝙷𝚎𝚒𝚐𝚑𝚝","heightAuto":"𝚃𝚑𝚎 𝚑𝚎𝚒𝚐𝚑𝚝 𝚒𝚜 𝚋𝚊𝚜𝚎𝚍 𝚘𝚗 𝚝𝚑𝚎 𝚜𝚒𝚣𝚎 𝚘𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝, 𝚠𝚒𝚝𝚑 𝚗𝚘 𝚖𝚊𝚡𝚒𝚖𝚞𝚖 𝚜𝚒𝚣𝚎. 𝙸𝚏 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚜𝚎𝚝 𝚝𝚘 𝚝𝚑𝚎 𝚑𝚎𝚒𝚐𝚑𝚝 𝚘𝚏 𝚝𝚑𝚎 𝚋𝚛𝚘𝚠𝚜𝚎𝚛 𝚠𝚒𝚗𝚍𝚘𝚠 𝚖𝚒𝚗𝚞𝚜 𝟷𝟶𝟶𝚙𝚡","heightFixed":"𝚂𝚎𝚝 𝚊 𝚖𝚊𝚡𝚒𝚖𝚞𝚖 𝚑𝚎𝚒𝚐𝚑𝚝 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚘𝚛 𝚜𝚎𝚝 𝚊 𝚏𝚒𝚡𝚎𝚍 𝚜𝚒𝚣𝚎 𝚒𝚏 𝚗𝚘𝚝 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎","sidebarBehavior":"𝚂𝚒𝚍𝚎𝚋𝚊𝚛 𝚋𝚎𝚑𝚊𝚟𝚒𝚘𝚛","sbResponsive":"𝚁𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","sbResponsiveHelp":"𝚂𝚑𝚘𝚠 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚊𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌𝚊𝚕𝚕𝚢 𝚘𝚗 𝚕𝚊𝚛𝚐𝚎 𝚜𝚌𝚛𝚎𝚎𝚗𝚜 𝚊𝚗𝚍 𝚑𝚒𝚍𝚎 𝚘𝚗 𝚖𝚘𝚋𝚒𝚕𝚎 𝚍𝚎𝚟𝚒𝚌𝚎𝚜. 𝙸𝚗 𝚎𝚖𝚋𝚎𝚍 𝚖𝚘𝚍𝚎, 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚑𝚒𝚍𝚍𝚎𝚗","hidden":"𝙷𝚒𝚍𝚍𝚎𝚗","visible":"𝚅𝚒𝚜𝚒𝚋𝚕𝚎","visibleDefault":"𝚅𝚒𝚜𝚒𝚋𝚕𝚎 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","sbHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚋𝚢 𝚍𝚎𝚏𝚊𝚞𝚕𝚝","sbVisibleHelp":"𝚂𝚑𝚘𝚠 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚋𝚢 𝚍𝚎𝚏𝚊𝚞𝚕𝚝","titleBehavior":"𝚃𝚒𝚝𝚕𝚎 𝚋𝚎𝚑𝚊𝚟𝚒𝚘𝚛","tVisibleHelp":"𝙳𝚒𝚜𝚙𝚕𝚊𝚢 𝚝𝚑𝚎 𝚝𝚒𝚝𝚕𝚎 𝚊𝚗𝚍 𝚊𝚝𝚝𝚛𝚒𝚋𝚞𝚝𝚒𝚘𝚗 𝚒𝚗 𝚝𝚑𝚎 𝚑𝚎𝚊𝚍𝚎𝚛 𝚘𝚏 𝚝𝚑𝚎 𝚟𝚒𝚎𝚠𝚎𝚛","tHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚝𝚒𝚝𝚕𝚎 𝚒𝚗 𝚝𝚑𝚎 𝚑𝚎𝚊𝚍𝚎𝚛 𝚘𝚏 𝚝𝚑𝚎 𝚟𝚒𝚎𝚠𝚎𝚛 (𝚜𝚝𝚒𝚕𝚕 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚒𝚗 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛)","pdfLink":"𝙿𝙳𝙵 𝚕𝚒𝚗𝚔","plVisibleHelp":"𝚂𝚑𝚘𝚠 𝚊 𝚕𝚒𝚗𝚔 𝚝𝚘 𝚝𝚑𝚎 𝚛𝚊𝚠 𝙿𝙳𝙵 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚗 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛","plHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝙿𝙳𝙵 𝚕𝚒𝚗𝚔 (𝚏𝚒𝚕𝚎 𝚒𝚜 𝚜𝚝𝚒𝚕𝚕 𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎 𝚒𝚏 𝚝𝚑𝚎 𝚄𝚁𝙻 𝚒𝚜 𝚔𝚗𝚘𝚠𝚗)","fullscreenOption":"𝙵𝚞𝚕𝚕𝚜𝚌𝚛𝚎𝚎𝚗 𝚘𝚙𝚝𝚒𝚘𝚗","fsVisibleHelp":"𝚂𝚑𝚘𝚠 𝚊 𝚏𝚞𝚕𝚕𝚜𝚌𝚛𝚎𝚎𝚗 𝚒𝚌𝚘𝚗 𝚒𝚗 𝚝𝚑𝚎 𝚋𝚘𝚝𝚝𝚘𝚖-𝚛𝚒𝚐𝚑𝚝 𝚌𝚘𝚛𝚗𝚎𝚛","fsHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚏𝚞𝚕𝚕𝚜𝚌𝚛𝚎𝚎𝚗 𝚘𝚙𝚝𝚒𝚘𝚗","textMode":"𝚃𝚎𝚡𝚝 𝚖𝚘𝚍𝚎","tmVisibleHelp":"𝚂𝚑𝚘𝚠 𝚊𝚗 𝚘𝚙𝚝𝚒𝚘𝚗 𝚝𝚘 𝚟𝚒𝚎𝚠 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝’𝚜 𝚝𝚎𝚡𝚝 𝚒𝚗 𝚝𝚑𝚎 𝚟𝚒𝚎𝚠 𝚍𝚛𝚘𝚙𝚍𝚘𝚠𝚗","tmHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚎𝚡𝚝 𝚖𝚘𝚍𝚎","contributedByFormat":"𝙲𝚘𝚗𝚝𝚛𝚒𝚋𝚞𝚝𝚎𝚍 𝚋𝚢 𝚏𝚘𝚛𝚖𝚊𝚝","cbfUserAndOrg":"𝚄𝚜𝚎𝚛 𝚊𝚗𝚍 𝚘𝚛𝚐 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","cbfUserAndOrgHelp":"𝚂𝚑𝚘𝚠 𝚊 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝’𝚜 𝚊𝚝𝚝𝚛𝚒𝚋𝚞𝚝𝚒𝚘𝚗 𝚊𝚜 𝚝𝚑𝚎 𝚞𝚜𝚎𝚛 𝚗𝚊𝚖𝚎 𝚏𝚘𝚕𝚕𝚘𝚠𝚎𝚍 𝚋𝚢 𝚝𝚑𝚎 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","cbfOrgOnly":"𝙾𝚛𝚐 𝚘𝚗𝚕𝚢","cbfOrgOnlyHelp":"𝙰𝚝𝚝𝚛𝚒𝚋𝚞𝚝𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚓𝚞𝚜𝚝 𝚝𝚑𝚎 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","share":"𝚂𝚑𝚊𝚛𝚎 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎"},"dialogDocumentInformationDialog":{"editInformation":"𝙴𝚍𝚒𝚝 𝙸𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}"},"dialogRedactDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜","description":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚛𝚎𝚍𝚊𝚌𝚝 𝚝𝚑𝚎 𝚌𝚞𝚛𝚛𝚎𝚗𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝? 𝙸𝚏 𝚢𝚘𝚞 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎, 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚟𝚒𝚎𝚠𝚎𝚛 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚒𝚗𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎 𝚝𝚎𝚖𝚙𝚘𝚛𝚊𝚛𝚒𝚕𝚢 𝚠𝚑𝚒𝚕𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚎𝚜 𝚠𝚒𝚝𝚑 𝚝𝚑𝚎 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜 𝚒𝚗 𝚙𝚕𝚊𝚌𝚎. 𝚃𝚑𝚒𝚜 𝚌𝚑𝚊𝚗𝚐𝚎 𝚒𝚜 𝚒𝚛𝚛𝚎𝚟𝚎𝚛𝚜𝚒𝚋𝚕𝚎."},"dialogModifyDialog":{"title":"𝙰𝚙𝚙𝚕𝚢 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜","description":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚖𝚘𝚍𝚒𝚏𝚢 𝚝𝚑𝚎 𝚌𝚞𝚛𝚛𝚎𝚗𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝? 𝙸𝚏 𝚢𝚘𝚞 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎, 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚟𝚒𝚎𝚠𝚎𝚛 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚒𝚗𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎 𝚝𝚎𝚖𝚙𝚘𝚛𝚊𝚛𝚒𝚕𝚢 𝚠𝚑𝚒𝚕𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚎𝚜 𝚠𝚒𝚝𝚑 𝚝𝚑𝚎 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜. 𝚃𝚑𝚒𝚜 𝚌𝚑𝚊𝚗𝚐𝚎 𝚒𝚜 𝚒𝚛𝚛𝚎𝚟𝚎𝚛𝚜𝚒𝚋𝚕𝚎.","closeTitle":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚌𝚕𝚘𝚜𝚎","closeWarning":"𝚈𝚘𝚞 𝚠𝚒𝚕𝚕 𝚕𝚘𝚜𝚎 𝚊𝚕𝚕 𝚢𝚘𝚞𝚛 𝚞𝚗𝚊𝚙𝚙𝚕𝚒𝚎𝚍 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜. 𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚊𝚗𝚝 𝚝𝚘 𝚙𝚛𝚘𝚌𝚎𝚎𝚍?"},"dialogDeleteNoteDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚍𝚎𝚕𝚎𝚝𝚎","description":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚎 𝚌𝚞𝚛𝚛𝚎𝚗𝚝 𝚗𝚘𝚝𝚎?"},"dialogEditSectionsDialog":{"confirmDelete":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚍𝚎𝚕𝚎𝚝𝚎","proceedingWillRemove":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚛𝚎𝚖𝚘𝚟𝚎 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚜𝚎𝚌𝚝𝚒𝚘𝚗 (𝚙. {page} {title}). 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","editSections":"𝙴𝚍𝚒𝚝 𝚂𝚎𝚌𝚝𝚒𝚘𝚗𝚜","manageSections":"𝙼𝚊𝚗𝚊𝚐𝚎 𝚜𝚎𝚌𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑 𝚊 𝚝𝚊𝚋𝚕𝚎 𝚘𝚏 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜.","pageAbbrevNo":"𝚙. {n}","pageAbbrev":"𝚙.","empty":"𝚈𝚘𝚞 𝚑𝚊𝚟𝚎 𝚗𝚘𝚝 𝚊𝚍𝚍𝚎𝚍 𝚊𝚗𝚢 𝚜𝚎𝚌𝚝𝚒𝚘𝚗𝚜","edit":"𝙴𝚍𝚒𝚝 𝚝𝚑𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚜𝚎𝚌𝚝𝚒𝚘𝚗","add":"𝙰𝚍𝚍 𝚊 𝚗𝚎𝚠 𝚜𝚎𝚌𝚝𝚒𝚘𝚗","title":"𝚃𝚒𝚝𝚕𝚎","missingTitle":"𝙿𝚕𝚎𝚊𝚜𝚎 𝚎𝚗𝚝𝚎𝚛 𝚊 𝚝𝚒𝚝𝚕𝚎","updateTitle":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚗𝚎𝚠 𝚝𝚒𝚝𝚕𝚎 𝚘𝚛 𝚙𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛","uniquePageNumber":"𝚈𝚘𝚞 𝚖𝚞𝚜𝚝 𝚎𝚗𝚝𝚎𝚛 𝚊 𝚞𝚗𝚒𝚚𝚞𝚎 𝚙𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛","invalidPageNumber":"𝙿𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛 𝚒𝚜 𝚒𝚗𝚟𝚊𝚕𝚒𝚍"},"dialogEmbedDialog":{"updatingDocument":"𝚄𝚙𝚍𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝...","makingPublic":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚋𝚎𝚒𝚗𝚐 𝚖𝚊𝚍𝚎 𝚙𝚞𝚋𝚕𝚒𝚌. 𝚃𝚑𝚒𝚜 𝚖𝚊𝚢 𝚝𝚊𝚔𝚎 𝚊 𝚖𝚒𝚗𝚞𝚝𝚎 𝚘𝚛 𝚝𝚠𝚘.","wouldMakePublic":"𝚆𝚘𝚞𝚕𝚍 𝚢𝚘𝚞 𝚕𝚒𝚔𝚎 𝚝𝚘 𝚖𝚊𝚔𝚎 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚙𝚞𝚋𝚕𝚒𝚌 𝚋𝚎𝚏𝚘𝚛𝚎 𝚜𝚑𝚊𝚛𝚒𝚗𝚐?","notPublic":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚗𝚘𝚝 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚙𝚞𝚋𝚕𝚒𝚌. 𝙸𝚏 𝚢𝚘𝚞 𝚎𝚖𝚋𝚎𝚍 𝚘𝚛 𝚕𝚒𝚗𝚔 𝚒𝚝, 𝚘𝚗𝚕𝚢 𝚢𝚘𝚞 𝚊𝚗𝚍 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚊𝚋𝚕𝚎 𝚝𝚘 𝚟𝚒𝚎𝚠 𝚒𝚝 𝚞𝚗𝚝𝚒𝚕 𝚒𝚝 𝚒𝚜 𝚖𝚊𝚍𝚎 𝚙𝚞𝚋𝚕𝚒𝚌. 𝙲𝚕𝚒𝚌𝚔 𝚋𝚎𝚕𝚘𝚠 𝚠𝚑𝚎𝚗 𝚢𝚘𝚞’𝚛𝚎 𝚛𝚎𝚊𝚍𝚢 𝚝𝚘 𝚙𝚞𝚋𝚕𝚒𝚜𝚑 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌.","makePublic":"𝙼𝚊𝚔𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚙𝚞𝚋𝚕𝚒𝚌","leave":"𝙻𝚎𝚊𝚟𝚎 𝚊𝚜 𝚒𝚜","selectShare":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚜𝚑𝚊𝚛𝚎 𝚘𝚙𝚝𝚒𝚘𝚗","selectShareHelp":"𝙲𝚑𝚘𝚘𝚜𝚎 𝚠𝚑𝚎𝚝𝚑𝚎𝚛 𝚝𝚘 𝚜𝚑𝚊𝚛𝚎 𝚝𝚑𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚘𝚛 𝚓𝚞𝚜𝚝 𝚊 𝚙𝚊𝚐𝚎 𝚘𝚛 𝚗𝚘𝚝𝚎.","shareDoc":"𝚂𝚑𝚊𝚛𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","shareDocHelp":"𝙻𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝. (𝚃𝚑𝚒𝚜 𝚒𝚜 𝚝𝚑𝚎 𝚖𝚘𝚜𝚝 𝚌𝚘𝚖𝚖𝚘𝚗𝚕𝚢 𝚞𝚜𝚎𝚍 𝚜𝚑𝚊𝚛𝚎 𝚘𝚙𝚝𝚒𝚘𝚗.)","sharePage":"𝚂𝚑𝚊𝚛𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚌 𝚙𝚊𝚐𝚎","sharePageHelp":"𝙻𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚊 𝚜𝚒𝚗𝚐𝚕𝚎 𝚙𝚊𝚐𝚎 𝚘𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝. 𝚄𝚜𝚎𝚏𝚞𝚕 𝚏𝚘𝚛 𝚑𝚒𝚐𝚑𝚕𝚒𝚐𝚑𝚝𝚒𝚗𝚐 𝚊 𝚙𝚊𝚐𝚎 𝚎𝚡𝚌𝚎𝚛𝚙𝚝.","shareNote":"𝚂𝚑𝚊𝚛𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚌 𝚗𝚘𝚝𝚎","shareNoteHelpHasNote":"𝙻𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚊 𝚗𝚘𝚝𝚎 𝚠𝚒𝚝𝚑𝚒𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝. 𝚄𝚜𝚎𝚏𝚞𝚕 𝚏𝚘𝚛 𝚑𝚒𝚐𝚑𝚕𝚒𝚐𝚑𝚝𝚒𝚗𝚐 𝚊 𝚛𝚎𝚐𝚒𝚘𝚗 𝚘𝚏 𝚊 𝚙𝚊𝚐𝚎.","shareNoteHelpNoNote":"𝙾𝚗𝚌𝚎 𝚢𝚘𝚞 𝚊𝚍𝚍 𝚗𝚘𝚝𝚎𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝, 𝚞𝚜𝚎 𝚝𝚑𝚒𝚜 𝚏𝚎𝚊𝚝𝚞𝚛𝚎 𝚝𝚘 𝚕𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚎𝚖."},"dialogErrorDialog":{"errorOccurred":"𝙰𝚗 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍","unexpectedErrorOccurred":"𝙰𝚗 𝚞𝚗𝚎𝚡𝚙𝚎𝚌𝚝𝚎𝚍 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍","tryAgain":"𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚕𝚊𝚝𝚎𝚛.","close":"𝙲𝚕𝚘𝚜𝚎","refresh":"𝚁𝚎𝚏𝚛𝚎𝚜𝚑"},"dialogNoteEmbedDialog":{"embedNote":"𝙴𝚖𝚋𝚎𝚍 𝚊 𝚗𝚘𝚝𝚎 𝚘𝚏 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚗𝚘𝚝𝚎 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚘𝚛 𝚙𝚘𝚜𝚝:"},"dialogPageEmbedDialog":{"embedPage":"𝙴𝚖𝚋𝚎𝚍 𝚊 𝚙𝚊𝚐𝚎 𝚘𝚏 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚙𝚊𝚐𝚎 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚘𝚛 𝚙𝚘𝚜𝚝:","selectPage":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍:","page":"𝙿𝚊𝚐𝚎 {n} (𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎)","otherPage":"𝙾𝚝𝚑𝚎𝚛 𝚙𝚊𝚐𝚎","enterPageNumber":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚏𝚘𝚛 {name}","selectAccess":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚊𝚗 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 {name} 𝚒𝚗 {title}","adminAccess":"𝙰𝚍𝚖𝚒𝚗 𝙰𝚌𝚌𝚎𝚜𝚜","editAccess":"𝙴𝚍𝚒𝚝 𝙰𝚌𝚌𝚎𝚜𝚜","viewAccess":"𝚅𝚒𝚎𝚠 𝙰𝚌𝚌𝚎𝚜𝚜","adminHelp":"𝚃𝚑𝚒𝚜 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚊𝚗𝚍 𝚒𝚝𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝚃𝚑𝚎 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚒𝚗𝚟𝚒𝚝𝚎 𝚞𝚜𝚎𝚛𝚜, 𝚍𝚎𝚕𝚎𝚝𝚎 𝚞𝚜𝚎𝚛𝚜, 𝚊𝚗𝚍 𝚛𝚎𝚖𝚘𝚟𝚎 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝.","editHelp":"𝚃𝚑𝚒𝚜 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚋𝚞𝚝 𝚌𝚊𝚗𝚗𝚘𝚝 𝚎𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚒𝚝𝚜𝚎𝚕𝚏.","viewHelp":"𝚃𝚑𝚒𝚜 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚋𝚞𝚝 𝚌𝚊𝚗𝚗𝚘𝚝 𝚎𝚍𝚒𝚝 𝚝𝚑𝚎𝚖 𝚘𝚛 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝.","invalidAccess":"𝙰𝚌𝚌𝚎𝚜𝚜 𝚒𝚜 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚜𝚎𝚝 𝚝𝚘 {access}. 𝚂𝚎𝚕𝚎𝚌𝚝 𝚊 𝚍𝚒𝚏𝚏𝚎𝚛𝚎𝚗𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕.","changeAccess":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚊𝚌𝚌𝚎𝚜𝚜"},"dialogOwnerDialog":{"selectUser":"𝚄𝚜𝚎𝚛 𝚖𝚞𝚜𝚝 𝚋𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍","selectOrg":"𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚖𝚞𝚜𝚝 𝚋𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍","changeOwner":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚘𝚠𝚗𝚎𝚛 𝚏𝚘𝚛 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","accessWarning":"𝚆𝚊𝚛𝚗𝚒𝚗𝚐: 𝚈𝚘𝚞 𝚖𝚊𝚢 𝚕𝚘𝚜𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚊𝚜 𝚊 𝚛𝚎𝚜𝚞𝚕𝚝 𝚘𝚏 𝚌𝚑𝚊𝚗𝚐𝚒𝚗𝚐 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚘𝚠𝚗𝚎𝚛","user":"𝚄𝚜𝚎𝚛:","filterUsers":"𝚃𝚢𝚙𝚎 𝚝𝚘 𝚏𝚒𝚕𝚝𝚎𝚛 𝚞𝚜𝚎𝚛𝚜...","filterOrgs":"𝚃𝚢𝚙𝚎 𝚝𝚘 𝚏𝚒𝚕𝚝𝚎𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗𝚜..."},"dialogProjectDialog":{"confirmDelete":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚍𝚎𝚕𝚎𝚝𝚎","deleteProject":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚊𝚗𝚝 𝚝𝚘 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 ({project})?","editProject":"𝙴𝚍𝚒𝚝 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","createProject":"𝙲𝚛𝚎𝚊𝚝𝚎 𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","title":"𝚃𝚒𝚝𝚕𝚎...","projectDesc":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝 𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 (𝚘𝚙𝚝𝚒𝚘𝚗𝚊𝚕)","manageCollabs":"𝙼𝚊𝚗𝚊𝚐𝚎 𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜","share":"𝚂𝚑𝚊𝚛𝚎 / 𝙴𝚖𝚋𝚎𝚍 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","enterTitle":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚝𝚒𝚝𝚕𝚎","changeTitle":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚝𝚑𝚎 𝚝𝚒𝚝𝚕𝚎 𝚘𝚛 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗"},"dialogProjectEmbedDialog":{"share":"𝚂𝚑𝚊𝚛𝚎 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚘𝚛 𝚙𝚘𝚜𝚝:","invalid":"𝙸𝚗𝚟𝚊𝚕𝚒𝚍 𝚙𝚛𝚘𝚓𝚎𝚌𝚝","cannotEmbed":"𝙲𝚊𝚗𝚗𝚘𝚝 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝, 𝚊𝚜 𝚒𝚝 𝚍𝚘𝚎𝚜 𝚗𝚘𝚝 𝚊𝚙𝚙𝚎𝚊𝚛 𝚝𝚘 𝚎𝚡𝚒𝚜𝚝."},"htmlEditor":{"preview":"𝙿𝚛𝚎𝚟𝚒𝚎𝚠:"},"image":{"error":"𝙰𝚗 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍. 𝚃𝚛𝚢 𝚛𝚎𝚏𝚛𝚎𝚜𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎"},"omniselect":{"filter":"𝚃𝚢𝚙𝚎 𝚝𝚘 𝚏𝚒𝚕𝚝𝚎𝚛 𝚕𝚊𝚗𝚐𝚞𝚊𝚐𝚎","noResults":"𝙽𝚘 𝚛𝚎𝚜𝚞𝚕𝚝𝚜. 𝙲𝚕𝚒𝚌𝚔 𝚝𝚘 𝚌𝚕𝚎𝚊𝚛 𝚏𝚒𝚕𝚝𝚎𝚛."},"shareOptions":{"errorText":"𝙰𝚗 𝚞𝚗𝚎𝚡𝚙𝚎𝚌𝚝𝚎𝚍 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍. 𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚕𝚊𝚝𝚎𝚛.","copyHtml":"𝙲𝚘𝚙𝚢 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎","addShortcode":"𝙰𝚍𝚍 𝚝𝚑𝚒𝚜 𝚜𝚑𝚘𝚛𝚝𝚌𝚘𝚍𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚆𝚘𝚛𝚍𝙿𝚛𝚎𝚜𝚜 𝚌𝚘𝚗𝚝𝚎𝚗𝚝 —","pluginRequired":"𝚙𝚕𝚞𝚐𝚒𝚗 𝚛𝚎𝚚𝚞𝚒𝚛𝚎𝚍","copyShortcode":"𝙲𝚘𝚙𝚢 𝚜𝚑𝚘𝚛𝚝𝚌𝚘𝚍𝚎","copyUrl":"𝙲𝚘𝚙𝚢 𝚄𝚁𝙻"},"specialMessage":{"contactUs":"𝙲𝚘𝚗𝚝𝚊𝚌𝚝 𝚞𝚜 𝚠𝚒𝚝𝚑 𝚋𝚞𝚐 𝚛𝚎𝚙𝚘𝚛𝚝𝚜, 𝚚𝚞𝚎𝚜𝚝𝚒𝚘𝚗𝚜, 𝚊𝚗𝚍 𝚜𝚞𝚐𝚐𝚎𝚜𝚝𝚒𝚘𝚗𝚜."},"uploadOptions":{"documentLang":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚕𝚊𝚗𝚐𝚞𝚊𝚐𝚎:","forceOcr":"𝙵𝚘𝚛𝚌𝚎 𝙾𝙲𝚁:"},"actionBar":{"selectDocs":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚜𝚘𝚖𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚝𝚘 𝚛𝚎𝚟𝚎𝚊𝚕 𝚎𝚍𝚒𝚝 𝚊𝚌𝚝𝚒𝚘𝚗𝚜","noPerms":"𝚈𝚘𝚞 𝚍𝚘 𝚗𝚘𝚝 𝚑𝚊𝚟𝚎 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 𝚝𝚘 𝚎𝚍𝚒𝚝 𝚊𝚕𝚕 𝚘𝚏 𝚝𝚑𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","editMenu":"𝙴𝚍𝚒𝚝","projectsMenu":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝𝚜"},"authSection":{"help":"𝙷𝚎𝚕𝚙","language":"𝙻𝚊𝚗𝚐𝚞𝚊𝚐𝚎","tips":"𝚃𝚒𝚙𝚜 𝚊𝚗𝚍 𝚃𝚛𝚒𝚌𝚔𝚜","searchDocs":"𝚂𝚎𝚊𝚛𝚌𝚑 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚊𝚝𝚒𝚘𝚗","apiDocs":"𝙰𝙿𝙸 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚊𝚝𝚒𝚘𝚗","emailUs":"𝙴𝚖𝚊𝚒𝚕 𝚄𝚜","acctSettings":"𝙰𝚌𝚌𝚘𝚞𝚗𝚝 𝚂𝚎𝚝𝚝𝚒𝚗𝚐𝚜","signOut":"𝚂𝚒𝚐𝚗 𝚘𝚞𝚝","changeOrg":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","personalAcct":"𝙿𝚎𝚛𝚜𝚘𝚗𝚊𝚕 𝙰𝚌𝚌𝚘𝚞𝚗𝚝","signIn":"𝚂𝚒𝚐𝚗 𝚒𝚗"},"documents":{"yourDocuments":"𝚈𝚘𝚞𝚛 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","searchResults":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚁𝚎𝚜𝚞𝚕𝚝𝚜","accessDocuments":"𝚈𝚘𝚞𝚛 {access}𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","nameDocuments":"{name}'𝚜 {access}𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","allDocuments":"𝙰𝚕𝚕 {access}𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","mustBeVerified":"𝚈𝚘𝚞 𝚖𝚞𝚜𝚝 𝚋𝚎 𝚊 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚓𝚘𝚞𝚛𝚗𝚊𝚕𝚒𝚜𝚝 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","upload":"𝚄𝚙𝚕𝚘𝚊𝚍","dropFile":"𝙳𝚛𝚘𝚙 𝚏𝚒𝚕𝚎 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍"},"document":{"open":"𝙾𝚙𝚎𝚗","updating":"𝚄𝚙𝚍𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝...","processing":"𝙿𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","processingError":"𝙰𝚗 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍 𝚝𝚛𝚢𝚒𝚗𝚐 𝚝𝚘 𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","remove":"𝚁𝚎𝚖𝚘𝚟𝚎","improper":"𝚈𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚊𝚜 𝚞𝚙𝚕𝚘𝚊𝚍𝚎𝚍 𝚒𝚖𝚙𝚛𝚘𝚙𝚎𝚛𝚕𝚢","project":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝","totalMatchingPages":"{n} 𝚘𝚏 {m} 𝚙𝚊𝚐𝚎𝚜 𝚖𝚊𝚝𝚌𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚚𝚞𝚎𝚛𝚢","showAll":"𝚂𝚑𝚘𝚠 𝚊𝚕𝚕","matchingPages":"{n} 𝚙𝚊𝚐𝚎𝚜 𝚖𝚊𝚝𝚌𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚚𝚞𝚎𝚛𝚢","pageAbbrev":"𝚙.","pageCount":"{n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}","source":"𝚂𝚘𝚞𝚛𝚌𝚎"},"documentThumbnail":{"pages":"𝚙𝚊𝚐𝚎𝚜","loading":"𝙻𝚘𝚊𝚍𝚒𝚗𝚐 𝚙𝚛𝚘𝚐𝚛𝚎𝚜𝚜 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗..."},"mainContainer":{"error":"𝙴𝚛𝚛𝚘𝚛","errorMsg":"𝚆𝚎 𝚌𝚘𝚞𝚕𝚍 𝚗𝚘𝚝 𝚛𝚎𝚊𝚌𝚑 𝚝𝚑𝚎 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚜𝚎𝚛𝚟𝚎𝚛. 𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚛𝚎𝚏𝚛𝚎𝚜𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎 𝚕𝚊𝚝𝚎𝚛.","refresh":"𝚁𝚎𝚏𝚛𝚎𝚜𝚑"},"editMenu":{"editDocInfo":"𝙴𝚍𝚒𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙸𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗","changeAccess":"𝙲𝚑𝚊𝚗𝚐𝚎 𝙰𝚌𝚌𝚎𝚜𝚜","editDocData":"𝙴𝚍𝚒𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙳𝚊𝚝𝚊","cancelProcessing":"𝙲𝚊𝚗𝚌𝚎𝚕 𝙿𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","forceReprocess":"𝙵𝚘𝚛𝚌𝚎 𝚁𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜","entities":"𝙴𝚗𝚝𝚒𝚝𝚒𝚎𝚜 𝙱𝙴𝚃𝙰","changeOwner":"𝙲𝚑𝚊𝚗𝚐𝚎 𝙾𝚠𝚗𝚎𝚛","delete":"𝙳𝚎𝚕𝚎𝚝𝚎","diagnosticInfo":"𝙳𝚒𝚊𝚐𝚗𝚘𝚜𝚝𝚒𝚌 𝙸𝚗𝚏𝚘"},"metaFields":{"defaultFieldInvalidText":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚑𝚊𝚜 𝚝𝚑𝚒𝚜 {fieldName}","titleFieldTitle":"𝚃𝚒𝚝𝚕𝚎","titleFieldName":"𝚗𝚊𝚖𝚎","titleFieldNameUppercase":"𝙽𝚊𝚖𝚎","titleFieldHeader":"𝚁𝚎𝚗𝚊𝚖𝚎 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","titleFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚗𝚊𝚖𝚎 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","titleFieldButton":"𝚁𝚎𝚗𝚊𝚖𝚎","titleFieldInvalidSameName":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚑𝚊𝚜 𝚝𝚑𝚒𝚜 𝚗𝚊𝚖𝚎","titleFieldInvalidEmptyName":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚟𝚊𝚕𝚒𝚍 𝚗𝚊𝚖𝚎","sourceFieldTitle":"𝚂𝚘𝚞𝚛𝚌𝚎","sourceFieldName":"𝚜𝚘𝚞𝚛𝚌𝚎","sourceFieldNameUppercase":"𝚂𝚘𝚞𝚛𝚌𝚎","sourceFieldHeader":"𝙴𝚍𝚒𝚝 𝚜𝚘𝚞𝚛𝚌𝚎 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","sourceFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚜𝚘𝚞𝚛𝚌𝚎 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","sourceFieldButton":"𝙴𝚍𝚒𝚝","descriptionFieldTitle":"𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗","descriptionFieldName":"𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗","descriptionFieldNameUppercase":"𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗","descriptionFieldHeader":"𝙴𝚍𝚒𝚝 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","descriptionFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","descriptionFieldButton":"𝙴𝚍𝚒𝚝","relatedArticleFieldTitle":"𝚁𝚎𝚕𝚊𝚝𝚎𝚍 𝙰𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻","relatedArticleFieldName":"𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻","relatedArticleFieldNameUppercase":"𝚁𝚎𝚕𝚊𝚝𝚎𝚍 𝙰𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻","relatedArticleFieldHeader":"𝙴𝚍𝚒𝚝 𝚝𝚑𝚎 𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","relatedArticleFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","relatedArticleFieldButton":"𝙴𝚍𝚒𝚝","publishedUrlFieldTitle":"𝙿𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻","publishedUrlFieldName":"𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻","publishedUrlFieldNameUppercase":"𝙿𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻","publishedUrlFieldHeader":"𝙴𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","publishedUrlFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","publishedUrlFieldButton":"𝙴𝚍𝚒𝚝"},"projectsMenu":{"newProject":"+ 𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","projMembership":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝 𝙼𝚎𝚖𝚋𝚎𝚛𝚜𝚑𝚒𝚙","selectDocs":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚝𝚘 𝚙𝚕𝚊𝚌𝚎 𝚝𝚑𝚎𝚖 𝚒𝚗 𝚙𝚛𝚘𝚓𝚎𝚌𝚝𝚜","createProj":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚊 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚝𝚘 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚊𝚗𝚍 𝚜𝚑𝚊𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜"},"noDocuments":{"noSearchResults":"𝙽𝚘 𝚜𝚎𝚊𝚛𝚌𝚑 𝚛𝚎𝚜𝚞𝚕𝚝𝚜","queryNoResults":"𝚈𝚘𝚞𝚛 𝚜𝚎𝚊𝚛𝚌𝚑 𝚚𝚞𝚎𝚛𝚢 𝚛𝚎𝚝𝚞𝚛𝚗𝚎𝚍 𝚗𝚘 𝚛𝚎𝚜𝚞𝚕𝚝𝚜. 𝚃𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚠𝚒𝚝𝚑 𝚊 𝚋𝚛𝚘𝚊𝚍𝚎𝚛 𝚜𝚎𝚊𝚛𝚌𝚑 𝚚𝚞𝚎𝚛𝚢.","welcome":"𝚆𝚎𝚕𝚌𝚘𝚖𝚎 𝚝𝚘 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍!","verify1":"𝙽𝚘𝚝𝚎 𝚝𝚑𝚊𝚝 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚢𝚘𝚞𝚛 𝚊𝚌𝚌𝚘𝚞𝚗𝚝 𝚒𝚜 𝚗𝚘𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚜𝚎𝚊𝚛𝚌𝚑 𝚝𝚑𝚛𝚘𝚞𝚐𝚑 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌 𝚛𝚎𝚙𝚘𝚜𝚒𝚝𝚘𝚛𝚢, 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚢𝚘𝚞'𝚛𝚎 𝚒𝚗𝚝𝚎𝚛𝚎𝚜𝚝𝚎𝚍 𝚒𝚗 𝚒𝚗𝚝𝚘 𝚙𝚛𝚘𝚓𝚎𝚌𝚝𝚜, 𝚕𝚎𝚊𝚟𝚎 𝚙𝚛𝚒𝚟𝚊𝚝𝚎 𝚗𝚘𝚝𝚎𝚜, 𝚊𝚗𝚍 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚎 𝚘𝚗 𝚎𝚍𝚒𝚝𝚒𝚗𝚐 𝚊𝚗𝚍 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚘𝚝𝚑𝚎𝚛 𝚞𝚜𝚎𝚛𝚜 𝚒𝚗𝚟𝚒𝚝𝚎 𝚢𝚘𝚞 𝚝𝚘.","verify2":"𝙸𝚏 𝚢𝚘𝚞’𝚍 𝚕𝚒𝚔𝚎 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍 𝚘𝚛 𝚙𝚞𝚋𝚕𝚒𝚜𝚑 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚊𝚗𝚍 𝚢𝚘𝚞'𝚛𝚎 𝚊 𝚠𝚘𝚛𝚔𝚒𝚗𝚐 𝚓𝚘𝚞𝚛𝚗𝚊𝚕𝚒𝚜𝚝 𝚘𝚛 𝚘𝚝𝚑𝚎𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚒𝚗𝚝𝚎𝚛𝚎𝚜𝚝𝚎𝚍 𝚒𝚗 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚒𝚗𝚐 𝚙𝚛𝚒𝚖𝚊𝚛𝚢 𝚜𝚘𝚞𝚛𝚌𝚎 𝚖𝚊𝚝𝚎𝚛𝚒𝚊𝚕𝚜 𝚒𝚗 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌 𝚒𝚗𝚝𝚎𝚛𝚎𝚜𝚝, 𝚢𝚘𝚞'𝚕𝚕 𝚗𝚎𝚎𝚍 𝚝𝚘 𝚑𝚊𝚟𝚎 𝚢𝚘𝚞𝚛 𝚊𝚌𝚌𝚘𝚞𝚗𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚘𝚛 𝚊𝚍𝚍𝚎𝚍 𝚝𝚘 𝚊 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗. 𝚃𝚑𝚒𝚜 𝚒𝚜 𝚊 𝚜𝚒𝚖𝚙𝚕𝚎 𝚙𝚛𝚘𝚌𝚎𝚜𝚜:","verify3":"𝙵𝚒𝚛𝚜𝚝, 𝚜𝚎𝚎 𝚒𝚏 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚎𝚡𝚒𝚜𝚝𝚜 𝚊𝚗𝚍, 𝚒𝚏 𝚢𝚘𝚞 𝚏𝚒𝚗𝚍 𝚒𝚝, 𝚌𝚕𝚒𝚌𝚔 \\"𝚁𝚎𝚚𝚞𝚎𝚜𝚝 𝚝𝚘 𝙹𝚘𝚒𝚗\\" 𝚘𝚗 𝚒𝚝𝚜 𝚙𝚊𝚐𝚎.","verify4":"𝙸𝚏 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚑𝚊𝚜 𝚗𝚘𝚝 𝚋𝚎𝚎𝚗 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚢𝚎𝚝, 𝚘𝚛 𝚒𝚏 𝚢𝚘𝚞'𝚛𝚎 𝚊 𝚏𝚛𝚎𝚎𝚕𝚊𝚗𝚌𝚎𝚛, 𝚛𝚎𝚚𝚞𝚎𝚜𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚑𝚎𝚛𝚎. 𝚁𝚎𝚚𝚞𝚎𝚜𝚝𝚜 𝚞𝚜𝚞𝚊𝚕𝚕𝚢 𝚝𝚊𝚔𝚎 𝚝𝚠𝚘 𝚋𝚞𝚜𝚒𝚗𝚎𝚜𝚜 𝚍𝚊𝚢𝚜 𝚝𝚘 𝚙𝚛𝚘𝚌𝚎𝚜𝚜.","uploadFirst":"𝚄𝚙𝚕𝚘𝚊𝚍 𝚢𝚘𝚞𝚛 𝚏𝚒𝚛𝚜𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","upload1":"𝚄𝚙𝚕𝚘𝚊𝚍 𝚊 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚏𝚒𝚕𝚎 𝚝𝚘 𝚐𝚎𝚝 𝚜𝚝𝚊𝚛𝚝𝚎𝚍 𝚞𝚜𝚒𝚗𝚐 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚍𝚛𝚊𝚐 𝚝𝚑𝚎 𝚏𝚒𝚕𝚎 𝚒𝚗𝚝𝚘 𝚝𝚑𝚒𝚜 𝚠𝚒𝚗𝚍𝚘𝚠, 𝚘𝚛 𝚌𝚕𝚒𝚌𝚔 𝚘𝚗 𝚝𝚑𝚎 𝚋𝚕𝚞𝚎 “𝚄𝚙𝚕𝚘𝚊𝚍” 𝚋𝚞𝚝𝚝𝚘𝚗 𝚊𝚋𝚘𝚟𝚎.","upload2":"𝙾𝚗𝚌𝚎 𝚢𝚘𝚞 𝚞𝚙𝚕𝚘𝚊𝚍 𝚊 𝚏𝚒𝚕𝚎, 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚠𝚒𝚕𝚕 𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚊𝚗𝚍 𝚎𝚡𝚝𝚛𝚊𝚌𝚝 𝚒𝚝𝚜 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜. 𝙸𝚝 𝚖𝚊𝚢 𝚝𝚊𝚔𝚎 𝚊 𝚏𝚎𝚠 𝚖𝚒𝚗𝚞𝚝𝚎𝚜 𝚏𝚘𝚛 𝚝𝚑𝚒𝚜 𝚝𝚘 𝚌𝚘𝚖𝚙𝚕𝚎𝚝𝚎, 𝚋𝚞𝚝 𝚘𝚗𝚌𝚎 𝚒𝚝’𝚜 𝚍𝚘𝚗𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚘𝚙𝚝𝚒𝚖𝚒𝚣𝚎𝚍 𝚏𝚘𝚛 𝚊𝚗𝚊𝚕𝚢𝚜𝚒𝚜 𝚊𝚗𝚍 𝚜𝚑𝚊𝚛𝚒𝚗𝚐 𝚘𝚗 𝚝𝚑𝚎 𝚠𝚎𝚋."},"paginator":{"of":"𝚘𝚏","document":"{n, plural, one {𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}"},"processingBar":{"doneProcessing":"𝙳𝚘𝚗𝚎 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","processingDocuments":"𝙿𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}"},"searchBar":{"tips":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚝𝚒𝚙𝚜: 𝚊𝚍𝚍 𝚏𝚒𝚕𝚝𝚎𝚛𝚜 𝚋𝚢 𝚝𝚢𝚙𝚒𝚗𝚐 𝚞𝚜𝚎𝚛:, 𝚙𝚛𝚘𝚓𝚎𝚌𝚝:, 𝚘𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗:, 𝚎𝚝𝚌. 𝚄𝚜𝚎 𝚜𝚘𝚛𝚝: 𝚝𝚘 𝚘𝚛𝚍𝚎𝚛 𝚛𝚎𝚜𝚞𝚕𝚝𝚜.","learnMore":"𝙻𝚎𝚊𝚛𝚗 𝚖𝚘𝚛𝚎","search":"𝚂𝚎𝚊𝚛𝚌𝚑"},"searchLink":{"search":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚌𝚘𝚕𝚕𝚎𝚌𝚝𝚒𝚘𝚗"},"projects":{"header":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝𝚜","allDocuments":"𝙰𝚕𝚕 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","yourDocuments":"𝚈𝚘𝚞𝚛 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","yourPubDocuments":"𝚈𝚘𝚞𝚛 𝙿𝚞𝚋𝚕𝚒𝚌 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","orgDocuments":"{name}’𝚜 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","newProject":"+ 𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","createProject":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚢𝚘𝚞𝚛 𝚏𝚒𝚛𝚜𝚝 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚋𝚢 𝚌𝚕𝚒𝚌𝚔𝚒𝚗𝚐 “𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝” 𝚊𝚋𝚘𝚟𝚎."},"uploadDialog":{"docUpload":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚄𝚙𝚕𝚘𝚊𝚍","docUploadProj":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚄𝚙𝚕𝚘𝚊𝚍 𝚝𝚘 {title}","beginUpload":"𝙱𝚎𝚐𝚒𝚗 𝚞𝚙𝚕𝚘𝚊𝚍","pdfSizeWarning":"𝚈𝚘𝚞 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚞𝚙𝚕𝚘𝚊𝚍 𝙿𝙳𝙵 𝚏𝚒𝚕𝚎𝚜 𝚞𝚗𝚍𝚎𝚛 {size}.","nonPdfSizeWarning":"𝚈𝚘𝚞 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚞𝚙𝚕𝚘𝚊𝚍 𝚗𝚘𝚗-𝙿𝙳𝙵 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚏𝚒𝚕𝚎𝚜 𝚞𝚗𝚍𝚎𝚛 {size}.","fileReady":"{n, plural, one {𝚏𝚒𝚕𝚎} other {𝚏𝚒𝚕𝚎𝚜}} 𝚛𝚎𝚊𝚍𝚢 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍","fileLimitWarning":"𝚈𝚘𝚞 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚞𝚙𝚕𝚘𝚊𝚍 {limit} 𝚏𝚒𝚕𝚎𝚜 𝚊𝚝 𝚘𝚗𝚌𝚎.","moreOptions":"𝙼𝚘𝚛𝚎 𝚘𝚙𝚝𝚒𝚘𝚗𝚜","selectFiles":"+ 𝚂𝚎𝚕𝚎𝚌𝚝 𝚏𝚒𝚕𝚎𝚜","dragDrop":"𝙳𝚛𝚊𝚐 𝚊𝚗𝚍 𝚍𝚛𝚘𝚙 𝚏𝚒𝚕𝚎𝚜 𝚑𝚎𝚛𝚎","publicMsg":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚙𝚞𝚋𝚕𝚒𝚌𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎.","collabMsg":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗.","privateMsg":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞 𝚊𝚕𝚘𝚗𝚎.","collabName":"𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","submitting":"𝙰𝚕𝚖𝚘𝚜𝚝 𝚍𝚘𝚗𝚎... 𝚜𝚞𝚋𝚖𝚒𝚝𝚝𝚒𝚗𝚐 𝚞𝚙𝚕𝚘𝚊𝚍𝚎𝚍 𝚏𝚒𝚕𝚎𝚜 𝚏𝚘𝚛 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 ({percent})","uploading":"𝚄𝚙𝚕𝚘𝚊𝚍𝚒𝚗𝚐 ... ({uploaded}/{length})","gettingInfo":"𝙶𝚎𝚝𝚝𝚒𝚗𝚐 𝚞𝚙𝚕𝚘𝚊𝚍 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗 ({percent})","pleaseLeaveOpen":"𝙿𝚕𝚎𝚊𝚜𝚎 𝚕𝚎𝚊𝚟𝚎 𝚝𝚑𝚒𝚜 𝚙𝚊𝚐𝚎 𝚘𝚙𝚎𝚗 𝚠𝚑𝚒𝚕𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚞𝚙𝚕𝚘𝚊𝚍. 𝚃𝚑𝚒𝚜 𝚍𝚒𝚊𝚕𝚘𝚐 𝚠𝚒𝚕𝚕 𝚊𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌𝚊𝚕𝚕𝚢 𝚌𝚕𝚘𝚜𝚎 𝚠𝚑𝚎𝚗 𝚝𝚑𝚎𝚢 𝚑𝚊𝚟𝚎 𝚏𝚒𝚗𝚒𝚜𝚑𝚎𝚍 𝚞𝚙𝚕𝚘𝚊𝚍𝚒𝚗𝚐.","errorHeading":"𝙴𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍 𝚠𝚑𝚒𝚕𝚎 𝚞𝚙𝚕𝚘𝚊𝚍𝚒𝚗𝚐","errorMsg":"𝚆𝚎 𝚏𝚊𝚒𝚕𝚎𝚍 𝚝𝚘 {errorMessage}. 𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚕𝚊𝚝𝚎𝚛.","editDocInfo":"𝙴𝚍𝚒𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗:","untitled":"𝚄𝚗𝚝𝚒𝚝𝚕𝚎𝚍","uploadFiles":"𝚄𝚙𝚕𝚘𝚊𝚍 𝚊𝚍𝚍𝚒𝚝𝚒𝚘𝚗𝚊𝚕 𝚏𝚒𝚕𝚎𝚜","selectMore":"+ 𝚂𝚎𝚕𝚎𝚌𝚝 𝚖𝚘𝚛𝚎 𝚏𝚒𝚕𝚎𝚜","dragDropMore":"𝙳𝚛𝚊𝚐 𝚊𝚗𝚍 𝚍𝚛𝚘𝚙 𝚊𝚍𝚍𝚒𝚝𝚒𝚘𝚗𝚊𝚕 𝚏𝚒𝚕𝚎𝚜 𝚑𝚎𝚛𝚎"},"embedNote":{"viewTheNote":"𝚅𝚒𝚎𝚠 𝚝𝚑𝚎 𝚗𝚘𝚝𝚎 ‘{title}‘ 𝚒𝚗 𝚒𝚝𝚜 𝚘𝚛𝚒𝚐𝚒𝚗𝚊𝚕 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚌𝚘𝚗𝚝𝚎𝚡𝚝 𝚘𝚗 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚗 𝚊 𝚗𝚎𝚠 𝚠𝚒𝚗𝚍𝚘𝚠 𝚘𝚛 𝚝𝚊𝚋","viewDoc":"𝚅𝚒𝚎𝚠 𝚝𝚑𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍"},"embedPage":{"viewDoc":"𝚅𝚒𝚎𝚠 𝚎𝚗𝚝𝚒𝚛𝚎 {title} 𝚘𝚗 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚗 𝚗𝚎𝚠 𝚠𝚒𝚗𝚍𝚘𝚠 𝚘𝚛 𝚝𝚊𝚋","pageOf":"𝙿𝚊𝚐𝚎 {page} 𝚘𝚏 {title}","gotoDocCloud":"𝙶𝚘 𝚝𝚘 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚗 𝚗𝚎𝚠 𝚠𝚒𝚗𝚍𝚘𝚠 𝚘𝚛 𝚝𝚊𝚋"},"entities":{"back":"𝙱𝚊𝚌𝚔","page":"𝙿𝚊𝚐𝚎","of":"𝚘𝚏","totalEntityResult":"{n, plural, one {# 𝚝𝚘𝚝𝚊𝚕 𝚎𝚗𝚝𝚒𝚝𝚢 𝚛𝚎𝚜𝚞𝚕𝚝} other {# 𝚝𝚘𝚝𝚊𝚕 𝚎𝚗𝚝𝚒𝚝𝚢 𝚛𝚎𝚜𝚞𝚕𝚝𝚜}} ","filter":"𝙵𝚒𝚕𝚝𝚎𝚛","applyFilters":"𝙰𝚙𝚙𝚕𝚢 𝚏𝚒𝚕𝚝𝚎𝚛𝚜","kind":"𝙺𝚒𝚗𝚍","clear":"𝙲𝚕𝚎𝚊𝚛","person":"𝙿𝚎𝚛𝚜𝚘𝚗","org":"𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","location":"𝙻𝚘𝚌𝚊𝚝𝚒𝚘𝚗","event":"𝙴𝚟𝚎𝚗𝚝","workOfArt":"𝚆𝚘𝚛𝚔 𝚘𝚏 𝙰𝚛𝚝","consumerGood":"𝙲𝚘𝚗𝚜𝚞𝚖𝚎𝚛 𝙶𝚘𝚘𝚍","address":"𝙰𝚍𝚍𝚛𝚎𝚜𝚜","date":"𝙳𝚊𝚝𝚎","number":"𝙽𝚞𝚖𝚋𝚎𝚛","phoneNumber":"𝙿𝚑𝚘𝚗𝚎 𝙽𝚞𝚖𝚋𝚎𝚛","price":"𝙿𝚛𝚒𝚌𝚎","unknown":"𝚄𝚗𝚔𝚗𝚘𝚠𝚗","other":"𝙾𝚝𝚑𝚎𝚛","occurrences":"𝙾𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎𝚜","proper":"𝙿𝚛𝚘𝚙𝚎𝚛","common":"𝙲𝚘𝚖𝚖𝚘𝚗","advanced":"𝙰𝚍𝚟𝚊𝚗𝚌𝚎𝚍","relevanceThreshold":"𝚁𝚎𝚕𝚎𝚟𝚊𝚗𝚌𝚎 𝚝𝚑𝚛𝚎𝚜𝚑𝚘𝚕𝚍:","knowledgeGraph":"𝙺𝚗𝚘𝚠𝚕𝚎𝚍𝚐𝚎 𝚐𝚛𝚊𝚙𝚑:","hasKG":"𝙷𝚊𝚜 𝚊 𝚔𝚗𝚘𝚠𝚕𝚎𝚍𝚐𝚎 𝚐𝚛𝚊𝚙𝚑 𝙸𝙳","noKG":"𝙳𝚘𝚎𝚜 𝚗𝚘𝚝 𝚑𝚊𝚟𝚎 𝚊 𝚔𝚗𝚘𝚠𝚕𝚎𝚍𝚐𝚎 𝚐𝚛𝚊𝚙𝚑 𝙸𝙳","wikiUrl":"𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊 𝚄𝚁𝙻:","hasWiki":"𝙷𝚊𝚜 𝚊 𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊 𝚄𝚁𝙻","noWiki":"𝙳𝚘𝚎𝚜 𝚗𝚘𝚝 𝚑𝚊𝚟𝚎 𝚊 𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊 𝚄𝚁𝙻","occurrence":"{n, plural, zero {} one {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎} other {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎𝚜}}","wikipedia":"𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊","entityExtraction":"𝙴𝚗𝚝𝚒𝚝𝚢 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 “{title}”","extractingEntities":"𝙴𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚗𝚐 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜...","welcome":"𝚆𝚎𝚕𝚌𝚘𝚖𝚎 𝚝𝚘 𝚎𝚗𝚝𝚒𝚝𝚢 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚘𝚗! 𝚃𝚑𝚒𝚜 𝚏𝚎𝚊𝚝𝚞𝚛𝚎 𝚒𝚜 𝚟𝚎𝚛𝚢 𝚖𝚞𝚌𝚑 𝚒𝚗 𝚙𝚛𝚘𝚐𝚛𝚎𝚜𝚜 𝚋𝚞𝚝 𝚠𝚎 𝚠𝚊𝚗𝚝 𝚒𝚝 𝚒𝚗 𝚢𝚘𝚞𝚛 𝚑𝚊𝚗𝚍𝚜 𝚎𝚊𝚛𝚕𝚢 𝚝𝚘 𝚠𝚎𝚕𝚌𝚘𝚖𝚎 𝚊𝚗𝚢 𝚏𝚎𝚎𝚍𝚋𝚊𝚌𝚔 𝚢𝚘𝚞 𝚖𝚒𝚐𝚑𝚝 𝚑𝚊𝚟𝚎.","manual":"𝚁𝚒𝚐𝚑𝚝 𝚗𝚘𝚠 𝚝𝚑𝚎 𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚏𝚘𝚛 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚗𝚐 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜 𝚒𝚜 𝚖𝚊𝚗𝚞𝚊𝚕. 𝚃𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚑𝚊𝚜 𝚗𝚘𝚝 𝚑𝚊𝚍 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚎𝚍 𝚢𝚎𝚝, 𝚜𝚘 𝚌𝚕𝚒𝚌𝚔 𝚋𝚎𝚕𝚘𝚠 𝚝𝚘 𝚐𝚎𝚝 𝚜𝚝𝚊𝚛𝚝𝚎𝚍.","error":"𝙰𝚗 𝚞𝚗𝚎𝚡𝚙𝚎𝚌𝚝𝚎𝚍 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍","extract":"𝙴𝚡𝚝𝚛𝚊𝚌𝚝 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜","noEntities":"𝚃𝚑𝚎𝚛𝚎 𝚊𝚛𝚎 𝚗𝚘 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜. 𝚃𝚑𝚒𝚜 𝚌𝚘𝚞𝚕𝚍 𝚑𝚊𝚙𝚙𝚎𝚗 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚍𝚘𝚎𝚜𝚗’𝚝 𝚑𝚊𝚟𝚎 𝚝𝚎𝚡𝚝, 𝚒𝚜 𝚗𝚘𝚗-𝙴𝚗𝚐𝚕𝚒𝚜𝚑 (𝚘𝚗𝚕𝚢 𝙴𝚗𝚐𝚕𝚒𝚜𝚑 𝚒𝚜 𝚜𝚞𝚙𝚙𝚘𝚛𝚝𝚎𝚍 𝚏𝚘𝚛 𝚗𝚘𝚠), 𝚘𝚛 𝚜𝚘𝚖𝚎 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍.","starting":"𝚂𝚝𝚊𝚛𝚝𝚒𝚗𝚐 𝚎𝚡𝚝𝚊𝚌𝚝𝚒𝚘𝚗..."},"home":{"about":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚜 𝚊𝚗 𝚊𝚕𝚕-𝚒𝚗-𝚘𝚗𝚎 𝚙𝚕𝚊𝚝𝚏𝚘𝚛𝚖 𝚏𝚘𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜: 𝚞𝚙𝚕𝚘𝚊𝚍, 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎, 𝚊𝚗𝚊𝚕𝚢𝚣𝚎, 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚎, 𝚜𝚎𝚊𝚛𝚌𝚑, 𝚊𝚗𝚍 𝚎𝚖𝚋𝚎𝚍.","viewPublicDocs":"𝚅𝚒𝚎𝚠 𝚙𝚞𝚋𝚕𝚒𝚌 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜"},"annotation":{"title":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 𝚃𝚒𝚝𝚕𝚎","description":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 (𝚘𝚙𝚝𝚒𝚘𝚗𝚊𝚕)","unchanged":"𝙽𝚘𝚝𝚎 𝚛𝚎𝚖𝚊𝚒𝚗𝚜 𝚞𝚗𝚌𝚑𝚊𝚗𝚐𝚎𝚍","noTitle":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚝𝚒𝚝𝚕𝚎 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗","org":"𝚃𝚑𝚒𝚜 𝚗𝚘𝚝𝚎 𝚒𝚜 𝚘𝚗𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞 𝚊𝚗𝚍 𝚘𝚝𝚑𝚎𝚛𝚜 𝚠𝚒𝚝𝚑 𝚎𝚍𝚒𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","private":"𝚃𝚑𝚒𝚜 𝚙𝚛𝚒𝚟𝚊𝚝𝚎 𝚗𝚘𝚝𝚎 𝚒𝚜 𝚘𝚗𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞","by":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎𝚍 𝚋𝚢 {name}","byOrg":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎𝚍 𝚋𝚢 {name}, {org}","addPageNote":"𝙰𝚍𝚍 𝚙𝚊𝚐𝚎 𝚗𝚘𝚝𝚎"},"viewDropdown":{"document":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝","plainText":"𝙿𝚕𝚊𝚒𝚗 𝚃𝚎𝚡𝚝","thumbnail":"𝚃𝚑𝚞𝚖𝚋𝚗𝚊𝚒𝚕","notes":"𝙽𝚘𝚝𝚎𝚜","search":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚁𝚎𝚜𝚞𝚕𝚝𝚜"},"zoom":{"fitWidth":"𝙵𝚒𝚝 𝚠𝚒𝚍𝚝𝚑","fitHeight":"𝙵𝚒𝚝 𝚑𝚎𝚒𝚐𝚑𝚝"},"titleHeader":{"contributedBy":"𝙲𝚘𝚗𝚝𝚛𝚒𝚋𝚞𝚝𝚎𝚍 𝚋𝚢 {name}"},"annotatePane":{"annotateDocument":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝","desc":"𝙷𝚒𝚐𝚑𝚕𝚒𝚐𝚑𝚝 𝚊 𝚙𝚘𝚛𝚝𝚒𝚘𝚗 𝚘𝚏 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎, 𝚘𝚛 𝚌𝚕𝚒𝚌𝚔 𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎𝚜 𝚝𝚘 𝚌𝚛𝚎𝚊𝚝𝚎 𝚊 𝚗𝚘𝚝𝚎."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝙿𝚊𝚐𝚎} other {# 𝙿𝚊𝚐𝚎𝚜}} 𝚂𝚎𝚕𝚎𝚌𝚝𝚎𝚍","applyModifications":"𝙰𝚙𝚙𝚕𝚢 𝙼𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜","duplicate":"𝙳𝚞𝚙𝚕𝚒𝚌𝚊𝚝𝚎","move":"𝙼𝚘𝚟𝚎","unselect":"𝚄𝚗𝚜𝚎𝚕𝚎𝚌𝚝","remove":"𝚁𝚎𝚖𝚘𝚟𝚎","insertPages":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝙿𝚊𝚐𝚎} other {# 𝙿𝚊𝚐𝚎𝚜}}","pagesPending":"{n, plural, one {# 𝙿𝚊𝚐𝚎} other {# 𝙿𝚊𝚐𝚎𝚜}} 𝙿𝚎𝚗𝚍𝚒𝚗𝚐 𝙸𝚗𝚜𝚎𝚛𝚝𝚒𝚘𝚗","insertBegin":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}} 𝚊𝚝 𝚋𝚎𝚐𝚒𝚗𝚗𝚒𝚗𝚐.","insertEnd":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}} 𝚊𝚝 𝚎𝚗𝚍.","insertBetween":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}} 𝚒𝚗 𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎 {p0} 𝚊𝚗𝚍 {p1}.","click":"𝙲𝚕𝚒𝚌𝚔 𝚒𝚗-𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎𝚜 𝚋𝚎𝚕𝚘𝚠 𝚝𝚘 𝚖𝚊𝚛𝚔 𝚠𝚑𝚎𝚛𝚎 𝚝𝚘 𝚙𝚊𝚜𝚝𝚎 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}.","insert":"𝙸𝚗𝚜𝚎𝚛𝚝","insertAtEnd":"𝙸𝚗𝚜𝚎𝚛𝚝 𝚊𝚝 𝚎𝚗𝚍","insertPosition":"𝙸𝚗𝚜𝚎𝚛𝚝 𝚙𝚊𝚐𝚎𝚜 𝚊𝚝 𝚙𝚘𝚜𝚒𝚝𝚒𝚘𝚗","insertOtherDoc":"𝙸𝚗𝚜𝚎𝚛𝚝 𝚏𝚛𝚘𝚖 𝚘𝚝𝚑𝚎𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","modifyPages":"𝙼𝚘𝚍𝚒𝚏𝚢 𝙿𝚊𝚐𝚎𝚜","select":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚙𝚊𝚐𝚎𝚜 𝚋𝚎𝚕𝚘𝚠 𝚝𝚘 𝚊𝚙𝚙𝚕𝚢 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜 (𝚙𝚊𝚐𝚎 𝚛𝚘𝚝𝚊𝚝𝚒𝚘𝚗, 𝚛𝚎𝚊𝚛𝚛𝚊𝚗𝚐𝚒𝚗𝚐, 𝚊𝚗𝚍 𝚍𝚎𝚕𝚎𝚝𝚒𝚘𝚗). 𝙲𝚕𝚒𝚌𝚔 𝚒𝚗-𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎𝚜 𝚝𝚘 𝚒𝚗𝚜𝚎𝚛𝚝.","undo":"𝚄𝚗𝚍𝚘","redo":"𝚁𝚎𝚍𝚘"},"redactPane":{"redactDoc":"𝚁𝚎𝚍𝚊𝚌𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝","desc":"𝙲𝚕𝚒𝚌𝚔 𝚊𝚗𝚍 𝚍𝚛𝚊𝚐 𝚝𝚘 𝚍𝚛𝚊𝚠 𝚊 𝚋𝚕𝚊𝚌𝚔 𝚛𝚎𝚌𝚝𝚊𝚗𝚐𝚕𝚎 𝚘𝚟𝚎𝚛 𝚎𝚊𝚌𝚑 𝚙𝚘𝚛𝚝𝚒𝚘𝚗 𝚘𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞’𝚍 𝚕𝚒𝚔𝚎 𝚝𝚘 𝚛𝚎𝚍𝚊𝚌𝚝. 𝙰𝚜𝚜𝚘𝚌𝚒𝚊𝚝𝚎𝚍 𝚝𝚎𝚡𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚛𝚎𝚖𝚘𝚟𝚎𝚍 𝚠𝚑𝚎𝚗 𝚢𝚘𝚞 𝚜𝚊𝚟𝚎 𝚢𝚘𝚞𝚛 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜.","confirm":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚁𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜","undo":"𝚄𝚗𝚍𝚘"},"searchPane":{"yourQuery":"𝚈𝚘𝚞𝚛 𝚚𝚞𝚎𝚛𝚢 {search} 𝚠𝚊𝚜 𝚏𝚘𝚞𝚗𝚍 𝚘𝚗 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}"},"selectNotePane":{"selectNote":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚊 𝚗𝚘𝚝𝚎","desc":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚝𝚑𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 𝚝𝚑𝚊𝚝 𝚢𝚘𝚞 𝚠𝚊𝚗𝚝 𝚝𝚘 𝚜𝚑𝚊𝚛𝚎."},"searchResults":{"resultPages":"{results, plural, one {# 𝚛𝚎𝚜𝚞𝚕𝚝} other {# 𝚛𝚎𝚜𝚞𝚕𝚝𝚜}} 𝚊𝚌𝚛𝚘𝚜𝚜 {pages, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}","noSearchResults":"𝙽𝚘 𝚜𝚎𝚊𝚛𝚌𝚑 𝚛𝚎𝚜𝚞𝚕𝚝𝚜. 𝚃𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚠𝚒𝚝𝚑 𝚊 𝚋𝚛𝚘𝚊𝚍𝚎𝚛 𝚚𝚞𝚎𝚛𝚢.","occurrences":"{n, plural, one {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎} other {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎𝚜}}"},"sidebar":{"updating":"𝚄𝚙𝚍𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚌𝚖𝚎𝚗𝚝...","original":"𝙾𝚛𝚒𝚐𝚒𝚗𝚊𝚕 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 (𝙿𝙳𝙵) »","related":"𝚁𝚎𝚕𝚊𝚝𝚎𝚍 𝙰𝚛𝚝𝚒𝚌𝚕𝚎 »","contributed":"𝙲𝚘𝚗𝚝𝚛𝚒𝚋𝚞𝚝𝚎𝚍 𝚋𝚢 {name}","source":"𝚂𝚘𝚞𝚛𝚌𝚎: {source}","actions":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙰𝚌𝚝𝚒𝚘𝚗𝚜","share":"𝚂𝚑𝚊𝚛𝚎","shareDesc":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚊𝚗 𝚎𝚖𝚋𝚎𝚍 𝚘𝚛 𝚜𝚑𝚊𝚛𝚎 𝚘𝚗 𝚜𝚘𝚌𝚒𝚊𝚕 𝚖𝚎𝚍𝚒𝚊.","annotate":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎","annotateDesc":"𝙼𝚊𝚔𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚔𝚎𝚎𝚙 𝚗𝚘𝚝𝚎𝚜 𝚘𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","redact":"𝚁𝚎𝚍𝚊𝚌𝚝","redactDesc":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜 𝚘𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚑𝚒𝚍𝚎 𝚝𝚎𝚡𝚝. 𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚊𝚏𝚝𝚎𝚛𝚠𝚊𝚛𝚍𝚜.","modify":"𝙼𝚘𝚍𝚒𝚏𝚢 𝙿𝚊𝚐𝚎𝚜","modifyDesc":"𝚁𝚎𝚊𝚛𝚛𝚊𝚗𝚐𝚎, 𝚛𝚘𝚝𝚊𝚝𝚎, 𝚍𝚎𝚕𝚎𝚝𝚎, 𝚒𝚗𝚜𝚎𝚛𝚝, 𝚊𝚗𝚍 𝚜𝚙𝚕𝚒𝚝 𝚙𝚊𝚐𝚎𝚜.","info":"𝙴𝚍𝚒𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙸𝚗𝚏𝚘","infoDesc":"𝙼𝚘𝚍𝚒𝚏𝚢 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗 𝚕𝚒𝚔𝚎 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚊𝚗𝚍 𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚄𝚁𝙻.","data":"𝙴𝚍𝚒𝚝 𝚃𝚊𝚐𝚜 𝚊𝚗𝚍 𝙳𝚊𝚝𝚊","dataDesc":"𝙰𝚍𝚍 𝚝𝚊𝚐𝚜 𝚊𝚗𝚍 𝚔𝚎𝚢/𝚟𝚊𝚕𝚞𝚎 𝚙𝚊𝚒𝚛𝚜 𝚝𝚘 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","sections":"𝙴𝚍𝚒𝚝 𝚂𝚎𝚌𝚝𝚒𝚘𝚗𝚜","sectionsDesc":"𝙰𝚍𝚍 𝚜𝚎𝚌𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑 𝚊 𝚝𝚊𝚋𝚕𝚎 𝚘𝚏 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜.","privateNote":"𝙰𝚍𝚍 𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝙽𝚘𝚝𝚎","privateNoteDesc":"𝙼𝚊𝚔𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚔𝚎𝚎𝚙 𝚗𝚘𝚝𝚎𝚜 𝚘𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝."},"viewer":{"notFound":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚗𝚘𝚝 𝚏𝚘𝚞𝚗𝚍","notFoundDesc":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍 𝚎𝚒𝚝𝚑𝚎𝚛 𝚍𝚘𝚎𝚜 𝚗𝚘𝚝 𝚎𝚡𝚒𝚜𝚝 𝚘𝚛 𝚢𝚘𝚞 𝚕𝚊𝚌𝚔 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 𝚝𝚘 𝚊𝚌𝚌𝚎𝚜𝚜 𝚒𝚝","processing":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","processingDesc":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍 𝚒𝚜 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚊𝚗𝚍 𝚠𝚒𝚕𝚕 𝚊𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌𝚊𝚕𝚕𝚢 𝚛𝚎𝚏𝚛𝚎𝚜𝚑 𝚠𝚑𝚎𝚗 𝚒𝚝 𝚒𝚜 𝚛𝚎𝚊𝚍𝚢","error":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚑𝚊𝚜 𝚎𝚗𝚌𝚘𝚞𝚗𝚝𝚎𝚛𝚎𝚍 𝚊𝚗 𝚎𝚛𝚛𝚘𝚛","errorDesc":"𝙰 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚎𝚛𝚛𝚘𝚛 𝚑𝚊𝚜 𝚋𝚎𝚎𝚗 𝚎𝚗𝚌𝚘𝚞𝚗𝚝𝚎𝚛𝚎𝚍 𝚒𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍","accessible":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚗𝚘𝚝 𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎","accessibleDesc":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍 𝚒𝚜 𝚜𝚝𝚒𝚕𝚕 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚘𝚛 𝚢𝚘𝚞 𝚕𝚊𝚌𝚔 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 𝚝𝚘 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚒𝚝"}}')}}]);
-./public/src_langs_json_ru_json.cc5ece2fa238b81a2479.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"E-mail адрес","loading":"Загрузка...","documentCloud":"DocumentCloud","home":"Главная"},"homeTemplate":{"signedIn":"Вы вошли как {name}","signOut":"Выйти","signIn":"Войти","signUp":"Регистрация","goToApp":"В приложение"},"accessToggle":{"public":"Заметка будет видна всем, у кого есть доступ к документу.","collaborator":"Заметка будет видна всем, кто может редактировать этот документ.","private":"Заметка будет видна только вам.","publicName":"Публичное","collaboratorName":"Соавтор","privateName":"Приватное"},"accessIcon":{"private":"Приватный доступ","organization":"Приватно для вашей организации","public":"Публичный доступ","privateExplanation":"Только вы можете просматривать этот документ","organizationExplanation":"Только члены вашей организации могут просматривать этот документ","publicExplanation":"Кто угодно может найти и просматривать этот документ"},"appearanceCustomizer":{"customizeAppearance":"Настройка внешнего вида","hide":"Скрыть текст справки","show":"Показывать текст справки"},"appearanceDimension":{"responsive":"Автоматически (по умолчанию)","fixed":"Закреплено"},"calendar":{"jan":"Январь","feb":"Февраль","mar":"Март","apr":"Апрель","may":"Май","jun":"Июнь","jul":"Июль","aug":"Август","sep":"Сентябрь","oct":"Октябрь","nov":"Ноябрь","dec":"Декабрь","hourShortcode":"ЧЧ","minuteShortcode":"MM"},"dialog":{"cancel":"Отменить","delete":"Удалить","done":"Готово","edit":"Редактировать","remove":"Удалить","save":"Сохранить","create":"Создать","ok":"OK","update":"Обновить","dismiss":"Скрыть","continue":"Продолжить","dispatch":"Отправить"},"dialogAccessDialog":{"changeAccess":"Изменить доступ к {n, plural, one {документу} few {# документам} many {# документам} other {# документов}}","selectAccess":"Выбрать уровень доступа для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","public":"Публичный доступ","publicDesc":"Кто угодно в Интернете может найти и просматривать документ.","verifiedHelp":"Только верифицированные пользователи или члены верифицированных организаций могут делать загруженные документы публичными. Если вы журналист или каким-либо иным образом работаете над публикацией проверенных материалов для информирования общественности, узнайте больше и запросите верификацию здесь.","privateToOrg":"Вы не можете изменить уровень доступа на \\"Приватно для вашей организации\\", потому что {n, plural, one {этот документ} other {один или более документов}} связаны с вашим индивидуальным аккаунтом, а не с организацией. Чтобы добавить {n, plural, one {его} other {их}} в организацию, выберите {n, plural, one {его} other {их}} в панели управления и нажмите \\"Сменить владельца\\".На этой странице вы можете присоединиться к организации или создать ее.","private":"Приватный доступ","privateDesc":"Только люди с явным разрешением (через соавторство) имеют доступ.","organization":"Приватно для вашей организации","organizationDesc":"Только люди в вашей организации имеют доступ.","schedulePublication":"Запланировать публикацию","scheduleHelp":"Этот документ будет опубликован в указанную дату и время. Время публикации локальное{timezone}.","noindexTitle":"Скрыть от поисковых систем и поиска DocumentCloud","noindexHelp":"Если вы включите эту опцию, то поисковым системам, таким как Google, будет предложено не индексировать этот документ. Кроме того, документ не будет отображаться в поисках из DocumentCloud для пользователей, которые не вошли в систему.","unchanged":"Доступ не изменен. Выберите другой уровень доступа.","future":"Необходимо выбрать время в будущем","change":"Изменить","changeNoindex":"Измените видимость для поисковых систем и DocumentCloud для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"dialogCollaboratorDialog":{"confirm":"Подтвердить удаление пользователя","confirmMsg":"Если вы продолжите, то удалите {name} из {title}. Вы хотите продолжить?","addCollaborators":"Добавить соавторов","invite":"Введите адрес электронной почты существующего пользователя DocumentCloud. Если у них нет аккаунта, пусть они зарегистрируются бесплатно здесь, и попросите их войти в DocumentCloud по крайней мере один раз.","admin":"Администратор","view":"Просмотр","adminHelp":"Соавторы могут редактировать этот проект и его документы","editHelp":"Соавторы могут редактировать документы в этом проекте","viewHelp":"Соавторы могут просматривать документы в этом проекте","add":"Добавить","empty":"Вы еще не добавили каких-либо соавторов в этот проект. Пригласите соавторов, чтобы предоставить другим пользователям доступ к документам в этом проекте. Вы можете контролировать, имеют ли соавторы доступ к просмотру и редактированию документов проекта или возможности быть администратором с правами на приглашение других пользователей и редактирование самого проекта.","manageCollaborators":"Управление соавторами","name":"Имя","access":"Доступ","you":"(вы)"},"dialogDataDialog":{"confirm":"Подтвердите удаление точки данных","removeMsg":"Если продолжите, вы удалите точку данных {key}{value} из указанных документов. Вы хотите продолжить?","addData":"Добавьте данные для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}","tag":"Тег","value":"Значение","key":"Ключ","keyValue":"Ключ / Значение","tagInfo":"Добавьте пользовательские теги для категоризации ваших документов.","eg":"например","exampleTagReport":"жалоба","exampleTagLawsuit":"иск","exampleTagEmail":"e-mail","keyValueInfo":"Добавьте пользовательскую пару ключ / значение для точной категоризации ваших документов.","exampleKVState":"штат: Калифорния","exampleKVYear":"год: 2016","exampleKVType":"тип: примечание","enterTag":"Введите тег","enterKey":"Введите ключ","keyInvalid":"Ключи могут содержать только буквы, цифры, подчеркивания (_) и дефисы (-)","emptyMsg":"Вы еще не добавили никаких данных в указанные документы. Добавьте теги и пары ключ/значение, чтобы классифицировать и упорядочить ваши документы. Вы можете фильтровать и искать данные документа, что дает вам возможность контролировать управление документацией.","manageDocumentData":"Управление данными документа","valueUnchanged":"Значение остается неизменным","kvCannotBeEmpty":"Ключ/значение не может быть пустым"},"dialogReprocessDialog":{"title":"Подтвердить повторную обработку","reprocessDocs":"Если вы продолжите, это заставит {n, plural, one {выбранный документ} few {# выбранных документа} many {# выбранных документов} other {# выбранных документов}} повторно обработать страницу и текст изображения. Вы хотите продолжить?","reprocessSingleDoc":"Если вы продолжите, это заставит документ повторно обработать страницу и текст изображения. Вы хотите продолжить?","confirm":"Повторная обработка"},"dialogDeleteDialog":{"title":"Подтвердить повторную обработку","deleteDocs":"Если вы продолжите, это окончательно удалит {n, plural, one {выбранный документ} few {# выбранных документа} many {# выбранных документов} other {# выбранных документов}}. Вы хотите продолжить?"},"dialogCancelProcessingDialog":{"title":"Отменить обработку","deleteDocs":"Если вы продолжите, это прервет обработку {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}. Когда обработка остановится, появится ошибка, после которой вы можете подвергнуть \\"принудительной повторной обработке\\" или удалить {n, plural, one {документ} other {документы}} используя меню \\"Редактировать\\". Вы хотите продолжить?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Информация о выбранном {n, plural, one {документе} few {# документах} many {# документах} other {# документах}}, доступная только персоналу","id":"ID","title":"Заголовок","actions":"Действия","debug":"Отладка","viewErrors":"Просмотр ошибок","viewS3":"Просмотр в S3"},"dialogDocumentEmbedDialog":{"responsive":"Адаптивный","respOn":"Вкл (по умолчанию)","respOnHelp":"Заполнить ширину контейнера статьи (обычно работает лучше всего)","respOff":"Выкл","respOffHelp":"Документ будет соответствовать указанным ниже размерам","width":"Ширина","widthAuto":"Заполнит доступное место, если документ настроен как адаптивный, иначе значение по умолчанию будет 700px","widthFixed":"Установите максимальную ширину, если документ адаптивный, или установите фиксированный размер, если не адаптивный","height":"Высота","heightAuto":"Высота зависит от размера документа, без максимального размера. Если адаптивный, он будет соответствовать высоте окна браузера минус 100px","heightFixed":"Установите максимальную высоту, если документ адаптивный, или установите фиксированный размер, если не адаптивный","sidebarBehavior":"Поведение боковой панели","sbResponsive":"Адаптивно (по умолчанию)","sbResponsiveHelp":"Автоматически показывать боковую панель на больших экранах и скрывать на мобильных устройствах. В режиме вставки боковая панель будет скрыта","hidden":"Скрытое","visible":"Видимое","visibleDefault":"Видимое (по умолчанию)","sbHiddenHelp":"Скрыть боковую панель по умолчанию","sbVisibleHelp":"Показывать боковую панель по умолчанию","titleBehavior":"Параметры заголовка","tVisibleHelp":"Отображать заголовок и авторство в шапке программы просмотра","tHiddenHelp":"Скрывать заголовок в шапке программы просмотра (все еще виден в боковой панели)","pdfLink":"PDF ссылка","plVisibleHelp":"Показать ссылку на необработанный PDF-документ в боковой панели","plHiddenHelp":"Скрыть PDF ссылку на боковой панели (файл все еще доступен, если URL-адрес известен)","fullscreenOption":"Функция полноэкранного режима","fsVisibleHelp":"Показывать значок полноэкранного режима в правом нижнем углу","fsHiddenHelp":"Скрыть опцию полноэкранного режима","textMode":"Текстовый режим","tmVisibleHelp":"Показывать опцию для просмотра текста документа в раскрывающемся окне","tmHiddenHelp":"Скрыть текстовый режим","contributedByFormat":"Внесено в формате","cbfUserAndOrg":"Пользователь и организация (по умолчанию)","cbfUserAndOrgHelp":"Показывать авторство документа как имя пользователя, за которым следует организация","cbfOrgOnly":"Только организация","cbfOrgOnlyHelp":"Присвоить документ только организации","share":"Поделиться “{title}”","embedDesc":"Скопируйте HTML-код, чтобы вставить этот документ в статью"},"dialogDocumentInformationDialog":{"editInformation":"Редактировать информацию для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Установите параметры для выбранного дополнения для запуска {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"dialogRedactDialog":{"title":"Подтвердить исправления","description":"Вы уверены, что хотите исправить текущий документ? Если вы продолжите, программа просмотра документов будет временно недоступна, пока документ повторно обрабатывается с исправлениями. Это изменение необратимо."},"dialogModifyDialog":{"title":"Применить изменения","description":"Вы уверены, что хотите изменить текущий документ? Если вы продолжите, программа просмотра документов будет временно недоступна во время повторной обработки документа с модификациями. Это изменение необратимо.","closeTitle":"Подтвердить закрытие","closeWarning":"Вы потеряете все несохранённые изменения. Вы уверены, что хотите продолжить?"},"dialogDeleteNoteDialog":{"title":"Подтвердить удаление","description":"Вы уверены, что хотите удалить текущую заметку?"},"dialogEditSectionsDialog":{"confirmDelete":"Подтвердить удаление","proceedingWillRemove":"Если вы продолжите, это удалит указанный раздел (стр. {page} {title}). Вы хотите продолжить?","editSections":"Редактировать разделы","manageSections":"Управляйте разделами для организации документа и содержания.","pageAbbrevNo":"стр. {n}","pageAbbrev":"стр.","empty":"Вы пока не добавили ни одного раздела","edit":"Редактировать выбранный раздел","add":"Добавить новый раздел","title":"Заголовок","missingTitle":"Пожалуйста, введите заголовок","updateTitle":"Введите новый заголовок или номер страницы","uniquePageNumber":"Вы должны ввести уникальный номер страницы","invalidPageNumber":"Номер страницы недействителен"},"dialogEmbedDialog":{"updatingDocument":"Обновление документа...","makingPublic":"Документ в настоящее время публикуется. Это может занять пару минут.","wouldMakePublic":"Вы хотите сделать этот документ публичным перед тем, как поделиться?","notPublic":"В настоящее время этот документ не является публичным. Если вы вставляете или привязываете его к ссылке, только вы и соавторы смогут увидеть его до тех пор, пока он не станет публичным. Нажмите ниже, когда вы будете готовы открыть этот документ для публики.","makePublic":"Сделать документ публичным","leave":"Оставить как есть","selectShare":"Выберите опцию общего доступа","selectShareHelp":"Выберите, поделиться всем документом или просто страницей, или заметкой.","shareDoc":"Поделиться всем документом","shareDocHelp":"Ссылка или вставка всего документа. (Это наиболее часто используемый вариант общего доступа.)","sharePage":"Поделиться конкретной страницей","sharePageHelp":"Привязать к ссылке или вставить одну страницу документа. Полезно для выделения фрагментов страницы.","shareNote":"Поделиться конкретной заметкой","shareNoteHelpHasNote":"Привяжите к ссылке или вставьте заметку в документ. Полезно для выделения региона страницы.","shareNoteHelpNoNote":"Как только вы добавите заметки к документу, используйте эту функцию, чтобы привязать их к ссылке или вставить."},"dialogErrorDialog":{"errorOccurred":"Произошла ошибка","unexpectedErrorOccurred":"Произошла непредвиденная ошибка","tryAgain":"Пожалуйста, попробуйте позже.","close":"Закрыть","refresh":"Обновить"},"dialogNoteEmbedDialog":{"embedNote":"Вставить заметку \\"{title}\\"","embedDesc":"Скопируйте HTML-код для вставки этой заметки в статью или пост:"},"dialogPageEmbedDialog":{"embedPage":"Вставить страницу \\"{title}\\"","embedDesc":"Скопируйте HTML-код для вставки этой страницы в статью или пост:","selectPage":"Выберите страницу для вставки:","page":"Страница {n} (сейчас видна)","otherPage":"Другая страница","enterPageNumber":"Введите номер страницы для вставки:"},"dialogProjectAccessDialog":{"changeAccessFor":"Изменить доступ для {name}","selectAccess":"Выберите уровень доступа ниже для {name} в {title}","adminAccess":"Доступ администратора","editAccess":"Редактировать доступ","viewAccess":"Доступ к просмотру","adminHelp":"Этот соавтор может редактировать этот проект и его документы. Соавтор может приглашать пользователей, удалять пользователей и удалить проект.","editHelp":"Этот соавтор может редактировать документы в этом проекте, но не может редактировать сам проект.","viewHelp":"Этот соавтор может редактировать документы в этом проекте, но не может редактировать сам проект.","invalidAccess":"Доступ уже установлен на {access}. Выберите другой уровень доступа.","changeAccess":"Изменить доступ"},"dialogOwnerDialog":{"selectUser":"Необходимо выбрать пользователя","selectOrg":"Необходимо выбрать организацию","changeOwner":"Сменить владельца для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}","accessWarning":"Внимание: Вы можете потерять доступ к указанному {n, plural, one {документу} few {# документам} many {# документам} other {# документам}} в результате смены владельца документа","user":"Пользователь:","filterUsers":"Начните печатать для фильтрации пользователей...","filterOrgs":"Начните печатать для фильтрации организаций..."},"dialogProjectDialog":{"confirmDelete":"Подтвердить удаление","deleteProject":"Вы уверены, что хотите удалить этот проект ({project})?","editProject":"Редактировать проект","createProject":"Создать новый проект","title":"Заголовок...","projectDesc":"Описание проекта (необязательно)","manageCollabs":"Управление соавторами","share":"Поделиться / Вставить проект","enterTitle":"Введите заголовок","changeTitle":"Изменить заголовок или описание"},"dialogProjectEmbedDialog":{"share":"Поделиться “{title}”","embedDesc":"Скопируйте HTML-код для вставки этого документа в статью или пост:","invalid":"Неверный проект","cannotEmbed":"Невозможно вставить этот проект, так как он не существует."},"htmlEditor":{"preview":"Предпросмотр:"},"image":{"error":"Возникла ошибка. Попробуйте перезагрузить страницу"},"omniselect":{"filter":"Начните печатать для фильтрации языка","noResults":"Нет результатов. Нажмите, чтобы очистить фильтр."},"shareOptions":{"errorText":"Произошла неожиданная ошибка. Пожалуйста, попробуйте позже.","copyHtml":"Скопировать HTML код","addShortcode":"Добавьте этот шорткод к своему WordPress контенту —","pluginRequired":"требуется плагин","copyShortcode":"Скопировать шорткод","copyUrl":"Копировать URL"},"specialMessage":{"contactUs":"Свяжитесь с намидля сообщений об ошибках, вопросов и предложений."},"uploadOptions":{"documentLang":"Язык документа:","forceOcr":"Принудительный OCR:"},"actionBar":{"selectDocs":"Выберите документы, чтобы открыть действия по редактированию","noPerms":"У вас нет прав доступа для редактирования всех выбранных документов","editMenu":"Редактировать","projectsMenu":"Проекты","addOnsMenu":"Дополнения"},"authSection":{"help":"Справка","language":"Язык","tips":"Советы и подсказки","searchDocs":"Поиск документации","apiDocs":"Документация API","emailUs":"Напишите нам","acctSettings":"Настройки аккаунта","signOut":"Выйти","changeOrg":"Изменить организацию","personalAcct":"Личный аккаунт","signIn":"Войти","uploadEmail":"Загрузить через e-mail"},"documents":{"yourDocuments":"Ваши документы","searchResults":"Результаты поиска","accessDocuments":"Ваши {access}документы","nameDocuments":"Документы {name} {access}","allDocuments":"Все {access}документы","mustBeVerified":"Вы должны быть верифицированным журналистом, чтобы загружать документы","upload":"Загрузка","dropFile":"Перетащите файл для загрузки"},"document":{"open":"Открыть","updating":"Обновление документа...","processing":"Обработка","processingError":"Произошла ошибка при попытке обработать ваш документ","remove":"Удалить","improper":"Ваш документ был загружен неправильно","project":"Проект","totalMatchingPages":"{n} из {m} страниц соответствуют запросу","showAll":"Показать все","matchingPages":"{n} страниц соответствуют запросу","pageAbbrev":"стр.","pageCount":"{n, plural, one {# страница} few {# страницы} many {# страниц} other {# страниц}}","source":"Источник","noteCount":"{n, plural, one {# заметка} few {# заметки} many {# заметок} other {# заметок}}"},"documentThumbnail":{"pages":"страницы","loading":"Загрузка информации о прогрессе..."},"mainContainer":{"error":"Ошибка","errorMsg":"Не получилось подключиться к серверу DocumentCloud. Пожалуйста, попробуйте обновить страницу позже.","refresh":"Обновить"},"editMenu":{"editDocInfo":"Редактировать информацию о документе","changeAccess":"Изменить доступ","editDocData":"Редактировать данные документа","cancelProcessing":"Отменить обработку","forceReprocess":"Принудительная повторная обработка","entities":"Субъекты BETA","changeOwner":"Cменить владельца","delete":"Удалить","diagnosticInfo":"Информация о диагностике"},"metaFields":{"defaultFieldInvalidText":"Документ уже имеет это {fieldName}","titleFieldTitle":"Заголовок","titleFieldName":"название","titleFieldNameUppercase":"Название","titleFieldHeader":"Переименовать {n, plural, one {# документ} few {# документа} many {# документов} other {# документов}}","titleFieldDescription":"Введите название ниже для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","titleFieldButton":"Переименовать","titleFieldInvalidSameName":"Документ уже имеет это название","titleFieldInvalidEmptyName":"Введите корректное название","sourceFieldTitle":"Источник","sourceFieldName":"источник","sourceFieldNameUppercase":"Источник","sourceFieldHeader":"Редактировать источник для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","sourceFieldDescription":"Введите источник ниже для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","sourceFieldButton":"Редактировать","descriptionFieldTitle":"Описание","descriptionFieldName":"описание","descriptionFieldNameUppercase":"Описание","descriptionFieldHeader":"Редактировать описание для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","descriptionFieldDescription":"Введите описание ниже для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","descriptionFieldButton":"Редактировать","relatedArticleFieldTitle":"URL-адрес связанной статьи","relatedArticleFieldName":"URL-адрес связанной статьи","relatedArticleFieldNameUppercase":"URL-адрес связанной статьи","relatedArticleFieldHeader":"Отредактируйте URL-адрес связанной статьи для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","relatedArticleFieldDescription":"Введите ниже URL-адрес связанной статьи для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","relatedArticleFieldButton":"Редактировать","publishedUrlFieldTitle":"Опубликованный URL-адрес","publishedUrlFieldName":"опубликованный URL-адрес","publishedUrlFieldNameUppercase":"Опубликованный URL-адрес","publishedUrlFieldHeader":"Отредактируйте опубликованный URL-адрес для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","publishedUrlFieldDescription":"Введите ниже опубликованный URL-адрес для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","publishedUrlFieldButton":"Редактирование"},"projectsMenu":{"newProject":"+ Новый проект","projMembership":"Членство в проекте","selectDocs":"Выберите документы, чтобы поместить их в проекты","createProj":"Создать проект для организации и обмена документами"},"addonsMenu":{"newAddon":"Запросить новое дополнение от персонала","selectDocs":"Выбрать документы для отправки их в дополнения","addonsList":"Список дополнений","createAddon":"Выбрать больше документов для использования дополнений","addon":"Дополнение","learnMore":"Узнать больше о дополнениях","browseAll":"Просмотреть все дополнения"},"noDocuments":{"noSearchResults":"Поиск не дал результатов","queryNoResults":"Ваш поисковый запрос не дал результатов. Попробуйте еще раз с более широким поисковым запросом.","welcome":"Добро пожаловать в DocumentCloud!","verify1":"Обратите внимание, что в настоящее время ваш аккаунт не верифицирован, чтобы загружать. Вы можете искать в публичной базе, организовывать интересующие вас документы в проектах, оставлять приватные заметки и сотрудничать в редактировании и аннотировании документов по приглашению.","verify2":"Если вы хотите загрузить или опубликовать документы, и вы работающий журналист или другая организация, заинтересованная в публикации исходных материалов в общественных интересах, вам нужно верифицировать свой аккаунт или добавить его в верифицированную организацию. Это простой процесс:","verify3":"Сначала проверьте, существует ли ваша организация, и, если вы нашли ее, нажмите \\"Запрос на присоединение\\" на ее странице.","verify4":"Если ваша организация еще не верифицирована, или вы фрилансер, запросите верификацию здесь. Обработка запросов обычно занимает два рабочих дня.","uploadFirst":"Загрузите ваш первый документ","upload1":"Загрузите файл документа, чтобы начать использовать DocumentCloud. Вы можете перетащить файл в это окно, или нажмите на синюю кнопку \\"Загрузить\\" выше.","upload2":"После загрузки файла, DocumentCloud будет обрабатывать документ и извлекать его содержимое. Это может занять несколько минут, но как только он будет готов, ваш документ будет оптимизирован для анализа и распространения в Интернете.","requestVerificationAction":"Запросить верификацию для загрузки"},"paginator":{"of":"из","document":"{n, plural, one {документ} few {документа} many {документов} other {документов}}"},"processingBar":{"doneProcessing":"Обработка выполнена","processingDocuments":"Обработка {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"searchBar":{"tips":"Подсказки для поиска: добавьте фильтры набрав пользователя:, проект:, или организацию:, и т.д. Используйте сортировку: для упорядочивания результатов.","learnMore":"Узнать больше","search":"Поиск"},"searchLink":{"search":"Поиск в этой коллекции документов"},"projects":{"header":"Проекты","allDocuments":"Все Документы","yourDocuments":"Ваши документы","yourPubDocuments":"Ваши публичные документы","orgDocuments":"Документы {name}","newProject":"+ Новый проект","createProject":"Создайте свой первый проект, нажав на кнопку \\"Новый проект\\" выше."},"uploadDialog":{"docUpload":"Загрузка документа","docUploadProj":"Загрузка документа в {title}","beginUpload":"Начать загрузку","pdfSizeWarning":"Вы можете загрузить только PDF файлы менее {size}.","nonPdfSizeWarning":"Вы можете загрузить только не PDF файлы менее {size}.","fileReady":"{n, plural, one {файл} few {файла} many {файлов} other {файлов}} готовы к загрузке","fileLimitWarning":"Вы можете загрузить только {limit} файлов за раз.","moreOptions":"Больше опций","selectFiles":"+ Выбрать файлы","dragDrop":"Перетащите файлы сюда","publicMsg":"Документ будет доступен к публичному просмотру.","collabMsg":"Документ будет виден вашей организации.","privateMsg":"Заметка будет видна только вам.","collabName":"Организация","submitting":"Почти готово... отправка загруженных файлов для обработки ({percent})","uploading":"Загрузка ... ({uploaded}/{length})","gettingInfo":"Получение информации о загрузке ({percent})","pleaseLeaveOpen":"Пожалуйста, оставьте эту страницу открытой, пока ваши документы загружаются. Это диалоговое окно будет автоматически закрыто по окончанию загрузки.","errorHeading":"Произошла ошибка при загрузке","errorMsg":"Не удалось {errorMessage}. Пожалуйста, повторите попытку позже.","editDocInfo":"Редактировать информацию о документе:","untitled":"Без названия","uploadFiles":"Загрузить дополнительные файлы","selectMore":"+ Выбрать больше файлов","dragDropMore":"Перетащите дополнительные файлы сюда"},"embedNote":{"viewTheNote":"Посмотреть заметку ‘{title}‘ в исходном контексте документа на DocumentCloud в новом окне или вкладке","viewDoc":"Просмотр всего документа с помощью DocumentCloud"},"embedPage":{"viewDoc":"Просмотр всего {title} на DocumentCloud в новом окне или вкладке","pageOf":"Страница {page} из {title}","gotoDocCloud":"Перейти на DocumentCloud в новом окне или вкладке"},"entities":{"back":"Назад","page":"Страница","of":"из","totalEntityResult":"Всего {n, plural, one {# результат} few {# результата} many {# результатов} other {# всего результатов}} ","filter":"Фильтр","applyFilters":"Применить фильтры","kind":"Тип","clear":"Очистить","person":"Лицо","org":"Организация","location":"Местоположение","event":"Событие","workOfArt":"Произведение искусства","consumerGood":"Потребительские товары","address":"Адрес","date":"Дата","number":"Номер","phoneNumber":"Номер телефона","price":"Цена","unknown":"Неизвестно","other":"Другое","occurrences":"Случаи","proper":"Надлежащие","common":"Обычные","advanced":"Дополнительно","relevanceThreshold":"Порог релевантности:","knowledgeGraph":"База знаний:","hasKG":"Имеет ID базы знаний","noKG":"Не имеет ID базы знаний","wikiUrl":"URL-адрес на Википедии:","hasWiki":"Имеет URL-адрес на Википедии","noWiki":"Не имеет URL-адреса на Википедии","occurrence":"{n, plural, one {# случай} few {# случая} many {# случаев} other {# случаев}}","wikipedia":"Википедия","entityExtraction":"Извлечение субъекта для “{title}”","extractingEntities":"Извлечение субъектов...","welcome":"Добро пожаловать в извлечение субъектов! Эта функция находится в процессе разработки, но мы хотим, чтобы она была у вас как можно раньше, поэтому рады услышать любые ваши отзывы.","manual":"Сейчас процесс извлечения субъектов в ручном режиме. В этом документе еще не были извлечены субъекты, поэтому нажмите ниже, чтобы начать.","error":"Произошла непредвиденная ошибка","extract":"Извлечение субъектов","noEntities":"Нет субъектов. Это могло произойти, если в документе нет текста, он не на английском (сейчас поддерживается только английский язык), или произошла ошибка.","starting":"Запуск извлечения..."},"home":{"about":"DocumentCloud - это универсальная платформа для документов: загрузка, организация, анализ, аннотация, поиск и вставка.","viewPublicDocs":"Просмотр публичных документов"},"annotation":{"title":"Заголовок аннотации","description":"Описание аннотации (необязательно)","unchanged":"Примечание остается неизменным","noTitle":"Введите название заметки","org":"Эта заметка видна только вам и другим лицам с доступом к редактированию этого документа","private":"Эта приватная заметка видна только вам","by":"Аннотировано {name}","byOrg":"Аннотировано {name}, {org}","addPageNote":"Добавить заметку к странице"},"viewDropdown":{"document":"Документ","plainText":"Обычный текст","thumbnail":"Миниатюра","notes":"Заметки","search":"Результаты поиска"},"zoom":{"fitWidth":"Подгонять ширину","fitHeight":"Подгонять высоту"},"titleHeader":{"contributedBy":"Внесено {name}"},"annotatePane":{"annotateDocument":"Аннотация документа","desc":"Выделите часть страницы или щелкните между страницами, чтобы создать заметку."},"modifyPane":{"pagesSelected":"{n, plural, one {# страница} few {# страницы} many {# страниц} other {# Pages}} выбраны","applyModifications":"Применить изменения","duplicate":"Дублировать","move":"Переместить","rotate":"Повернуть","unselect":"Отменить выбор","remove":"Удалить","insertPages":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}}","pagesPending":"{n, plural, one {# страница} few {# страницы} many {# страниц} other {# страниц}} в ожидании вставки","insertBegin":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}} в начале.","insertEnd":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}} в конце.","insertBetween":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страницы} other {# страницы}} между страницами {p0} и {p1}.","click":"Нажмите ниже между страницами, чтобы отметить где вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}}.","insert":"Вставить","insertAtEnd":"Вставить в конце","insertPosition":"Вставить страницы в позиции","insertOtherDoc":"Вставить из другого документа","modifyPages":"Изменить страницы","select":"Выберите страницы ниже, чтобы применить изменения (поворот страницы, изменение порядка и удаление). Нажмите между страницами для вставки.","undo":"Отменить","redo":"Повторить"},"redactPane":{"redactDoc":"Исправить документ","desc":"Нажмите и перетащите, чтобы нарисовать чёрный прямоугольник на каждой части документа, который вы хотели бы отредактировать. Связанный текст будет удален, когда вы сохраните ваши исправления.","confirm":"Подтвердить исправления","undo":"Отменить"},"searchPane":{"yourQuery":"Ваш запрос {search} был найден на {n, plural, one {# странице} few {# страницах} many {# страницах} other {# страницах}}"},"selectNotePane":{"selectNote":"Выбрать заметку","desc":"Выберите аннотацию, которой вы хотите поделиться."},"searchResults":{"resultPages":"{results, plural, one {# результат} few {# результата} many {# результатов} other {# результатов}} на {pages, plural, one {# странице} few {# страницах} many {# страницах} other {# страницах}}","noSearchResults":"Нет результатов поиска. Попробуйте еще раз с более широким запросом.","occurrences":"{n, plural, one {# случай} few {# случая} many {# случаев} other {# случаев}}"},"sidebar":{"updating":"Обновление документа...","original":"Оригинальный документ (PDF) »","related":"Связанная статья »","contributed":"Внесено {name}","source":"Источник: {source}","actions":"Действия с документом","share":"Поделиться","shareDesc":"Создайте вставку или поделитесь в социальных сетях.","annotate":"Аннотация","annotateDesc":"Сделайте аннотации для хранения заметок в документе.","redact":"Исправить","redactDesc":"Создайте исправления в документе, чтобы скрыть текст. После этого документ будет повторно обрабатываться.","modify":"Изменить страницы","modifyDesc":"Перестановка, поворот, удаление, вставка и разделение страниц.","info":"Изменить информацию о документе","infoDesc":"Изменить информацию о документе, такую как описание и связанный с ним URL-адрес.","data":"Редактировать теги и данные","dataDesc":"Добавьте теги и пары ключ/значение для категоризации документа.","sections":"Редактировать разделы","sectionsDesc":"Добавьте разделы, чтобы упорядочить документ и содержание.","privateNote":"Добавить приватную заметку","privateNoteDesc":"Сделать аннотации для хранения заметок в документе."},"viewer":{"notFound":"Документ не найден","notFoundDesc":"Документ, который вы запросили, не существует или у вас нет разрешения на доступ к нему","processing":"Обработка документа","processingDesc":"Документ, который вы запросили сейчас обрабатывается и автоматически обновится, когда он будет готов","error":"В документе произошла ошибка","errorDesc":"Произошла ошибка обработки в запрошенном вами документе","accessible":"Документ недоступен","accessibleDesc":"Запрошенный вами документ все еще обрабатывается или у вас нет разрешения на доступ к нему"},"addonDispatchDialog":{"select":"Выберите, какие документы вы хотите запустить с этим дополнением:","queryNoSelected":"Это дополнение попробует запуститься с {n, plural, one {# документом} few {# документами} many {# документами} other {# документов}}, которые сейчас включены в результаты поиска. Чтобы запустить его только с выбранными документами, отмените это и выберите некоторые из них, затем снова выберите дополнение.","noSelected":"Вы должны выбрать некоторые документы для запуска. Отмените это и выберите некоторые из них, затем снова выберите дополнение.","runSelected":"Это дополнение попробует запуститься с {n, plural, one {# выбранным документом} few {# выбранными документами} many {# выбранными документами} other {# выбранными документами}}.","runQuery":"Это дополнение попробует запуститься с {n, plural, one {# документом} few {# документами} many {# документами} other {# документами}}, которые сейчас включены в результаты поиска.","labelSelected":"{n, plural, one {# выбранный документ} few {# выбранных документа} many {# выбранных документов} other {#выбранных документов}}","labelQuery":"{n, plural, one {# документ} few {# документа} many {# документов} other {# документов}} из текущих результатов поиска","learnMore":"Узнать больше.","hideAddons":"Скрыть запланированные дополнения","showRuns":"Показать заупски","hideRuns":"Скрыть запуски","showAddons":"Показать запланированные дополнения ({n})","runSchedule":"Запуск по расписанию:","disable":"Отключить"},"addonBrowserDialog":{"searchPlaceholder":"Поиск...","active":"Активно","inactive":"Неактивно","next":"Далее","previous":"Назад"},"uploadEmailDialog":{"uploadEmailAddress":"Загрузить через e-mail","bodyText":"Вы можете загрузить документы на свой аккаунт, отправив их на специальный адрес электронной почты в виде вложений. По соображениям безопасности этот email отображается только один раз. Пожалуйста, скопируйте его в безопасное место: он будет принимать вложения с любого аккаунта электронной почты. Вы можете сгенерировать новый адрес для загрузки в любое время (который отключит старый) или полностью отключить эту функцию. Документы загружаются приватно.
Мы будем рады вашим отзывам и хотели бы услышать о креативных вариантах использования на info@documentcloud.org.","createMsg":"Адрес электронной почты для загрузки успешно создан: {mailkey}@uploads.documentcloud.org","destroyMsg":"Любой загрузочный адрес электронной почты был удален из вашего аккаунта.","disable":"Отключить загрузку через email"}}');
-./public/612.3ed3f92af7d102dad980.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="5f7e5d57-4d4e-40de-9574-2555c347d70d",e._sentryDebugIdIdentifier="sentry-dbid-5f7e5d57-4d4e-40de-9574-2555c347d70d")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[612],{612:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"E-Mail-Adresse","loading":"Lädt...","documentCloud":"DocumentCloud","home":"Startseite"},"homeTemplate":{"signedIn":"Angemeldet als {name}","signOut":"Abmelden","signIn":"Anmelden","signUp":"Registrieren","goToApp":"Zur App gehen"},"accessToggle":{"public":"Die Anmerkung wird für jeden sichtbar sein, der Zugriff auf das Dokument hat.","collaborator":"Die Anmerkung wird für jeden sichtbar sein, der dieses Dokument bearbeiten kann.","private":"Die Anmerkung wird nur für Sie sichtbar sein.","publicName":"Öffentlich","collaboratorName":"Mitbearbeiter","privateName":"Privat"},"accessIcon":{"private":"Privater Zugriff","organization":"Nur für Ihre Organisation zugänglich","public":"Öffentlicher Zugriff","privateExplanation":"Nur Sie können dieses Dokument einsehen","organizationExplanation":"Nur Mitglieder Ihrer Organisation können dieses Dokument einsehen","publicExplanation":"Jeder kann dieses Dokument durchsuchen und einsehen"},"appearanceCustomizer":{"customizeAppearance":"Darstellung anpassen","hide":"Hilfetext ausblenden","show":"Hilfetext anzeigen"},"appearanceDimension":{"responsive":"Automatisch (standardmäßig)","fixed":"Fix"},"calendar":{"jan":"Januar","feb":"Februar","mar":"März","apr":"April","may":"Mai","jun":"Juni","jul":"Juli","aug":"August","sep":"September","oct":"Oktober","nov":"November","dec":"Dezember","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Abbrechen","delete":"Löschen","done":"Fertig","edit":"Bearbeiten","remove":"Entfernen","save":"Speichern","create":"Erstellen","ok":"Ok","update":"Aktualisieren","dismiss":"Verwerfen","continue":"Fortfahren","dispatch":"Senden"},"dialogAccessDialog":{"changeAccess":"Den Zugriff ändern für {n, plural, one {ein Dokument} other {# Dokumente}}","selectAccess":"Wählen Sie eine Zugriffsebene für {n, plural, one {das ausgewählte Dokument} other {# der ausgewählten Dokumente}}","public":"Öffentlicher Zugriff","publicDesc":"Jeder im Internet kann nach dem Dokument suchen und es einsehen.","verifiedHelp":"Nur verifizierte Benutzer oder Mitglieder von verifizierten Organisationen können hochgeladene Dokumente veröffentlichen. Wenn Sie Journalist sind oder an der Herausgabe geprüfter Materialien arbeiten, die zur Information der Öffentlichkeit dienen, können Sie hier mehr erfahren und eine Verifizierung beantragen.","privateToOrg":"{n, plural, one {Dieses Dokument ist} other {Ein oder mehrere Dokumente sind}} mit Ihrem persönlichen Konto und nicht mit einer Organisation verbunden, daher können Sie die Zugriffsebene nicht dahingehend ändern, dass sie „nur für Ihre Organisation zugänglich“ ist. Um {n, plural, one {dieses Dokument} other {diese Dokumente}} zu einer Organisation hinzuzufügen, wählen Sie {n, plural, one {es} other {sie}} aus der Management-Ansicht aus und und klicken Sie auf \\"Besitzer ändern\\". Sie können auf dieser Seite einer Organisation beitreten oder eine erstellen.","private":"Privater Zugriff","privateDesc":"Nur Personen mit ausdrücklicher Genehmigung (zwecks Mitbearbeitung) haben Zugriff.","organization":"Nur für Ihre Organisation zugänglich","organizationDesc":"Nur Personen Ihrer Organisation haben Zugriff.","schedulePublication":"Veröffentlichung planen","scheduleHelp":"Dieses Dokument wird zum angegebenen Datum und Zeitpunkt veröffentlicht. Die Veröffentlichungszeit entspricht der örtlichen{timezone}.","noindexTitle":"Vor Suchmaschinen und der DocumentCloud-Suche verbergen","noindexHelp":"Wenn Sie diese Option aktivieren, wird Suchmaschinen wie u. A. Google mitgeteilt, dass sie dieses Dokument nicht indizieren sollen. Des Weiteren wird nicht eingeloggten Besuchern dieses Dokument auch nicht in den DocumentCloud-Suchergebnissen angezeigt.","unchanged":"Der Zugriff ist unverändert. Wählen Sie eine andere Zugriffsebene.","future":"Sie müssen einen Zeitpunkt in der Zukunft auswählen","change":"Ändern","changeNoindex":"Ändern Sie die Sichtbarkeit in Suchmaschinen und in der DocumentCloud-Suche für {n, plural, one {ein Dokument} other {# Dokumente}}"},"dialogCollaboratorDialog":{"confirm":"Entfernen des Nutzers bestätigen","confirmMsg":"Wenn Sie fortfahren, wird {name} aus {title} entfernt. Möchten Sie fortfahren?","addCollaborators":"Mitbearbeiter hinzufügen","invite":"Geben Sie unten die E-Mail eines bestehenden DocumentCloud-Benutzers ein. Wenn dieser noch kein Konto hat, lassen Sie ihn sich hier kostenlos registrieren, und bitten Sie ihn dann sich mindestens einmal bei DocumentCloud anzumelden.","admin":"Admin","view":"Anzeigen","adminHelp":"Mitbearbeiter können dieses Projekt und dazugehörige Dokumente bearbeiten","editHelp":"Mitbearbeiter können Dokumente in diesem Projekt bearbeiten","viewHelp":"Mitbearbeiter können Dokumente in diesem Projekt einsehen","add":"Hinzufügen","empty":"Sie haben noch keine Mitbearbeiter zu diesem Projekt hinzugefügt. Laden Sie Mitbearbeiter ein, um anderen Benutzern Zugriff auf die in diesem Projekt geteilten Dokumente zu gewähren. Sie können festlegen, ob Mitbearbeiter Zugriff auf die Dokumente des Projekts haben um diese einzusehen/zu bearbeiten, oder ob diese als Administrator andere Benutzer einladen und das Projekt selbst bearbeiten dürfen.","manageCollaborators":"Mitbearbeiter verwalten","name":"Name","access":"Zugriff","you":"(Sie)"},"dialogDataDialog":{"confirm":"Entfernen des Datenpunktes bestätigen","removeMsg":"Wenn Sie fortfahren, wird der Datenpunkt {key}{value} aus den angegebenen Dokumenten entfernt. Möchten Sie fortfahren?","addData":"Daten für {n, plural, one {ein Dokument} other {# Dokumente}} hinzufügen","tag":"Tag","value":"Wert","key":"Schlüssel","keyValue":"Schlüssel / Wert","tagInfo":"Fügen Sie benutzerdefinierte Tags hinzu, um Ihre Dokumente zu kategorisieren.","eg":"z.B.","exampleTagReport":"Bericht","exampleTagLawsuit":"Gerichtsverfahren","exampleTagEmail":"E-Mail","keyValueInfo":"Fügen Sie benutzerdefinierte Schlüssel / Wertpaare für eine genaue Kategorisierung Ihrer Dokumente hinzu.","exampleKVState":"Staat: Kalifornien","exampleKVYear":"Jahr: 2016","exampleKVType":"Typ: Memo","enterTag":"Ein Tag eingeben","enterKey":"Einen Schlüssel eingeben","keyInvalid":"Die Schlüssel können nur Buchstaben, Zahlen, Unterstriche (_) und Bindestriche (-) enthalten","emptyMsg":"Sie haben zu dem/den angegebenen Dokument(en) noch keine Daten hinzugefügt. Fügen Sie Tags sowie Schlüssel/Wertpaare hinzu, um Ihre Dokumente zu kategorisieren und zu organisieren. Um eine bessere Kontrolle über Ihr Dokumentenmanagement zu erhalten, können Sie Dokumentdaten filtern und durchsuchen.","manageDocumentData":"Dokumentdaten verwalten","valueUnchanged":"Der Wert bleibt unverändert","kvCannotBeEmpty":"Der Schlüssel/Wert darf nicht leer sein"},"dialogReprocessDialog":{"title":"Wiederaufbereitung bestätigen","reprocessDocs":"Wenn Sie fortfahren, {n, plural, one {wird das ausgewählte Dokument} other {werden die # ausgewählten Dokumente}} den Seiten- und Bildtext erzwungermaßen wiederaufbereiten. Möchten Sie fortfahren?","reprocessSingleDoc":"Wenn Sie fortfahren, wird das Dokument erzwungenermaßen den Seiten- und Bildtext wiederaufbereiten. Möchten Sie fortfahren?","confirm":"Erneut aufbereiten"},"dialogDeleteDialog":{"title":"Wiederaufbereitung bestätigen","deleteDocs":"Wenn Sie fortfahren, {n, plural, one {wird das ausgewählte Dokument} other {werden die # ausgewählten Dokumente}} dauerhaft gelöscht. Möchten Sie fortfahren?"},"dialogCancelProcessingDialog":{"title":"Vorgang abbrechen","deleteDocs":"Wenn Sie fortfahren, {n, plural, one {wird das ausgewählte Dokument} other {werden die # ausgewählten Dokumente}} die Verarbeitung beenden. Nachdem die Verarbeitung beendet wurde, erscheint eine Fehlermeldung. Sie können dann die \\"Wiederaufbereitung erzwingen\\" und {n, plural, one {das Dokument} other {die Dokumente}} mithilfe des Bearbeiten-Menüs löschen. Möchten Sie fortfahren?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Mitarbeitern vorbehaltene Infos für {n, plural, one {ausgewähltes Dokument} other {# ausgewählte Dokumente}}","id":"Identifizierung","title":"Titel","actions":"Aktionen","debug":"Fehlerbehebung","viewErrors":"Fehler anzeigen","viewS3":"Anzeigen in S3"},"dialogDocumentEmbedDialog":{"responsive":"Reaktionsfähig","respOn":"Eingeschaltet (standardmäßig)","respOnHelp":"Füllen Sie die Breite des Artikelbehälters aus (funktioniert normalerweise am besten)","respOff":"Ausgeschaltet","respOffHelp":"Das Dokument muss den unten angegebenen Größen entsprechen","width":"Breite","widthAuto":"Füllt den verfügbaren Platz aus, wenn das Dokument auf reaktionsfähig eingestellt ist, andernfalls standardmäßig auf 700px","widthFixed":"Legen Sie eine maximale Breite fest, wenn das Dokument reaktionsfähig ist, oder eine feste Größe, wenn es nicht reaktionsfähig ist","height":"Höhe","heightAuto":"Die Höhe richtet sich nach der Größe des Dokuments, ohne Maximum. Wenn das Dokument reaktionsfähig ist, wird sie auf die Höhe des Browserfensters minus 100px eingestellt","heightFixed":"Legen Sie eine maximale Höhe fest, wenn das Dokument reaktionsfähig ist, oder eine feste Größe, wenn es nicht reaktionsfähig ist","sidebarBehavior":"Verhalten der Seitenleiste","sbResponsive":"Reaktionsfähig (standardmäßig)","sbResponsiveHelp":"Seitenleiste automatisch auf großen Bildschirmen anzeigen und auf mobilen Geräten ausblenden. Im eingebetteten Modus wird die Seitenleiste ausgeblendet","hidden":"Ausgeblendet","visible":"Sichtbar","visibleDefault":"Sichtbar (standardmäßig)","sbHiddenHelp":"Seitenleiste standardmäßig ausblenden","sbVisibleHelp":"Seitenleiste standardmäßig einblenden","titleBehavior":"Verhalten des Titels","tVisibleHelp":"Den Titel und die Zuordnung in der Kopfzeile des Viewers anzeigen","tHiddenHelp":"Den Titel in der Kopfzeile des Viewers ausblenden (noch in der Seitenleiste sichtbar)","pdfLink":"PDF-Link","plVisibleHelp":"Einen Link zum unbearbeiteten PDF-Dokument in der Seitenleiste anzeigen","plHiddenHelp":"Den PDF-Link in der Seitenleiste ausblenden (die Datei ist weiterhin zugänglich, wenn die URL bekannt ist)","fullscreenOption":"Vollbildmodus","fsVisibleHelp":"Ein Vollbild-Symbol in der unteren rechten Ecke anzeigen","fsHiddenHelp":"Den Vollbildmodus ausblenden","textMode":"Textmodus","tmVisibleHelp":"Eine Option anzeigen, um den Text des Dokuments in der Dropdown-Liste einzusehen","tmHiddenHelp":"Den Textmodus ausblenden","contributedByFormat":"Beitrag von Format","cbfUserAndOrg":"Benutzer und Organisation (standardmäßig)","cbfUserAndOrgHelp":"Die Zuordnung eines Dokuments durch den Benutzernamen gefolgt von der Organisation anzeigen","cbfOrgOnly":"Nur für die Organisation","cbfOrgOnlyHelp":"Das Dokument nur der Organisation zuordnen","share":"“{title}” teilen","embedDesc":"Den HTML-Code kopieren, um dieses Dokument in einen Artikel einzubetten"},"dialogDocumentInformationDialog":{"editInformation":"Die Informationen für {n, plural, one {ein Dokument} other {# Dokumente}} bearbeiten"},"dialogAddonDispatchDialog":{"setAddonParameters":"Legen Sie die Parameter für Ihr gewähltes Add-on fest, um es {n, plural, one {dem Dokument} other {den # Dokumenten}} hinzuzfügen"},"dialogRedactDialog":{"title":"Schwärzungen bestätigen","description":"Sind Sie sicher, dass Sie das aktuelle Dokument zensieren möchten? Wenn Sie fortfahren, ist der Dokument-Viewer vorübergehend nicht zugänglich, während das Dokument mit dem Zensierungen wiederaufbereitet wird. Dieser Schritt ist unwiderruflich."},"dialogModifyDialog":{"title":"Modifizierungen anwenden","description":"Sind Sie sicher, dass Sie das aktuelle Dokument modifizieren möchten? Wenn Sie fortfahren, ist der Dokument-Viewer vorübergehend nicht zugänglich, während das Dokument mit den Modifizierungen wiederaufbereitet wird. Dieser Schritt ist unwiderruflich.","closeTitle":"Schließen bestätigen","closeWarning":"Sie verlieren all Ihre nicht angewandten Modifizierungen. Sind Sie sicher, dass Sie fortfahren möchten?"},"dialogDeleteNoteDialog":{"title":"Löschen bestätigen","description":"Sind Sie sicher, dass Sie die aktuelle Anmerkung löschen möchten?"},"dialogEditSectionsDialog":{"confirmDelete":"Löschen bestätigen","proceedingWillRemove":"Wenn Sie fortfahren, wird der angegebene Abschnitt (S. {page} {title}) entfernt. Möchten Sie fortfahren?","editSections":"Abschnitte bearbeiten","manageSections":"Verwalten Sie Abschnitte, um Ihr Dokument mit einem Inhaltsverzeichnis zu organisieren.","pageAbbrevNo":"S. {n}","pageAbbrev":"S.","empty":"Sie haben noch keine Abschnitte hinzugefügt","edit":"Den ausgewählten Abschnitt bearbeiten","add":"Einen neuen Abschnitt hinzufügen","title":"Titel","missingTitle":"Bitte geben Sie einen Titel ein","updateTitle":"Einen neuen Titel oder eine Seitenzahl eingeben","uniquePageNumber":"Sie müssen eine eindeutige Seitenzahl eingeben","invalidPageNumber":"Die Seitenzahl ist ungültig"},"dialogEmbedDialog":{"updatingDocument":"Dokument wird aktualisiert...","makingPublic":"Das Dokument wird gerade veröffentlicht. Dies kann einige Minuten dauern.","wouldMakePublic":"Möchten Sie dieses Dokument veröffentlichen, bevor Sie es teilen?","notPublic":"Das Dokument ist derzeit nicht öffentlich. Wenn Sie es einbetten oder verlinken, können nur Sie und Ihre Mitarbeiter es einsehen, bis es veröffentlicht wird. Klicken Sie unten, wenn Sie dieses Dokument der Öffentlichkeit zugänglich machen möchten.","makePublic":"Dokument veröffentlichen","leave":"So belassen","selectShare":"Freigabeoption auswählen","selectShareHelp":"Wählen Sie aus, ob Sie das gesamte Dokument, nur eine Seite oder eine Notiz teilen möchten.","shareDoc":"Das gesamte Dokument teilen","shareDocHelp":"Das gesamte Dokument verlinken oder einbetten. (Dies ist die am häufigsten verwendete Freigabeoption.)","sharePage":"Eine bestimmte Seite teilen","sharePageHelp":"Eine einzelne Seite des Dokuments verlinken oder einbetten. Nützlich zum Hervorheben eines Seitenausschnitts.","shareNote":"Eine bestimmte Anmerkung teilen","shareNoteHelpHasNote":"Eine Anmerkung in dem Dokument verlinken oder einbetten. Nützlich zum Hervorheben eines Seitenbereichs.","shareNoteHelpNoNote":"Sobald Sie dem Dokument Anmerkungen hinzufügen, verwenden Sie diese Funktion, um sie zu verlinken oder einzubetten."},"dialogErrorDialog":{"errorOccurred":"Ein Fehler ist aufgetreten","unexpectedErrorOccurred":"Ein unerwarteter Fehler ist aufgetreten","tryAgain":"Bitte versuchen Sie es später erneut.","close":"Schließen","refresh":"Aktualisieren"},"dialogNoteEmbedDialog":{"embedNote":"Eine Anmerkung einbetten von “{title}”","embedDesc":"Kopieren Sie den HTML-Code, um diese Anmerkung in einen Artikel oder einen Beitrag einzubetten:"},"dialogPageEmbedDialog":{"embedPage":"Eine Seite einbetten von \\"{title}\\"","embedDesc":"Den HTML-Code kopieren, um diese Seite in einem Artikel oder Beitrag einzubetten:","selectPage":"Wählen Sie die einzubettende Seite aus:","page":"Seite {n} (derzeit sichtbar)","otherPage":"Andere Seite","enterPageNumber":"Geben Sie die zu einzubettende Seitenzahl ein:"},"dialogProjectAccessDialog":{"changeAccessFor":"Zugriff ändern für {name}","selectAccess":"Wählen Sie unten eine Zugriffsebene für {name} in {title}","adminAccess":"Admin-Zugriff","editAccess":"Zugriff bearbeiten","viewAccess":"Zugriff anzeigen","adminHelp":"Dieser Mitbearbeiter kann dieses Projekt und seine Dokumente bearbeiten. Der Mitbearbeiter kann Benutzer einladen, Benutzer löschen und das Projekt entfernen.","editHelp":"Dieser Mitbearbeiter kann Dokumente in diesem Projekt bearbeiten, kann aber das Projekt selbst nicht bearbeiten.","viewHelp":"Dieser Mitbearbeiter kann Dokumente in diesem Projekt einsehen, aber weder diese noch das Projekt selbst bearbeiten.","invalidAccess":"Der Zugriff ist bereits eingestellt auf {access}. Wählen Sie eine andere Zugriffsebene.","changeAccess":"Zugriff ändern"},"dialogOwnerDialog":{"selectUser":"Der Benutzer muss ausgewählt werden","selectOrg":"Die Organisation muss ausgewählt werden","changeOwner":"Den Besitzer ändern für {n, plural, one {ein Dokument} other {# Dokumente}}","accessWarning":"Warnung: Sie können den Zugriff auf {n, plural, one {das angegebene Dokument} other {die angegebenen # Dokumente}} infolge der Änderung des Dokumentbesitzers verlieren","user":"Benutzer:","filterUsers":"Hier nach Benutzern filtern...","filterOrgs":"Hier nach Organisationen filtern..."},"dialogProjectDialog":{"confirmDelete":"Löschen bestätigen","deleteProject":"Sind sie sicher, dass sie dieses Projekt ({project}) löschen möchten?","editProject":"Projekt bearbeiten","createProject":"Neues Projekt erstellen","title":"Titel...","projectDesc":"Projektbeschreibung (optional)","manageCollabs":"Mitbearbeiter verwalten","share":"Projekt teilen / einbetten","enterTitle":"Titel eingeben","changeTitle":"Den Titel oder die Beschreibung ändern"},"dialogProjectEmbedDialog":{"share":"“{title}” teilen","embedDesc":"Den HTML-Code kopieren, um dieses Dokument in einen Artikel oder Beitrag einzubetten:","invalid":"Ungültiges Projekt","cannotEmbed":"Dieses Projekt kann nicht eingebunden werden, da es anscheinend nicht existiert."},"htmlEditor":{"preview":"Vorschau:"},"image":{"error":"Ein Fehler ist aufgetreten. Aktualisieren Sie die Seite"},"omniselect":{"filter":"Hier nach Sprache filtern","noResults":"Keine Ergebnisse gefunden. Hier klicken, um den Filter zu löschen."},"shareOptions":{"errorText":"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später erneut.","copyHtml":"HTML-Code kopieren","addShortcode":"Fügen Sie diesen Shortcode zu Ihren WordPress-Inhalten hinzu —","pluginRequired":"Plugin erforderlich","copyShortcode":"Shortcode kopieren","copyUrl":"URL kopieren"},"specialMessage":{"contactUs":"Kontaktieren Sie uns mit Fehlermeldungen, Fragen und Vorschlägen."},"uploadOptions":{"documentLang":"Sprache des Dokuments:","forceOcr":"OCR erzwingen:"},"actionBar":{"selectDocs":"Wählen Sie einige Dokumente aus, um Bearbeitungsaktionen anzuzeigen","noPerms":"Sie sind nicht dazu berechtigt alle ausgewählten Dokumente zu bearbeiten","editMenu":"Bearbeiten","projectsMenu":"Projekte","addOnsMenu":"Add-Ons"},"authSection":{"help":"Hilfe","language":"Sprache","FAQ":"FAQ","searchDocs":"Dokumentation durchsuchen","apiDocs":"API-Dokumentation","emailUs":"Schreiben Sie uns eine E-Mail","acctSettings":"Kontoeinstellungen","signOut":"Abmelden","changeOrg":"Organisation ändern","personalAcct":"Persönliches Konto","signIn":"Anmelden","uploadEmail":"Hochladen per E-Mail"},"documents":{"yourDocuments":"Ihre Dokumente","searchResults":"Suchergebnisse","accessDocuments":"Ihre {access}-Dokumente","nameDocuments":"{access}-Dokumente von {name}","allDocuments":"Alle {access}-Dokumente","mustBeVerified":"Sie müssen ein verifizierter Journalist sein, um Dokumente hochzuladen","upload":"Hochladen","dropFile":"Datei zum Hochladen hier ablegen"},"document":{"open":"Öffnen","updating":"Dokument wird aktualisiert...","processing":"Verarbeitung","processingError":"Beim Verarbeiten Ihres Dokuments ist ein Fehler aufgetreten","remove":"Entfernen","improper":"Ihr Dokument wurde nicht korrekt hochgeladen","project":"Projekt","totalMatchingPages":"{n} von {m} Seiten entsprechen der Suchanfrage","showAll":"Alle anzeigen","matchingPages":"{n} Seiten entsprechen der Suchanfrage","pageAbbrev":"S.","pageCount":"{n, plural, one {# Seite} other {# Seiten}}","source":"Quelle","noteCount":"{n, plural, one {# Anmerkung} other {# Anmerkungen}}"},"documentThumbnail":{"pages":"Seiten","loading":"Informationen zum Fortschritt laden..."},"mainContainer":{"error":"Fehler","errorMsg":"Wir konnten den DocumentCloud-Server nicht erreichen. Bitte versuchen Sie später die Seite zu aktualisieren.","refresh":"Aktualisieren"},"editMenu":{"editDocInfo":"Dokumentinformationen bearbeiten","changeAccess":"Zugriff ändern","editDocData":"Dokumentdaten bearbeiten","cancelProcessing":"Verarbeitung abbrechen","forceReprocess":"Wiederverarbeitung erzwingen","entities":"Entitäten BETA","changeOwner":"Besitzer ändern","delete":"Löschen","diagnosticInfo":"Diagnose-Informationen"},"metaFields":{"defaultFieldInvalidText":"Das Dokument hat bereits diesen {fieldName}","titleFieldTitle":"Titel","titleFieldName":"Name","titleFieldNameUppercase":"Name","titleFieldHeader":"{n, plural, one {Ein Dokument} other {# Dokumente}} umbenennen","titleFieldDescription":"Geben Sie unten einen Namen für {n, plural, one {das ausgewählte Dokument} other {die # ausgewählten Dokumente}} ein","titleFieldButton":"Umbenennen","titleFieldInvalidSameName":"Das Dokument hat bereits diesen Namen","titleFieldInvalidEmptyName":"Geben Sie einen gültigen Namen ein","sourceFieldTitle":"Quelle","sourceFieldName":"Quelle","sourceFieldNameUppercase":"Quelle","sourceFieldHeader":"Die Quelle für {n, plural, one {ein Dokument} other {# Dokumente}} bearbeiten","sourceFieldDescription":"Geben Sie unten eine Quelle für {n, plural, one {das ausgewählte Dokument} other {die # ausgewählten Dokumente}} ein","sourceFieldButton":"Bearbeiten","descriptionFieldTitle":"Beschreibung","descriptionFieldName":"Beschreibung","descriptionFieldNameUppercase":"Beschreibung","descriptionFieldHeader":"Die Beschreibung für {n, plural, one {ein Dokument} other {# Dokumente}} bearbeiten","descriptionFieldDescription":"Geben Sie unten die Beschreibung für {n, plural, one {das ausgewählte Dokument} other {die # ausgewählten Dokumente}} ein","descriptionFieldButton":"Bearbeiten","relatedArticleFieldTitle":"URL des zugehörigen Artikels","relatedArticleFieldName":"URL des zugehörigen Artikels","relatedArticleFieldNameUppercase":"URL des zugehörigen Artikels","relatedArticleFieldHeader":"Bearbeiten Sie die URL des zugehörigen Artikels für {n, plural, one {# Dokument} other {# Dokumente}}","relatedArticleFieldDescription":"Geben Sie unten die URL des zugehörigen Artikels für {n, plural, one {# Dokument} other {# Dokumente}} ein","relatedArticleFieldButton":"Bearbeiten","publishedUrlFieldTitle":"Veröffentlichte URL","publishedUrlFieldName":"Veröffentlichte URL","publishedUrlFieldNameUppercase":"Veröffentlichte URL","publishedUrlFieldHeader":"Bearbeiten Sie die veröffentlichte URL für {n, plural, one {# Dokument} other {# Dokumente}}","publishedUrlFieldDescription":"Geben Sie unten die veröffentlichte URL für {n, plural, one {# Dokument} other {# Dokumente}} ein","publishedUrlFieldButton":"Bearbeiten"},"projectsMenu":{"newProject":"+ Neues Projekt","projMembership":"Projektmitgliedschaft","selectDocs":"Dokumente auswählen, um sie in Projekten zu platzieren","createProj":"Ein Projekt zum Organisieren und Teilen von Dokumenten erstellen"},"addonsMenu":{"newAddon":"Neues Add-on bei Mitarbeitern anfordern","selectDocs":"Dokumente auswählen, um sie in Add-ons zu verschicken","addonsList":"Liste der Add-ons","createAddon":"Weitere Dokumente zur Verwendung in Add-ons auswählen","addon":"Add-on","learnMore":"Mehr über Add-ons erfahren","browseAll":"Alle Add-ons durchsuchen"},"noDocuments":{"noSearchResults":"Keine Suchergebnisse","queryNoResults":"Ihre Suchanfrage lieferte keine Ergebnisse. Versuchen Sie es erneut mit einer breiteren Suchanfrage.","welcome":"Willkommen bei DocumentCloud!","verify1":"Bitte beachten Sie, dass Ihr Konto derzeit nicht für das Hochladen von Dokumenten verifiziert ist. Sie können das öffentliche Repositorium durchsuchen, für sie interessante Dokument in Projekten organisieren, persönliche Anmerkungen hinterlassen sowie Dokumente mitbearbeiten und kommentieren, zu denen Sie von anderen Benutzern eingeladen werden.","verify2":"Wenn Sie Dokumente hochladen oder veröffentlichen möchten und Sie ein aktiver Journalist oder eine andere Organisation sind, die an der Veröffentlichung von Materialien aus Primärquellen von öffentlichem Interesse interessiert ist, müssen Sie Ihr Konto verifizieren lassen oder es einer verifizierten Organisation hinzufügen. Dies ist ein einfacher Prozess:","verify3":"Prüfen Sie zunächst , ob Ihre Organisation bereits existiert, und wenn Sie sie gefunden haben, klicken Sie auf ihrer Seite auf \\"Beitritt beantragen\\".","verify4":"Wenn Ihre Organisation noch nicht verifiziert ist oder wenn Sie Freiberufler sind, beantragen Sie hier die Verifizierung. Die Bearbeitung von Anfragen dauert in der Regel zwei Werktage.","uploadFirst":"Laden Sie Ihr erstes Dokument hoch","upload1":"Laden Sie eine Dokumentdatei hoch, um mit der Nutzung von DocumentCloud zu beginnen. Sie können die Datei in dieses Fenster ziehen oder oben auf die blaue Schaltfläche „Hochladen“ klicken.","upload2":"Nachdem Sie eine Datei hochgeladen haben, verarbeitet DocumentCloud das Dokument und extrahiert seinen Inhalt. Dieser Vorgang kann einige Minuten dauern, aber sobald er abgeschlossen ist, ist Ihr Dokument für die Analyse und das Teilen im Internet optimiert.","requestVerificationAction":"Verifizierung zum Hochladen anfordern"},"paginator":{"of":"von","document":"{n, plural, one {Dokument} other {# Dokumenten}}"},"processingBar":{"doneProcessing":"Verarbeitung abgeschlossen","processingDocuments":"Verarbeitung {n, plural, one {von einem Dokument} other {von # Dokumenten}}"},"searchBar":{"tips":"Suchtipps: Fügen Sie Filter hinzu, indem Sie Benutzer:, Projekt:, oder Organisation:, etc. eingeben. Verwenden Sie sortieren:, um die Ergebnisse anzuordnen.","learnMore":"Mehr erfahren","search":"Suchen"},"searchLink":{"search":"Diese Dokumentensammlung durchsuchen"},"projects":{"header":"Projekte","allDocuments":"Alle Dokumente","yourDocuments":"Ihre Dokumente","yourPubDocuments":"Ihre öffentlichen Dokumente","orgDocuments":"Dokumente von {name}","newProject":"+ Neues Projekt","createProject":"Erstellen Sie Ihr erstes Projekt, indem Sie oben auf „Neues Projekt“ klicken."},"uploadDialog":{"docUpload":"Hochladen des Dokuments","docUploadProj":"Dokument hochladen zu {title}","beginUpload":"Hochladen starten","pdfSizeWarning":"Sie können nur PDF-Dateien hochladen, die kleiner sind als {size}.","nonPdfSizeWarning":"Sie können nur Nicht-PDF-Dokumente hochladen, die kleiner sind als {size}.","fileReady":"{n, plural, one {Datei} other {Dateien}} bereit zum Hochladen","fileLimitWarning":"Sie können nur {limit} Dateien auf einmal hochladen.","moreOptions":"Weitere Optionen","selectFiles":"+ Dateien auswählen","dragDrop":"Dateien hierher ziehen und ablegen","publicMsg":"Das Dokument wird öffentlich einsehbar sein.","collabMsg":"Das Dokument wird für Ihre Organisation einsehbar sein.","privateMsg":"Das Dokument wird nur für Sie einsehbar sein.","collabName":"Organisation","submitting":"Fast geschafft... hochgeladene Dateien werden zur Verarbeitung übermittelt ({percent})","uploading":"Hochladen ... ({uploaded}/{length})","gettingInfo":"Informationen zum Hochladen werden abgerufen ({percent})","pleaseLeaveOpen":"Bitte lassen Sie diese Seite geöffnet, während Ihre Dokumente hochgeladen werden. Dieses Dialogfeld schließt sich automatisch, wenn das Hochladen abgeschlossen ist.","errorHeading":"Während des Hochladens ist ein Fehler aufgetreten","errorMsg":"{errorMessage} fehlgeschlagen. Bitte versuchen Sie es später erneut.","editDocInfo":"Dokumentinformationen bearbeiten:","untitled":"Unbenannt","uploadFiles":"Zusätzliche Dateien hochladen","selectMore":"+ Weitere Dateien auswählen","dragDropMore":"Zusätzliche Dateien hierherziehen und ablegen"},"embedNote":{"viewTheNote":"Die Anmerkung ‘{title}‘ in ihrem ursprünglichen Dokumentenkontext auf DocumentCloud in einem neuen Fenster oder Tab anzeigen","viewDoc":"Das gesamte Dokument mit DocumentCloud anzeigen"},"embedPage":{"viewDoc":"{title} vollständig auf DocumentCloud in einem neuen Fenster oder Tab anzeigen","pageOf":"Seite {page} von {title}","gotoDocCloud":"DocumentCloud in einem neuen Fenster oder Tab öffnen"},"entities":{"back":"Zurück","page":"Seite","of":"von","totalEntityResult":"{n, plural, one {# Gesamtergebnis der Entität} other {# Gesamtergebnisse der Entität}} ","filter":"Filter","applyFilters":"Filter anwenden","kind":"Typ","clear":"Löschen","person":"Person","org":"Organisation","location":"Standort","event":"Veranstaltung","workOfArt":"Kunstwerk","consumerGood":"Konsumgüter","address":"Adresse","date":"Datum","number":"Nummer","phoneNumber":"Telefonnummer","price":"Preis","unknown":"Unbekannte","other":"Sonstige","occurrences":"Vorkommnisse","proper":"Korrekte","common":"Gemeinsame","advanced":"Erweiterte","relevanceThreshold":"Relevanzschwelle:","knowledgeGraph":"Wissensgraph:","hasKG":"Verfügt über eine Wissensgraph-ID","noKG":"Verfügt über keine Wissensgraph-ID","wikiUrl":"Wikipedia-URL:","hasWiki":"Verfügt über eine Wikipedia-URL","noWiki":"Verfügt über keine Wikipedia-URL","occurrence":"{n, plural, one {# Vorkommnis} other {# Vorkommnisse}}","wikipedia":"Wikipedia","entityExtraction":"Entitätsextraktion für “{title}”","extractingEntities":"Extrahieren von Entitäten...","welcome":"Willkommen bei der Entitätsextraktion! Diese Funktion befindet sich noch in der Entwicklung, aber wir möchten sie Ihnen jetzt schon zur Verfügung stellen, damit wir Ihr Feedback einfließen lassen können.","manual":"Derzeit erfolgt die Extraktion von Entitäten noch manuell. In diesem Dokument wurden noch keine Entitäten extrahiert. Klicken Sie daher bitte unten, um damit zu beginnen.","error":"Ein unerwarteter Fehler ist aufgetreten","extract":"Entitäten extrahieren","noEntities":"Es sind keine Entitäten vorhanden. Dies kann vorkommen, wenn das Dokument keinen Text enthält, nicht in englischer Sprache verfasst ist (derzeit wird nur Englisch unterstützt) oder ein Fehler aufgetreten ist.","starting":"Extraktion starten..."},"home":{"about":"DocumentCloud ist eine All-in-one-Plattform für Dokumente: hochladen, organisieren, analysieren, kommentieren, suchen und einbetten.","viewPublicDocs":"Öffentliche Dokumente anzeigen"},"annotation":{"title":"Titel der Anmerkung","description":"Beschreibung der Anmerkung (optional)","unchanged":"Die Anmerkung bleibt unverändert","noTitle":"Geben Sie einen Titel für die Anmerkung ein","org":"Diese Anmerkung ist nur für Sie und andere Personen mit Bearbeitungszugriff auf dieses Dokument sichtbar","private":"Diese persönliche Anmerkung ist nur für Sie sichtbar","by":"Angemerkt von {name}","byOrg":"Angemerkt von {name}, {org}","addPageNote":"Anmerkung zur Seite hinzufügen"},"viewDropdown":{"document":"Dokument","plainText":"Einfacher unformatierter Text","thumbnail":"Miniaturansicht","notes":"Anmerkungen","search":"Suchergebnisse"},"zoom":{"fitWidth":"Breite anpassen","fitHeight":"Höhe anpassen"},"titleHeader":{"contributedBy":"Beitrag von {name}"},"annotatePane":{"annotateDocument":"Dokument mit Anmerkungen versehen","desc":"Markieren Sie einen Teil der Seite oder klicken Sie zwischen die Seiten, um eine Anmerkung zu erstellen."},"modifyPane":{"pagesSelected":"{n, plural, one {# Seite} other {# Seiten}} ausgewählt","applyModifications":"Modifizierungen anwenden","duplicate":"Duplizieren","move":"Verschieben","rotate":"Drehen","unselect":"Auswahl aufheben","remove":"Entfernen","insertPages":"{n, plural, one {# Seite} other {# Seiten}} einfügen","pagesPending":"Ausstehende Einfügung von {n, plural, one {# Seite} other {# Seiten}}","insertBegin":"{n, plural, one {# Seite} other {# Seiten}} am Anfang einfügen.","insertEnd":"{n, plural, one {# Seite} other {# Seiten}} am Ende einfügen.","insertBetween":"{n, plural, one {# Seite} other {# Seiten}} zwischen Seite {p0} und {p1} einfügen.","click":"Klicken Sie unten zwischen die Seiten, um zu markieren, wo {n, plural, one {die # Seite eingefügt werden soll} other {die # Seiten eingefügt werden sollen}}.","insert":"Einfügen","insertAtEnd":"Am Ende einfügen","insertPosition":"Seiten an dieser Position einfügen","insertOtherDoc":"Aus einem anderen Dokument einfügen","modifyPages":"Seiten modifizieren","select":"Wählen Sie die Seiten unten aus, um Änderungen vorzunehmen (Drehen, Neuanordnen und Löschen von Seiten). Klicken Sie zum Einfügen zwischen die Seiten.","undo":"Rückgängig machen","redo":"Wiederherstellen"},"redactPane":{"redactDoc":"Dokument überarbeiten","desc":"Klicken und ziehen Sie, um ein schwarzes Rechteck über jeden Teil des Dokuments zu legen, den Sie unkenntlich machen möchten. Der darunter liegende Text wird entfernt, wenn Sie Ihre Schwärzungen speichern.","confirm":"Schwärzungen bestätigen","undo":"Rückgängig machen"},"searchPane":{"yourQuery":"Ihre Anfrage {search} wurde auf {n, plural, one {# Seite} other {# Seiten}} gefunden"},"selectNotePane":{"selectNote":"Anmerkung auswählen","desc":"Wählen Sie die Anmerkung aus, die Sie teilen möchten."},"searchResults":{"resultPages":"{results, plural, one {# Ergebnis} other {# Ergebnisse}} auf {pages, plural, one {# Seite} other {# Seiten}}","noSearchResults":"Keine Suchergebnisse. Versuchen Sie es erneut mit einer breiteren Anfrage.","occurrences":"{n, plural, one {# Vorkommnis} other {# Vorkommnisse}}"},"sidebar":{"updating":"Dokument wird aktualisiert...","original":"Originaldokument (PDF) »","related":"Zugehöriger Artikel »","contributed":"Beitrag von {name}","source":"Quelle: {source}","actions":"Dokumentaktionen","share":"Teilen","shareDesc":"Erstellen Sie eine Einbettung oder teilen Sie sie in sozialen Medien.","annotate":"Kommentieren","annotateDesc":"Machen Sie Anmerkungen, um Notizen im Dokument festzuhalten.","redact":"Zensieren","redactDesc":"Nehmen Sie Schwärzungen im Dokument vor, um Text zu verbergen. Das Dokument wird anschließend erneut verarbeitet.","modify":"Seiten modifizieren","modifyDesc":"Seiten neu anordnen, drehen, löschen, einfügen und trennen.","info":"Dokumentinformation bearbeiten","infoDesc":"Ändern Sie Dokumentinformationen wie die Beschreibung und die dazugehörige URL.","data":"Tags und Daten bearbeiten","dataDesc":"Fügen Sie Tags und Schlüssel/Wert-Paare hinzu, um Ihr Dokument zu kategorisieren.","sections":"Abschnitte bearbeiten","sectionsDesc":"Fügen Sie Abschnitte hinzu, um Ihr Dokument mit einem Inhaltsverzeichnis zu organisieren.","privateNote":"Persönliche Anmerkung hinzufügen","privateNoteDesc":"Machen Sie Anmerkungen, um Notizen im Dokument festzuhalten."},"viewer":{"notFound":"Dokument nicht gefunden","notFoundDesc":"Das von Ihnen angeforderte Dokument existiert nicht oder Sie haben keine Zugriffsberechtigung dafür","processing":"Dokument wird verarbeitet","processingDesc":"Das von Ihnen angeforderte Dokument wird gerade verarbeitet und automatisch aktualisiert, sobald es bereit ist","error":"Das Dokument ist auf einen Fehler gestoßen","errorDesc":"In dem von Ihnen angeforderten Dokument ist ein Verarbeitungsfehler aufgetreten","accessible":"Dokument nicht zugänglich","accessibleDesc":"Das von Ihnen angeforderte Dokument wird gerade verarbeitet oder Sie haben keine Zugriffsberechtigung dafür"},"addonDispatchDialog":{"select":"Wählen Sie die Dokumente aus, mit denen dieses Add-on ausgeführt werden soll:","queryNoSelected":"Dieses Add-on wird versuchen, mit {n, plural, one {dem # Dokument, das derzeit in Ihren Suchergebnissen enthalten ist} other {den # Dokumenten, die derzeit in Ihren Suchergebnissen enthalten sind}} zu laufen. Um es nur mit ausgewählten Dokumenten auszuführen, brechen Sie diesen Vorgang ab, wählen Sie einige Dokumente und anschließend das Add-on erneut aus.","noSelected":"Sie müssen einige Dokumente auswählen, mit denen das Add-on ausgeführt werden soll. Brechen Sie diesen Vorgang ab, wählen Sie einige Dokumente und anschließend das Add-on erneut aus.","runSelected":"Dieses Add-on wird versuchen, mit {n, plural, one {dem # derzeit ausgewählten Dokument} other {den # derzeit ausgewählten Dokumenten}} zu laufen.","runQuery":"Dieses Add-on wird versuchen, mit {n, plural, one {dem # Dokument, das derzeit in Ihren Suchergebnissen enthalten ist} other {den # Dokumenten, die derzeit in Ihren Suchergebnissen enthalten sind}} zu laufen.","labelSelected":"{n, plural, one {Das # derzeit ausgewählte Dokument} other {Die # derzeit ausgewählten Dokumente}}","labelQuery":"{n, plural, one {Das # Dokument} other {Die # Dokumente}} aus den derzeitigen Suchergebnissen","learnMore":"Mehr erfahren.","hideAddons":"Geplante Add-ons ausblenden","showRuns":"Laufende anzeigen","hideRuns":"Laufende ausblenden","showAddons":"Geplante Add-Ons anzeigen ({n})","runSchedule":"Planmäßig ausführen:","disable":"Deaktivieren"},"addonBrowserDialog":{"searchPlaceholder":"Suchen...","active":"Aktiv","inactive":"Inaktiv","next":"Weiter","previous":"Zurück"},"uploadEmailDialog":{"uploadEmailAddress":"Hochladen per E-Mail","bodyText":"Sie können Dokumente in Ihr Konto hochladen, indem Sie sie als Anhänge an eine spezielle E-Mail-Adresse senden. Aus Sicherheitsgründen wird Ihnen diese E-Mail nur einmal angezeigt. Kopieren Sie sie an einen sicheren Ort: Es werden Anhänge von jedem E-Mail-Konto akzeptiert. Sie können jederzeit eine neue Adresse fürs Hochladen erstellen (wodurch die vorherige Adresse deaktiviert wird) oder diese Funktion ganz deaktivieren. Dokumente werden nicht öffentlich hochgeladen.
Wir würden uns über Ihr Feedback sowie kreative Anwendungsfälle freuen via info@documentcloud.org.","createMsg":"E-Mail-Adresse fürs Hochladen erfolgreich erstellt: {mailkey}@uploads.documentcloud.org","destroyMsg":"Jede E-Mail-Adresse fürs Hochladen wurde aus Ihrem Konto entfernt.","disable":"Hochladen per E-Mail deaktivieren"}}')}}]);
-./public/src_langs_json_monospace_json.dd18f36f1553fb11f480.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"𝙴𝚖𝚊𝚒𝚕 𝚊𝚍𝚍𝚛𝚎𝚜𝚜","loading":"𝙻𝚘𝚊𝚍𝚒𝚗𝚐...","documentCloud":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍","home":"𝙷𝚘𝚖𝚎"},"homeTemplate":{"signedIn":"𝚂𝚒𝚐𝚗𝚎𝚍 𝚒𝚗 𝚊𝚜 {name}","signOut":"𝚂𝚒𝚐𝚗 𝚘𝚞𝚝","signIn":"𝚂𝚒𝚐𝚗 𝚒𝚗","signUp":"𝚂𝚒𝚐𝚗 𝚞𝚙","goToApp":"𝙶𝚘 𝚝𝚘 𝚊𝚙𝚙"},"accessToggle":{"public":"𝙽𝚘𝚝𝚎 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚊𝚗𝚢𝚘𝚗𝚎 𝚠𝚒𝚝𝚑 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","collaborator":"𝙽𝚘𝚝𝚎 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚊𝚗𝚢𝚘𝚗𝚎 𝚠𝚑𝚘 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","private":"𝙽𝚘𝚝𝚎 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞 𝚊𝚕𝚘𝚗𝚎.","publicName":"𝙿𝚞𝚋𝚕𝚒𝚌","collaboratorName":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛","privateName":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎"},"accessIcon":{"private":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝙰𝚌𝚌𝚎𝚜𝚜","organization":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚝𝚘 𝚈𝚘𝚞𝚛 𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","public":"𝙿𝚞𝚋𝚕𝚒𝚌 𝙰𝚌𝚌𝚎𝚜𝚜","privateExplanation":"𝙾𝚗𝚕𝚢 𝚢𝚘𝚞 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","organizationExplanation":"𝙾𝚗𝚕𝚢 𝚖𝚎𝚖𝚋𝚎𝚛𝚜 𝚘𝚏 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","publicExplanation":"𝙰𝚗𝚢𝚘𝚗𝚎 𝚌𝚊𝚗 𝚜𝚎𝚊𝚛𝚌𝚑 𝚊𝚗𝚍 𝚟𝚒𝚎𝚠 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝"},"appearanceCustomizer":{"customizeAppearance":"𝙲𝚞𝚜𝚝𝚘𝚖𝚒𝚣𝚎 𝙰𝚙𝚙𝚎𝚊𝚛𝚊𝚗𝚌𝚎","hide":"𝙷𝚒𝚍𝚎 𝚑𝚎𝚕𝚙 𝚝𝚎𝚡𝚝","show":"𝚂𝚑𝚘𝚠 𝚑𝚎𝚕𝚙 𝚝𝚎𝚡𝚝"},"appearanceDimension":{"responsive":"𝙰𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","fixed":"𝙵𝚒𝚡𝚎𝚍"},"calendar":{"jan":"𝙹𝚊𝚗𝚞𝚊𝚛𝚢","feb":"𝙵𝚎𝚋𝚛𝚞𝚊𝚛𝚢","mar":"𝙼𝚊𝚛𝚌𝚑","apr":"𝙰𝚙𝚛𝚒𝚕","may":"𝙼𝚊𝚢","jun":"𝙹𝚞𝚗𝚎","jul":"𝙹𝚞𝚕𝚢","aug":"𝙰𝚞𝚐𝚞𝚜𝚝","sep":"𝚂𝚎𝚙𝚝𝚎𝚖𝚋𝚎𝚛","oct":"𝙾𝚌𝚝𝚘𝚋𝚎𝚛","nov":"𝙽𝚘𝚟𝚎𝚖𝚋𝚎𝚛","dec":"𝙳𝚎𝚌𝚎𝚖𝚋𝚎𝚛","hourShortcode":"𝙷𝙷","minuteShortcode":"𝙼𝙼"},"dialog":{"cancel":"𝙲𝚊𝚗𝚌𝚎𝚕","delete":"𝙳𝚎𝚕𝚎𝚝𝚎","done":"𝙳𝚘𝚗𝚎","edit":"𝙴𝚍𝚒𝚝","remove":"𝚁𝚎𝚖𝚘𝚟𝚎","save":"𝚂𝚊𝚟𝚎","create":"𝙲𝚛𝚎𝚊𝚝𝚎","ok":"𝙾𝚔","update":"𝚄𝚙𝚍𝚊𝚝𝚎","dismiss":"𝙳𝚒𝚜𝚖𝚒𝚜𝚜","continue":"𝙲𝚘𝚗𝚝𝚒𝚗𝚞𝚎"},"dialogAccessDialog":{"changeAccess":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚏𝚘𝚛 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","selectAccess":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚊𝚗 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","public":"𝙿𝚞𝚋𝚕𝚒𝚌 𝚊𝚌𝚌𝚎𝚜𝚜","publicDesc":"𝙰𝚗𝚢𝚘𝚗𝚎 𝚘𝚗 𝚝𝚑𝚎 𝚒𝚗𝚝𝚎𝚛𝚗𝚎𝚝 𝚌𝚊𝚗 𝚜𝚎𝚊𝚛𝚌𝚑 𝚏𝚘𝚛 𝚊𝚗𝚍 𝚟𝚒𝚎𝚠 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","verifiedHelp":"𝙾𝚗𝚕𝚢 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚞𝚜𝚎𝚛𝚜 𝚘𝚛 𝚖𝚎𝚖𝚋𝚎𝚛𝚜 𝚘𝚏 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗𝚜 𝚌𝚊𝚗 𝚖𝚊𝚔𝚎 𝚞𝚙𝚕𝚘𝚊𝚍𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚙𝚞𝚋𝚕𝚒𝚌. 𝙸𝚏 𝚢𝚘𝚞'𝚛𝚎 𝚊 𝚓𝚘𝚞𝚛𝚗𝚊𝚕𝚒𝚜𝚝 𝚘𝚛 𝚘𝚝𝚑𝚎𝚛𝚠𝚒𝚜𝚎 𝚠𝚘𝚛𝚔 𝚒𝚗 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚒𝚗𝚐 𝚟𝚎𝚝𝚝𝚎𝚍 𝚖𝚊𝚝𝚎𝚛𝚒𝚊𝚕𝚜 𝚝𝚘 𝚒𝚗𝚏𝚘𝚛𝚖 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌, 𝚕𝚎𝚊𝚛𝚗 𝚖𝚘𝚛𝚎 𝚊𝚗𝚍 𝚛𝚎𝚚𝚞𝚎𝚜𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚑𝚎𝚛𝚎.","privateToOrg":"𝚈𝚘𝚞 𝚌𝚊𝚗’𝚝 𝚌𝚑𝚊𝚗𝚐𝚎 𝚝𝚑𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕 𝚝𝚘 “𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗” 𝚋𝚎𝚌𝚊𝚞𝚜𝚎 {n, plural, one {𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜} other {𝚘𝚗𝚎 𝚘𝚛 𝚖𝚘𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚊𝚛𝚎}} 𝚊𝚜𝚜𝚘𝚌𝚒𝚊𝚝𝚎𝚍 𝚠𝚒𝚝𝚑 𝚢𝚘𝚞𝚛 𝚒𝚗𝚍𝚒𝚟𝚒𝚍𝚞𝚊𝚕 𝚊𝚌𝚌𝚘𝚞𝚗𝚝, 𝚗𝚘𝚝 𝚊𝚗 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗. 𝚃𝚘 𝚊𝚍𝚍 {n, plural, one {𝚒𝚝} other {𝚝𝚑𝚎𝚖}} 𝚝𝚘 𝚊𝚗 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗, 𝚜𝚎𝚕𝚎𝚌𝚝 {n, plural, one {𝚒𝚝} other {𝚝𝚑𝚎𝚖}} 𝚏𝚛𝚘𝚖 𝚝𝚑𝚎 𝚖𝚊𝚗𝚊𝚐𝚎𝚖𝚎𝚗𝚝 𝚟𝚒𝚎𝚠 𝚊𝚗𝚍 𝚌𝚕𝚒𝚌𝚔 “𝙲𝚑𝚊𝚗𝚐𝚎 𝙾𝚠𝚗𝚎𝚛.” 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚓𝚘𝚒𝚗 𝚘𝚛 𝚌𝚛𝚎𝚊𝚝𝚎 𝚊𝚗 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚘𝚗 𝚝𝚑𝚒𝚜 𝚙𝚊𝚐𝚎.","private":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚊𝚌𝚌𝚎𝚜𝚜","privateDesc":"𝙾𝚗𝚕𝚢 𝚙𝚎𝚘𝚙𝚕𝚎 𝚠𝚒𝚝𝚑 𝚎𝚡𝚙𝚕𝚒𝚌𝚒𝚝 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 (𝚟𝚒𝚊 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚒𝚘𝚗) 𝚑𝚊𝚟𝚎 𝚊𝚌𝚌𝚎𝚜𝚜.","organization":"𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","organizationDesc":"𝙾𝚗𝚕𝚢 𝚝𝚑𝚎 𝚙𝚎𝚘𝚙𝚕𝚎 𝚒𝚗 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚑𝚊𝚟𝚎 𝚊𝚌𝚌𝚎𝚜𝚜.","schedulePublication":"𝚂𝚌𝚑𝚎𝚍𝚞𝚕𝚎 𝚙𝚞𝚋𝚕𝚒𝚌𝚊𝚝𝚒𝚘𝚗","scheduleHelp":"𝚃𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚖𝚊𝚍𝚎 𝚙𝚞𝚋𝚕𝚒𝚌 𝚊𝚝 𝚝𝚑𝚎 𝚐𝚒𝚟𝚎𝚗 𝚍𝚊𝚝𝚎 𝚊𝚗𝚍 𝚝𝚒𝚖𝚎. 𝙿𝚞𝚋𝚕𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚝𝚒𝚖𝚎 𝚒𝚜 𝚕𝚘𝚌𝚊𝚕{timezone}.","unchanged":"𝙰𝚌𝚌𝚎𝚜𝚜 𝚒𝚜 𝚞𝚗𝚌𝚑𝚊𝚗𝚐𝚎𝚍. 𝚂𝚎𝚕𝚎𝚌𝚝 𝚊 𝚍𝚒𝚏𝚏𝚎𝚛𝚎𝚗𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕.","future":"𝙼𝚞𝚜𝚝 𝚜𝚎𝚕𝚎𝚌𝚝 𝚊 𝚝𝚒𝚖𝚎 𝚒𝚗 𝚝𝚑𝚎 𝚏𝚞𝚝𝚞𝚛𝚎","change":"𝙲𝚑𝚊𝚗𝚐𝚎"},"dialogCollaboratorDialog":{"confirm":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚖𝚘𝚟𝚎 𝚞𝚜𝚎𝚛","confirmMsg":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚛𝚎𝚖𝚘𝚟𝚎 {name} 𝚏𝚛𝚘𝚖 {title}. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","addCollaborators":"𝙰𝚍𝚍 𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜","invite":"𝙿𝚞𝚝 𝚒𝚗 𝚝𝚑𝚎 𝚎𝚖𝚊𝚒𝚕 𝚘𝚏 𝚊𝚗 𝚎𝚡𝚒𝚜𝚝𝚒𝚗𝚐 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚞𝚜𝚎𝚛 𝚋𝚎𝚕𝚘𝚠. 𝙸𝚏 𝚝𝚑𝚎𝚢 𝚍𝚘𝚗'𝚝 𝚑𝚊𝚟𝚎 𝚊𝚗 𝚊𝚌𝚌𝚘𝚞𝚗𝚝, 𝚑𝚊𝚟𝚎 𝚝𝚑𝚎𝚖 𝚛𝚎𝚐𝚒𝚜𝚝𝚎𝚛 𝚑𝚎𝚛𝚎 𝚏𝚘𝚛 𝚏𝚛𝚎𝚎, 𝚊𝚗𝚍 𝚝𝚑𝚎𝚗 𝚊𝚜𝚔 𝚝𝚑𝚎𝚖 𝚝𝚘 𝚕𝚘𝚐 𝚒𝚗 𝚝𝚘 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚊𝚝 𝚕𝚎𝚊𝚜𝚝 𝚘𝚗𝚌𝚎.","admin":"𝙰𝚍𝚖𝚒𝚗","view":"𝚅𝚒𝚎𝚠","adminHelp":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚊𝚗𝚍 𝚒𝚝𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","editHelp":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝","viewHelp":"𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝","add":"𝙰𝚍𝚍","empty":"𝚈𝚘𝚞 𝚑𝚊𝚟𝚎 𝚗𝚘𝚝 𝚢𝚎𝚝 𝚊𝚍𝚍𝚎𝚍 𝚊𝚗𝚢 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚝𝚘 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝. 𝙸𝚗𝚟𝚒𝚝𝚎 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚝𝚘 𝚐𝚛𝚊𝚗𝚝 𝚘𝚝𝚑𝚎𝚛 𝚞𝚜𝚎𝚛𝚜 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚜𝚑𝚊𝚛𝚎𝚍 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚌𝚘𝚗𝚝𝚛𝚘𝚕 𝚠𝚑𝚎𝚝𝚑𝚎𝚛 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚑𝚊𝚟𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚟𝚒𝚎𝚠/𝚎𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝’𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚘𝚛 𝚋𝚎 𝚊𝚗 𝚊𝚍𝚖𝚒𝚗 𝚠𝚒𝚝𝚑 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗𝚜 𝚝𝚘 𝚒𝚗𝚟𝚒𝚝𝚎 𝚘𝚝𝚑𝚎𝚛 𝚞𝚜𝚎𝚛𝚜 𝚊𝚗𝚍 𝚎𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚒𝚝𝚜𝚎𝚕𝚏.","manageCollaborators":"𝙼𝚊𝚗𝚊𝚐𝚎 𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜","name":"𝙽𝚊𝚖𝚎","access":"𝙰𝚌𝚌𝚎𝚜𝚜","you":"(𝚢𝚘𝚞)"},"dialogDataDialog":{"confirm":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚖𝚘𝚟𝚎 𝚍𝚊𝚝𝚊 𝚙𝚘𝚒𝚗𝚝","removeMsg":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚛𝚎𝚖𝚘𝚟𝚎 𝚝𝚑𝚎 {key}{value} 𝚍𝚊𝚝𝚊 𝚙𝚘𝚒𝚗𝚝 𝚏𝚛𝚘𝚖 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","addData":"𝙰𝚍𝚍 𝙳𝚊𝚝𝚊 𝚏𝚘𝚛 {n, plural, one {𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","tag":"𝚃𝚊𝚐","value":"𝚅𝚊𝚕𝚞𝚎","key":"𝙺𝚎𝚢","keyValue":"𝙺𝚎𝚢 / 𝚅𝚊𝚕𝚞𝚎","tagInfo":"𝙰𝚍𝚍 𝚌𝚞𝚜𝚝𝚘𝚖 𝚝𝚊𝚐𝚜 𝚝𝚘 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜.","eg":"𝚎.𝚐.","exampleTagReport":"𝚛𝚎𝚙𝚘𝚛𝚝","exampleTagLawsuit":"𝚕𝚊𝚠𝚜𝚞𝚒𝚝","exampleTagEmail":"𝚎𝚖𝚊𝚒𝚕","keyValueInfo":"𝙰𝚍𝚍 𝚌𝚞𝚜𝚝𝚘𝚖 𝚔𝚎𝚢 / 𝚟𝚊𝚕𝚞𝚎 𝚙𝚊𝚒𝚛𝚜 𝚏𝚘𝚛 𝚙𝚛𝚎𝚌𝚒𝚜𝚎 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚘𝚏 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜.","exampleKVState":"𝚜𝚝𝚊𝚝𝚎:&𝚗𝚋𝚜𝚙;𝙲𝚊𝚕𝚒𝚏𝚘𝚛𝚗𝚒𝚊","exampleKVYear":"𝚢𝚎𝚊𝚛:&𝚗𝚋𝚜𝚙;𝟸𝟶𝟷𝟼","exampleKVType":"𝚝𝚢𝚙𝚎:&𝚗𝚋𝚜𝚙;𝚖𝚎𝚖𝚘","enterTag":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚝𝚊𝚐","enterKey":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚔𝚎𝚢","keyInvalid":"𝙺𝚎𝚢𝚜 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚌𝚘𝚗𝚝𝚊𝚒𝚗 𝚕𝚎𝚝𝚝𝚎𝚛𝚜, 𝚗𝚞𝚖𝚋𝚎𝚛𝚜, 𝚞𝚗𝚍𝚎𝚛𝚜𝚌𝚘𝚛𝚎𝚜 (_), 𝚊𝚗𝚍 𝚍𝚊𝚜𝚑𝚎𝚜 (-)","emptyMsg":"𝚈𝚘𝚞 𝚑𝚊𝚟𝚎 𝚗𝚘𝚝 𝚢𝚎𝚝 𝚊𝚍𝚍𝚎𝚍 𝚊𝚗𝚢 𝚍𝚊𝚝𝚊 𝚝𝚘 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝙰𝚍𝚍 𝚝𝚊𝚐𝚜 𝚊𝚗𝚍 𝚔𝚎𝚢/𝚟𝚊𝚕𝚞𝚎 𝚙𝚊𝚒𝚛𝚜 𝚝𝚘 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚎 𝚊𝚗𝚍 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚏𝚒𝚕𝚝𝚎𝚛 𝚊𝚗𝚍 𝚜𝚎𝚊𝚛𝚌𝚑 𝚘𝚗 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚍𝚊𝚝𝚊 𝚝𝚘 𝚐𝚒𝚟𝚎 𝚢𝚘𝚞 𝚙𝚘𝚠𝚎𝚛𝚏𝚞𝚕 𝚌𝚘𝚗𝚝𝚛𝚘𝚕 𝚘𝚟𝚎𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚖𝚊𝚗𝚊𝚐𝚎𝚖𝚎𝚗𝚝.","manageDocumentData":"𝙼𝚊𝚗𝚊𝚐𝚎 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙳𝚊𝚝𝚊","valueUnchanged":"𝚅𝚊𝚕𝚞𝚎 𝚛𝚎𝚖𝚊𝚒𝚗𝚜 𝚞𝚗𝚌𝚑𝚊𝚗𝚐𝚎𝚍","kvCannotBeEmpty":"𝙺𝚎𝚢/𝚟𝚊𝚕𝚞𝚎 𝚌𝚊𝚗𝚗𝚘𝚝 𝚋𝚎 𝚎𝚖𝚙𝚝𝚢"},"dialogReprocessDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜","reprocessDocs":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚏𝚘𝚛𝚌𝚎 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚝𝚘 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚙𝚊𝚐𝚎 𝚊𝚗𝚍 𝚒𝚖𝚊𝚐𝚎 𝚝𝚎𝚡𝚝. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","reprocessSingleDoc":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚏𝚘𝚛𝚌𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚙𝚊𝚐𝚎 𝚊𝚗𝚍 𝚒𝚖𝚊𝚐𝚎 𝚝𝚎𝚡𝚝. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","confirm":"𝚁𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜"},"dialogDeleteDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜","deleteDocs":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚙𝚎𝚛𝚖𝚊𝚗𝚎𝚗𝚝𝚕𝚢 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?"},"dialogCancelProcessingDialog":{"title":"𝙲𝚊𝚗𝚌𝚎𝚕 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","deleteDocs":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚏𝚘𝚛𝚌𝚎 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚝𝚘 𝚜𝚝𝚘𝚙 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐. 𝙰𝚏𝚝𝚎𝚛 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚑𝚊𝚜 𝚋𝚎𝚎𝚗 𝚜𝚝𝚘𝚙𝚙𝚎𝚍, 𝚊𝚗 𝚎𝚛𝚛𝚘𝚛 𝚠𝚒𝚕𝚕 𝚜𝚑𝚘𝚠 𝚊𝚏𝚝𝚎𝚛 𝚠𝚑𝚒𝚌𝚑 𝚢𝚘𝚞 𝚌𝚊𝚗 “𝙵𝚘𝚛𝚌𝚎 𝚁𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜” 𝚘𝚛 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚎 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚞𝚜𝚒𝚗𝚐 𝚝𝚑𝚎 𝙴𝚍𝚒𝚝 𝚖𝚎𝚗𝚞. 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝚂𝚝𝚊𝚏𝚏-𝚘𝚗𝚕𝚢 𝚒𝚗𝚏𝚘 𝚏𝚘𝚛 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","id":"𝙸𝙳","title":"𝚃𝚒𝚝𝚕𝚎","actions":"𝙰𝚌𝚝𝚒𝚘𝚗𝚜","debug":"𝙳𝚎𝚋𝚞𝚐","viewErrors":"𝚅𝚒𝚎𝚠 𝚎𝚛𝚛𝚘𝚛𝚜","viewS3":"𝚅𝚒𝚎𝚠 𝚒𝚗 𝚂𝟹"},"dialogDocumentEmbedDialog":{"responsive":"𝚁𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎","respOn":"𝙾𝚗 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","respOnHelp":"𝙵𝚒𝚕𝚕 𝚝𝚑𝚎 𝚠𝚒𝚍𝚝𝚑 𝚘𝚏 𝚝𝚑𝚎 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚌𝚘𝚗𝚝𝚊𝚒𝚗𝚎𝚛 (𝚞𝚜𝚞𝚊𝚕𝚕𝚢 𝚠𝚘𝚛𝚔𝚜 𝚋𝚎𝚜𝚝)","respOff":"𝙾𝚏𝚏","respOffHelp":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚏𝚒𝚝 𝚝𝚑𝚎 𝚜𝚒𝚣𝚎𝚜 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚋𝚎𝚕𝚘𝚠","width":"𝚆𝚒𝚍𝚝𝚑","widthAuto":"𝚆𝚒𝚕𝚕 𝚏𝚒𝚕𝚕 𝚝𝚑𝚎 𝚊𝚟𝚊𝚒𝚕𝚊𝚋𝚕𝚎 𝚜𝚙𝚊𝚌𝚎 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚜𝚎𝚝 𝚝𝚘 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚘𝚝𝚑𝚎𝚛𝚠𝚒𝚜𝚎 𝚍𝚎𝚏𝚊𝚞𝚕𝚝𝚜 𝚝𝚘 𝟽𝟶𝟶𝚙𝚡","widthFixed":"𝚂𝚎𝚝 𝚊 𝚖𝚊𝚡𝚒𝚖𝚞𝚖 𝚠𝚒𝚍𝚝𝚑 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚘𝚛 𝚜𝚎𝚝 𝚊 𝚏𝚒𝚡𝚎𝚍 𝚜𝚒𝚣𝚎 𝚒𝚏 𝚗𝚘𝚝 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎","height":"𝙷𝚎𝚒𝚐𝚑𝚝","heightAuto":"𝚃𝚑𝚎 𝚑𝚎𝚒𝚐𝚑𝚝 𝚒𝚜 𝚋𝚊𝚜𝚎𝚍 𝚘𝚗 𝚝𝚑𝚎 𝚜𝚒𝚣𝚎 𝚘𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝, 𝚠𝚒𝚝𝚑 𝚗𝚘 𝚖𝚊𝚡𝚒𝚖𝚞𝚖 𝚜𝚒𝚣𝚎. 𝙸𝚏 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚜𝚎𝚝 𝚝𝚘 𝚝𝚑𝚎 𝚑𝚎𝚒𝚐𝚑𝚝 𝚘𝚏 𝚝𝚑𝚎 𝚋𝚛𝚘𝚠𝚜𝚎𝚛 𝚠𝚒𝚗𝚍𝚘𝚠 𝚖𝚒𝚗𝚞𝚜 𝟷𝟶𝟶𝚙𝚡","heightFixed":"𝚂𝚎𝚝 𝚊 𝚖𝚊𝚡𝚒𝚖𝚞𝚖 𝚑𝚎𝚒𝚐𝚑𝚝 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎, 𝚘𝚛 𝚜𝚎𝚝 𝚊 𝚏𝚒𝚡𝚎𝚍 𝚜𝚒𝚣𝚎 𝚒𝚏 𝚗𝚘𝚝 𝚛𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎","sidebarBehavior":"𝚂𝚒𝚍𝚎𝚋𝚊𝚛 𝚋𝚎𝚑𝚊𝚟𝚒𝚘𝚛","sbResponsive":"𝚁𝚎𝚜𝚙𝚘𝚗𝚜𝚒𝚟𝚎 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","sbResponsiveHelp":"𝚂𝚑𝚘𝚠 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚊𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌𝚊𝚕𝚕𝚢 𝚘𝚗 𝚕𝚊𝚛𝚐𝚎 𝚜𝚌𝚛𝚎𝚎𝚗𝚜 𝚊𝚗𝚍 𝚑𝚒𝚍𝚎 𝚘𝚗 𝚖𝚘𝚋𝚒𝚕𝚎 𝚍𝚎𝚟𝚒𝚌𝚎𝚜. 𝙸𝚗 𝚎𝚖𝚋𝚎𝚍 𝚖𝚘𝚍𝚎, 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚑𝚒𝚍𝚍𝚎𝚗","hidden":"𝙷𝚒𝚍𝚍𝚎𝚗","visible":"𝚅𝚒𝚜𝚒𝚋𝚕𝚎","visibleDefault":"𝚅𝚒𝚜𝚒𝚋𝚕𝚎 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","sbHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚋𝚢 𝚍𝚎𝚏𝚊𝚞𝚕𝚝","sbVisibleHelp":"𝚂𝚑𝚘𝚠 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝚋𝚢 𝚍𝚎𝚏𝚊𝚞𝚕𝚝","titleBehavior":"𝚃𝚒𝚝𝚕𝚎 𝚋𝚎𝚑𝚊𝚟𝚒𝚘𝚛","tVisibleHelp":"𝙳𝚒𝚜𝚙𝚕𝚊𝚢 𝚝𝚑𝚎 𝚝𝚒𝚝𝚕𝚎 𝚊𝚗𝚍 𝚊𝚝𝚝𝚛𝚒𝚋𝚞𝚝𝚒𝚘𝚗 𝚒𝚗 𝚝𝚑𝚎 𝚑𝚎𝚊𝚍𝚎𝚛 𝚘𝚏 𝚝𝚑𝚎 𝚟𝚒𝚎𝚠𝚎𝚛","tHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚝𝚒𝚝𝚕𝚎 𝚒𝚗 𝚝𝚑𝚎 𝚑𝚎𝚊𝚍𝚎𝚛 𝚘𝚏 𝚝𝚑𝚎 𝚟𝚒𝚎𝚠𝚎𝚛 (𝚜𝚝𝚒𝚕𝚕 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚒𝚗 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛)","pdfLink":"𝙿𝙳𝙵 𝚕𝚒𝚗𝚔","plVisibleHelp":"𝚂𝚑𝚘𝚠 𝚊 𝚕𝚒𝚗𝚔 𝚝𝚘 𝚝𝚑𝚎 𝚛𝚊𝚠 𝙿𝙳𝙵 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚗 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛","plHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚜𝚒𝚍𝚎𝚋𝚊𝚛 𝙿𝙳𝙵 𝚕𝚒𝚗𝚔 (𝚏𝚒𝚕𝚎 𝚒𝚜 𝚜𝚝𝚒𝚕𝚕 𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎 𝚒𝚏 𝚝𝚑𝚎 𝚄𝚁𝙻 𝚒𝚜 𝚔𝚗𝚘𝚠𝚗)","fullscreenOption":"𝙵𝚞𝚕𝚕𝚜𝚌𝚛𝚎𝚎𝚗 𝚘𝚙𝚝𝚒𝚘𝚗","fsVisibleHelp":"𝚂𝚑𝚘𝚠 𝚊 𝚏𝚞𝚕𝚕𝚜𝚌𝚛𝚎𝚎𝚗 𝚒𝚌𝚘𝚗 𝚒𝚗 𝚝𝚑𝚎 𝚋𝚘𝚝𝚝𝚘𝚖-𝚛𝚒𝚐𝚑𝚝 𝚌𝚘𝚛𝚗𝚎𝚛","fsHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚑𝚎 𝚏𝚞𝚕𝚕𝚜𝚌𝚛𝚎𝚎𝚗 𝚘𝚙𝚝𝚒𝚘𝚗","textMode":"𝚃𝚎𝚡𝚝 𝚖𝚘𝚍𝚎","tmVisibleHelp":"𝚂𝚑𝚘𝚠 𝚊𝚗 𝚘𝚙𝚝𝚒𝚘𝚗 𝚝𝚘 𝚟𝚒𝚎𝚠 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝’𝚜 𝚝𝚎𝚡𝚝 𝚒𝚗 𝚝𝚑𝚎 𝚟𝚒𝚎𝚠 𝚍𝚛𝚘𝚙𝚍𝚘𝚠𝚗","tmHiddenHelp":"𝙷𝚒𝚍𝚎 𝚝𝚎𝚡𝚝 𝚖𝚘𝚍𝚎","contributedByFormat":"𝙲𝚘𝚗𝚝𝚛𝚒𝚋𝚞𝚝𝚎𝚍 𝚋𝚢 𝚏𝚘𝚛𝚖𝚊𝚝","cbfUserAndOrg":"𝚄𝚜𝚎𝚛 𝚊𝚗𝚍 𝚘𝚛𝚐 (𝚍𝚎𝚏𝚊𝚞𝚕𝚝)","cbfUserAndOrgHelp":"𝚂𝚑𝚘𝚠 𝚊 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝’𝚜 𝚊𝚝𝚝𝚛𝚒𝚋𝚞𝚝𝚒𝚘𝚗 𝚊𝚜 𝚝𝚑𝚎 𝚞𝚜𝚎𝚛 𝚗𝚊𝚖𝚎 𝚏𝚘𝚕𝚕𝚘𝚠𝚎𝚍 𝚋𝚢 𝚝𝚑𝚎 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","cbfOrgOnly":"𝙾𝚛𝚐 𝚘𝚗𝚕𝚢","cbfOrgOnlyHelp":"𝙰𝚝𝚝𝚛𝚒𝚋𝚞𝚝𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚓𝚞𝚜𝚝 𝚝𝚑𝚎 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","share":"𝚂𝚑𝚊𝚛𝚎 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎"},"dialogDocumentInformationDialog":{"editInformation":"𝙴𝚍𝚒𝚝 𝙸𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}"},"dialogRedactDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜","description":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚛𝚎𝚍𝚊𝚌𝚝 𝚝𝚑𝚎 𝚌𝚞𝚛𝚛𝚎𝚗𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝? 𝙸𝚏 𝚢𝚘𝚞 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎, 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚟𝚒𝚎𝚠𝚎𝚛 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚒𝚗𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎 𝚝𝚎𝚖𝚙𝚘𝚛𝚊𝚛𝚒𝚕𝚢 𝚠𝚑𝚒𝚕𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚎𝚜 𝚠𝚒𝚝𝚑 𝚝𝚑𝚎 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜 𝚒𝚗 𝚙𝚕𝚊𝚌𝚎. 𝚃𝚑𝚒𝚜 𝚌𝚑𝚊𝚗𝚐𝚎 𝚒𝚜 𝚒𝚛𝚛𝚎𝚟𝚎𝚛𝚜𝚒𝚋𝚕𝚎."},"dialogModifyDialog":{"title":"𝙰𝚙𝚙𝚕𝚢 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜","description":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚖𝚘𝚍𝚒𝚏𝚢 𝚝𝚑𝚎 𝚌𝚞𝚛𝚛𝚎𝚗𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝? 𝙸𝚏 𝚢𝚘𝚞 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎, 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚟𝚒𝚎𝚠𝚎𝚛 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚒𝚗𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎 𝚝𝚎𝚖𝚙𝚘𝚛𝚊𝚛𝚒𝚕𝚢 𝚠𝚑𝚒𝚕𝚎 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚎𝚜 𝚠𝚒𝚝𝚑 𝚝𝚑𝚎 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜. 𝚃𝚑𝚒𝚜 𝚌𝚑𝚊𝚗𝚐𝚎 𝚒𝚜 𝚒𝚛𝚛𝚎𝚟𝚎𝚛𝚜𝚒𝚋𝚕𝚎.","closeTitle":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚌𝚕𝚘𝚜𝚎","closeWarning":"𝚈𝚘𝚞 𝚠𝚒𝚕𝚕 𝚕𝚘𝚜𝚎 𝚊𝚕𝚕 𝚢𝚘𝚞𝚛 𝚞𝚗𝚊𝚙𝚙𝚕𝚒𝚎𝚍 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜. 𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚊𝚗𝚝 𝚝𝚘 𝚙𝚛𝚘𝚌𝚎𝚎𝚍?"},"dialogDeleteNoteDialog":{"title":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚍𝚎𝚕𝚎𝚝𝚎","description":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚎 𝚌𝚞𝚛𝚛𝚎𝚗𝚝 𝚗𝚘𝚝𝚎?"},"dialogEditSectionsDialog":{"confirmDelete":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚍𝚎𝚕𝚎𝚝𝚎","proceedingWillRemove":"𝙿𝚛𝚘𝚌𝚎𝚎𝚍𝚒𝚗𝚐 𝚠𝚒𝚕𝚕 𝚛𝚎𝚖𝚘𝚟𝚎 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 𝚜𝚎𝚌𝚝𝚒𝚘𝚗 (𝚙. {page} {title}). 𝙳𝚘 𝚢𝚘𝚞 𝚠𝚒𝚜𝚑 𝚝𝚘 𝚌𝚘𝚗𝚝𝚒𝚗𝚞𝚎?","editSections":"𝙴𝚍𝚒𝚝 𝚂𝚎𝚌𝚝𝚒𝚘𝚗𝚜","manageSections":"𝙼𝚊𝚗𝚊𝚐𝚎 𝚜𝚎𝚌𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑 𝚊 𝚝𝚊𝚋𝚕𝚎 𝚘𝚏 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜.","pageAbbrevNo":"𝚙. {n}","pageAbbrev":"𝚙.","empty":"𝚈𝚘𝚞 𝚑𝚊𝚟𝚎 𝚗𝚘𝚝 𝚊𝚍𝚍𝚎𝚍 𝚊𝚗𝚢 𝚜𝚎𝚌𝚝𝚒𝚘𝚗𝚜","edit":"𝙴𝚍𝚒𝚝 𝚝𝚑𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚜𝚎𝚌𝚝𝚒𝚘𝚗","add":"𝙰𝚍𝚍 𝚊 𝚗𝚎𝚠 𝚜𝚎𝚌𝚝𝚒𝚘𝚗","title":"𝚃𝚒𝚝𝚕𝚎","missingTitle":"𝙿𝚕𝚎𝚊𝚜𝚎 𝚎𝚗𝚝𝚎𝚛 𝚊 𝚝𝚒𝚝𝚕𝚎","updateTitle":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚗𝚎𝚠 𝚝𝚒𝚝𝚕𝚎 𝚘𝚛 𝚙𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛","uniquePageNumber":"𝚈𝚘𝚞 𝚖𝚞𝚜𝚝 𝚎𝚗𝚝𝚎𝚛 𝚊 𝚞𝚗𝚒𝚚𝚞𝚎 𝚙𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛","invalidPageNumber":"𝙿𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛 𝚒𝚜 𝚒𝚗𝚟𝚊𝚕𝚒𝚍"},"dialogEmbedDialog":{"updatingDocument":"𝚄𝚙𝚍𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝...","makingPublic":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚋𝚎𝚒𝚗𝚐 𝚖𝚊𝚍𝚎 𝚙𝚞𝚋𝚕𝚒𝚌. 𝚃𝚑𝚒𝚜 𝚖𝚊𝚢 𝚝𝚊𝚔𝚎 𝚊 𝚖𝚒𝚗𝚞𝚝𝚎 𝚘𝚛 𝚝𝚠𝚘.","wouldMakePublic":"𝚆𝚘𝚞𝚕𝚍 𝚢𝚘𝚞 𝚕𝚒𝚔𝚎 𝚝𝚘 𝚖𝚊𝚔𝚎 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚙𝚞𝚋𝚕𝚒𝚌 𝚋𝚎𝚏𝚘𝚛𝚎 𝚜𝚑𝚊𝚛𝚒𝚗𝚐?","notPublic":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚗𝚘𝚝 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚙𝚞𝚋𝚕𝚒𝚌. 𝙸𝚏 𝚢𝚘𝚞 𝚎𝚖𝚋𝚎𝚍 𝚘𝚛 𝚕𝚒𝚗𝚔 𝚒𝚝, 𝚘𝚗𝚕𝚢 𝚢𝚘𝚞 𝚊𝚗𝚍 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚊𝚋𝚕𝚎 𝚝𝚘 𝚟𝚒𝚎𝚠 𝚒𝚝 𝚞𝚗𝚝𝚒𝚕 𝚒𝚝 𝚒𝚜 𝚖𝚊𝚍𝚎 𝚙𝚞𝚋𝚕𝚒𝚌. 𝙲𝚕𝚒𝚌𝚔 𝚋𝚎𝚕𝚘𝚠 𝚠𝚑𝚎𝚗 𝚢𝚘𝚞’𝚛𝚎 𝚛𝚎𝚊𝚍𝚢 𝚝𝚘 𝚙𝚞𝚋𝚕𝚒𝚜𝚑 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌.","makePublic":"𝙼𝚊𝚔𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚙𝚞𝚋𝚕𝚒𝚌","leave":"𝙻𝚎𝚊𝚟𝚎 𝚊𝚜 𝚒𝚜","selectShare":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚜𝚑𝚊𝚛𝚎 𝚘𝚙𝚝𝚒𝚘𝚗","selectShareHelp":"𝙲𝚑𝚘𝚘𝚜𝚎 𝚠𝚑𝚎𝚝𝚑𝚎𝚛 𝚝𝚘 𝚜𝚑𝚊𝚛𝚎 𝚝𝚑𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚘𝚛 𝚓𝚞𝚜𝚝 𝚊 𝚙𝚊𝚐𝚎 𝚘𝚛 𝚗𝚘𝚝𝚎.","shareDoc":"𝚂𝚑𝚊𝚛𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","shareDocHelp":"𝙻𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝. (𝚃𝚑𝚒𝚜 𝚒𝚜 𝚝𝚑𝚎 𝚖𝚘𝚜𝚝 𝚌𝚘𝚖𝚖𝚘𝚗𝚕𝚢 𝚞𝚜𝚎𝚍 𝚜𝚑𝚊𝚛𝚎 𝚘𝚙𝚝𝚒𝚘𝚗.)","sharePage":"𝚂𝚑𝚊𝚛𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚌 𝚙𝚊𝚐𝚎","sharePageHelp":"𝙻𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚊 𝚜𝚒𝚗𝚐𝚕𝚎 𝚙𝚊𝚐𝚎 𝚘𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝. 𝚄𝚜𝚎𝚏𝚞𝚕 𝚏𝚘𝚛 𝚑𝚒𝚐𝚑𝚕𝚒𝚐𝚑𝚝𝚒𝚗𝚐 𝚊 𝚙𝚊𝚐𝚎 𝚎𝚡𝚌𝚎𝚛𝚙𝚝.","shareNote":"𝚂𝚑𝚊𝚛𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚌 𝚗𝚘𝚝𝚎","shareNoteHelpHasNote":"𝙻𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚊 𝚗𝚘𝚝𝚎 𝚠𝚒𝚝𝚑𝚒𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝. 𝚄𝚜𝚎𝚏𝚞𝚕 𝚏𝚘𝚛 𝚑𝚒𝚐𝚑𝚕𝚒𝚐𝚑𝚝𝚒𝚗𝚐 𝚊 𝚛𝚎𝚐𝚒𝚘𝚗 𝚘𝚏 𝚊 𝚙𝚊𝚐𝚎.","shareNoteHelpNoNote":"𝙾𝚗𝚌𝚎 𝚢𝚘𝚞 𝚊𝚍𝚍 𝚗𝚘𝚝𝚎𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝, 𝚞𝚜𝚎 𝚝𝚑𝚒𝚜 𝚏𝚎𝚊𝚝𝚞𝚛𝚎 𝚝𝚘 𝚕𝚒𝚗𝚔 𝚘𝚛 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚎𝚖."},"dialogErrorDialog":{"errorOccurred":"𝙰𝚗 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍","unexpectedErrorOccurred":"𝙰𝚗 𝚞𝚗𝚎𝚡𝚙𝚎𝚌𝚝𝚎𝚍 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍","tryAgain":"𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚕𝚊𝚝𝚎𝚛.","close":"𝙲𝚕𝚘𝚜𝚎","refresh":"𝚁𝚎𝚏𝚛𝚎𝚜𝚑"},"dialogNoteEmbedDialog":{"embedNote":"𝙴𝚖𝚋𝚎𝚍 𝚊 𝚗𝚘𝚝𝚎 𝚘𝚏 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚗𝚘𝚝𝚎 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚘𝚛 𝚙𝚘𝚜𝚝:"},"dialogPageEmbedDialog":{"embedPage":"𝙴𝚖𝚋𝚎𝚍 𝚊 𝚙𝚊𝚐𝚎 𝚘𝚏 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚙𝚊𝚐𝚎 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚘𝚛 𝚙𝚘𝚜𝚝:","selectPage":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍:","page":"𝙿𝚊𝚐𝚎 {n} (𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎)","otherPage":"𝙾𝚝𝚑𝚎𝚛 𝚙𝚊𝚐𝚎","enterPageNumber":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎 𝚗𝚞𝚖𝚋𝚎𝚛 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚊𝚌𝚌𝚎𝚜𝚜 𝚏𝚘𝚛 {name}","selectAccess":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚊𝚗 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 {name} 𝚒𝚗 {title}","adminAccess":"𝙰𝚍𝚖𝚒𝚗 𝙰𝚌𝚌𝚎𝚜𝚜","editAccess":"𝙴𝚍𝚒𝚝 𝙰𝚌𝚌𝚎𝚜𝚜","viewAccess":"𝚅𝚒𝚎𝚠 𝙰𝚌𝚌𝚎𝚜𝚜","adminHelp":"𝚃𝚑𝚒𝚜 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚊𝚗𝚍 𝚒𝚝𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜. 𝚃𝚑𝚎 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚒𝚗𝚟𝚒𝚝𝚎 𝚞𝚜𝚎𝚛𝚜, 𝚍𝚎𝚕𝚎𝚝𝚎 𝚞𝚜𝚎𝚛𝚜, 𝚊𝚗𝚍 𝚛𝚎𝚖𝚘𝚟𝚎 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝.","editHelp":"𝚃𝚑𝚒𝚜 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚎𝚍𝚒𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚋𝚞𝚝 𝚌𝚊𝚗𝚗𝚘𝚝 𝚎𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚒𝚝𝚜𝚎𝚕𝚏.","viewHelp":"𝚃𝚑𝚒𝚜 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛 𝚌𝚊𝚗 𝚟𝚒𝚎𝚠 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚒𝚗 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚋𝚞𝚝 𝚌𝚊𝚗𝚗𝚘𝚝 𝚎𝚍𝚒𝚝 𝚝𝚑𝚎𝚖 𝚘𝚛 𝚝𝚑𝚎 𝚙𝚛𝚘𝚓𝚎𝚌𝚝.","invalidAccess":"𝙰𝚌𝚌𝚎𝚜𝚜 𝚒𝚜 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚜𝚎𝚝 𝚝𝚘 {access}. 𝚂𝚎𝚕𝚎𝚌𝚝 𝚊 𝚍𝚒𝚏𝚏𝚎𝚛𝚎𝚗𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚕𝚎𝚟𝚎𝚕.","changeAccess":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚊𝚌𝚌𝚎𝚜𝚜"},"dialogOwnerDialog":{"selectUser":"𝚄𝚜𝚎𝚛 𝚖𝚞𝚜𝚝 𝚋𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍","selectOrg":"𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚖𝚞𝚜𝚝 𝚋𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍","changeOwner":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚘𝚠𝚗𝚎𝚛 𝚏𝚘𝚛 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","accessWarning":"𝚆𝚊𝚛𝚗𝚒𝚗𝚐: 𝚈𝚘𝚞 𝚖𝚊𝚢 𝚕𝚘𝚜𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚎 𝚜𝚙𝚎𝚌𝚒𝚏𝚒𝚎𝚍 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}} 𝚊𝚜 𝚊 𝚛𝚎𝚜𝚞𝚕𝚝 𝚘𝚏 𝚌𝚑𝚊𝚗𝚐𝚒𝚗𝚐 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚘𝚠𝚗𝚎𝚛","user":"𝚄𝚜𝚎𝚛:","filterUsers":"𝚃𝚢𝚙𝚎 𝚝𝚘 𝚏𝚒𝚕𝚝𝚎𝚛 𝚞𝚜𝚎𝚛𝚜...","filterOrgs":"𝚃𝚢𝚙𝚎 𝚝𝚘 𝚏𝚒𝚕𝚝𝚎𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗𝚜..."},"dialogProjectDialog":{"confirmDelete":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚍𝚎𝚕𝚎𝚝𝚎","deleteProject":"𝙰𝚛𝚎 𝚢𝚘𝚞 𝚜𝚞𝚛𝚎 𝚢𝚘𝚞 𝚠𝚊𝚗𝚝 𝚝𝚘 𝚍𝚎𝚕𝚎𝚝𝚎 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 ({project})?","editProject":"𝙴𝚍𝚒𝚝 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","createProject":"𝙲𝚛𝚎𝚊𝚝𝚎 𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","title":"𝚃𝚒𝚝𝚕𝚎...","projectDesc":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝 𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 (𝚘𝚙𝚝𝚒𝚘𝚗𝚊𝚕)","manageCollabs":"𝙼𝚊𝚗𝚊𝚐𝚎 𝙲𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚘𝚛𝚜","share":"𝚂𝚑𝚊𝚛𝚎 / 𝙴𝚖𝚋𝚎𝚍 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","enterTitle":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚝𝚒𝚝𝚕𝚎","changeTitle":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚝𝚑𝚎 𝚝𝚒𝚝𝚕𝚎 𝚘𝚛 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗"},"dialogProjectEmbedDialog":{"share":"𝚂𝚑𝚊𝚛𝚎 “{title}”","embedDesc":"𝙲𝚘𝚙𝚢 𝚝𝚑𝚎 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎 𝚝𝚘 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑𝚒𝚗 𝚊𝚗 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚘𝚛 𝚙𝚘𝚜𝚝:","invalid":"𝙸𝚗𝚟𝚊𝚕𝚒𝚍 𝚙𝚛𝚘𝚓𝚎𝚌𝚝","cannotEmbed":"𝙲𝚊𝚗𝚗𝚘𝚝 𝚎𝚖𝚋𝚎𝚍 𝚝𝚑𝚒𝚜 𝚙𝚛𝚘𝚓𝚎𝚌𝚝, 𝚊𝚜 𝚒𝚝 𝚍𝚘𝚎𝚜 𝚗𝚘𝚝 𝚊𝚙𝚙𝚎𝚊𝚛 𝚝𝚘 𝚎𝚡𝚒𝚜𝚝."},"htmlEditor":{"preview":"𝙿𝚛𝚎𝚟𝚒𝚎𝚠:"},"image":{"error":"𝙰𝚗 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍. 𝚃𝚛𝚢 𝚛𝚎𝚏𝚛𝚎𝚜𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎"},"omniselect":{"filter":"𝚃𝚢𝚙𝚎 𝚝𝚘 𝚏𝚒𝚕𝚝𝚎𝚛 𝚕𝚊𝚗𝚐𝚞𝚊𝚐𝚎","noResults":"𝙽𝚘 𝚛𝚎𝚜𝚞𝚕𝚝𝚜. 𝙲𝚕𝚒𝚌𝚔 𝚝𝚘 𝚌𝚕𝚎𝚊𝚛 𝚏𝚒𝚕𝚝𝚎𝚛."},"shareOptions":{"errorText":"𝙰𝚗 𝚞𝚗𝚎𝚡𝚙𝚎𝚌𝚝𝚎𝚍 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍. 𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚕𝚊𝚝𝚎𝚛.","copyHtml":"𝙲𝚘𝚙𝚢 𝙷𝚃𝙼𝙻 𝚌𝚘𝚍𝚎","addShortcode":"𝙰𝚍𝚍 𝚝𝚑𝚒𝚜 𝚜𝚑𝚘𝚛𝚝𝚌𝚘𝚍𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚆𝚘𝚛𝚍𝙿𝚛𝚎𝚜𝚜 𝚌𝚘𝚗𝚝𝚎𝚗𝚝 —","pluginRequired":"𝚙𝚕𝚞𝚐𝚒𝚗 𝚛𝚎𝚚𝚞𝚒𝚛𝚎𝚍","copyShortcode":"𝙲𝚘𝚙𝚢 𝚜𝚑𝚘𝚛𝚝𝚌𝚘𝚍𝚎","copyUrl":"𝙲𝚘𝚙𝚢 𝚄𝚁𝙻"},"specialMessage":{"contactUs":"𝙲𝚘𝚗𝚝𝚊𝚌𝚝 𝚞𝚜 𝚠𝚒𝚝𝚑 𝚋𝚞𝚐 𝚛𝚎𝚙𝚘𝚛𝚝𝚜, 𝚚𝚞𝚎𝚜𝚝𝚒𝚘𝚗𝚜, 𝚊𝚗𝚍 𝚜𝚞𝚐𝚐𝚎𝚜𝚝𝚒𝚘𝚗𝚜."},"uploadOptions":{"documentLang":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚕𝚊𝚗𝚐𝚞𝚊𝚐𝚎:","forceOcr":"𝙵𝚘𝚛𝚌𝚎 𝙾𝙲𝚁:"},"actionBar":{"selectDocs":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚜𝚘𝚖𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚝𝚘 𝚛𝚎𝚟𝚎𝚊𝚕 𝚎𝚍𝚒𝚝 𝚊𝚌𝚝𝚒𝚘𝚗𝚜","noPerms":"𝚈𝚘𝚞 𝚍𝚘 𝚗𝚘𝚝 𝚑𝚊𝚟𝚎 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 𝚝𝚘 𝚎𝚍𝚒𝚝 𝚊𝚕𝚕 𝚘𝚏 𝚝𝚑𝚎 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","editMenu":"𝙴𝚍𝚒𝚝","projectsMenu":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝𝚜"},"authSection":{"help":"𝙷𝚎𝚕𝚙","language":"𝙻𝚊𝚗𝚐𝚞𝚊𝚐𝚎","tips":"𝚃𝚒𝚙𝚜 𝚊𝚗𝚍 𝚃𝚛𝚒𝚌𝚔𝚜","searchDocs":"𝚂𝚎𝚊𝚛𝚌𝚑 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚊𝚝𝚒𝚘𝚗","apiDocs":"𝙰𝙿𝙸 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚊𝚝𝚒𝚘𝚗","emailUs":"𝙴𝚖𝚊𝚒𝚕 𝚄𝚜","acctSettings":"𝙰𝚌𝚌𝚘𝚞𝚗𝚝 𝚂𝚎𝚝𝚝𝚒𝚗𝚐𝚜","signOut":"𝚂𝚒𝚐𝚗 𝚘𝚞𝚝","changeOrg":"𝙲𝚑𝚊𝚗𝚐𝚎 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","personalAcct":"𝙿𝚎𝚛𝚜𝚘𝚗𝚊𝚕 𝙰𝚌𝚌𝚘𝚞𝚗𝚝","signIn":"𝚂𝚒𝚐𝚗 𝚒𝚗"},"documents":{"yourDocuments":"𝚈𝚘𝚞𝚛 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","searchResults":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚁𝚎𝚜𝚞𝚕𝚝𝚜","accessDocuments":"𝚈𝚘𝚞𝚛 {access}𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","nameDocuments":"{name}'𝚜 {access}𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","allDocuments":"𝙰𝚕𝚕 {access}𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","mustBeVerified":"𝚈𝚘𝚞 𝚖𝚞𝚜𝚝 𝚋𝚎 𝚊 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚓𝚘𝚞𝚛𝚗𝚊𝚕𝚒𝚜𝚝 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","upload":"𝚄𝚙𝚕𝚘𝚊𝚍","dropFile":"𝙳𝚛𝚘𝚙 𝚏𝚒𝚕𝚎 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍"},"document":{"open":"𝙾𝚙𝚎𝚗","updating":"𝚄𝚙𝚍𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝...","processing":"𝙿𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","processingError":"𝙰𝚗 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍 𝚝𝚛𝚢𝚒𝚗𝚐 𝚝𝚘 𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","remove":"𝚁𝚎𝚖𝚘𝚟𝚎","improper":"𝚈𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚊𝚜 𝚞𝚙𝚕𝚘𝚊𝚍𝚎𝚍 𝚒𝚖𝚙𝚛𝚘𝚙𝚎𝚛𝚕𝚢","project":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝","totalMatchingPages":"{n} 𝚘𝚏 {m} 𝚙𝚊𝚐𝚎𝚜 𝚖𝚊𝚝𝚌𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚚𝚞𝚎𝚛𝚢","showAll":"𝚂𝚑𝚘𝚠 𝚊𝚕𝚕","matchingPages":"{n} 𝚙𝚊𝚐𝚎𝚜 𝚖𝚊𝚝𝚌𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚚𝚞𝚎𝚛𝚢","pageAbbrev":"𝚙.","pageCount":"{n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}","source":"𝚂𝚘𝚞𝚛𝚌𝚎"},"documentThumbnail":{"pages":"𝚙𝚊𝚐𝚎𝚜","loading":"𝙻𝚘𝚊𝚍𝚒𝚗𝚐 𝚙𝚛𝚘𝚐𝚛𝚎𝚜𝚜 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗..."},"mainContainer":{"error":"𝙴𝚛𝚛𝚘𝚛","errorMsg":"𝚆𝚎 𝚌𝚘𝚞𝚕𝚍 𝚗𝚘𝚝 𝚛𝚎𝚊𝚌𝚑 𝚝𝚑𝚎 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚜𝚎𝚛𝚟𝚎𝚛. 𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚛𝚎𝚏𝚛𝚎𝚜𝚑𝚒𝚗𝚐 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎 𝚕𝚊𝚝𝚎𝚛.","refresh":"𝚁𝚎𝚏𝚛𝚎𝚜𝚑"},"editMenu":{"editDocInfo":"𝙴𝚍𝚒𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙸𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗","changeAccess":"𝙲𝚑𝚊𝚗𝚐𝚎 𝙰𝚌𝚌𝚎𝚜𝚜","editDocData":"𝙴𝚍𝚒𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙳𝚊𝚝𝚊","cancelProcessing":"𝙲𝚊𝚗𝚌𝚎𝚕 𝙿𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","forceReprocess":"𝙵𝚘𝚛𝚌𝚎 𝚁𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜","entities":"𝙴𝚗𝚝𝚒𝚝𝚒𝚎𝚜 𝙱𝙴𝚃𝙰","changeOwner":"𝙲𝚑𝚊𝚗𝚐𝚎 𝙾𝚠𝚗𝚎𝚛","delete":"𝙳𝚎𝚕𝚎𝚝𝚎","diagnosticInfo":"𝙳𝚒𝚊𝚐𝚗𝚘𝚜𝚝𝚒𝚌 𝙸𝚗𝚏𝚘"},"metaFields":{"defaultFieldInvalidText":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚑𝚊𝚜 𝚝𝚑𝚒𝚜 {fieldName}","titleFieldTitle":"𝚃𝚒𝚝𝚕𝚎","titleFieldName":"𝚗𝚊𝚖𝚎","titleFieldNameUppercase":"𝙽𝚊𝚖𝚎","titleFieldHeader":"𝚁𝚎𝚗𝚊𝚖𝚎 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","titleFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚗𝚊𝚖𝚎 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","titleFieldButton":"𝚁𝚎𝚗𝚊𝚖𝚎","titleFieldInvalidSameName":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚑𝚊𝚜 𝚝𝚑𝚒𝚜 𝚗𝚊𝚖𝚎","titleFieldInvalidEmptyName":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚟𝚊𝚕𝚒𝚍 𝚗𝚊𝚖𝚎","sourceFieldTitle":"𝚂𝚘𝚞𝚛𝚌𝚎","sourceFieldName":"𝚜𝚘𝚞𝚛𝚌𝚎","sourceFieldNameUppercase":"𝚂𝚘𝚞𝚛𝚌𝚎","sourceFieldHeader":"𝙴𝚍𝚒𝚝 𝚜𝚘𝚞𝚛𝚌𝚎 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","sourceFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚜𝚘𝚞𝚛𝚌𝚎 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","sourceFieldButton":"𝙴𝚍𝚒𝚝","descriptionFieldTitle":"𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗","descriptionFieldName":"𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗","descriptionFieldNameUppercase":"𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗","descriptionFieldHeader":"𝙴𝚍𝚒𝚝 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","descriptionFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","descriptionFieldButton":"𝙴𝚍𝚒𝚝","relatedArticleFieldTitle":"𝚁𝚎𝚕𝚊𝚝𝚎𝚍 𝙰𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻","relatedArticleFieldName":"𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻","relatedArticleFieldNameUppercase":"𝚁𝚎𝚕𝚊𝚝𝚎𝚍 𝙰𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻","relatedArticleFieldHeader":"𝙴𝚍𝚒𝚝 𝚝𝚑𝚎 𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","relatedArticleFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚊𝚛𝚝𝚒𝚌𝚕𝚎 𝚄𝚁𝙻 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","relatedArticleFieldButton":"𝙴𝚍𝚒𝚝","publishedUrlFieldTitle":"𝙿𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻","publishedUrlFieldName":"𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻","publishedUrlFieldNameUppercase":"𝙿𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻","publishedUrlFieldHeader":"𝙴𝚍𝚒𝚝 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻 𝚏𝚘𝚛 {n, plural, one {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","publishedUrlFieldDescription":"𝙴𝚗𝚝𝚎𝚛 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚎𝚍 𝚄𝚁𝙻 𝚋𝚎𝚕𝚘𝚠 𝚏𝚘𝚛 𝚝𝚑𝚎 {n, plural, one {𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚜𝚎𝚕𝚎𝚌𝚝𝚎𝚍 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}","publishedUrlFieldButton":"𝙴𝚍𝚒𝚝"},"projectsMenu":{"newProject":"+ 𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","projMembership":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝 𝙼𝚎𝚖𝚋𝚎𝚛𝚜𝚑𝚒𝚙","selectDocs":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚝𝚘 𝚙𝚕𝚊𝚌𝚎 𝚝𝚑𝚎𝚖 𝚒𝚗 𝚙𝚛𝚘𝚓𝚎𝚌𝚝𝚜","createProj":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚊 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚝𝚘 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚊𝚗𝚍 𝚜𝚑𝚊𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜"},"noDocuments":{"noSearchResults":"𝙽𝚘 𝚜𝚎𝚊𝚛𝚌𝚑 𝚛𝚎𝚜𝚞𝚕𝚝𝚜","queryNoResults":"𝚈𝚘𝚞𝚛 𝚜𝚎𝚊𝚛𝚌𝚑 𝚚𝚞𝚎𝚛𝚢 𝚛𝚎𝚝𝚞𝚛𝚗𝚎𝚍 𝚗𝚘 𝚛𝚎𝚜𝚞𝚕𝚝𝚜. 𝚃𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚠𝚒𝚝𝚑 𝚊 𝚋𝚛𝚘𝚊𝚍𝚎𝚛 𝚜𝚎𝚊𝚛𝚌𝚑 𝚚𝚞𝚎𝚛𝚢.","welcome":"𝚆𝚎𝚕𝚌𝚘𝚖𝚎 𝚝𝚘 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍!","verify1":"𝙽𝚘𝚝𝚎 𝚝𝚑𝚊𝚝 𝚌𝚞𝚛𝚛𝚎𝚗𝚝𝚕𝚢 𝚢𝚘𝚞𝚛 𝚊𝚌𝚌𝚘𝚞𝚗𝚝 𝚒𝚜 𝚗𝚘𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚜𝚎𝚊𝚛𝚌𝚑 𝚝𝚑𝚛𝚘𝚞𝚐𝚑 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌 𝚛𝚎𝚙𝚘𝚜𝚒𝚝𝚘𝚛𝚢, 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚢𝚘𝚞'𝚛𝚎 𝚒𝚗𝚝𝚎𝚛𝚎𝚜𝚝𝚎𝚍 𝚒𝚗 𝚒𝚗𝚝𝚘 𝚙𝚛𝚘𝚓𝚎𝚌𝚝𝚜, 𝚕𝚎𝚊𝚟𝚎 𝚙𝚛𝚒𝚟𝚊𝚝𝚎 𝚗𝚘𝚝𝚎𝚜, 𝚊𝚗𝚍 𝚌𝚘𝚕𝚕𝚊𝚋𝚘𝚛𝚊𝚝𝚎 𝚘𝚗 𝚎𝚍𝚒𝚝𝚒𝚗𝚐 𝚊𝚗𝚍 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚘𝚝𝚑𝚎𝚛 𝚞𝚜𝚎𝚛𝚜 𝚒𝚗𝚟𝚒𝚝𝚎 𝚢𝚘𝚞 𝚝𝚘.","verify2":"𝙸𝚏 𝚢𝚘𝚞’𝚍 𝚕𝚒𝚔𝚎 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍 𝚘𝚛 𝚙𝚞𝚋𝚕𝚒𝚜𝚑 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚊𝚗𝚍 𝚢𝚘𝚞'𝚛𝚎 𝚊 𝚠𝚘𝚛𝚔𝚒𝚗𝚐 𝚓𝚘𝚞𝚛𝚗𝚊𝚕𝚒𝚜𝚝 𝚘𝚛 𝚘𝚝𝚑𝚎𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚒𝚗𝚝𝚎𝚛𝚎𝚜𝚝𝚎𝚍 𝚒𝚗 𝚙𝚞𝚋𝚕𝚒𝚜𝚑𝚒𝚗𝚐 𝚙𝚛𝚒𝚖𝚊𝚛𝚢 𝚜𝚘𝚞𝚛𝚌𝚎 𝚖𝚊𝚝𝚎𝚛𝚒𝚊𝚕𝚜 𝚒𝚗 𝚝𝚑𝚎 𝚙𝚞𝚋𝚕𝚒𝚌 𝚒𝚗𝚝𝚎𝚛𝚎𝚜𝚝, 𝚢𝚘𝚞'𝚕𝚕 𝚗𝚎𝚎𝚍 𝚝𝚘 𝚑𝚊𝚟𝚎 𝚢𝚘𝚞𝚛 𝚊𝚌𝚌𝚘𝚞𝚗𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚘𝚛 𝚊𝚍𝚍𝚎𝚍 𝚝𝚘 𝚊 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗. 𝚃𝚑𝚒𝚜 𝚒𝚜 𝚊 𝚜𝚒𝚖𝚙𝚕𝚎 𝚙𝚛𝚘𝚌𝚎𝚜𝚜:","verify3":"𝙵𝚒𝚛𝚜𝚝, 𝚜𝚎𝚎 𝚒𝚏 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚊𝚕𝚛𝚎𝚊𝚍𝚢 𝚎𝚡𝚒𝚜𝚝𝚜 𝚊𝚗𝚍, 𝚒𝚏 𝚢𝚘𝚞 𝚏𝚒𝚗𝚍 𝚒𝚝, 𝚌𝚕𝚒𝚌𝚔 \\"𝚁𝚎𝚚𝚞𝚎𝚜𝚝 𝚝𝚘 𝙹𝚘𝚒𝚗\\" 𝚘𝚗 𝚒𝚝𝚜 𝚙𝚊𝚐𝚎.","verify4":"𝙸𝚏 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗 𝚑𝚊𝚜 𝚗𝚘𝚝 𝚋𝚎𝚎𝚗 𝚟𝚎𝚛𝚒𝚏𝚒𝚎𝚍 𝚢𝚎𝚝, 𝚘𝚛 𝚒𝚏 𝚢𝚘𝚞'𝚛𝚎 𝚊 𝚏𝚛𝚎𝚎𝚕𝚊𝚗𝚌𝚎𝚛, 𝚛𝚎𝚚𝚞𝚎𝚜𝚝 𝚟𝚎𝚛𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗 𝚑𝚎𝚛𝚎. 𝚁𝚎𝚚𝚞𝚎𝚜𝚝𝚜 𝚞𝚜𝚞𝚊𝚕𝚕𝚢 𝚝𝚊𝚔𝚎 𝚝𝚠𝚘 𝚋𝚞𝚜𝚒𝚗𝚎𝚜𝚜 𝚍𝚊𝚢𝚜 𝚝𝚘 𝚙𝚛𝚘𝚌𝚎𝚜𝚜.","uploadFirst":"𝚄𝚙𝚕𝚘𝚊𝚍 𝚢𝚘𝚞𝚛 𝚏𝚒𝚛𝚜𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","upload1":"𝚄𝚙𝚕𝚘𝚊𝚍 𝚊 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚏𝚒𝚕𝚎 𝚝𝚘 𝚐𝚎𝚝 𝚜𝚝𝚊𝚛𝚝𝚎𝚍 𝚞𝚜𝚒𝚗𝚐 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍. 𝚈𝚘𝚞 𝚌𝚊𝚗 𝚍𝚛𝚊𝚐 𝚝𝚑𝚎 𝚏𝚒𝚕𝚎 𝚒𝚗𝚝𝚘 𝚝𝚑𝚒𝚜 𝚠𝚒𝚗𝚍𝚘𝚠, 𝚘𝚛 𝚌𝚕𝚒𝚌𝚔 𝚘𝚗 𝚝𝚑𝚎 𝚋𝚕𝚞𝚎 “𝚄𝚙𝚕𝚘𝚊𝚍” 𝚋𝚞𝚝𝚝𝚘𝚗 𝚊𝚋𝚘𝚟𝚎.","upload2":"𝙾𝚗𝚌𝚎 𝚢𝚘𝚞 𝚞𝚙𝚕𝚘𝚊𝚍 𝚊 𝚏𝚒𝚕𝚎, 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚠𝚒𝚕𝚕 𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚊𝚗𝚍 𝚎𝚡𝚝𝚛𝚊𝚌𝚝 𝚒𝚝𝚜 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜. 𝙸𝚝 𝚖𝚊𝚢 𝚝𝚊𝚔𝚎 𝚊 𝚏𝚎𝚠 𝚖𝚒𝚗𝚞𝚝𝚎𝚜 𝚏𝚘𝚛 𝚝𝚑𝚒𝚜 𝚝𝚘 𝚌𝚘𝚖𝚙𝚕𝚎𝚝𝚎, 𝚋𝚞𝚝 𝚘𝚗𝚌𝚎 𝚒𝚝’𝚜 𝚍𝚘𝚗𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚘𝚙𝚝𝚒𝚖𝚒𝚣𝚎𝚍 𝚏𝚘𝚛 𝚊𝚗𝚊𝚕𝚢𝚜𝚒𝚜 𝚊𝚗𝚍 𝚜𝚑𝚊𝚛𝚒𝚗𝚐 𝚘𝚗 𝚝𝚑𝚎 𝚠𝚎𝚋."},"paginator":{"of":"𝚘𝚏","document":"{n, plural, one {𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}"},"processingBar":{"doneProcessing":"𝙳𝚘𝚗𝚎 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","processingDocuments":"𝙿𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 {n, plural, one {𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝} other {# 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜}}"},"searchBar":{"tips":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚝𝚒𝚙𝚜: 𝚊𝚍𝚍 𝚏𝚒𝚕𝚝𝚎𝚛𝚜 𝚋𝚢 𝚝𝚢𝚙𝚒𝚗𝚐 𝚞𝚜𝚎𝚛:, 𝚙𝚛𝚘𝚓𝚎𝚌𝚝:, 𝚘𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗:, 𝚎𝚝𝚌. 𝚄𝚜𝚎 𝚜𝚘𝚛𝚝: 𝚝𝚘 𝚘𝚛𝚍𝚎𝚛 𝚛𝚎𝚜𝚞𝚕𝚝𝚜.","learnMore":"𝙻𝚎𝚊𝚛𝚗 𝚖𝚘𝚛𝚎","search":"𝚂𝚎𝚊𝚛𝚌𝚑"},"searchLink":{"search":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚌𝚘𝚕𝚕𝚎𝚌𝚝𝚒𝚘𝚗"},"projects":{"header":"𝙿𝚛𝚘𝚓𝚎𝚌𝚝𝚜","allDocuments":"𝙰𝚕𝚕 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","yourDocuments":"𝚈𝚘𝚞𝚛 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","yourPubDocuments":"𝚈𝚘𝚞𝚛 𝙿𝚞𝚋𝚕𝚒𝚌 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","orgDocuments":"{name}’𝚜 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜","newProject":"+ 𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝","createProject":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚢𝚘𝚞𝚛 𝚏𝚒𝚛𝚜𝚝 𝚙𝚛𝚘𝚓𝚎𝚌𝚝 𝚋𝚢 𝚌𝚕𝚒𝚌𝚔𝚒𝚗𝚐 “𝙽𝚎𝚠 𝙿𝚛𝚘𝚓𝚎𝚌𝚝” 𝚊𝚋𝚘𝚟𝚎."},"uploadDialog":{"docUpload":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚄𝚙𝚕𝚘𝚊𝚍","docUploadProj":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚄𝚙𝚕𝚘𝚊𝚍 𝚝𝚘 {title}","beginUpload":"𝙱𝚎𝚐𝚒𝚗 𝚞𝚙𝚕𝚘𝚊𝚍","pdfSizeWarning":"𝚈𝚘𝚞 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚞𝚙𝚕𝚘𝚊𝚍 𝙿𝙳𝙵 𝚏𝚒𝚕𝚎𝚜 𝚞𝚗𝚍𝚎𝚛 {size}.","nonPdfSizeWarning":"𝚈𝚘𝚞 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚞𝚙𝚕𝚘𝚊𝚍 𝚗𝚘𝚗-𝙿𝙳𝙵 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚏𝚒𝚕𝚎𝚜 𝚞𝚗𝚍𝚎𝚛 {size}.","fileReady":"{n, plural, one {𝚏𝚒𝚕𝚎} other {𝚏𝚒𝚕𝚎𝚜}} 𝚛𝚎𝚊𝚍𝚢 𝚝𝚘 𝚞𝚙𝚕𝚘𝚊𝚍","fileLimitWarning":"𝚈𝚘𝚞 𝚌𝚊𝚗 𝚘𝚗𝚕𝚢 𝚞𝚙𝚕𝚘𝚊𝚍 {limit} 𝚏𝚒𝚕𝚎𝚜 𝚊𝚝 𝚘𝚗𝚌𝚎.","moreOptions":"𝙼𝚘𝚛𝚎 𝚘𝚙𝚝𝚒𝚘𝚗𝚜","selectFiles":"+ 𝚂𝚎𝚕𝚎𝚌𝚝 𝚏𝚒𝚕𝚎𝚜","dragDrop":"𝙳𝚛𝚊𝚐 𝚊𝚗𝚍 𝚍𝚛𝚘𝚙 𝚏𝚒𝚕𝚎𝚜 𝚑𝚎𝚛𝚎","publicMsg":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚙𝚞𝚋𝚕𝚒𝚌𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎.","collabMsg":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞𝚛 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗.","privateMsg":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞 𝚊𝚕𝚘𝚗𝚎.","collabName":"𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","submitting":"𝙰𝚕𝚖𝚘𝚜𝚝 𝚍𝚘𝚗𝚎... 𝚜𝚞𝚋𝚖𝚒𝚝𝚝𝚒𝚗𝚐 𝚞𝚙𝚕𝚘𝚊𝚍𝚎𝚍 𝚏𝚒𝚕𝚎𝚜 𝚏𝚘𝚛 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 ({percent})","uploading":"𝚄𝚙𝚕𝚘𝚊𝚍𝚒𝚗𝚐 ... ({uploaded}/{length})","gettingInfo":"𝙶𝚎𝚝𝚝𝚒𝚗𝚐 𝚞𝚙𝚕𝚘𝚊𝚍 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗 ({percent})","pleaseLeaveOpen":"𝙿𝚕𝚎𝚊𝚜𝚎 𝚕𝚎𝚊𝚟𝚎 𝚝𝚑𝚒𝚜 𝚙𝚊𝚐𝚎 𝚘𝚙𝚎𝚗 𝚠𝚑𝚒𝚕𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜 𝚞𝚙𝚕𝚘𝚊𝚍. 𝚃𝚑𝚒𝚜 𝚍𝚒𝚊𝚕𝚘𝚐 𝚠𝚒𝚕𝚕 𝚊𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌𝚊𝚕𝚕𝚢 𝚌𝚕𝚘𝚜𝚎 𝚠𝚑𝚎𝚗 𝚝𝚑𝚎𝚢 𝚑𝚊𝚟𝚎 𝚏𝚒𝚗𝚒𝚜𝚑𝚎𝚍 𝚞𝚙𝚕𝚘𝚊𝚍𝚒𝚗𝚐.","errorHeading":"𝙴𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍 𝚠𝚑𝚒𝚕𝚎 𝚞𝚙𝚕𝚘𝚊𝚍𝚒𝚗𝚐","errorMsg":"𝚆𝚎 𝚏𝚊𝚒𝚕𝚎𝚍 𝚝𝚘 {errorMessage}. 𝙿𝚕𝚎𝚊𝚜𝚎 𝚝𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚕𝚊𝚝𝚎𝚛.","editDocInfo":"𝙴𝚍𝚒𝚝 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗:","untitled":"𝚄𝚗𝚝𝚒𝚝𝚕𝚎𝚍","uploadFiles":"𝚄𝚙𝚕𝚘𝚊𝚍 𝚊𝚍𝚍𝚒𝚝𝚒𝚘𝚗𝚊𝚕 𝚏𝚒𝚕𝚎𝚜","selectMore":"+ 𝚂𝚎𝚕𝚎𝚌𝚝 𝚖𝚘𝚛𝚎 𝚏𝚒𝚕𝚎𝚜","dragDropMore":"𝙳𝚛𝚊𝚐 𝚊𝚗𝚍 𝚍𝚛𝚘𝚙 𝚊𝚍𝚍𝚒𝚝𝚒𝚘𝚗𝚊𝚕 𝚏𝚒𝚕𝚎𝚜 𝚑𝚎𝚛𝚎"},"embedNote":{"viewTheNote":"𝚅𝚒𝚎𝚠 𝚝𝚑𝚎 𝚗𝚘𝚝𝚎 ‘{title}‘ 𝚒𝚗 𝚒𝚝𝚜 𝚘𝚛𝚒𝚐𝚒𝚗𝚊𝚕 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚌𝚘𝚗𝚝𝚎𝚡𝚝 𝚘𝚗 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚗 𝚊 𝚗𝚎𝚠 𝚠𝚒𝚗𝚍𝚘𝚠 𝚘𝚛 𝚝𝚊𝚋","viewDoc":"𝚅𝚒𝚎𝚠 𝚝𝚑𝚎 𝚎𝚗𝚝𝚒𝚛𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍"},"embedPage":{"viewDoc":"𝚅𝚒𝚎𝚠 𝚎𝚗𝚝𝚒𝚛𝚎 {title} 𝚘𝚗 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚗 𝚗𝚎𝚠 𝚠𝚒𝚗𝚍𝚘𝚠 𝚘𝚛 𝚝𝚊𝚋","pageOf":"𝙿𝚊𝚐𝚎 {page} 𝚘𝚏 {title}","gotoDocCloud":"𝙶𝚘 𝚝𝚘 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚗 𝚗𝚎𝚠 𝚠𝚒𝚗𝚍𝚘𝚠 𝚘𝚛 𝚝𝚊𝚋"},"entities":{"back":"𝙱𝚊𝚌𝚔","page":"𝙿𝚊𝚐𝚎","of":"𝚘𝚏","totalEntityResult":"{n, plural, one {# 𝚝𝚘𝚝𝚊𝚕 𝚎𝚗𝚝𝚒𝚝𝚢 𝚛𝚎𝚜𝚞𝚕𝚝} other {# 𝚝𝚘𝚝𝚊𝚕 𝚎𝚗𝚝𝚒𝚝𝚢 𝚛𝚎𝚜𝚞𝚕𝚝𝚜}} ","filter":"𝙵𝚒𝚕𝚝𝚎𝚛","applyFilters":"𝙰𝚙𝚙𝚕𝚢 𝚏𝚒𝚕𝚝𝚎𝚛𝚜","kind":"𝙺𝚒𝚗𝚍","clear":"𝙲𝚕𝚎𝚊𝚛","person":"𝙿𝚎𝚛𝚜𝚘𝚗","org":"𝙾𝚛𝚐𝚊𝚗𝚒𝚣𝚊𝚝𝚒𝚘𝚗","location":"𝙻𝚘𝚌𝚊𝚝𝚒𝚘𝚗","event":"𝙴𝚟𝚎𝚗𝚝","workOfArt":"𝚆𝚘𝚛𝚔 𝚘𝚏 𝙰𝚛𝚝","consumerGood":"𝙲𝚘𝚗𝚜𝚞𝚖𝚎𝚛 𝙶𝚘𝚘𝚍","address":"𝙰𝚍𝚍𝚛𝚎𝚜𝚜","date":"𝙳𝚊𝚝𝚎","number":"𝙽𝚞𝚖𝚋𝚎𝚛","phoneNumber":"𝙿𝚑𝚘𝚗𝚎 𝙽𝚞𝚖𝚋𝚎𝚛","price":"𝙿𝚛𝚒𝚌𝚎","unknown":"𝚄𝚗𝚔𝚗𝚘𝚠𝚗","other":"𝙾𝚝𝚑𝚎𝚛","occurrences":"𝙾𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎𝚜","proper":"𝙿𝚛𝚘𝚙𝚎𝚛","common":"𝙲𝚘𝚖𝚖𝚘𝚗","advanced":"𝙰𝚍𝚟𝚊𝚗𝚌𝚎𝚍","relevanceThreshold":"𝚁𝚎𝚕𝚎𝚟𝚊𝚗𝚌𝚎 𝚝𝚑𝚛𝚎𝚜𝚑𝚘𝚕𝚍:","knowledgeGraph":"𝙺𝚗𝚘𝚠𝚕𝚎𝚍𝚐𝚎 𝚐𝚛𝚊𝚙𝚑:","hasKG":"𝙷𝚊𝚜 𝚊 𝚔𝚗𝚘𝚠𝚕𝚎𝚍𝚐𝚎 𝚐𝚛𝚊𝚙𝚑 𝙸𝙳","noKG":"𝙳𝚘𝚎𝚜 𝚗𝚘𝚝 𝚑𝚊𝚟𝚎 𝚊 𝚔𝚗𝚘𝚠𝚕𝚎𝚍𝚐𝚎 𝚐𝚛𝚊𝚙𝚑 𝙸𝙳","wikiUrl":"𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊 𝚄𝚁𝙻:","hasWiki":"𝙷𝚊𝚜 𝚊 𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊 𝚄𝚁𝙻","noWiki":"𝙳𝚘𝚎𝚜 𝚗𝚘𝚝 𝚑𝚊𝚟𝚎 𝚊 𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊 𝚄𝚁𝙻","occurrence":"{n, plural, zero {} one {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎} other {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎𝚜}}","wikipedia":"𝚆𝚒𝚔𝚒𝚙𝚎𝚍𝚒𝚊","entityExtraction":"𝙴𝚗𝚝𝚒𝚝𝚢 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚘𝚗 𝚏𝚘𝚛 “{title}”","extractingEntities":"𝙴𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚗𝚐 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜...","welcome":"𝚆𝚎𝚕𝚌𝚘𝚖𝚎 𝚝𝚘 𝚎𝚗𝚝𝚒𝚝𝚢 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚘𝚗! 𝚃𝚑𝚒𝚜 𝚏𝚎𝚊𝚝𝚞𝚛𝚎 𝚒𝚜 𝚟𝚎𝚛𝚢 𝚖𝚞𝚌𝚑 𝚒𝚗 𝚙𝚛𝚘𝚐𝚛𝚎𝚜𝚜 𝚋𝚞𝚝 𝚠𝚎 𝚠𝚊𝚗𝚝 𝚒𝚝 𝚒𝚗 𝚢𝚘𝚞𝚛 𝚑𝚊𝚗𝚍𝚜 𝚎𝚊𝚛𝚕𝚢 𝚝𝚘 𝚠𝚎𝚕𝚌𝚘𝚖𝚎 𝚊𝚗𝚢 𝚏𝚎𝚎𝚍𝚋𝚊𝚌𝚔 𝚢𝚘𝚞 𝚖𝚒𝚐𝚑𝚝 𝚑𝚊𝚟𝚎.","manual":"𝚁𝚒𝚐𝚑𝚝 𝚗𝚘𝚠 𝚝𝚑𝚎 𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚏𝚘𝚛 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚒𝚗𝚐 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜 𝚒𝚜 𝚖𝚊𝚗𝚞𝚊𝚕. 𝚃𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚑𝚊𝚜 𝚗𝚘𝚝 𝚑𝚊𝚍 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜 𝚎𝚡𝚝𝚛𝚊𝚌𝚝𝚎𝚍 𝚢𝚎𝚝, 𝚜𝚘 𝚌𝚕𝚒𝚌𝚔 𝚋𝚎𝚕𝚘𝚠 𝚝𝚘 𝚐𝚎𝚝 𝚜𝚝𝚊𝚛𝚝𝚎𝚍.","error":"𝙰𝚗 𝚞𝚗𝚎𝚡𝚙𝚎𝚌𝚝𝚎𝚍 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍","extract":"𝙴𝚡𝚝𝚛𝚊𝚌𝚝 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜","noEntities":"𝚃𝚑𝚎𝚛𝚎 𝚊𝚛𝚎 𝚗𝚘 𝚎𝚗𝚝𝚒𝚝𝚒𝚎𝚜. 𝚃𝚑𝚒𝚜 𝚌𝚘𝚞𝚕𝚍 𝚑𝚊𝚙𝚙𝚎𝚗 𝚒𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚍𝚘𝚎𝚜𝚗’𝚝 𝚑𝚊𝚟𝚎 𝚝𝚎𝚡𝚝, 𝚒𝚜 𝚗𝚘𝚗-𝙴𝚗𝚐𝚕𝚒𝚜𝚑 (𝚘𝚗𝚕𝚢 𝙴𝚗𝚐𝚕𝚒𝚜𝚑 𝚒𝚜 𝚜𝚞𝚙𝚙𝚘𝚛𝚝𝚎𝚍 𝚏𝚘𝚛 𝚗𝚘𝚠), 𝚘𝚛 𝚜𝚘𝚖𝚎 𝚎𝚛𝚛𝚘𝚛 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚍.","starting":"𝚂𝚝𝚊𝚛𝚝𝚒𝚗𝚐 𝚎𝚡𝚝𝚊𝚌𝚝𝚒𝚘𝚗..."},"home":{"about":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝙲𝚕𝚘𝚞𝚍 𝚒𝚜 𝚊𝚗 𝚊𝚕𝚕-𝚒𝚗-𝚘𝚗𝚎 𝚙𝚕𝚊𝚝𝚏𝚘𝚛𝚖 𝚏𝚘𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜: 𝚞𝚙𝚕𝚘𝚊𝚍, 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎, 𝚊𝚗𝚊𝚕𝚢𝚣𝚎, 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚎, 𝚜𝚎𝚊𝚛𝚌𝚑, 𝚊𝚗𝚍 𝚎𝚖𝚋𝚎𝚍.","viewPublicDocs":"𝚅𝚒𝚎𝚠 𝚙𝚞𝚋𝚕𝚒𝚌 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝𝚜"},"annotation":{"title":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 𝚃𝚒𝚝𝚕𝚎","description":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 𝙳𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 (𝚘𝚙𝚝𝚒𝚘𝚗𝚊𝚕)","unchanged":"𝙽𝚘𝚝𝚎 𝚛𝚎𝚖𝚊𝚒𝚗𝚜 𝚞𝚗𝚌𝚑𝚊𝚗𝚐𝚎𝚍","noTitle":"𝙴𝚗𝚝𝚎𝚛 𝚊 𝚝𝚒𝚝𝚕𝚎 𝚏𝚘𝚛 𝚝𝚑𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗","org":"𝚃𝚑𝚒𝚜 𝚗𝚘𝚝𝚎 𝚒𝚜 𝚘𝚗𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞 𝚊𝚗𝚍 𝚘𝚝𝚑𝚎𝚛𝚜 𝚠𝚒𝚝𝚑 𝚎𝚍𝚒𝚝 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚝𝚑𝚒𝚜 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","private":"𝚃𝚑𝚒𝚜 𝚙𝚛𝚒𝚟𝚊𝚝𝚎 𝚗𝚘𝚝𝚎 𝚒𝚜 𝚘𝚗𝚕𝚢 𝚟𝚒𝚜𝚒𝚋𝚕𝚎 𝚝𝚘 𝚢𝚘𝚞","by":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎𝚍 𝚋𝚢 {name}","byOrg":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎𝚍 𝚋𝚢 {name}, {org}","addPageNote":"𝙰𝚍𝚍 𝚙𝚊𝚐𝚎 𝚗𝚘𝚝𝚎"},"viewDropdown":{"document":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝","plainText":"𝙿𝚕𝚊𝚒𝚗 𝚃𝚎𝚡𝚝","thumbnail":"𝚃𝚑𝚞𝚖𝚋𝚗𝚊𝚒𝚕","notes":"𝙽𝚘𝚝𝚎𝚜","search":"𝚂𝚎𝚊𝚛𝚌𝚑 𝚁𝚎𝚜𝚞𝚕𝚝𝚜"},"zoom":{"fitWidth":"𝙵𝚒𝚝 𝚠𝚒𝚍𝚝𝚑","fitHeight":"𝙵𝚒𝚝 𝚑𝚎𝚒𝚐𝚑𝚝"},"titleHeader":{"contributedBy":"𝙲𝚘𝚗𝚝𝚛𝚒𝚋𝚞𝚝𝚎𝚍 𝚋𝚢 {name}"},"annotatePane":{"annotateDocument":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝","desc":"𝙷𝚒𝚐𝚑𝚕𝚒𝚐𝚑𝚝 𝚊 𝚙𝚘𝚛𝚝𝚒𝚘𝚗 𝚘𝚏 𝚝𝚑𝚎 𝚙𝚊𝚐𝚎, 𝚘𝚛 𝚌𝚕𝚒𝚌𝚔 𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎𝚜 𝚝𝚘 𝚌𝚛𝚎𝚊𝚝𝚎 𝚊 𝚗𝚘𝚝𝚎."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝙿𝚊𝚐𝚎} other {# 𝙿𝚊𝚐𝚎𝚜}} 𝚂𝚎𝚕𝚎𝚌𝚝𝚎𝚍","applyModifications":"𝙰𝚙𝚙𝚕𝚢 𝙼𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜","duplicate":"𝙳𝚞𝚙𝚕𝚒𝚌𝚊𝚝𝚎","move":"𝙼𝚘𝚟𝚎","unselect":"𝚄𝚗𝚜𝚎𝚕𝚎𝚌𝚝","remove":"𝚁𝚎𝚖𝚘𝚟𝚎","insertPages":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝙿𝚊𝚐𝚎} other {# 𝙿𝚊𝚐𝚎𝚜}}","pagesPending":"{n, plural, one {# 𝙿𝚊𝚐𝚎} other {# 𝙿𝚊𝚐𝚎𝚜}} 𝙿𝚎𝚗𝚍𝚒𝚗𝚐 𝙸𝚗𝚜𝚎𝚛𝚝𝚒𝚘𝚗","insertBegin":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}} 𝚊𝚝 𝚋𝚎𝚐𝚒𝚗𝚗𝚒𝚗𝚐.","insertEnd":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}} 𝚊𝚝 𝚎𝚗𝚍.","insertBetween":"𝙸𝚗𝚜𝚎𝚛𝚝 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}} 𝚒𝚗 𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎 {p0} 𝚊𝚗𝚍 {p1}.","click":"𝙲𝚕𝚒𝚌𝚔 𝚒𝚗-𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎𝚜 𝚋𝚎𝚕𝚘𝚠 𝚝𝚘 𝚖𝚊𝚛𝚔 𝚠𝚑𝚎𝚛𝚎 𝚝𝚘 𝚙𝚊𝚜𝚝𝚎 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}.","insert":"𝙸𝚗𝚜𝚎𝚛𝚝","insertAtEnd":"𝙸𝚗𝚜𝚎𝚛𝚝 𝚊𝚝 𝚎𝚗𝚍","insertPosition":"𝙸𝚗𝚜𝚎𝚛𝚝 𝚙𝚊𝚐𝚎𝚜 𝚊𝚝 𝚙𝚘𝚜𝚒𝚝𝚒𝚘𝚗","insertOtherDoc":"𝙸𝚗𝚜𝚎𝚛𝚝 𝚏𝚛𝚘𝚖 𝚘𝚝𝚑𝚎𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝","modifyPages":"𝙼𝚘𝚍𝚒𝚏𝚢 𝙿𝚊𝚐𝚎𝚜","select":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚙𝚊𝚐𝚎𝚜 𝚋𝚎𝚕𝚘𝚠 𝚝𝚘 𝚊𝚙𝚙𝚕𝚢 𝚖𝚘𝚍𝚒𝚏𝚒𝚌𝚊𝚝𝚒𝚘𝚗𝚜 (𝚙𝚊𝚐𝚎 𝚛𝚘𝚝𝚊𝚝𝚒𝚘𝚗, 𝚛𝚎𝚊𝚛𝚛𝚊𝚗𝚐𝚒𝚗𝚐, 𝚊𝚗𝚍 𝚍𝚎𝚕𝚎𝚝𝚒𝚘𝚗). 𝙲𝚕𝚒𝚌𝚔 𝚒𝚗-𝚋𝚎𝚝𝚠𝚎𝚎𝚗 𝚙𝚊𝚐𝚎𝚜 𝚝𝚘 𝚒𝚗𝚜𝚎𝚛𝚝.","undo":"𝚄𝚗𝚍𝚘","redo":"𝚁𝚎𝚍𝚘"},"redactPane":{"redactDoc":"𝚁𝚎𝚍𝚊𝚌𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝","desc":"𝙲𝚕𝚒𝚌𝚔 𝚊𝚗𝚍 𝚍𝚛𝚊𝚐 𝚝𝚘 𝚍𝚛𝚊𝚠 𝚊 𝚋𝚕𝚊𝚌𝚔 𝚛𝚎𝚌𝚝𝚊𝚗𝚐𝚕𝚎 𝚘𝚟𝚎𝚛 𝚎𝚊𝚌𝚑 𝚙𝚘𝚛𝚝𝚒𝚘𝚗 𝚘𝚏 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞’𝚍 𝚕𝚒𝚔𝚎 𝚝𝚘 𝚛𝚎𝚍𝚊𝚌𝚝. 𝙰𝚜𝚜𝚘𝚌𝚒𝚊𝚝𝚎𝚍 𝚝𝚎𝚡𝚝 𝚠𝚒𝚕𝚕 𝚋𝚎 𝚛𝚎𝚖𝚘𝚟𝚎𝚍 𝚠𝚑𝚎𝚗 𝚢𝚘𝚞 𝚜𝚊𝚟𝚎 𝚢𝚘𝚞𝚛 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜.","confirm":"𝙲𝚘𝚗𝚏𝚒𝚛𝚖 𝚁𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜","undo":"𝚄𝚗𝚍𝚘"},"searchPane":{"yourQuery":"𝚈𝚘𝚞𝚛 𝚚𝚞𝚎𝚛𝚢 {search} 𝚠𝚊𝚜 𝚏𝚘𝚞𝚗𝚍 𝚘𝚗 {n, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}"},"selectNotePane":{"selectNote":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚊 𝚗𝚘𝚝𝚎","desc":"𝚂𝚎𝚕𝚎𝚌𝚝 𝚝𝚑𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗 𝚝𝚑𝚊𝚝 𝚢𝚘𝚞 𝚠𝚊𝚗𝚝 𝚝𝚘 𝚜𝚑𝚊𝚛𝚎."},"searchResults":{"resultPages":"{results, plural, one {# 𝚛𝚎𝚜𝚞𝚕𝚝} other {# 𝚛𝚎𝚜𝚞𝚕𝚝𝚜}} 𝚊𝚌𝚛𝚘𝚜𝚜 {pages, plural, one {# 𝚙𝚊𝚐𝚎} other {# 𝚙𝚊𝚐𝚎𝚜}}","noSearchResults":"𝙽𝚘 𝚜𝚎𝚊𝚛𝚌𝚑 𝚛𝚎𝚜𝚞𝚕𝚝𝚜. 𝚃𝚛𝚢 𝚊𝚐𝚊𝚒𝚗 𝚠𝚒𝚝𝚑 𝚊 𝚋𝚛𝚘𝚊𝚍𝚎𝚛 𝚚𝚞𝚎𝚛𝚢.","occurrences":"{n, plural, one {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎} other {# 𝚘𝚌𝚌𝚞𝚛𝚛𝚎𝚗𝚌𝚎𝚜}}"},"sidebar":{"updating":"𝚄𝚙𝚍𝚊𝚝𝚒𝚗𝚐 𝚍𝚘𝚌𝚞𝚌𝚖𝚎𝚗𝚝...","original":"𝙾𝚛𝚒𝚐𝚒𝚗𝚊𝚕 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 (𝙿𝙳𝙵) »","related":"𝚁𝚎𝚕𝚊𝚝𝚎𝚍 𝙰𝚛𝚝𝚒𝚌𝚕𝚎 »","contributed":"𝙲𝚘𝚗𝚝𝚛𝚒𝚋𝚞𝚝𝚎𝚍 𝚋𝚢 {name}","source":"𝚂𝚘𝚞𝚛𝚌𝚎: {source}","actions":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙰𝚌𝚝𝚒𝚘𝚗𝚜","share":"𝚂𝚑𝚊𝚛𝚎","shareDesc":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚊𝚗 𝚎𝚖𝚋𝚎𝚍 𝚘𝚛 𝚜𝚑𝚊𝚛𝚎 𝚘𝚗 𝚜𝚘𝚌𝚒𝚊𝚕 𝚖𝚎𝚍𝚒𝚊.","annotate":"𝙰𝚗𝚗𝚘𝚝𝚊𝚝𝚎","annotateDesc":"𝙼𝚊𝚔𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚔𝚎𝚎𝚙 𝚗𝚘𝚝𝚎𝚜 𝚘𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","redact":"𝚁𝚎𝚍𝚊𝚌𝚝","redactDesc":"𝙲𝚛𝚎𝚊𝚝𝚎 𝚛𝚎𝚍𝚊𝚌𝚝𝚒𝚘𝚗𝚜 𝚘𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚝𝚘 𝚑𝚒𝚍𝚎 𝚝𝚎𝚡𝚝. 𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚕𝚕 𝚛𝚎𝚙𝚛𝚘𝚌𝚎𝚜𝚜 𝚊𝚏𝚝𝚎𝚛𝚠𝚊𝚛𝚍𝚜.","modify":"𝙼𝚘𝚍𝚒𝚏𝚢 𝙿𝚊𝚐𝚎𝚜","modifyDesc":"𝚁𝚎𝚊𝚛𝚛𝚊𝚗𝚐𝚎, 𝚛𝚘𝚝𝚊𝚝𝚎, 𝚍𝚎𝚕𝚎𝚝𝚎, 𝚒𝚗𝚜𝚎𝚛𝚝, 𝚊𝚗𝚍 𝚜𝚙𝚕𝚒𝚝 𝚙𝚊𝚐𝚎𝚜.","info":"𝙴𝚍𝚒𝚝 𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝙸𝚗𝚏𝚘","infoDesc":"𝙼𝚘𝚍𝚒𝚏𝚢 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚗𝚏𝚘𝚛𝚖𝚊𝚝𝚒𝚘𝚗 𝚕𝚒𝚔𝚎 𝚍𝚎𝚜𝚌𝚛𝚒𝚙𝚝𝚒𝚘𝚗 𝚊𝚗𝚍 𝚛𝚎𝚕𝚊𝚝𝚎𝚍 𝚄𝚁𝙻.","data":"𝙴𝚍𝚒𝚝 𝚃𝚊𝚐𝚜 𝚊𝚗𝚍 𝙳𝚊𝚝𝚊","dataDesc":"𝙰𝚍𝚍 𝚝𝚊𝚐𝚜 𝚊𝚗𝚍 𝚔𝚎𝚢/𝚟𝚊𝚕𝚞𝚎 𝚙𝚊𝚒𝚛𝚜 𝚝𝚘 𝚌𝚊𝚝𝚎𝚐𝚘𝚛𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝.","sections":"𝙴𝚍𝚒𝚝 𝚂𝚎𝚌𝚝𝚒𝚘𝚗𝚜","sectionsDesc":"𝙰𝚍𝚍 𝚜𝚎𝚌𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚘𝚛𝚐𝚊𝚗𝚒𝚣𝚎 𝚢𝚘𝚞𝚛 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚠𝚒𝚝𝚑 𝚊 𝚝𝚊𝚋𝚕𝚎 𝚘𝚏 𝚌𝚘𝚗𝚝𝚎𝚗𝚝𝚜.","privateNote":"𝙰𝚍𝚍 𝙿𝚛𝚒𝚟𝚊𝚝𝚎 𝙽𝚘𝚝𝚎","privateNoteDesc":"𝙼𝚊𝚔𝚎 𝚊𝚗𝚗𝚘𝚝𝚊𝚝𝚒𝚘𝚗𝚜 𝚝𝚘 𝚔𝚎𝚎𝚙 𝚗𝚘𝚝𝚎𝚜 𝚘𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝."},"viewer":{"notFound":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚗𝚘𝚝 𝚏𝚘𝚞𝚗𝚍","notFoundDesc":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍 𝚎𝚒𝚝𝚑𝚎𝚛 𝚍𝚘𝚎𝚜 𝚗𝚘𝚝 𝚎𝚡𝚒𝚜𝚝 𝚘𝚛 𝚢𝚘𝚞 𝚕𝚊𝚌𝚔 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 𝚝𝚘 𝚊𝚌𝚌𝚎𝚜𝚜 𝚒𝚝","processing":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚒𝚜 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐","processingDesc":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍 𝚒𝚜 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚊𝚗𝚍 𝚠𝚒𝚕𝚕 𝚊𝚞𝚝𝚘𝚖𝚊𝚝𝚒𝚌𝚊𝚕𝚕𝚢 𝚛𝚎𝚏𝚛𝚎𝚜𝚑 𝚠𝚑𝚎𝚗 𝚒𝚝 𝚒𝚜 𝚛𝚎𝚊𝚍𝚢","error":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚑𝚊𝚜 𝚎𝚗𝚌𝚘𝚞𝚗𝚝𝚎𝚛𝚎𝚍 𝚊𝚗 𝚎𝚛𝚛𝚘𝚛","errorDesc":"𝙰 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚎𝚛𝚛𝚘𝚛 𝚑𝚊𝚜 𝚋𝚎𝚎𝚗 𝚎𝚗𝚌𝚘𝚞𝚗𝚝𝚎𝚛𝚎𝚍 𝚒𝚗 𝚝𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍","accessible":"𝙳𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚗𝚘𝚝 𝚊𝚌𝚌𝚎𝚜𝚜𝚒𝚋𝚕𝚎","accessibleDesc":"𝚃𝚑𝚎 𝚍𝚘𝚌𝚞𝚖𝚎𝚗𝚝 𝚢𝚘𝚞 𝚛𝚎𝚚𝚞𝚎𝚜𝚝𝚎𝚍 𝚒𝚜 𝚜𝚝𝚒𝚕𝚕 𝚙𝚛𝚘𝚌𝚎𝚜𝚜𝚒𝚗𝚐 𝚘𝚛 𝚢𝚘𝚞 𝚕𝚊𝚌𝚔 𝚙𝚎𝚛𝚖𝚒𝚜𝚜𝚒𝚘𝚗 𝚝𝚘 𝚊𝚌𝚌𝚎𝚜𝚜 𝚝𝚘 𝚒𝚝"}}');
-./public/src_langs_json_en_json.99c4c1f7591e3503c8f6.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"Email address","loading":"Loading...","documentCloud":"DocumentCloud","home":"Home","new":"New","learnMore":"Learn more"},"homeTemplate":{"signedIn":"Signed in as {name}","signOut":"Sign out","signIn":"Sign in","signUp":"Sign up","goToApp":"Go to app"},"notfound":{"title":"Page not found","content":"Please try another URL"},"accessToggle":{"public":"Note will be visible to anyone with access to the document.","collaborator":"Note will be visible to anyone who can edit this document.","private":"Note will be visible to you alone.","publicName":"Public","collaboratorName":"Collaborator","privateName":"Private"},"accessIcon":{"private":"Private Access","organization":"Private to Your Organization","public":"Public Access","privateExplanation":"Only you can view this document","organizationExplanation":"Only members of your organization can view this document","publicExplanation":"Anyone can search and view this document"},"appearanceCustomizer":{"customizeAppearance":"Customize Appearance","hide":"Hide help text","show":"Show help text"},"appearanceDimension":{"responsive":"Automatic (default)","fixed":"Fixed"},"calendar":{"jan":"January","feb":"February","mar":"March","apr":"April","may":"May","jun":"June","jul":"July","aug":"August","sep":"September","oct":"October","nov":"November","dec":"December","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Cancel","cancelling":"Cancelling...","delete":"Delete","done":"Done","edit":"Edit","remove":"Remove","save":"Save","create":"Create","ok":"Ok","reset":"Reset","update":"Update","dismiss":"Dismiss","continue":"Continue","dispatch":"Dispatch","submit":"Submit"},"dialogAccessDialog":{"changeAccess":"Change access for {n, plural, one {document} other {# documents}}","selectAccess":"Select an access level for the {n, plural, one {selected document} other {# selected documents}}","public":"Public access","publicDesc":"Anyone on the internet can view the document.","verifiedHelp":"Only verified users or members of verified organizations can make uploaded documents public. If you\'re a journalist or otherwise work in publishing vetted materials to inform the public, learn more and request verification here.","privateToOrg":"You can’t change the access level to “Private to your organization” because {n, plural, one {this document is} other {one or more documents are}} associated with your individual account, not an organization. To add {n, plural, one {it} other {them}} to an organization, select {n, plural, one {it} other {them}} from the management view and click “Change Owner.” You can join or create an organization on this page.","private":"Private access","privateDesc":"Only people with explicit permission (via collaboration) have access.","organization":"Private to your organization","organizationDesc":"Only the people in your organization have access.","schedulePublication":"Schedule publication","scheduleHelp":"This document will be made public at the given date and time. Publication time is local{timezone}.","noindexTitle":"Hide from search engines and DocumentCloud search","noindexHelp":"If you enable this option, search engines like Google\'s will be told they should not index this document. Also, the document will not appear in searches from DocumentCloud for users that are not logged in.","unchanged":"Access is unchanged. Select a different access level.","future":"Must select a time in the future","change":"Change","changeNoindex":"Change visibility to search engines and DocumentCloud search for {n, plural, one {document} other {# documents}}"},"dialogCollaboratorDialog":{"confirm":"Confirm remove user","confirmMsg":"Proceeding will remove {name} from {title}. Do you wish to continue?","addCollaborators":"Add Collaborators","invite":"Put in the email of an existing DocumentCloud user below. If they don\'t have an account, have them register here for free, and then ask them to log in to DocumentCloud at least once.","admin":"Admin","view":"View","adminHelp":"Collaborators can edit this project and its documents","editHelp":"Collaborators can edit documents in this project","viewHelp":"Collaborators can view documents in this project","add":"Add","empty":"You have not yet added any collaborators to this project. Invite collaborators to grant other users access to the documents shared in this project. You can control whether collaborators have access to view/edit the project’s documents or be an admin with permissions to invite other users and edit the project itself.","manageCollaborators":"Manage Collaborators","name":"Name","access":"Access","you":"(you)"},"dialogDataDialog":{"confirm":"Confirm remove data point","removeMsg":"Proceeding will remove the {key}{value} data point from the specified documents. Do you wish to continue?","addData":"Add Data for {n, plural, one {Document} other {# Documents}}","tag":"Tag","value":"Value","key":"Key","keyValue":"Key / Value","tagInfo":"Add custom tags to categorize your documents.","eg":"e.g.","exampleTagReport":"report","exampleTagLawsuit":"lawsuit","exampleTagEmail":"email","keyValueInfo":"Add custom key / value pairs for precise categorization of your documents.","exampleKVState":"state: California","exampleKVYear":"year: 2016","exampleKVType":"type: memo","enterTag":"Enter a tag","enterKey":"Enter a key","keyInvalid":"Keys can only contain letters, numbers, underscores (_), and dashes (-)","emptyMsg":"You have not yet added any data to the specified documents. Add tags and key/value pairs to categorize and organize your documents. You can filter and search on document data to give you powerful control over document management.","manageDocumentData":"Manage Document Data","valueUnchanged":"Value remains unchanged","kvCannotBeEmpty":"Key/value cannot be empty"},"dialogReprocessDialog":{"title":"Confirm reprocess","reprocessDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to reprocess page and image text. Do you wish to continue?","reprocessSingleDoc":"Proceeding will force the document to reprocess page and image text. Do you wish to continue?","confirm":"Reprocess"},"dialogDeleteDialog":{"title":"Confirm reprocess","deleteDocs":"Proceeding will permanently delete the {n, plural, one {selected document} other {# selected documents}}. Do you wish to continue?"},"dialogCancelProcessingDialog":{"title":"Cancel processing","deleteDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to stop processing. After processing has been stopped, an error will show after which you can “Force Reprocess” or delete the {n, plural, one {document} other {documents}} using the Edit menu. Do you wish to continue?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Staff-only info for selected {n, plural, one {document} other {# documents}}","id":"ID","title":"Title","actions":"Actions","debug":"Debug","viewErrors":"View errors","viewS3":"View in S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"On (default)","respOnHelp":"Fill the width of the article container (usually works best)","respOff":"Off","respOffHelp":"The document will fit the sizes specified below","width":"Width","widthAuto":"Will fill the available space if the document is set to responsive, otherwise defaults to 700px","widthFixed":"Set a maximum width if the document is responsive, or set a fixed size if not responsive","height":"Height","heightAuto":"The height is based on the size of the document, with no maximum size. If responsive, will be set to the height of the browser window minus 100px","heightFixed":"Set a maximum height if the document is responsive, or set a fixed size if not responsive","sidebarBehavior":"Sidebar behavior","sbResponsive":"Responsive (default)","sbResponsiveHelp":"Show sidebar automatically on large screens and hide on mobile devices. In embed mode, the sidebar will be hidden","hidden":"Hidden","visible":"Visible","visibleDefault":"Visible (default)","sbHiddenHelp":"Hide the sidebar by default","sbVisibleHelp":"Show the sidebar by default","titleBehavior":"Title behavior","tVisibleHelp":"Display the title and attribution in the header of the viewer","tHiddenHelp":"Hide the title in the header of the viewer (still visible in the sidebar)","pdfLink":"PDF link","plVisibleHelp":"Show a link to the raw PDF document in the sidebar","plHiddenHelp":"Hide the sidebar PDF link (file is still accessible if the URL is known)","fullscreenOption":"Fullscreen option","fsVisibleHelp":"Show a fullscreen icon in the bottom-right corner","fsHiddenHelp":"Hide the fullscreen option","textMode":"Text mode","tmVisibleHelp":"Show an option to view the document’s text in the view dropdown","tmHiddenHelp":"Hide text mode","contributedByFormat":"Contributed by format","cbfUserAndOrg":"User and org (default)","cbfUserAndOrgHelp":"Show a document’s attribution as the user name followed by the organization","cbfOrgOnly":"Org only","cbfOrgOnlyHelp":"Attribute the document to just the organization","share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article"},"dialogDocumentInformationDialog":{"editInformation":"Edit Information for {n, plural, one {document} other {# documents}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Set the parameters for your chosen add-on to run on {n, plural, one {document} other {# documents}}"},"dialogRedactDialog":{"title":"Confirm redactions","description":"Are you sure you wish to redact the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the redactions in place. This change is irreversible."},"dialogModifyDialog":{"title":"Apply modifications","description":"Are you sure you wish to modify the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the modifications. This change is irreversible.","closeTitle":"Confirm close","closeWarning":"You will lose all your unapplied modifications. Are you sure you want to proceed?"},"dialogDeleteNoteDialog":{"title":"Confirm delete","description":"Are you sure you wish to delete the current note?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirm delete","proceedingWillRemove":"Proceeding will remove the specified section (p. {page} {title}). Do you wish to continue?","editSections":"Edit Sections","manageSections":"Manage sections to organize your document with a table of contents.","pageAbbrevNo":"p. {n}","pageAbbrev":"p.","empty":"You have not added any sections","edit":"Edit the selected section","add":"Add a new section","title":"Title","missingTitle":"Please enter a title","updateTitle":"Enter a new title or page number","uniquePageNumber":"You must enter a unique page number","invalidPageNumber":"Page number is invalid"},"dialogEmbedDialog":{"updatingDocument":"Updating document...","makingPublic":"The document is currently being made public. This may take a minute or two.","wouldMakePublic":"Would you like to make this document public before sharing?","notPublic":"The document is not currently public. If you embed or link it, only you and collaborators will be able to view it until it is made public. Click below when you’re ready to publish this document to the public.","makePublic":"Make document public","leave":"Leave as is","selectShare":"Select share option","selectShareHelp":"Choose whether to share the entire document or just a page or note.","shareDoc":"Share entire document","shareDocHelp":"Link or embed the entire document. (This is the most commonly used share option.)","sharePage":"Share specific page","sharePageHelp":"Link or embed a single page of the document. Useful for highlighting a page excerpt.","shareNote":"Share specific note","shareNoteHelpHasNote":"Link or embed a note within the document. Useful for highlighting a region of a page.","shareNoteHelpNoNote":"Once you add notes to the document, use this feature to link or embed them."},"dialogErrorDialog":{"errorOccurred":"An error occurred","unexpectedErrorOccurred":"An unexpected error occurred","tryAgain":"Please try again later.","close":"Close","refresh":"Refresh"},"dialogNoteEmbedDialog":{"embedNote":"Embed a note of “{title}”","embedDesc":"Copy the HTML code to embed this note within an article or post:"},"dialogPageEmbedDialog":{"embedPage":"Embed a page of “{title}”","embedDesc":"Copy the HTML code to embed this page within an article or post:","selectPage":"Select the page to embed:","page":"Page {n} (currently visible)","otherPage":"Other page","enterPageNumber":"Enter the page number to embed:"},"dialogProjectAccessDialog":{"changeAccessFor":"Change access for {name}","selectAccess":"Select an access level below for {name} in {title}","adminAccess":"Admin Access","editAccess":"Edit Access","viewAccess":"View Access","adminHelp":"This collaborator can edit this project and its documents. The collaborator can invite users, delete users, and remove the project.","editHelp":"This collaborator can edit documents in this project but cannot edit the project itself.","viewHelp":"This collaborator can view documents in this project but cannot edit them or the project.","invalidAccess":"Access is already set to {access}. Select a different access level.","changeAccess":"Change access"},"dialogOwnerDialog":{"selectUser":"User must be selected","selectOrg":"Organization must be selected","changeOwner":"Change owner for {n, plural, one {document} other {# documents}}","accessWarning":"Warning: You may lose access to the specified {n, plural, one {document} other {# documents}} as a result of changing the document owner","user":"User:","filterUsers":"Type to filter users...","filterOrgs":"Type to filter organizations..."},"dialogProjectDialog":{"confirmDelete":"Confirm delete","deleteProject":"Are you sure you want to delete this project ({project})?","editProject":"Edit Project","createProject":"Create New Project","title":"Title...","projectDesc":"Project Description (optional)","manageCollabs":"Manage Collaborators","share":"Share / Embed Project","enterTitle":"Enter a title","changeTitle":"Change the title or description"},"dialogProjectEmbedDialog":{"share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article or post:","invalid":"Invalid project","cannotEmbed":"Cannot embed this project, as it does not appear to exist."},"htmlEditor":{"preview":"Preview:"},"image":{"error":"An error occurred. Try refreshing the page"},"omniselect":{"filter":"Type to filter","noResults":"No results. Click to clear filter."},"shareOptions":{"errorText":"An unexpected error occurred. Please try again later.","copyHtml":"Copy HTML code","addShortcode":"Add this shortcode to your WordPress content —","pluginRequired":"plugin required","copyShortcode":"Copy shortcode","copyUrl":"Copy URL"},"specialMessage":{"contactUs":"Contact us with bug reports, questions, and suggestions."},"uploadOptions":{"documentLang":"Document language:","forceOcr":"Force OCR:","ocrEngine":"OCR Engine:","tesseract":"Tesseract is an open source OCR engine available free to all DocumentCloud accounts.","textractPremium":"Textract is a more powerful OCR engine that can better handle messy text, handwriting and fuzzy scans. It is a premium feature available on Professional and Organization plans. Learn more or sign up.","creditHelpText":"Selecting Textract will cost one AI Credit per page in the document. If you go over, the document will fall back to using Tesseract. You are currently working on behalf of {organization} and have {n, plural, one {# credit} other {# credits}} left.","documentLanguagePlaceholder":"Begin typing to see options"},"actionBar":{"selectDocs":"Select some documents to reveal edit actions","noPerms":"You do not have permission to edit all of the selected documents","editMenu":"Edit","projectsMenu":"Projects","addOnsMenu":"Add-Ons"},"authSection":{"help":"Help","language":"Language","faq":"FAQ","searchDocs":"Search Documentation","apiDocs":"API Documentation","addOns":"Add-Ons","premium":"DocumentCloud Premium","emailUs":"Email Us","acctSettings":"Account settings","signOut":"Sign out","changeOrg":"Change organization","personalAcct":"Personal Account","signIn":"Sign in","uploadEmail":"Upload via email"},"documents":{"yourDocuments":"Your Documents","searchResults":"Search Results","accessDocuments":"Your {access}Documents","nameDocuments":"{name}\'s {access}Documents","allDocuments":"All {access}Documents","mustBeVerified":"You must be a verified journalist to upload documents","upload":"Upload","dropFile":"Drop file to upload"},"document":{"open":"Open","updating":"Updating document...","processing":"Processing","processingError":"An error occurred trying to process your document","remove":"Remove","improper":"Your document was uploaded improperly","project":"Project","totalMatchingPages":"{n} of {m} pages matching the query","showAll":"Show all","matchingPages":"{n} pages matching the query","pageAbbrev":"p.","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source","noteCount":"{n, plural, one {# note} other {# notes}}"},"documentThumbnail":{"pages":"pages","loading":"Loading progress information..."},"mainContainer":{"error":"Error","errorMsg":"We could not reach the DocumentCloud server. Please try refreshing the page later.","refresh":"Refresh"},"editMenu":{"editDocInfo":"Edit Document Information","changeAccess":"Change Access","editDocData":"Edit Document Data","cancelProcessing":"Cancel Processing","forceReprocess":"Force Reprocess","entities":"Entities BETA","changeOwner":"Change Owner","delete":"Delete","diagnosticInfo":"Diagnostic Info"},"metaFields":{"defaultFieldInvalidText":"The document already has this {fieldName}","titleFieldTitle":"Title","titleFieldName":"name","titleFieldNameUppercase":"Name","titleFieldHeader":"Rename {n, plural, one {# document} other {# documents}}","titleFieldDescription":"Enter a name below for the {n, plural, one {selected document} other {# selected documents}}","titleFieldButton":"Rename","titleFieldInvalidSameName":"The document already has this name","titleFieldInvalidEmptyName":"Enter a valid name","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Edit source for {n, plural, one {# document} other {# documents}}","sourceFieldDescription":"Enter a source below for the {n, plural, one {selected document} other {# selected documents}}","sourceFieldButton":"Edit","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Edit description for {n, plural, one {# document} other {# documents}}","descriptionFieldDescription":"Enter the description below for the {n, plural, one {selected document} other {# selected documents}}","descriptionFieldButton":"Edit","relatedArticleFieldTitle":"Related Article URL","relatedArticleFieldName":"related article URL","relatedArticleFieldNameUppercase":"Related Article URL","relatedArticleFieldHeader":"Edit the related article URL for {n, plural, one {# document} other {# documents}}","relatedArticleFieldDescription":"Enter the related article URL below for the {n, plural, one {selected document} other {# selected documents}}","relatedArticleFieldButton":"Edit","publishedUrlFieldTitle":"Published URL","publishedUrlFieldName":"published URL","publishedUrlFieldNameUppercase":"Published URL","publishedUrlFieldHeader":"Edit the published URL for {n, plural, one {# document} other {# documents}}","publishedUrlFieldDescription":"Enter the published URL below for the {n, plural, one {selected document} other {# selected documents}}","publishedUrlFieldButton":"Edit"},"projectsMenu":{"newProject":"+ New Project","projMembership":"Project Membership","selectDocs":"Select documents to place them in projects","createProj":"Create a project to organize and share documents"},"addonsMenu":{"newAddon":"Request new Add-on from Staff","selectDocs":"Select documents to dispatch them in add-ons","addonsList":"List of Add-Ons","createAddon":"Choose more documents to use add-ons","addon":"Add-on","learnMore":"Learn more about Add-Ons","browseAll":"Browse Add-Ons","addonRuns":"See past and future Add-On runs"},"noDocuments":{"noSearchResults":"No search results","queryNoResults":"Your search query returned no results. Try again with a broader search query.","welcome":"Welcome to DocumentCloud!","verify1":"Note that currently your account is not verified to upload. You can search through the public repository, organize documents you\'re interested in into projects, leave private notes, and collaborate on editing and annotating documents other users invite you to.","verify2":"If you’d like to upload or publish documents and you\'re a working journalist or other organization interested in publishing primary source materials in the public interest, you\'ll need to have your account verified or added to a verified organization. This is a simple process:","verify3":"First, see if your organization already exists and, if you find it, click \\"Request to Join\\" on its page.","verify4":"If your organization has not been verified yet, or if you\'re a freelancer, request verification here. Requests usually take two business days to process.","uploadFirst":"Upload your first document","upload1":"Upload a document file to get started using DocumentCloud. You can drag the file into this window, or click on the blue “Upload” button above.","upload2":"Once you upload a file, DocumentCloud will process the document and extract its contents. It may take a few minutes for this to complete, but once it’s done your document will be optimized for analysis and sharing on the web.","requestVerificationAction":"Request Verification to Upload"},"paginator":{"of":"of","document":"{n, plural, one {Document} other {Documents}}","next":"Next","previous":"Previous"},"processingBar":{"doneProcessing":"Done processing","processingDocuments":"Processing {n, plural, one {document} other {# documents}}"},"searchBar":{"tips":"Search tips: add filters by typing user:, project:, or organization:, etc. Use sort: to order results.","learnMore":"Learn more","search":"Search"},"searchLink":{"search":"Search this document collection"},"projects":{"header":"Projects","allDocuments":"All Documents","yourDocuments":"Your Documents","yourPubDocuments":"Your Public Documents","orgDocuments":"{name}’s Documents","newProject":"+ New Project","createProject":"Create your first project by clicking “New Project” above."},"organizations":{"sameOrgUsers":"Users in organization"},"uploadDialog":{"docUpload":"Document Upload","docUploadProj":"Document Upload to {title}","selectDocument":"Select or drag a document to begin the document upload process. You will then be able to edit document information.","pdfSizeWarning":"You can only upload PDF files under {size}.","nonPdfSizeWarning":"You can only upload non-PDF document files under {size}.","fileReady":"{n, plural, one {file} other {files}} ready to upload","fileLimitWarning":"You can only upload {limit} files at once.","moreOptions":"More options","beginUpload":"Begin upload","selectFiles":"+ Select files","dragDrop":"Drag and drop files here","publicMsg":"Document will be publicly visible.","collabMsg":"Document will be visible to your organization.","privateMsg":"Document will be visible to you alone.","collabName":"Organization","submitting":"Almost done... submitting uploaded files for processing ({percent})","uploading":"Uploading ... ({uploaded}/{length})","gettingInfo":"Getting upload information ({percent})","pleaseLeaveOpen":"Please leave this page open while your documents upload. This dialog will automatically close when they have finished uploading.","errorHeading":"Error occurred while uploading","errorMsg":"We failed to {errorMessage}. Please try again later.","editDocInfo":"Edit document information:","untitled":"Untitled","uploadFiles":"Upload additional files","selectMore":"+ Select more files","dragDropMore":"Drag and drop additional files here"},"embedNote":{"viewTheNote":"View the note ‘{title}‘ in its original document context on DocumentCloud in a new window or tab","viewDoc":"View the entire document with DocumentCloud"},"embedPage":{"viewDoc":"View entire {title} on DocumentCloud in new window or tab","pageOf":"Page {page} of {title}","gotoDocCloud":"Go to DocumentCloud in new window or tab"},"entities":{"back":"Back","page":"Page","of":"of","totalEntityResult":"{n, plural, one {# total entity result} other {# total entity results}} ","filter":"Filter","applyFilters":"Apply filters","kind":"Kind","clear":"Clear","person":"Person","org":"Organization","location":"Location","event":"Event","workOfArt":"Work of Art","consumerGood":"Consumer Good","address":"Address","date":"Date","number":"Number","phoneNumber":"Phone Number","price":"Price","unknown":"Unknown","other":"Other","occurrences":"Occurrences","proper":"Proper","common":"Common","advanced":"Advanced","relevanceThreshold":"Relevance threshold:","knowledgeGraph":"Knowledge graph:","hasKG":"Has a knowledge graph ID","noKG":"Does not have a knowledge graph ID","wikiUrl":"Wikipedia URL:","hasWiki":"Has a Wikipedia URL","noWiki":"Does not have a Wikipedia URL","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipedia","entityExtraction":"Entity extraction for “{title}”","extractingEntities":"Extracting entities...","welcome":"Welcome to entity extraction! This feature is very much in progress but we want it in your hands early to welcome any feedback you might have.","manual":"Right now the process for extracting entities is manual. This document has not had entities extracted yet, so click below to get started.","error":"An unexpected error occurred","extract":"Extract entities","noEntities":"There are no entities. This could happen if the document doesn’t have text, is non-English (only English is supported for now), or some error occurred.","starting":"Starting extaction..."},"home":{"about":"DocumentCloud is an all-in-one platform for documents: upload, organize, analyze, annotate, search, and embed.","viewPublicDocs":"View public documents"},"annotation":{"title":"Note Title","description":"Note Description (optional)","unchanged":"Note remains unchanged","noTitle":"Enter a title for the note","org":"This note is only visible to you and others with edit access to this document","private":"This private note is only visible to you","by":"Note by {name}","byOrg":"Note by {name}, {org}","addPageNote":"Add page note"},"viewDropdown":{"document":"Document","plainText":"Plain Text","thumbnail":"Thumbnail","notes":"Notes","search":"Search Results"},"zoom":{"fitWidth":"Fit width","fitHeight":"Fit height"},"drawer":{"close":"Close Drawer"},"titleHeader":{"contributedBy":"Contributed by {name}"},"annotatePane":{"annotateDocument":"Add Note","desc":"Highlight a portion of the page, or click between pages to create a note."},"modifyPane":{"pagesSelected":"{n, plural, one {# Page} other {# Pages}} Selected","applyModifications":"Apply Modifications","duplicate":"Duplicate","move":"Move","rotate":"Rotate","unselect":"Unselect","remove":"Remove","insertPages":"Insert {n, plural, one {# Page} other {# Pages}}","pagesPending":"{n, plural, one {# Page} other {# Pages}} Pending Insertion","insertBegin":"Insert {n, plural, one {# page} other {# pages}} at beginning.","insertEnd":"Insert {n, plural, one {# page} other {# pages}} at end.","insertBetween":"Insert {n, plural, one {# page} other {# pages}} in between page {p0} and {p1}.","click":"Click in-between pages below to mark where to paste {n, plural, one {# page} other {# pages}}.","insert":"Insert","insertAtEnd":"Insert at end","insertPosition":"Insert pages at position","insertOtherDoc":"Insert from other document","modifyPages":"Modify Pages","select":"Select pages below to apply modifications (page rotation, rearranging, and deletion). Click in-between pages to insert.","undo":"Undo","redo":"Redo"},"redactPane":{"redactDoc":"Redact Document","desc":"Click and drag to draw a black rectangle over each portion of the document you’d like to redact. Associated text will be removed when you save your redactions.","confirm":"Confirm Redactions","undo":"Undo"},"searchPane":{"yourQuery":"Your query {search} was found on {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Select a note","desc":"Select the note that you want to share."},"searchResults":{"resultPages":"{results, plural, one {# result} other {# results}} across {pages, plural, one {# page} other {# pages}}","noSearchResults":"No search results. Try again with a broader query.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Updating docucment...","original":"Original Document (PDF) »","related":"Related Article »","contributed":"Contributed by {name}","source":"Source: {source}","actions":"Document Actions","share":"Share","shareDesc":"Create an embed or share on social media.","annotate":"Add Note","annotateDesc":"Leave a public, private or shared note, which can be embedded within an article.","redact":"Redact","redactDesc":"Create redactions on the document to hide text. The document will reprocess afterwards.","modify":"Modify Pages","modifyDesc":"Rearrange, rotate, delete, insert, and split pages.","info":"Edit Document Info","infoDesc":"Modify document information like description and related URL.","data":"Edit Tags and Data","dataDesc":"Add tags and key/value pairs to categorize your document.","sections":"Edit Sections","sectionsDesc":"Add sections to organize your document with a table of contents.","privateNote":"Add Private Note","privateNoteDesc":"Leave a public, private or shared note, which can be embedded within an article."},"viewer":{"notFound":"Document not found","notFoundDesc":"The document you requested either does not exist or you lack permission to access it","processing":"Document is processing","processingDesc":"The document you requested is processing and will automatically refresh when it is ready","error":"Document has encountered an error","errorDesc":"A processing error has been encountered in the document you requested","accessible":"Document not accessible","accessibleDesc":"The document you requested is still processing or you lack permission to access to it"},"addonDispatchDialog":{"addons":"Add-Ons","backButton":"Browse Add-Ons","select":"Documents to run this Add-On against:","queryNoSelected":"This Add-On will try to run against the {n, plural, one {# document} other {# documents}} currently included in your search results. To run it against only selected documents, cancel this and select some, then select the Add-On again.","noSelected":"You must select some documents to run against. Cancel this and select some, then select the Add-On again.","runSelected":"This Add-On will try to run against the {n, plural, one {# currently selected document} other {# currently selected documents}}.","runQuery":"This Add-On will try to run against the {n, plural, one {# document} other {# documents}} currently included in your search results.","labelSelected":"The {n, plural, one {# currently selected document} other {# currently selected documents}}","labelQuery":"The {n, plural, one {# document} other {# documents}} from the current search results","learnMore":"Learn more.","hideAddons":"Hide Scheduled Add-Ons","showRuns":"Show Runs","hideRuns":"Hide Runs","showAddons":"Show Scheduled Add-Ons ({n})","runSchedule":"Run on a schedule:","runOnce":"Run once","disable":"Disable","signIn":"Sign in to use Add-Ons","createdBy":"Created by","categories":"Categories","viewsource":"View Source","share":"Share","shareClipboardSuccess":"Copied add-on URL to your clipboard","scheduleSuccess":"Add-on is now scheduled","runSuccess":"Add-on is now running","selectionHelp":"From the main list, select individual documents or run a search for the documents you want, for example “+project:mueller-docs-200005”.","selectionLearnMore":"Learn more about how Add-Ons work"},"addonBrowserDialog":{"title":"Browse Add-Ons","subtitle":"Free automations, shortcuts and power-ups from the DocumentCloud community","categories":"Categories","browseAll":"Browse All Add-Ons","searchPlaceholder":"Search…","loading":"Loading…","empty":"No add-ons found","retry":"Retry","active":"Active","inactive":"Inactive","next":"Next","previous":"Previous","viewsource":"View Source","usage":"Usage","pinnedTip":"Quickly access your favorite Add-Ons by clicking the “Pin” icon next to its name. They’ll then be available to run from the Add-Ons dropdown menu.","featuredTip":"Here’s some of the DocumentCloud team’s favorite Add-Ons, including both new additions as well as classics we think every user should try."},"addonRuns":{"scheduled":"Scheduled Add-Ons","previous":"Previous Runs","runsOn":"Runs {schedule}","upcoming":{"empty":"Scheduled add-ons will appear here","loading":"Loading…","retry":"Retry"},"history":{"empty":"Previous add-on runs will appear here","loading":"Loading…","retry":"Retry"}},"addonProgress":{"timedOut":"Timed out","feedback":"Feedback on this Add-On run","progress":"Add-Ons in progress","thanks":"Thanks for the feedback!","download":"Download file"},"addonSidebar":{"title":"Add-Ons","runs":"Schedule & history"},"uploadEmailDialog":{"uploadEmailAddress":"Upload via email","bodyText":"You can upload documents to your account by sending them to to a special email address as attachments. For security reasons, this email is only shown to you once. Please copy it to a secure location: It will accept attachments from any email account. You can generate a new upload address at any time (which will disable the old one) or turn off this feature entirely. Documents are uploaded as private.
\n","\n\n\n\n\n","\n\n\n\n\n","\n\n\n\n\n","\n\n\n\n\n","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","import { Svue } from \"svue\";\n\nconst DOCUMENTCLOUD_TOKEN_STORAGE_KEY = \"documentcloud_token\";\n\nexport const SQUARELET_URL = process.env.SQUARELET_BASE;\nexport const SIGN_IN_URL = process.env.DC_BASE + process.env.DC_LOGIN;\nexport const SIGN_UP_URL =\n process.env.SQUARELET_BASE +\n process.env.SQUARELET_SIGNUP +\n encodeURIComponent(window.location.href);\nexport const SIGN_OUT_URL = process.env.DC_BASE + process.env.DC_LOGOUT;\n\nexport const auth = new Svue({\n data() {\n return {\n signingIn: false,\n key: null,\n };\n },\n computed: {\n isAuthenticated(key) {\n return key !== null;\n },\n },\n});\n\nexport function login() {\n setToken(true);\n}\n\nexport function logout() {\n // TODO: use some Squarelet method and have a finally clause of removeToken()\n // for now, we just \"forget\" we're logged in\n removeToken();\n}\n\n// Token methods\nfunction initialize() {\n try {\n const storedData = localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n if (storedData === null) {\n // Logged in\n return;\n }\n if (storedData !== null) {\n const key = JSON.parse(storedData);\n setToken(key);\n return;\n }\n } catch (e) {\n removeToken();\n return;\n }\n\n removeToken();\n return;\n}\n\nfunction setToken(key) {\n // Set the token state.\n try {\n localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY, JSON.stringify(key));\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = key;\n}\n\nfunction removeToken() {\n try {\n localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = null;\n}\n\n// Initialize the token\ninitialize();\n","const languageCodes = process.env.LANGUAGE_CODES.split(\"|\");\nconst languageNames = process.env.LANGUAGE_NAMES.split(\"|\");\nexport const defaultLanguage = process.env.DEFAULT_LANGUAGE;\n\nfunction makeLanguagePairs(codes, names) {\n const results = [];\n for (let i = 0; i < codes.length; i++) {\n results.push([codes[i], names[i]]);\n }\n results.sort((a, b) => (a[1] > b[1] ? 1 : a[1] < b[1] ? -1 : 0));\n return results;\n}\n\nexport const languages = makeLanguagePairs(languageCodes, languageNames);\n\nconst textractLanguageCodes = [\"eng\", \"spa\", \"ita\", \"por\", \"fra\", \"deu\"];\nexport const textractLanguages = languages.filter((l) =>\n textractLanguageCodes.indexOf(l[0]) != -1\n);\n","const docTitleLimit = process.env.DOCUMENT_TITLE_CHAR_LIMIT;\nconst docSourceLimit = process.env.DOCUMENT_SOURCE_CHAR_LIMIT;\nconst docDescriptionLimit = process.env.DOCUMENT_DESCRIPTION_CHAR_LIMIT;\nconst relatedArticleLimit = process.env.RELATED_ARTICLE_URL_CHAR_LIMIT;\nconst publishedUrlLimit = process.env.PUBLISHED_URL_CHAR_LIMIT;\n\nexport const metaDialogs = [\n {\n menuTitle: \"metaFields.titleFieldTitle\",\n charLimit: docTitleLimit,\n fieldAccessor: (x) => x.title,\n fieldName: \"metaFields.titleFieldName\",\n fieldNameUppercase: \"metaFields.titleFieldNameUppercase\",\n apiField: \"title\",\n headerText: \"metaFields.titleFieldHeader\",\n explainerText: \"metaFields.titleFieldDescription\",\n buttonText: \"metaFields.titleFieldButton\",\n fieldValid: (value, initial) => value != initial && value.trim().length > 0,\n fieldInvalidText: (value, initial) =>\n value == initial\n ? \"metaFields.titleFieldInvalidSameName\"\n : value.trim().length == 0\n ? \"metaFields.titleFieldInvalidEmptyName\"\n : \"\",\n disabled: (numSelected) => numSelected != 1,\n },\n {\n menuTitle: \"metaFields.sourceFieldTitle\",\n charLimit: docSourceLimit,\n fieldAccessor: (x) => x.source,\n fieldName: \"metaFields.sourceFieldName\",\n fieldNameUppercase: \"metaFields.sourceFieldNameUppercase\",\n apiField: \"source\",\n headerText: \"metaFields.sourceFieldHeader\",\n explainerText: \"metaFields.sourceFieldDescription\",\n buttonText: \"metaFields.sourceFieldButton\",\n },\n {\n menuTitle: \"metaFields.descriptionFieldTitle\",\n charLimit: docDescriptionLimit,\n fieldAccessor: (x) => x.description,\n fieldName: \"metaFields.descriptionFieldName\",\n fieldNameUppercase: \"metaFields.descriptionFieldNameUppercase\",\n apiField: \"description\",\n headerText: \"metaFields.descriptionFieldHeader\",\n explainerText: \"metaFields.descriptionFieldDescription\",\n isTextArea: true,\n buttonText: \"metaFields.descriptionFieldButton\",\n },\n {\n menuTitle: \"metaFields.relatedArticleFieldTitle\",\n charLimit: relatedArticleLimit,\n fieldAccessor: (x) => x.relatedArticleUrl,\n fieldName: \"rmetaFields.relatedArticleFieldName\",\n fieldNameUppercase: \"metaFields.relatedArticleFieldNameUppercase\",\n apiField: \"related_article\",\n headerText: \"metaFields.relatedArticleFieldHeader\",\n explainerText: \"metaFields.relatedArticleFieldDescription\",\n buttonText: \"metaFields.relatedArticleFieldButton\",\n },\n {\n menuTitle: \"metaFields.publishedUrlFieldTitle\",\n charLimit: publishedUrlLimit,\n fieldAccessor: (x) => x.publishedUrl,\n fieldName: \"metaFields.publishedUrlFieldName\",\n fieldNameUppercase: \"metaFields.publishedUrlFieldNameUppercase\",\n apiField: \"published_url\",\n headerText: \"metaFields.publishedUrlFieldHeader\",\n explainerText: \"metaFields.publishedUrlFieldDescription\",\n buttonText: \"metaFields.publishedUrlFieldButton\",\n },\n];\n","import { includes } from \"@/util/array.js\";\n\nconst documentTypes = process.env.DOCUMENT_TYPES.split(\",\").map(\n (x) => `.${x.toLowerCase().trim()}`,\n);\n\nexport function filterFiles(files) {\n // Filter for just valid files\n return files.filter((file) => {\n return includes(documentTypes, file.name.toLowerCase().trim(), (a, b) =>\n b.endsWith(a),\n );\n });\n}\n","import { Svue } from \"svue\";\n\nimport {\n documents,\n removeDocuments,\n cancelProcessDocuments,\n} from \"./documents\";\nimport { layout, editData } from \"./layout.js\";\n\nexport const manager = new Svue({\n data() {\n return {\n documents,\n layout,\n };\n },\n computed: {\n hasDocuments(documents) {\n return documents.documents.length > 0;\n },\n allSelected(hasDocuments, documents, layout) {\n return (\n hasDocuments &&\n documents.documents.every((doc) => layout.selectedMap[doc.id] != null)\n );\n },\n someSelected(hasDocuments, layout, allSelected) {\n return hasDocuments && layout.hasSelection && !allSelected;\n },\n noneSelected(hasDocuments, layout) {\n return !hasDocuments || !layout.hasSelection;\n },\n },\n});\n\nexport function selectAll() {\n const results = {};\n documents.documents.forEach((doc) => {\n results[doc.id] = doc;\n });\n layout.selectedMap = results;\n}\n\nexport function removeSelected() {\n removeDocuments(layout.selected);\n}\n\nexport function editMetaSelected(meta) {\n if (layout.numSelected == 0) return;\n layout.metaOpen = meta;\n}\n\nexport function editDocumentInfoSelected() {\n if (layout.numSelected == 0) return;\n layout.documentInfoOpen = true;\n}\n\nexport function changeAccessSelected() {\n if (layout.numSelected == 0) return;\n layout.accessEditDocuments = layout.selected.slice();\n}\n\nexport function changeOwnerSelected() {\n if (layout.numSelected == 0) return;\n layout.ownerEditDocuments = layout.selected.slice();\n}\n\nexport function reprocessSelected() {\n if (layout.numSelected == 0) return;\n layout.reprocessDocuments = layout.selected.slice();\n}\n\nexport function cancelProcessSelected() {\n cancelProcessDocuments(layout.selected);\n}\n\nexport function editDataSelected() {\n editData(layout.selected);\n}\n\nexport function showDiagnosticsSelected() {\n layout.diagnosticsOpen = true;\n}\n\nexport function showMailkeySelected() {\n layout.mailkeyOpen = true;\n}\n","import { extractSlugId, isNumber } from \"@/util/string.js\";\n\nconst languageOptions = process.env.LANGUAGE_CODES.split(\"|\");\n\nexport const sortCompletions = [\n {\n type: \"field\",\n text: \"Created At (Descending)\",\n info: \"Most Recent First\",\n feed: \"created_at\",\n },\n {\n type: \"field\",\n text: \"Created At (Ascending)\",\n info: \"Oldest First\",\n feed: \"-created_at\",\n },\n {\n type: \"field\",\n text: \"Title (Ascending)\",\n info: \"Document Title A-Z\",\n feed: \"title\",\n },\n {\n type: \"field\",\n text: \"Title (Descending)\",\n info: \"Document Title Z-A\",\n feed: \"-title\",\n },\n {\n type: \"field\",\n text: \"Page Count (Descending)\",\n info: \"Most Pages First\",\n feed: \"page_count\",\n },\n {\n type: \"field\",\n text: \"Page Count (Ascending)\",\n info: \"Least Pages First\",\n feed: \"-page_count\",\n },\n {\n type: \"field\",\n text: \"Source (Ascending)\",\n info: \"Document Source A-Z\",\n feed: \"source\",\n },\n {\n type: \"field\",\n text: \"Source (Descending)\",\n info: \"Document Source Z-A\",\n feed: \"-source\",\n },\n {\n type: \"field\",\n text: \"Score\",\n info: \"Default Sort Option by Relevance\",\n feed: \"score\",\n },\n];\nconst validSorts = sortCompletions.map((x) => x.feed);\n\nexport function fieldValid(text, example = false) {\n const fieldMatch = text.match(/^[^a-z]*([a-zA-Z0-9_-]+):(.*)$/);\n if (fieldMatch == null) return { valid: false };\n const field = fieldMatch[1];\n const value = fieldMatch[2];\n const id = extractSlugId(value);\n if (field == \"project\") {\n if (id == null) return { valid: false };\n if (example) return { valid: true, transform: `projects:${id}` };\n // IDs aren't checked for actual project, but will not return any useful results if not\n return { valid: isNumber(id) };\n } else if (field == \"user\") {\n if (id == null) return { valid: false };\n if (example) return { valid: true, transform: `user:${id}` };\n // IDs aren't checked for actual user, but will not return any useful results if not\n return { valid: isNumber(id) };\n } else if (field == \"organization\") {\n if (id == null) return { valid: false };\n if (example) return { valid: true, transform: `organization:${id}` };\n // IDs aren't checked for actual org, but will not return any useful results if not\n return { valid: isNumber(id) };\n } else if (field == \"access\") {\n return {\n valid: id == \"public\" || id == \"organization\" || id == \"private\",\n };\n } else if (field == \"status\") {\n return {\n valid:\n id == \"success\" ||\n id == \"readable\" ||\n id == \"pending\" ||\n id == \"error\" ||\n id == \"nofile\",\n };\n } else if (field == \"sort\") {\n return {\n valid: validSorts.includes(value),\n };\n } else if (field == \"tag\") {\n return {\n valid: value.trim().length > 0,\n };\n } else if (field == \"language\") {\n return {\n valid: id != null && languageOptions.includes(id),\n };\n } else if (field.startsWith(\"data_\")) {\n return {\n valid: field.length > \"data_\".length && value.trim().length > 0,\n };\n } else {\n return {\n valid: false,\n };\n }\n}\n"],"names":[],"sourceRoot":""}
-./public/src_langs_json_frakturBold_json.02b2b7408581e0294059.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"𝕰𝖒𝖆𝖎𝖑 𝖆𝖉𝖉𝖗𝖊𝖘𝖘","loading":"𝕷𝖔𝖆𝖉𝖎𝖓𝖌...","documentCloud":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉","home":"𝕳𝖔𝖒𝖊"},"homeTemplate":{"signedIn":"𝕾𝖎𝖌𝖓𝖊𝖉 𝖎𝖓 𝖆𝖘 {name}","signOut":"𝕾𝖎𝖌𝖓 𝖔𝖚𝖙","signIn":"𝕾𝖎𝖌𝖓 𝖎𝖓","signUp":"𝕾𝖎𝖌𝖓 𝖚𝖕","goToApp":"𝕲𝖔 𝖙𝖔 𝖆𝖕𝖕"},"accessToggle":{"public":"𝕹𝖔𝖙𝖊 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖆𝖓𝖞𝖔𝖓𝖊 𝖜𝖎𝖙𝖍 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","collaborator":"𝕹𝖔𝖙𝖊 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖆𝖓𝖞𝖔𝖓𝖊 𝖜𝖍𝖔 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","private":"𝕹𝖔𝖙𝖊 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚 𝖆𝖑𝖔𝖓𝖊.","publicName":"𝕻𝖚𝖇𝖑𝖎𝖈","collaboratorName":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗","privateName":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊"},"accessIcon":{"private":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝕬𝖈𝖈𝖊𝖘𝖘","organization":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖙𝖔 𝖄𝖔𝖚𝖗 𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","public":"𝕻𝖚𝖇𝖑𝖎𝖈 𝕬𝖈𝖈𝖊𝖘𝖘","privateExplanation":"𝕺𝖓𝖑𝖞 𝖞𝖔𝖚 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","organizationExplanation":"𝕺𝖓𝖑𝖞 𝖒𝖊𝖒𝖇𝖊𝖗𝖘 𝖔𝖋 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","publicExplanation":"𝕬𝖓𝖞𝖔𝖓𝖊 𝖈𝖆𝖓 𝖘𝖊𝖆𝖗𝖈𝖍 𝖆𝖓𝖉 𝖛𝖎𝖊𝖜 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙"},"appearanceCustomizer":{"customizeAppearance":"𝕮𝖚𝖘𝖙𝖔𝖒𝖎𝖟𝖊 𝕬𝖕𝖕𝖊𝖆𝖗𝖆𝖓𝖈𝖊","hide":"𝕳𝖎𝖉𝖊 𝖍𝖊𝖑𝖕 𝖙𝖊𝖝𝖙","show":"𝕾𝖍𝖔𝖜 𝖍𝖊𝖑𝖕 𝖙𝖊𝖝𝖙"},"appearanceDimension":{"responsive":"𝕬𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","fixed":"𝕱𝖎𝖝𝖊𝖉"},"calendar":{"jan":"𝕵𝖆𝖓𝖚𝖆𝖗𝖞","feb":"𝕱𝖊𝖇𝖗𝖚𝖆𝖗𝖞","mar":"𝕸𝖆𝖗𝖈𝖍","apr":"𝕬𝖕𝖗𝖎𝖑","may":"𝕸𝖆𝖞","jun":"𝕵𝖚𝖓𝖊","jul":"𝕵𝖚𝖑𝖞","aug":"𝕬𝖚𝖌𝖚𝖘𝖙","sep":"𝕾𝖊𝖕𝖙𝖊𝖒𝖇𝖊𝖗","oct":"𝕺𝖈𝖙𝖔𝖇𝖊𝖗","nov":"𝕹𝖔𝖛𝖊𝖒𝖇𝖊𝖗","dec":"𝕯𝖊𝖈𝖊𝖒𝖇𝖊𝖗","hourShortcode":"𝕳𝕳","minuteShortcode":"𝕸𝕸"},"dialog":{"cancel":"𝕮𝖆𝖓𝖈𝖊𝖑","delete":"𝕯𝖊𝖑𝖊𝖙𝖊","done":"𝕯𝖔𝖓𝖊","edit":"𝕰𝖉𝖎𝖙","remove":"𝕽𝖊𝖒𝖔𝖛𝖊","save":"𝕾𝖆𝖛𝖊","create":"𝕮𝖗𝖊𝖆𝖙𝖊","ok":"𝕺𝖐","update":"𝖀𝖕𝖉𝖆𝖙𝖊","dismiss":"𝕯𝖎𝖘𝖒𝖎𝖘𝖘","continue":"𝕮𝖔𝖓𝖙𝖎𝖓𝖚𝖊"},"dialogAccessDialog":{"changeAccess":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖋𝖔𝖗 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","selectAccess":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖆𝖓 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","public":"𝕻𝖚𝖇𝖑𝖎𝖈 𝖆𝖈𝖈𝖊𝖘𝖘","publicDesc":"𝕬𝖓𝖞𝖔𝖓𝖊 𝖔𝖓 𝖙𝖍𝖊 𝖎𝖓𝖙𝖊𝖗𝖓𝖊𝖙 𝖈𝖆𝖓 𝖘𝖊𝖆𝖗𝖈𝖍 𝖋𝖔𝖗 𝖆𝖓𝖉 𝖛𝖎𝖊𝖜 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","verifiedHelp":"𝕺𝖓𝖑𝖞 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖚𝖘𝖊𝖗𝖘 𝖔𝖗 𝖒𝖊𝖒𝖇𝖊𝖗𝖘 𝖔𝖋 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓𝖘 𝖈𝖆𝖓 𝖒𝖆𝖐𝖊 𝖚𝖕𝖑𝖔𝖆𝖉𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕴𝖋 𝖞𝖔𝖚\'𝖗𝖊 𝖆 𝖏𝖔𝖚𝖗𝖓𝖆𝖑𝖎𝖘𝖙 𝖔𝖗 𝖔𝖙𝖍𝖊𝖗𝖜𝖎𝖘𝖊 𝖜𝖔𝖗𝖐 𝖎𝖓 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖎𝖓𝖌 𝖛𝖊𝖙𝖙𝖊𝖉 𝖒𝖆𝖙𝖊𝖗𝖎𝖆𝖑𝖘 𝖙𝖔 𝖎𝖓𝖋𝖔𝖗𝖒 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈, 𝖑𝖊𝖆𝖗𝖓 𝖒𝖔𝖗𝖊 𝖆𝖓𝖉 𝖗𝖊𝖖𝖚𝖊𝖘𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓 𝖍𝖊𝖗𝖊.","privateToOrg":"𝖄𝖔𝖚 𝖈𝖆𝖓’𝖙 𝖈𝖍𝖆𝖓𝖌𝖊 𝖙𝖍𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑 𝖙𝖔 “𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓” 𝖇𝖊𝖈𝖆𝖚𝖘𝖊 {n, plural, one {𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘} other {𝖔𝖓𝖊 𝖔𝖗 𝖒𝖔𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖆𝖗𝖊}} 𝖆𝖘𝖘𝖔𝖈𝖎𝖆𝖙𝖊𝖉 𝖜𝖎𝖙𝖍 𝖞𝖔𝖚𝖗 𝖎𝖓𝖉𝖎𝖛𝖎𝖉𝖚𝖆𝖑 𝖆𝖈𝖈𝖔𝖚𝖓𝖙, 𝖓𝖔𝖙 𝖆𝖓 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓. 𝕿𝖔 𝖆𝖉𝖉 {n, plural, one {𝖎𝖙} other {𝖙𝖍𝖊𝖒}} 𝖙𝖔 𝖆𝖓 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓, 𝖘𝖊𝖑𝖊𝖈𝖙 {n, plural, one {𝖎𝖙} other {𝖙𝖍𝖊𝖒}} 𝖋𝖗𝖔𝖒 𝖙𝖍𝖊 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙 𝖛𝖎𝖊𝖜 𝖆𝖓𝖉 𝖈𝖑𝖎𝖈𝖐 “𝕮𝖍𝖆𝖓𝖌𝖊 𝕺𝖜𝖓𝖊𝖗.” 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖏𝖔𝖎𝖓 𝖔𝖗 𝖈𝖗𝖊𝖆𝖙𝖊 𝖆𝖓 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖔𝖓 𝖙𝖍𝖎𝖘 𝖕𝖆𝖌𝖊.","private":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖆𝖈𝖈𝖊𝖘𝖘","privateDesc":"𝕺𝖓𝖑𝖞 𝖕𝖊𝖔𝖕𝖑𝖊 𝖜𝖎𝖙𝖍 𝖊𝖝𝖕𝖑𝖎𝖈𝖎𝖙 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 (𝖛𝖎𝖆 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖎𝖔𝖓) 𝖍𝖆𝖛𝖊 𝖆𝖈𝖈𝖊𝖘𝖘.","organization":"𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","organizationDesc":"𝕺𝖓𝖑𝖞 𝖙𝖍𝖊 𝖕𝖊𝖔𝖕𝖑𝖊 𝖎𝖓 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖍𝖆𝖛𝖊 𝖆𝖈𝖈𝖊𝖘𝖘.","schedulePublication":"𝕾𝖈𝖍𝖊𝖉𝖚𝖑𝖊 𝖕𝖚𝖇𝖑𝖎𝖈𝖆𝖙𝖎𝖔𝖓","scheduleHelp":"𝕿𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖒𝖆𝖉𝖊 𝖕𝖚𝖇𝖑𝖎𝖈 𝖆𝖙 𝖙𝖍𝖊 𝖌𝖎𝖛𝖊𝖓 𝖉𝖆𝖙𝖊 𝖆𝖓𝖉 𝖙𝖎𝖒𝖊. 𝕻𝖚𝖇𝖑𝖎𝖈𝖆𝖙𝖎𝖔𝖓 𝖙𝖎𝖒𝖊 𝖎𝖘 𝖑𝖔𝖈𝖆𝖑{timezone}.","unchanged":"𝕬𝖈𝖈𝖊𝖘𝖘 𝖎𝖘 𝖚𝖓𝖈𝖍𝖆𝖓𝖌𝖊𝖉. 𝕾𝖊𝖑𝖊𝖈𝖙 𝖆 𝖉𝖎𝖋𝖋𝖊𝖗𝖊𝖓𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑.","future":"𝕸𝖚𝖘𝖙 𝖘𝖊𝖑𝖊𝖈𝖙 𝖆 𝖙𝖎𝖒𝖊 𝖎𝖓 𝖙𝖍𝖊 𝖋𝖚𝖙𝖚𝖗𝖊","change":"𝕮𝖍𝖆𝖓𝖌𝖊"},"dialogCollaboratorDialog":{"confirm":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖒𝖔𝖛𝖊 𝖚𝖘𝖊𝖗","confirmMsg":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖗𝖊𝖒𝖔𝖛𝖊 {name} 𝖋𝖗𝖔𝖒 {title}. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","addCollaborators":"𝕬𝖉𝖉 𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘","invite":"𝕻𝖚𝖙 𝖎𝖓 𝖙𝖍𝖊 𝖊𝖒𝖆𝖎𝖑 𝖔𝖋 𝖆𝖓 𝖊𝖝𝖎𝖘𝖙𝖎𝖓𝖌 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖚𝖘𝖊𝖗 𝖇𝖊𝖑𝖔𝖜. 𝕴𝖋 𝖙𝖍𝖊𝖞 𝖉𝖔𝖓\'𝖙 𝖍𝖆𝖛𝖊 𝖆𝖓 𝖆𝖈𝖈𝖔𝖚𝖓𝖙, 𝖍𝖆𝖛𝖊 𝖙𝖍𝖊𝖒 𝖗𝖊𝖌𝖎𝖘𝖙𝖊𝖗 𝖍𝖊𝖗𝖊 𝖋𝖔𝖗 𝖋𝖗𝖊𝖊, 𝖆𝖓𝖉 𝖙𝖍𝖊𝖓 𝖆𝖘𝖐 𝖙𝖍𝖊𝖒 𝖙𝖔 𝖑𝖔𝖌 𝖎𝖓 𝖙𝖔 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖆𝖙 𝖑𝖊𝖆𝖘𝖙 𝖔𝖓𝖈𝖊.","admin":"𝕬𝖉𝖒𝖎𝖓","view":"𝖁𝖎𝖊𝖜","adminHelp":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖆𝖓𝖉 𝖎𝖙𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","editHelp":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙","viewHelp":"𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙","add":"𝕬𝖉𝖉","empty":"𝖄𝖔𝖚 𝖍𝖆𝖛𝖊 𝖓𝖔𝖙 𝖞𝖊𝖙 𝖆𝖉𝖉𝖊𝖉 𝖆𝖓𝖞 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖙𝖔 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙. 𝕴𝖓𝖛𝖎𝖙𝖊 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖙𝖔 𝖌𝖗𝖆𝖓𝖙 𝖔𝖙𝖍𝖊𝖗 𝖚𝖘𝖊𝖗𝖘 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖘𝖍𝖆𝖗𝖊𝖉 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖈𝖔𝖓𝖙𝖗𝖔𝖑 𝖜𝖍𝖊𝖙𝖍𝖊𝖗 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖍𝖆𝖛𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖛𝖎𝖊𝖜/𝖊𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙’𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖔𝖗 𝖇𝖊 𝖆𝖓 𝖆𝖉𝖒𝖎𝖓 𝖜𝖎𝖙𝖍 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓𝖘 𝖙𝖔 𝖎𝖓𝖛𝖎𝖙𝖊 𝖔𝖙𝖍𝖊𝖗 𝖚𝖘𝖊𝖗𝖘 𝖆𝖓𝖉 𝖊𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖎𝖙𝖘𝖊𝖑𝖋.","manageCollaborators":"𝕸𝖆𝖓𝖆𝖌𝖊 𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘","name":"𝕹𝖆𝖒𝖊","access":"𝕬𝖈𝖈𝖊𝖘𝖘","you":"(𝖞𝖔𝖚)"},"dialogDataDialog":{"confirm":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖒𝖔𝖛𝖊 𝖉𝖆𝖙𝖆 𝖕𝖔𝖎𝖓𝖙","removeMsg":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖗𝖊𝖒𝖔𝖛𝖊 𝖙𝖍𝖊 {key}{value} 𝖉𝖆𝖙𝖆 𝖕𝖔𝖎𝖓𝖙 𝖋𝖗𝖔𝖒 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","addData":"𝕬𝖉𝖉 𝕯𝖆𝖙𝖆 𝖋𝖔𝖗 {n, plural, one {𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","tag":"𝕿𝖆𝖌","value":"𝖁𝖆𝖑𝖚𝖊","key":"𝕶𝖊𝖞","keyValue":"𝕶𝖊𝖞 / 𝖁𝖆𝖑𝖚𝖊","tagInfo":"𝕬𝖉𝖉 𝖈𝖚𝖘𝖙𝖔𝖒 𝖙𝖆𝖌𝖘 𝖙𝖔 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘.","eg":"𝖊.𝖌.","exampleTagReport":"𝖗𝖊𝖕𝖔𝖗𝖙","exampleTagLawsuit":"𝖑𝖆𝖜𝖘𝖚𝖎𝖙","exampleTagEmail":"𝖊𝖒𝖆𝖎𝖑","keyValueInfo":"𝕬𝖉𝖉 𝖈𝖚𝖘𝖙𝖔𝖒 𝖐𝖊𝖞 / 𝖛𝖆𝖑𝖚𝖊 𝖕𝖆𝖎𝖗𝖘 𝖋𝖔𝖗 𝖕𝖗𝖊𝖈𝖎𝖘𝖊 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖔𝖋 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘.","exampleKVState":"𝖘𝖙𝖆𝖙𝖊:&𝖓𝖇𝖘𝖕;𝕮𝖆𝖑𝖎𝖋𝖔𝖗𝖓𝖎𝖆","exampleKVYear":"𝖞𝖊𝖆𝖗:&𝖓𝖇𝖘𝖕;𝟐𝟎𝟏𝟔","exampleKVType":"𝖙𝖞𝖕𝖊:&𝖓𝖇𝖘𝖕;𝖒𝖊𝖒𝖔","enterTag":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖙𝖆𝖌","enterKey":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖐𝖊𝖞","keyInvalid":"𝕶𝖊𝖞𝖘 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖈𝖔𝖓𝖙𝖆𝖎𝖓 𝖑𝖊𝖙𝖙𝖊𝖗𝖘, 𝖓𝖚𝖒𝖇𝖊𝖗𝖘, 𝖚𝖓𝖉𝖊𝖗𝖘𝖈𝖔𝖗𝖊𝖘 (_), 𝖆𝖓𝖉 𝖉𝖆𝖘𝖍𝖊𝖘 (-)","emptyMsg":"𝖄𝖔𝖚 𝖍𝖆𝖛𝖊 𝖓𝖔𝖙 𝖞𝖊𝖙 𝖆𝖉𝖉𝖊𝖉 𝖆𝖓𝖞 𝖉𝖆𝖙𝖆 𝖙𝖔 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝕬𝖉𝖉 𝖙𝖆𝖌𝖘 𝖆𝖓𝖉 𝖐𝖊𝖞/𝖛𝖆𝖑𝖚𝖊 𝖕𝖆𝖎𝖗𝖘 𝖙𝖔 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖊 𝖆𝖓𝖉 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖋𝖎𝖑𝖙𝖊𝖗 𝖆𝖓𝖉 𝖘𝖊𝖆𝖗𝖈𝖍 𝖔𝖓 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖉𝖆𝖙𝖆 𝖙𝖔 𝖌𝖎𝖛𝖊 𝖞𝖔𝖚 𝖕𝖔𝖜𝖊𝖗𝖋𝖚𝖑 𝖈𝖔𝖓𝖙𝖗𝖔𝖑 𝖔𝖛𝖊𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖒𝖆𝖓𝖆𝖌𝖊𝖒𝖊𝖓𝖙.","manageDocumentData":"𝕸𝖆𝖓𝖆𝖌𝖊 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕯𝖆𝖙𝖆","valueUnchanged":"𝖁𝖆𝖑𝖚𝖊 𝖗𝖊𝖒𝖆𝖎𝖓𝖘 𝖚𝖓𝖈𝖍𝖆𝖓𝖌𝖊𝖉","kvCannotBeEmpty":"𝕶𝖊𝖞/𝖛𝖆𝖑𝖚𝖊 𝖈𝖆𝖓𝖓𝖔𝖙 𝖇𝖊 𝖊𝖒𝖕𝖙𝖞"},"dialogReprocessDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘","reprocessDocs":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖋𝖔𝖗𝖈𝖊 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖙𝖔 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖕𝖆𝖌𝖊 𝖆𝖓𝖉 𝖎𝖒𝖆𝖌𝖊 𝖙𝖊𝖝𝖙. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","reprocessSingleDoc":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖋𝖔𝖗𝖈𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖕𝖆𝖌𝖊 𝖆𝖓𝖉 𝖎𝖒𝖆𝖌𝖊 𝖙𝖊𝖝𝖙. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","confirm":"𝕽𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘"},"dialogDeleteDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘","deleteDocs":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖕𝖊𝖗𝖒𝖆𝖓𝖊𝖓𝖙𝖑𝖞 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓"},"dialogCancelProcessingDialog":{"title":"𝕮𝖆𝖓𝖈𝖊𝖑 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","deleteDocs":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖋𝖔𝖗𝖈𝖊 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖙𝖔 𝖘𝖙𝖔𝖕 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌. 𝕬𝖋𝖙𝖊𝖗 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖍𝖆𝖘 𝖇𝖊𝖊𝖓 𝖘𝖙𝖔𝖕𝖕𝖊𝖉, 𝖆𝖓 𝖊𝖗𝖗𝖔𝖗 𝖜𝖎𝖑𝖑 𝖘𝖍𝖔𝖜 𝖆𝖋𝖙𝖊𝖗 𝖜𝖍𝖎𝖈𝖍 𝖞𝖔𝖚 𝖈𝖆𝖓 “𝕱𝖔𝖗𝖈𝖊 𝕽𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘” 𝖔𝖗 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖊 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖚𝖘𝖎𝖓𝖌 𝖙𝖍𝖊 𝕰𝖉𝖎𝖙 𝖒𝖊𝖓𝖚. 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝕾𝖙𝖆𝖋𝖋-𝖔𝖓𝖑𝖞 𝖎𝖓𝖋𝖔 𝖋𝖔𝖗 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","id":"𝕴𝕯","title":"𝕿𝖎𝖙𝖑𝖊","actions":"𝕬𝖈𝖙𝖎𝖔𝖓𝖘","debug":"𝕯𝖊𝖇𝖚𝖌","viewErrors":"𝖁𝖎𝖊𝖜 𝖊𝖗𝖗𝖔𝖗𝖘","viewS3":"𝖁𝖎𝖊𝖜 𝖎𝖓 𝕾𝟑"},"dialogDocumentEmbedDialog":{"responsive":"𝕽𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊","respOn":"𝕺𝖓 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","respOnHelp":"𝕱𝖎𝖑𝖑 𝖙𝖍𝖊 𝖜𝖎𝖉𝖙𝖍 𝖔𝖋 𝖙𝖍𝖊 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖈𝖔𝖓𝖙𝖆𝖎𝖓𝖊𝖗 (𝖚𝖘𝖚𝖆𝖑𝖑𝖞 𝖜𝖔𝖗𝖐𝖘 𝖇𝖊𝖘𝖙)","respOff":"𝕺𝖋𝖋","respOffHelp":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖋𝖎𝖙 𝖙𝖍𝖊 𝖘𝖎𝖟𝖊𝖘 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖇𝖊𝖑𝖔𝖜","width":"𝖂𝖎𝖉𝖙𝖍","widthAuto":"𝖂𝖎𝖑𝖑 𝖋𝖎𝖑𝖑 𝖙𝖍𝖊 𝖆𝖛𝖆𝖎𝖑𝖆𝖇𝖑𝖊 𝖘𝖕𝖆𝖈𝖊 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖘𝖊𝖙 𝖙𝖔 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖔𝖙𝖍𝖊𝖗𝖜𝖎𝖘𝖊 𝖉𝖊𝖋𝖆𝖚𝖑𝖙𝖘 𝖙𝖔 𝟕𝟎𝟎𝖕𝖝","widthFixed":"𝕾𝖊𝖙 𝖆 𝖒𝖆𝖝𝖎𝖒𝖚𝖒 𝖜𝖎𝖉𝖙𝖍 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖔𝖗 𝖘𝖊𝖙 𝖆 𝖋𝖎𝖝𝖊𝖉 𝖘𝖎𝖟𝖊 𝖎𝖋 𝖓𝖔𝖙 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊","height":"𝕳𝖊𝖎𝖌𝖍𝖙","heightAuto":"𝕿𝖍𝖊 𝖍𝖊𝖎𝖌𝖍𝖙 𝖎𝖘 𝖇𝖆𝖘𝖊𝖉 𝖔𝖓 𝖙𝖍𝖊 𝖘𝖎𝖟𝖊 𝖔𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙, 𝖜𝖎𝖙𝖍 𝖓𝖔 𝖒𝖆𝖝𝖎𝖒𝖚𝖒 𝖘𝖎𝖟𝖊. 𝕴𝖋 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖘𝖊𝖙 𝖙𝖔 𝖙𝖍𝖊 𝖍𝖊𝖎𝖌𝖍𝖙 𝖔𝖋 𝖙𝖍𝖊 𝖇𝖗𝖔𝖜𝖘𝖊𝖗 𝖜𝖎𝖓𝖉𝖔𝖜 𝖒𝖎𝖓𝖚𝖘 𝟏𝟎𝟎𝖕𝖝","heightFixed":"𝕾𝖊𝖙 𝖆 𝖒𝖆𝖝𝖎𝖒𝖚𝖒 𝖍𝖊𝖎𝖌𝖍𝖙 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊, 𝖔𝖗 𝖘𝖊𝖙 𝖆 𝖋𝖎𝖝𝖊𝖉 𝖘𝖎𝖟𝖊 𝖎𝖋 𝖓𝖔𝖙 𝖗𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊","sidebarBehavior":"𝕾𝖎𝖉𝖊𝖇𝖆𝖗 𝖇𝖊𝖍𝖆𝖛𝖎𝖔𝖗","sbResponsive":"𝕽𝖊𝖘𝖕𝖔𝖓𝖘𝖎𝖛𝖊 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","sbResponsiveHelp":"𝕾𝖍𝖔𝖜 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖆𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈𝖆𝖑𝖑𝖞 𝖔𝖓 𝖑𝖆𝖗𝖌𝖊 𝖘𝖈𝖗𝖊𝖊𝖓𝖘 𝖆𝖓𝖉 𝖍𝖎𝖉𝖊 𝖔𝖓 𝖒𝖔𝖇𝖎𝖑𝖊 𝖉𝖊𝖛𝖎𝖈𝖊𝖘. 𝕴𝖓 𝖊𝖒𝖇𝖊𝖉 𝖒𝖔𝖉𝖊, 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖍𝖎𝖉𝖉𝖊𝖓","hidden":"𝕳𝖎𝖉𝖉𝖊𝖓","visible":"𝖁𝖎𝖘𝖎𝖇𝖑𝖊","visibleDefault":"𝖁𝖎𝖘𝖎𝖇𝖑𝖊 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","sbHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖇𝖞 𝖉𝖊𝖋𝖆𝖚𝖑𝖙","sbVisibleHelp":"𝕾𝖍𝖔𝖜 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝖇𝖞 𝖉𝖊𝖋𝖆𝖚𝖑𝖙","titleBehavior":"𝕿𝖎𝖙𝖑𝖊 𝖇𝖊𝖍𝖆𝖛𝖎𝖔𝖗","tVisibleHelp":"𝕯𝖎𝖘𝖕𝖑𝖆𝖞 𝖙𝖍𝖊 𝖙𝖎𝖙𝖑𝖊 𝖆𝖓𝖉 𝖆𝖙𝖙𝖗𝖎𝖇𝖚𝖙𝖎𝖔𝖓 𝖎𝖓 𝖙𝖍𝖊 𝖍𝖊𝖆𝖉𝖊𝖗 𝖔𝖋 𝖙𝖍𝖊 𝖛𝖎𝖊𝖜𝖊𝖗","tHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖙𝖎𝖙𝖑𝖊 𝖎𝖓 𝖙𝖍𝖊 𝖍𝖊𝖆𝖉𝖊𝖗 𝖔𝖋 𝖙𝖍𝖊 𝖛𝖎𝖊𝖜𝖊𝖗 (𝖘𝖙𝖎𝖑𝖑 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖎𝖓 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗)","pdfLink":"𝕻𝕯𝕱 𝖑𝖎𝖓𝖐","plVisibleHelp":"𝕾𝖍𝖔𝖜 𝖆 𝖑𝖎𝖓𝖐 𝖙𝖔 𝖙𝖍𝖊 𝖗𝖆𝖜 𝕻𝕯𝕱 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖓 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗","plHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖘𝖎𝖉𝖊𝖇𝖆𝖗 𝕻𝕯𝕱 𝖑𝖎𝖓𝖐 (𝖋𝖎𝖑𝖊 𝖎𝖘 𝖘𝖙𝖎𝖑𝖑 𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊 𝖎𝖋 𝖙𝖍𝖊 𝖀𝕽𝕷 𝖎𝖘 𝖐𝖓𝖔𝖜𝖓)","fullscreenOption":"𝕱𝖚𝖑𝖑𝖘𝖈𝖗𝖊𝖊𝖓 𝖔𝖕𝖙𝖎𝖔𝖓","fsVisibleHelp":"𝕾𝖍𝖔𝖜 𝖆 𝖋𝖚𝖑𝖑𝖘𝖈𝖗𝖊𝖊𝖓 𝖎𝖈𝖔𝖓 𝖎𝖓 𝖙𝖍𝖊 𝖇𝖔𝖙𝖙𝖔𝖒-𝖗𝖎𝖌𝖍𝖙 𝖈𝖔𝖗𝖓𝖊𝖗","fsHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖍𝖊 𝖋𝖚𝖑𝖑𝖘𝖈𝖗𝖊𝖊𝖓 𝖔𝖕𝖙𝖎𝖔𝖓","textMode":"𝕿𝖊𝖝𝖙 𝖒𝖔𝖉𝖊","tmVisibleHelp":"𝕾𝖍𝖔𝖜 𝖆𝖓 𝖔𝖕𝖙𝖎𝖔𝖓 𝖙𝖔 𝖛𝖎𝖊𝖜 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙’𝖘 𝖙𝖊𝖝𝖙 𝖎𝖓 𝖙𝖍𝖊 𝖛𝖎𝖊𝖜 𝖉𝖗𝖔𝖕𝖉𝖔𝖜𝖓","tmHiddenHelp":"𝕳𝖎𝖉𝖊 𝖙𝖊𝖝𝖙 𝖒𝖔𝖉𝖊","contributedByFormat":"𝕮𝖔𝖓𝖙𝖗𝖎𝖇𝖚𝖙𝖊𝖉 𝖇𝖞 𝖋𝖔𝖗𝖒𝖆𝖙","cbfUserAndOrg":"𝖀𝖘𝖊𝖗 𝖆𝖓𝖉 𝖔𝖗𝖌 (𝖉𝖊𝖋𝖆𝖚𝖑𝖙)","cbfUserAndOrgHelp":"𝕾𝖍𝖔𝖜 𝖆 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙’𝖘 𝖆𝖙𝖙𝖗𝖎𝖇𝖚𝖙𝖎𝖔𝖓 𝖆𝖘 𝖙𝖍𝖊 𝖚𝖘𝖊𝖗 𝖓𝖆𝖒𝖊 𝖋𝖔𝖑𝖑𝖔𝖜𝖊𝖉 𝖇𝖞 𝖙𝖍𝖊 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","cbfOrgOnly":"𝕺𝖗𝖌 𝖔𝖓𝖑𝖞","cbfOrgOnlyHelp":"𝕬𝖙𝖙𝖗𝖎𝖇𝖚𝖙𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖏𝖚𝖘𝖙 𝖙𝖍𝖊 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","share":"𝕾𝖍𝖆𝖗𝖊 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊"},"dialogDocumentInformationDialog":{"editInformation":"𝕰𝖉𝖎𝖙 𝕴𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓 𝖋𝖔𝖗 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}"},"dialogRedactDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘","description":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖗𝖊𝖉𝖆𝖈𝖙 𝖙𝖍𝖊 𝖈𝖚𝖗𝖗𝖊𝖓𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙❓ 𝕴𝖋 𝖞𝖔𝖚 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊, 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖛𝖎𝖊𝖜𝖊𝖗 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖎𝖓𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊 𝖙𝖊𝖒𝖕𝖔𝖗𝖆𝖗𝖎𝖑𝖞 𝖜𝖍𝖎𝖑𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖊𝖘 𝖜𝖎𝖙𝖍 𝖙𝖍𝖊 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘 𝖎𝖓 𝖕𝖑𝖆𝖈𝖊. 𝕿𝖍𝖎𝖘 𝖈𝖍𝖆𝖓𝖌𝖊 𝖎𝖘 𝖎𝖗𝖗𝖊𝖛𝖊𝖗𝖘𝖎𝖇𝖑𝖊."},"dialogModifyDialog":{"title":"𝕬𝖕𝖕𝖑𝖞 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘","description":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖒𝖔𝖉𝖎𝖋𝖞 𝖙𝖍𝖊 𝖈𝖚𝖗𝖗𝖊𝖓𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙❓ 𝕴𝖋 𝖞𝖔𝖚 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊, 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖛𝖎𝖊𝖜𝖊𝖗 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖎𝖓𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊 𝖙𝖊𝖒𝖕𝖔𝖗𝖆𝖗𝖎𝖑𝖞 𝖜𝖍𝖎𝖑𝖊 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖊𝖘 𝖜𝖎𝖙𝖍 𝖙𝖍𝖊 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘. 𝕿𝖍𝖎𝖘 𝖈𝖍𝖆𝖓𝖌𝖊 𝖎𝖘 𝖎𝖗𝖗𝖊𝖛𝖊𝖗𝖘𝖎𝖇𝖑𝖊.","closeTitle":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖈𝖑𝖔𝖘𝖊","closeWarning":"𝖄𝖔𝖚 𝖜𝖎𝖑𝖑 𝖑𝖔𝖘𝖊 𝖆𝖑𝖑 𝖞𝖔𝖚𝖗 𝖚𝖓𝖆𝖕𝖕𝖑𝖎𝖊𝖉 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘. 𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖆𝖓𝖙 𝖙𝖔 𝖕𝖗𝖔𝖈𝖊𝖊𝖉❓"},"dialogDeleteNoteDialog":{"title":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖉𝖊𝖑𝖊𝖙𝖊","description":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖊 𝖈𝖚𝖗𝖗𝖊𝖓𝖙 𝖓𝖔𝖙𝖊❓"},"dialogEditSectionsDialog":{"confirmDelete":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖉𝖊𝖑𝖊𝖙𝖊","proceedingWillRemove":"𝕻𝖗𝖔𝖈𝖊𝖊𝖉𝖎𝖓𝖌 𝖜𝖎𝖑𝖑 𝖗𝖊𝖒𝖔𝖛𝖊 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 𝖘𝖊𝖈𝖙𝖎𝖔𝖓 (𝖕. {page} {title}). 𝕯𝖔 𝖞𝖔𝖚 𝖜𝖎𝖘𝖍 𝖙𝖔 𝖈𝖔𝖓𝖙𝖎𝖓𝖚𝖊❓","editSections":"𝕰𝖉𝖎𝖙 𝕾𝖊𝖈𝖙𝖎𝖔𝖓𝖘","manageSections":"𝕸𝖆𝖓𝖆𝖌𝖊 𝖘𝖊𝖈𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍 𝖆 𝖙𝖆𝖇𝖑𝖊 𝖔𝖋 𝖈𝖔𝖓𝖙𝖊𝖓𝖙𝖘.","pageAbbrevNo":"𝖕. {n}","pageAbbrev":"𝖕.","empty":"𝖄𝖔𝖚 𝖍𝖆𝖛𝖊 𝖓𝖔𝖙 𝖆𝖉𝖉𝖊𝖉 𝖆𝖓𝖞 𝖘𝖊𝖈𝖙𝖎𝖔𝖓𝖘","edit":"𝕰𝖉𝖎𝖙 𝖙𝖍𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖘𝖊𝖈𝖙𝖎𝖔𝖓","add":"𝕬𝖉𝖉 𝖆 𝖓𝖊𝖜 𝖘𝖊𝖈𝖙𝖎𝖔𝖓","title":"𝕿𝖎𝖙𝖑𝖊","missingTitle":"𝕻𝖑𝖊𝖆𝖘𝖊 𝖊𝖓𝖙𝖊𝖗 𝖆 𝖙𝖎𝖙𝖑𝖊","updateTitle":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖓𝖊𝖜 𝖙𝖎𝖙𝖑𝖊 𝖔𝖗 𝖕𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗","uniquePageNumber":"𝖄𝖔𝖚 𝖒𝖚𝖘𝖙 𝖊𝖓𝖙𝖊𝖗 𝖆 𝖚𝖓𝖎𝖖𝖚𝖊 𝖕𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗","invalidPageNumber":"𝕻𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗 𝖎𝖘 𝖎𝖓𝖛𝖆𝖑𝖎𝖉"},"dialogEmbedDialog":{"updatingDocument":"𝖀𝖕𝖉𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙...","makingPublic":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖇𝖊𝖎𝖓𝖌 𝖒𝖆𝖉𝖊 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕿𝖍𝖎𝖘 𝖒𝖆𝖞 𝖙𝖆𝖐𝖊 𝖆 𝖒𝖎𝖓𝖚𝖙𝖊 𝖔𝖗 𝖙𝖜𝖔.","wouldMakePublic":"𝖂𝖔𝖚𝖑𝖉 𝖞𝖔𝖚 𝖑𝖎𝖐𝖊 𝖙𝖔 𝖒𝖆𝖐𝖊 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖕𝖚𝖇𝖑𝖎𝖈 𝖇𝖊𝖋𝖔𝖗𝖊 𝖘𝖍𝖆𝖗𝖎𝖓𝖌❓","notPublic":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖓𝖔𝖙 𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕴𝖋 𝖞𝖔𝖚 𝖊𝖒𝖇𝖊𝖉 𝖔𝖗 𝖑𝖎𝖓𝖐 𝖎𝖙, 𝖔𝖓𝖑𝖞 𝖞𝖔𝖚 𝖆𝖓𝖉 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖆𝖇𝖑𝖊 𝖙𝖔 𝖛𝖎𝖊𝖜 𝖎𝖙 𝖚𝖓𝖙𝖎𝖑 𝖎𝖙 𝖎𝖘 𝖒𝖆𝖉𝖊 𝖕𝖚𝖇𝖑𝖎𝖈. 𝕮𝖑𝖎𝖈𝖐 𝖇𝖊𝖑𝖔𝖜 𝖜𝖍𝖊𝖓 𝖞𝖔𝖚’𝖗𝖊 𝖗𝖊𝖆𝖉𝖞 𝖙𝖔 𝖕𝖚𝖇𝖑𝖎𝖘𝖍 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈.","makePublic":"𝕸𝖆𝖐𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖕𝖚𝖇𝖑𝖎𝖈","leave":"𝕷𝖊𝖆𝖛𝖊 𝖆𝖘 𝖎𝖘","selectShare":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖘𝖍𝖆𝖗𝖊 𝖔𝖕𝖙𝖎𝖔𝖓","selectShareHelp":"𝕮𝖍𝖔𝖔𝖘𝖊 𝖜𝖍𝖊𝖙𝖍𝖊𝖗 𝖙𝖔 𝖘𝖍𝖆𝖗𝖊 𝖙𝖍𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖔𝖗 𝖏𝖚𝖘𝖙 𝖆 𝖕𝖆𝖌𝖊 𝖔𝖗 𝖓𝖔𝖙𝖊.","shareDoc":"𝕾𝖍𝖆𝖗𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","shareDocHelp":"𝕷𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙. (𝕿𝖍𝖎𝖘 𝖎𝖘 𝖙𝖍𝖊 𝖒𝖔𝖘𝖙 𝖈𝖔𝖒𝖒𝖔𝖓𝖑𝖞 𝖚𝖘𝖊𝖉 𝖘𝖍𝖆𝖗𝖊 𝖔𝖕𝖙𝖎𝖔𝖓.)","sharePage":"𝕾𝖍𝖆𝖗𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖈 𝖕𝖆𝖌𝖊","sharePageHelp":"𝕷𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖆 𝖘𝖎𝖓𝖌𝖑𝖊 𝖕𝖆𝖌𝖊 𝖔𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙. 𝖀𝖘𝖊𝖋𝖚𝖑 𝖋𝖔𝖗 𝖍𝖎𝖌𝖍𝖑𝖎𝖌𝖍𝖙𝖎𝖓𝖌 𝖆 𝖕𝖆𝖌𝖊 𝖊𝖝𝖈𝖊𝖗𝖕𝖙.","shareNote":"𝕾𝖍𝖆𝖗𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖈 𝖓𝖔𝖙𝖊","shareNoteHelpHasNote":"𝕷𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖆 𝖓𝖔𝖙𝖊 𝖜𝖎𝖙𝖍𝖎𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙. 𝖀𝖘𝖊𝖋𝖚𝖑 𝖋𝖔𝖗 𝖍𝖎𝖌𝖍𝖑𝖎𝖌𝖍𝖙𝖎𝖓𝖌 𝖆 𝖗𝖊𝖌𝖎𝖔𝖓 𝖔𝖋 𝖆 𝖕𝖆𝖌𝖊.","shareNoteHelpNoNote":"𝕺𝖓𝖈𝖊 𝖞𝖔𝖚 𝖆𝖉𝖉 𝖓𝖔𝖙𝖊𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙, 𝖚𝖘𝖊 𝖙𝖍𝖎𝖘 𝖋𝖊𝖆𝖙𝖚𝖗𝖊 𝖙𝖔 𝖑𝖎𝖓𝖐 𝖔𝖗 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖊𝖒."},"dialogErrorDialog":{"errorOccurred":"𝕬𝖓 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉","unexpectedErrorOccurred":"𝕬𝖓 𝖚𝖓𝖊𝖝𝖕𝖊𝖈𝖙𝖊𝖉 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉","tryAgain":"𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖑𝖆𝖙𝖊𝖗.","close":"𝕮𝖑𝖔𝖘𝖊","refresh":"𝕽𝖊𝖋𝖗𝖊𝖘𝖍"},"dialogNoteEmbedDialog":{"embedNote":"𝕰𝖒𝖇𝖊𝖉 𝖆 𝖓𝖔𝖙𝖊 𝖔𝖋 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖓𝖔𝖙𝖊 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖔𝖗 𝖕𝖔𝖘𝖙:"},"dialogPageEmbedDialog":{"embedPage":"𝕰𝖒𝖇𝖊𝖉 𝖆 𝖕𝖆𝖌𝖊 𝖔𝖋 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖕𝖆𝖌𝖊 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖔𝖗 𝖕𝖔𝖘𝖙:","selectPage":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉:","page":"𝕻𝖆𝖌𝖊 {n} (𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊)","otherPage":"𝕺𝖙𝖍𝖊𝖗 𝖕𝖆𝖌𝖊","enterPageNumber":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊 𝖓𝖚𝖒𝖇𝖊𝖗 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖆𝖈𝖈𝖊𝖘𝖘 𝖋𝖔𝖗 {name}","selectAccess":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖆𝖓 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 {name} 𝖎𝖓 {title}","adminAccess":"𝕬𝖉𝖒𝖎𝖓 𝕬𝖈𝖈𝖊𝖘𝖘","editAccess":"𝕰𝖉𝖎𝖙 𝕬𝖈𝖈𝖊𝖘𝖘","viewAccess":"𝖁𝖎𝖊𝖜 𝕬𝖈𝖈𝖊𝖘𝖘","adminHelp":"𝕿𝖍𝖎𝖘 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖆𝖓𝖉 𝖎𝖙𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘. 𝕿𝖍𝖊 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖎𝖓𝖛𝖎𝖙𝖊 𝖚𝖘𝖊𝖗𝖘, 𝖉𝖊𝖑𝖊𝖙𝖊 𝖚𝖘𝖊𝖗𝖘, 𝖆𝖓𝖉 𝖗𝖊𝖒𝖔𝖛𝖊 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙.","editHelp":"𝕿𝖍𝖎𝖘 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖊𝖉𝖎𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖇𝖚𝖙 𝖈𝖆𝖓𝖓𝖔𝖙 𝖊𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖎𝖙𝖘𝖊𝖑𝖋.","viewHelp":"𝕿𝖍𝖎𝖘 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗 𝖈𝖆𝖓 𝖛𝖎𝖊𝖜 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖎𝖓 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖇𝖚𝖙 𝖈𝖆𝖓𝖓𝖔𝖙 𝖊𝖉𝖎𝖙 𝖙𝖍𝖊𝖒 𝖔𝖗 𝖙𝖍𝖊 𝖕𝖗𝖔𝖏𝖊𝖈𝖙.","invalidAccess":"𝕬𝖈𝖈𝖊𝖘𝖘 𝖎𝖘 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖘𝖊𝖙 𝖙𝖔 {access}. 𝕾𝖊𝖑𝖊𝖈𝖙 𝖆 𝖉𝖎𝖋𝖋𝖊𝖗𝖊𝖓𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖑𝖊𝖛𝖊𝖑.","changeAccess":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖆𝖈𝖈𝖊𝖘𝖘"},"dialogOwnerDialog":{"selectUser":"𝖀𝖘𝖊𝖗 𝖒𝖚𝖘𝖙 𝖇𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉","selectOrg":"𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖒𝖚𝖘𝖙 𝖇𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉","changeOwner":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖔𝖜𝖓𝖊𝖗 𝖋𝖔𝖗 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","accessWarning":"𝖂𝖆𝖗𝖓𝖎𝖓𝖌: 𝖄𝖔𝖚 𝖒𝖆𝖞 𝖑𝖔𝖘𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖊 𝖘𝖕𝖊𝖈𝖎𝖋𝖎𝖊𝖉 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}} 𝖆𝖘 𝖆 𝖗𝖊𝖘𝖚𝖑𝖙 𝖔𝖋 𝖈𝖍𝖆𝖓𝖌𝖎𝖓𝖌 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖔𝖜𝖓𝖊𝖗","user":"𝖀𝖘𝖊𝖗:","filterUsers":"𝕿𝖞𝖕𝖊 𝖙𝖔 𝖋𝖎𝖑𝖙𝖊𝖗 𝖚𝖘𝖊𝖗𝖘...","filterOrgs":"𝕿𝖞𝖕𝖊 𝖙𝖔 𝖋𝖎𝖑𝖙𝖊𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓𝖘..."},"dialogProjectDialog":{"confirmDelete":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝖉𝖊𝖑𝖊𝖙𝖊","deleteProject":"𝕬𝖗𝖊 𝖞𝖔𝖚 𝖘𝖚𝖗𝖊 𝖞𝖔𝖚 𝖜𝖆𝖓𝖙 𝖙𝖔 𝖉𝖊𝖑𝖊𝖙𝖊 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 ({project})❓","editProject":"𝕰𝖉𝖎𝖙 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","createProject":"𝕮𝖗𝖊𝖆𝖙𝖊 𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","title":"𝕿𝖎𝖙𝖑𝖊...","projectDesc":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙 𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 (𝖔𝖕𝖙𝖎𝖔𝖓𝖆𝖑)","manageCollabs":"𝕸𝖆𝖓𝖆𝖌𝖊 𝕮𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖔𝖗𝖘","share":"𝕾𝖍𝖆𝖗𝖊 / 𝕰𝖒𝖇𝖊𝖉 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","enterTitle":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖙𝖎𝖙𝖑𝖊","changeTitle":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖙𝖍𝖊 𝖙𝖎𝖙𝖑𝖊 𝖔𝖗 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓"},"dialogProjectEmbedDialog":{"share":"𝕾𝖍𝖆𝖗𝖊 “{title}”","embedDesc":"𝕮𝖔𝖕𝖞 𝖙𝖍𝖊 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊 𝖙𝖔 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍𝖎𝖓 𝖆𝖓 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖔𝖗 𝖕𝖔𝖘𝖙:","invalid":"𝕴𝖓𝖛𝖆𝖑𝖎𝖉 𝖕𝖗𝖔𝖏𝖊𝖈𝖙","cannotEmbed":"𝕮𝖆𝖓𝖓𝖔𝖙 𝖊𝖒𝖇𝖊𝖉 𝖙𝖍𝖎𝖘 𝖕𝖗𝖔𝖏𝖊𝖈𝖙, 𝖆𝖘 𝖎𝖙 𝖉𝖔𝖊𝖘 𝖓𝖔𝖙 𝖆𝖕𝖕𝖊𝖆𝖗 𝖙𝖔 𝖊𝖝𝖎𝖘𝖙."},"htmlEditor":{"preview":"𝕻𝖗𝖊𝖛𝖎𝖊𝖜:"},"image":{"error":"𝕬𝖓 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉. 𝕿𝖗𝖞 𝖗𝖊𝖋𝖗𝖊𝖘𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊"},"omniselect":{"filter":"𝕿𝖞𝖕𝖊 𝖙𝖔 𝖋𝖎𝖑𝖙𝖊𝖗 𝖑𝖆𝖓𝖌𝖚𝖆𝖌𝖊","noResults":"𝕹𝖔 𝖗𝖊𝖘𝖚𝖑𝖙𝖘. 𝕮𝖑𝖎𝖈𝖐 𝖙𝖔 𝖈𝖑𝖊𝖆𝖗 𝖋𝖎𝖑𝖙𝖊𝖗."},"shareOptions":{"errorText":"𝕬𝖓 𝖚𝖓𝖊𝖝𝖕𝖊𝖈𝖙𝖊𝖉 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉. 𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖑𝖆𝖙𝖊𝖗.","copyHtml":"𝕮𝖔𝖕𝖞 𝕳𝕿𝕸𝕷 𝖈𝖔𝖉𝖊","addShortcode":"𝕬𝖉𝖉 𝖙𝖍𝖎𝖘 𝖘𝖍𝖔𝖗𝖙𝖈𝖔𝖉𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖂𝖔𝖗𝖉𝕻𝖗𝖊𝖘𝖘 𝖈𝖔𝖓𝖙𝖊𝖓𝖙 —","pluginRequired":"𝖕𝖑𝖚𝖌𝖎𝖓 𝖗𝖊𝖖𝖚𝖎𝖗𝖊𝖉","copyShortcode":"𝕮𝖔𝖕𝖞 𝖘𝖍𝖔𝖗𝖙𝖈𝖔𝖉𝖊","copyUrl":"𝕮𝖔𝖕𝖞 𝖀𝕽𝕷"},"specialMessage":{"contactUs":"𝕮𝖔𝖓𝖙𝖆𝖈𝖙 𝖚𝖘 𝖜𝖎𝖙𝖍 𝖇𝖚𝖌 𝖗𝖊𝖕𝖔𝖗𝖙𝖘, 𝖖𝖚𝖊𝖘𝖙𝖎𝖔𝖓𝖘, 𝖆𝖓𝖉 𝖘𝖚𝖌𝖌𝖊𝖘𝖙𝖎𝖔𝖓𝖘."},"uploadOptions":{"documentLang":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖑𝖆𝖓𝖌𝖚𝖆𝖌𝖊:","forceOcr":"𝕱𝖔𝖗𝖈𝖊 𝕺𝕮𝕽:"},"actionBar":{"selectDocs":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖘𝖔𝖒𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖙𝖔 𝖗𝖊𝖛𝖊𝖆𝖑 𝖊𝖉𝖎𝖙 𝖆𝖈𝖙𝖎𝖔𝖓𝖘","noPerms":"𝖄𝖔𝖚 𝖉𝖔 𝖓𝖔𝖙 𝖍𝖆𝖛𝖊 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 𝖙𝖔 𝖊𝖉𝖎𝖙 𝖆𝖑𝖑 𝖔𝖋 𝖙𝖍𝖊 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","editMenu":"𝕰𝖉𝖎𝖙","projectsMenu":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙𝖘"},"authSection":{"help":"𝕳𝖊𝖑𝖕","language":"𝕷𝖆𝖓𝖌𝖚𝖆𝖌𝖊","tips":"𝕿𝖎𝖕𝖘 𝖆𝖓𝖉 𝕿𝖗𝖎𝖈𝖐𝖘","searchDocs":"𝕾𝖊𝖆𝖗𝖈𝖍 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖆𝖙𝖎𝖔𝖓","apiDocs":"𝕬𝕻𝕴 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖆𝖙𝖎𝖔𝖓","emailUs":"𝕰𝖒𝖆𝖎𝖑 𝖀𝖘","acctSettings":"𝕬𝖈𝖈𝖔𝖚𝖓𝖙 𝕾𝖊𝖙𝖙𝖎𝖓𝖌𝖘","signOut":"𝕾𝖎𝖌𝖓 𝖔𝖚𝖙","changeOrg":"𝕮𝖍𝖆𝖓𝖌𝖊 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","personalAcct":"𝕻𝖊𝖗𝖘𝖔𝖓𝖆𝖑 𝕬𝖈𝖈𝖔𝖚𝖓𝖙","signIn":"𝕾𝖎𝖌𝖓 𝖎𝖓"},"documents":{"yourDocuments":"𝖄𝖔𝖚𝖗 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","searchResults":"𝕾𝖊𝖆𝖗𝖈𝖍 𝕽𝖊𝖘𝖚𝖑𝖙𝖘","accessDocuments":"𝖄𝖔𝖚𝖗 {access}𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","nameDocuments":"{name}\'𝖘 {access}𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","allDocuments":"𝕬𝖑𝖑 {access}𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","mustBeVerified":"𝖄𝖔𝖚 𝖒𝖚𝖘𝖙 𝖇𝖊 𝖆 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖏𝖔𝖚𝖗𝖓𝖆𝖑𝖎𝖘𝖙 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","upload":"𝖀𝖕𝖑𝖔𝖆𝖉","dropFile":"𝕯𝖗𝖔𝖕 𝖋𝖎𝖑𝖊 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉"},"document":{"open":"𝕺𝖕𝖊𝖓","updating":"𝖀𝖕𝖉𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙...","processing":"𝕻𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","processingError":"𝕬𝖓 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉 𝖙𝖗𝖞𝖎𝖓𝖌 𝖙𝖔 𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","remove":"𝕽𝖊𝖒𝖔𝖛𝖊","improper":"𝖄𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖆𝖘 𝖚𝖕𝖑𝖔𝖆𝖉𝖊𝖉 𝖎𝖒𝖕𝖗𝖔𝖕𝖊𝖗𝖑𝖞","project":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙","totalMatchingPages":"{n} 𝖔𝖋 {m} 𝖕𝖆𝖌𝖊𝖘 𝖒𝖆𝖙𝖈𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖖𝖚𝖊𝖗𝖞","showAll":"𝕾𝖍𝖔𝖜 𝖆𝖑𝖑","matchingPages":"{n} 𝖕𝖆𝖌𝖊𝖘 𝖒𝖆𝖙𝖈𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖖𝖚𝖊𝖗𝖞","pageAbbrev":"𝖕.","pageCount":"{n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}","source":"𝕾𝖔𝖚𝖗𝖈𝖊"},"documentThumbnail":{"pages":"𝖕𝖆𝖌𝖊𝖘","loading":"𝕷𝖔𝖆𝖉𝖎𝖓𝖌 𝖕𝖗𝖔𝖌𝖗𝖊𝖘𝖘 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓..."},"mainContainer":{"error":"𝕰𝖗𝖗𝖔𝖗","errorMsg":"𝖂𝖊 𝖈𝖔𝖚𝖑𝖉 𝖓𝖔𝖙 𝖗𝖊𝖆𝖈𝖍 𝖙𝖍𝖊 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖘𝖊𝖗𝖛𝖊𝖗. 𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖗𝖊𝖋𝖗𝖊𝖘𝖍𝖎𝖓𝖌 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊 𝖑𝖆𝖙𝖊𝖗.","refresh":"𝕽𝖊𝖋𝖗𝖊𝖘𝖍"},"editMenu":{"editDocInfo":"𝕰𝖉𝖎𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕴𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓","changeAccess":"𝕮𝖍𝖆𝖓𝖌𝖊 𝕬𝖈𝖈𝖊𝖘𝖘","editDocData":"𝕰𝖉𝖎𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕯𝖆𝖙𝖆","cancelProcessing":"𝕮𝖆𝖓𝖈𝖊𝖑 𝕻𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","forceReprocess":"𝕱𝖔𝖗𝖈𝖊 𝕽𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘","entities":"𝕰𝖓𝖙𝖎𝖙𝖎𝖊𝖘 𝕭𝕰𝕿𝕬","changeOwner":"𝕮𝖍𝖆𝖓𝖌𝖊 𝕺𝖜𝖓𝖊𝖗","delete":"𝕯𝖊𝖑𝖊𝖙𝖊","diagnosticInfo":"𝕯𝖎𝖆𝖌𝖓𝖔𝖘𝖙𝖎𝖈 𝕴𝖓𝖋𝖔"},"metaFields":{"defaultFieldInvalidText":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖍𝖆𝖘 𝖙𝖍𝖎𝖘 {fieldName}","titleFieldTitle":"𝕿𝖎𝖙𝖑𝖊","titleFieldName":"𝖓𝖆𝖒𝖊","titleFieldNameUppercase":"𝕹𝖆𝖒𝖊","titleFieldHeader":"𝕽𝖊𝖓𝖆𝖒𝖊 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","titleFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖓𝖆𝖒𝖊 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","titleFieldButton":"𝕽𝖊𝖓𝖆𝖒𝖊","titleFieldInvalidSameName":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖍𝖆𝖘 𝖙𝖍𝖎𝖘 𝖓𝖆𝖒𝖊","titleFieldInvalidEmptyName":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖛𝖆𝖑𝖎𝖉 𝖓𝖆𝖒𝖊","sourceFieldTitle":"𝕾𝖔𝖚𝖗𝖈𝖊","sourceFieldName":"𝖘𝖔𝖚𝖗𝖈𝖊","sourceFieldNameUppercase":"𝕾𝖔𝖚𝖗𝖈𝖊","sourceFieldHeader":"𝕰𝖉𝖎𝖙 𝖘𝖔𝖚𝖗𝖈𝖊 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","sourceFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖘𝖔𝖚𝖗𝖈𝖊 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","sourceFieldButton":"𝕰𝖉𝖎𝖙","descriptionFieldTitle":"𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓","descriptionFieldName":"𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓","descriptionFieldNameUppercase":"𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓","descriptionFieldHeader":"𝕰𝖉𝖎𝖙 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","descriptionFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","descriptionFieldButton":"𝕰𝖉𝖎𝖙","relatedArticleFieldTitle":"𝕽𝖊𝖑𝖆𝖙𝖊𝖉 𝕬𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷","relatedArticleFieldName":"𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷","relatedArticleFieldNameUppercase":"𝕽𝖊𝖑𝖆𝖙𝖊𝖉 𝕬𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷","relatedArticleFieldHeader":"𝕰𝖉𝖎𝖙 𝖙𝖍𝖊 𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","relatedArticleFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖆𝖗𝖙𝖎𝖈𝖑𝖊 𝖀𝕽𝕷 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","relatedArticleFieldButton":"𝕰𝖉𝖎𝖙","publishedUrlFieldTitle":"𝕻𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷","publishedUrlFieldName":"𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷","publishedUrlFieldNameUppercase":"𝕻𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷","publishedUrlFieldHeader":"𝕰𝖉𝖎𝖙 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷 𝖋𝖔𝖗 {n, plural, one {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","publishedUrlFieldDescription":"𝕰𝖓𝖙𝖊𝖗 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖊𝖉 𝖀𝕽𝕷 𝖇𝖊𝖑𝖔𝖜 𝖋𝖔𝖗 𝖙𝖍𝖊 {n, plural, one {𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖘𝖊𝖑𝖊𝖈𝖙𝖊𝖉 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}","publishedUrlFieldButton":"𝕰𝖉𝖎𝖙"},"projectsMenu":{"newProject":"+ 𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","projMembership":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙 𝕸𝖊𝖒𝖇𝖊𝖗𝖘𝖍𝖎𝖕","selectDocs":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖙𝖔 𝖕𝖑𝖆𝖈𝖊 𝖙𝖍𝖊𝖒 𝖎𝖓 𝖕𝖗𝖔𝖏𝖊𝖈𝖙𝖘","createProj":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖆 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖙𝖔 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖆𝖓𝖉 𝖘𝖍𝖆𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘"},"noDocuments":{"noSearchResults":"𝕹𝖔 𝖘𝖊𝖆𝖗𝖈𝖍 𝖗𝖊𝖘𝖚𝖑𝖙𝖘","queryNoResults":"𝖄𝖔𝖚𝖗 𝖘𝖊𝖆𝖗𝖈𝖍 𝖖𝖚𝖊𝖗𝖞 𝖗𝖊𝖙𝖚𝖗𝖓𝖊𝖉 𝖓𝖔 𝖗𝖊𝖘𝖚𝖑𝖙𝖘. 𝕿𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖜𝖎𝖙𝖍 𝖆 𝖇𝖗𝖔𝖆𝖉𝖊𝖗 𝖘𝖊𝖆𝖗𝖈𝖍 𝖖𝖚𝖊𝖗𝖞.","welcome":"𝖂𝖊𝖑𝖈𝖔𝖒𝖊 𝖙𝖔 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉❗","verify1":"𝕹𝖔𝖙𝖊 𝖙𝖍𝖆𝖙 𝖈𝖚𝖗𝖗𝖊𝖓𝖙𝖑𝖞 𝖞𝖔𝖚𝖗 𝖆𝖈𝖈𝖔𝖚𝖓𝖙 𝖎𝖘 𝖓𝖔𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖘𝖊𝖆𝖗𝖈𝖍 𝖙𝖍𝖗𝖔𝖚𝖌𝖍 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈 𝖗𝖊𝖕𝖔𝖘𝖎𝖙𝖔𝖗𝖞, 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖞𝖔𝖚\'𝖗𝖊 𝖎𝖓𝖙𝖊𝖗𝖊𝖘𝖙𝖊𝖉 𝖎𝖓 𝖎𝖓𝖙𝖔 𝖕𝖗𝖔𝖏𝖊𝖈𝖙𝖘, 𝖑𝖊𝖆𝖛𝖊 𝖕𝖗𝖎𝖛𝖆𝖙𝖊 𝖓𝖔𝖙𝖊𝖘, 𝖆𝖓𝖉 𝖈𝖔𝖑𝖑𝖆𝖇𝖔𝖗𝖆𝖙𝖊 𝖔𝖓 𝖊𝖉𝖎𝖙𝖎𝖓𝖌 𝖆𝖓𝖉 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖔𝖙𝖍𝖊𝖗 𝖚𝖘𝖊𝖗𝖘 𝖎𝖓𝖛𝖎𝖙𝖊 𝖞𝖔𝖚 𝖙𝖔.","verify2":"𝕴𝖋 𝖞𝖔𝖚’𝖉 𝖑𝖎𝖐𝖊 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉 𝖔𝖗 𝖕𝖚𝖇𝖑𝖎𝖘𝖍 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖆𝖓𝖉 𝖞𝖔𝖚\'𝖗𝖊 𝖆 𝖜𝖔𝖗𝖐𝖎𝖓𝖌 𝖏𝖔𝖚𝖗𝖓𝖆𝖑𝖎𝖘𝖙 𝖔𝖗 𝖔𝖙𝖍𝖊𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖎𝖓𝖙𝖊𝖗𝖊𝖘𝖙𝖊𝖉 𝖎𝖓 𝖕𝖚𝖇𝖑𝖎𝖘𝖍𝖎𝖓𝖌 𝖕𝖗𝖎𝖒𝖆𝖗𝖞 𝖘𝖔𝖚𝖗𝖈𝖊 𝖒𝖆𝖙𝖊𝖗𝖎𝖆𝖑𝖘 𝖎𝖓 𝖙𝖍𝖊 𝖕𝖚𝖇𝖑𝖎𝖈 𝖎𝖓𝖙𝖊𝖗𝖊𝖘𝖙, 𝖞𝖔𝖚\'𝖑𝖑 𝖓𝖊𝖊𝖉 𝖙𝖔 𝖍𝖆𝖛𝖊 𝖞𝖔𝖚𝖗 𝖆𝖈𝖈𝖔𝖚𝖓𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖔𝖗 𝖆𝖉𝖉𝖊𝖉 𝖙𝖔 𝖆 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓. 𝕿𝖍𝖎𝖘 𝖎𝖘 𝖆 𝖘𝖎𝖒𝖕𝖑𝖊 𝖕𝖗𝖔𝖈𝖊𝖘𝖘:","verify3":"𝕱𝖎𝖗𝖘𝖙, 𝖘𝖊𝖊 𝖎𝖋 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖆𝖑𝖗𝖊𝖆𝖉𝖞 𝖊𝖝𝖎𝖘𝖙𝖘 𝖆𝖓𝖉, 𝖎𝖋 𝖞𝖔𝖚 𝖋𝖎𝖓𝖉 𝖎𝖙, 𝖈𝖑𝖎𝖈𝖐 \\"𝕽𝖊𝖖𝖚𝖊𝖘𝖙 𝖙𝖔 𝕵𝖔𝖎𝖓\\" 𝖔𝖓 𝖎𝖙𝖘 𝖕𝖆𝖌𝖊.","verify4":"𝕴𝖋 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓 𝖍𝖆𝖘 𝖓𝖔𝖙 𝖇𝖊𝖊𝖓 𝖛𝖊𝖗𝖎𝖋𝖎𝖊𝖉 𝖞𝖊𝖙, 𝖔𝖗 𝖎𝖋 𝖞𝖔𝖚\'𝖗𝖊 𝖆 𝖋𝖗𝖊𝖊𝖑𝖆𝖓𝖈𝖊𝖗, 𝖗𝖊𝖖𝖚𝖊𝖘𝖙 𝖛𝖊𝖗𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓 𝖍𝖊𝖗𝖊. 𝕽𝖊𝖖𝖚𝖊𝖘𝖙𝖘 𝖚𝖘𝖚𝖆𝖑𝖑𝖞 𝖙𝖆𝖐𝖊 𝖙𝖜𝖔 𝖇𝖚𝖘𝖎𝖓𝖊𝖘𝖘 𝖉𝖆𝖞𝖘 𝖙𝖔 𝖕𝖗𝖔𝖈𝖊𝖘𝖘.","uploadFirst":"𝖀𝖕𝖑𝖔𝖆𝖉 𝖞𝖔𝖚𝖗 𝖋𝖎𝖗𝖘𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","upload1":"𝖀𝖕𝖑𝖔𝖆𝖉 𝖆 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖋𝖎𝖑𝖊 𝖙𝖔 𝖌𝖊𝖙 𝖘𝖙𝖆𝖗𝖙𝖊𝖉 𝖚𝖘𝖎𝖓𝖌 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉. 𝖄𝖔𝖚 𝖈𝖆𝖓 𝖉𝖗𝖆𝖌 𝖙𝖍𝖊 𝖋𝖎𝖑𝖊 𝖎𝖓𝖙𝖔 𝖙𝖍𝖎𝖘 𝖜𝖎𝖓𝖉𝖔𝖜, 𝖔𝖗 𝖈𝖑𝖎𝖈𝖐 𝖔𝖓 𝖙𝖍𝖊 𝖇𝖑𝖚𝖊 “𝖀𝖕𝖑𝖔𝖆𝖉” 𝖇𝖚𝖙𝖙𝖔𝖓 𝖆𝖇𝖔𝖛𝖊.","upload2":"𝕺𝖓𝖈𝖊 𝖞𝖔𝖚 𝖚𝖕𝖑𝖔𝖆𝖉 𝖆 𝖋𝖎𝖑𝖊, 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖜𝖎𝖑𝖑 𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖆𝖓𝖉 𝖊𝖝𝖙𝖗𝖆𝖈𝖙 𝖎𝖙𝖘 𝖈𝖔𝖓𝖙𝖊𝖓𝖙𝖘. 𝕴𝖙 𝖒𝖆𝖞 𝖙𝖆𝖐𝖊 𝖆 𝖋𝖊𝖜 𝖒𝖎𝖓𝖚𝖙𝖊𝖘 𝖋𝖔𝖗 𝖙𝖍𝖎𝖘 𝖙𝖔 𝖈𝖔𝖒𝖕𝖑𝖊𝖙𝖊, 𝖇𝖚𝖙 𝖔𝖓𝖈𝖊 𝖎𝖙’𝖘 𝖉𝖔𝖓𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖔𝖕𝖙𝖎𝖒𝖎𝖟𝖊𝖉 𝖋𝖔𝖗 𝖆𝖓𝖆𝖑𝖞𝖘𝖎𝖘 𝖆𝖓𝖉 𝖘𝖍𝖆𝖗𝖎𝖓𝖌 𝖔𝖓 𝖙𝖍𝖊 𝖜𝖊𝖇."},"paginator":{"of":"𝖔𝖋","document":"{n, plural, one {𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}"},"processingBar":{"doneProcessing":"𝕯𝖔𝖓𝖊 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","processingDocuments":"𝕻𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 {n, plural, one {𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙} other {# 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘}}"},"searchBar":{"tips":"𝕾𝖊𝖆𝖗𝖈𝖍 𝖙𝖎𝖕𝖘: 𝖆𝖉𝖉 𝖋𝖎𝖑𝖙𝖊𝖗𝖘 𝖇𝖞 𝖙𝖞𝖕𝖎𝖓𝖌 𝖚𝖘𝖊𝖗:, 𝖕𝖗𝖔𝖏𝖊𝖈𝖙:, 𝖔𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓:, 𝖊𝖙𝖈. 𝖀𝖘𝖊 𝖘𝖔𝖗𝖙: 𝖙𝖔 𝖔𝖗𝖉𝖊𝖗 𝖗𝖊𝖘𝖚𝖑𝖙𝖘.","learnMore":"𝕷𝖊𝖆𝖗𝖓 𝖒𝖔𝖗𝖊","search":"𝕾𝖊𝖆𝖗𝖈𝖍"},"searchLink":{"search":"𝕾𝖊𝖆𝖗𝖈𝖍 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖈𝖔𝖑𝖑𝖊𝖈𝖙𝖎𝖔𝖓"},"projects":{"header":"𝕻𝖗𝖔𝖏𝖊𝖈𝖙𝖘","allDocuments":"𝕬𝖑𝖑 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","yourDocuments":"𝖄𝖔𝖚𝖗 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","yourPubDocuments":"𝖄𝖔𝖚𝖗 𝕻𝖚𝖇𝖑𝖎𝖈 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","orgDocuments":"{name}’𝖘 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘","newProject":"+ 𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙","createProject":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖞𝖔𝖚𝖗 𝖋𝖎𝖗𝖘𝖙 𝖕𝖗𝖔𝖏𝖊𝖈𝖙 𝖇𝖞 𝖈𝖑𝖎𝖈𝖐𝖎𝖓𝖌 “𝕹𝖊𝖜 𝕻𝖗𝖔𝖏𝖊𝖈𝖙” 𝖆𝖇𝖔𝖛𝖊."},"uploadDialog":{"docUpload":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖀𝖕𝖑𝖔𝖆𝖉","docUploadProj":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖀𝖕𝖑𝖔𝖆𝖉 𝖙𝖔 {title}","beginUpload":"𝕭𝖊𝖌𝖎𝖓 𝖚𝖕𝖑𝖔𝖆𝖉","pdfSizeWarning":"𝖄𝖔𝖚 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖚𝖕𝖑𝖔𝖆𝖉 𝕻𝕯𝕱 𝖋𝖎𝖑𝖊𝖘 𝖚𝖓𝖉𝖊𝖗 {size}.","nonPdfSizeWarning":"𝖄𝖔𝖚 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖚𝖕𝖑𝖔𝖆𝖉 𝖓𝖔𝖓-𝕻𝕯𝕱 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖋𝖎𝖑𝖊𝖘 𝖚𝖓𝖉𝖊𝖗 {size}.","fileReady":"{n, plural, one {𝖋𝖎𝖑𝖊} other {𝖋𝖎𝖑𝖊𝖘}} 𝖗𝖊𝖆𝖉𝖞 𝖙𝖔 𝖚𝖕𝖑𝖔𝖆𝖉","fileLimitWarning":"𝖄𝖔𝖚 𝖈𝖆𝖓 𝖔𝖓𝖑𝖞 𝖚𝖕𝖑𝖔𝖆𝖉 {limit} 𝖋𝖎𝖑𝖊𝖘 𝖆𝖙 𝖔𝖓𝖈𝖊.","moreOptions":"𝕸𝖔𝖗𝖊 𝖔𝖕𝖙𝖎𝖔𝖓𝖘","selectFiles":"+ 𝕾𝖊𝖑𝖊𝖈𝖙 𝖋𝖎𝖑𝖊𝖘","dragDrop":"𝕯𝖗𝖆𝖌 𝖆𝖓𝖉 𝖉𝖗𝖔𝖕 𝖋𝖎𝖑𝖊𝖘 𝖍𝖊𝖗𝖊","publicMsg":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖕𝖚𝖇𝖑𝖎𝖈𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊.","collabMsg":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚𝖗 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓.","privateMsg":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚 𝖆𝖑𝖔𝖓𝖊.","collabName":"𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","submitting":"𝕬𝖑𝖒𝖔𝖘𝖙 𝖉𝖔𝖓𝖊... 𝖘𝖚𝖇𝖒𝖎𝖙𝖙𝖎𝖓𝖌 𝖚𝖕𝖑𝖔𝖆𝖉𝖊𝖉 𝖋𝖎𝖑𝖊𝖘 𝖋𝖔𝖗 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 ({percent})","uploading":"𝖀𝖕𝖑𝖔𝖆𝖉𝖎𝖓𝖌 ... ({uploaded}/{length})","gettingInfo":"𝕲𝖊𝖙𝖙𝖎𝖓𝖌 𝖚𝖕𝖑𝖔𝖆𝖉 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓 ({percent})","pleaseLeaveOpen":"𝕻𝖑𝖊𝖆𝖘𝖊 𝖑𝖊𝖆𝖛𝖊 𝖙𝖍𝖎𝖘 𝖕𝖆𝖌𝖊 𝖔𝖕𝖊𝖓 𝖜𝖍𝖎𝖑𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘 𝖚𝖕𝖑𝖔𝖆𝖉. 𝕿𝖍𝖎𝖘 𝖉𝖎𝖆𝖑𝖔𝖌 𝖜𝖎𝖑𝖑 𝖆𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈𝖆𝖑𝖑𝖞 𝖈𝖑𝖔𝖘𝖊 𝖜𝖍𝖊𝖓 𝖙𝖍𝖊𝖞 𝖍𝖆𝖛𝖊 𝖋𝖎𝖓𝖎𝖘𝖍𝖊𝖉 𝖚𝖕𝖑𝖔𝖆𝖉𝖎𝖓𝖌.","errorHeading":"𝕰𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉 𝖜𝖍𝖎𝖑𝖊 𝖚𝖕𝖑𝖔𝖆𝖉𝖎𝖓𝖌","errorMsg":"𝖂𝖊 𝖋𝖆𝖎𝖑𝖊𝖉 𝖙𝖔 {errorMessage}. 𝕻𝖑𝖊𝖆𝖘𝖊 𝖙𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖑𝖆𝖙𝖊𝖗.","editDocInfo":"𝕰𝖉𝖎𝖙 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓:","untitled":"𝖀𝖓𝖙𝖎𝖙𝖑𝖊𝖉","uploadFiles":"𝖀𝖕𝖑𝖔𝖆𝖉 𝖆𝖉𝖉𝖎𝖙𝖎𝖔𝖓𝖆𝖑 𝖋𝖎𝖑𝖊𝖘","selectMore":"+ 𝕾𝖊𝖑𝖊𝖈𝖙 𝖒𝖔𝖗𝖊 𝖋𝖎𝖑𝖊𝖘","dragDropMore":"𝕯𝖗𝖆𝖌 𝖆𝖓𝖉 𝖉𝖗𝖔𝖕 𝖆𝖉𝖉𝖎𝖙𝖎𝖔𝖓𝖆𝖑 𝖋𝖎𝖑𝖊𝖘 𝖍𝖊𝖗𝖊"},"embedNote":{"viewTheNote":"𝖁𝖎𝖊𝖜 𝖙𝖍𝖊 𝖓𝖔𝖙𝖊 ‘{title}‘ 𝖎𝖓 𝖎𝖙𝖘 𝖔𝖗𝖎𝖌𝖎𝖓𝖆𝖑 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖈𝖔𝖓𝖙𝖊𝖝𝖙 𝖔𝖓 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖓 𝖆 𝖓𝖊𝖜 𝖜𝖎𝖓𝖉𝖔𝖜 𝖔𝖗 𝖙𝖆𝖇","viewDoc":"𝖁𝖎𝖊𝖜 𝖙𝖍𝖊 𝖊𝖓𝖙𝖎𝖗𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉"},"embedPage":{"viewDoc":"𝖁𝖎𝖊𝖜 𝖊𝖓𝖙𝖎𝖗𝖊 {title} 𝖔𝖓 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖓 𝖓𝖊𝖜 𝖜𝖎𝖓𝖉𝖔𝖜 𝖔𝖗 𝖙𝖆𝖇","pageOf":"𝕻𝖆𝖌𝖊 {page} 𝖔𝖋 {title}","gotoDocCloud":"𝕲𝖔 𝖙𝖔 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖓 𝖓𝖊𝖜 𝖜𝖎𝖓𝖉𝖔𝖜 𝖔𝖗 𝖙𝖆𝖇"},"entities":{"back":"𝕭𝖆𝖈𝖐","page":"𝕻𝖆𝖌𝖊","of":"𝖔𝖋","totalEntityResult":"{n, plural, one {# 𝖙𝖔𝖙𝖆𝖑 𝖊𝖓𝖙𝖎𝖙𝖞 𝖗𝖊𝖘𝖚𝖑𝖙} other {# 𝖙𝖔𝖙𝖆𝖑 𝖊𝖓𝖙𝖎𝖙𝖞 𝖗𝖊𝖘𝖚𝖑𝖙𝖘}} ","filter":"𝕱𝖎𝖑𝖙𝖊𝖗","applyFilters":"𝕬𝖕𝖕𝖑𝖞 𝖋𝖎𝖑𝖙𝖊𝖗𝖘","kind":"𝕶𝖎𝖓𝖉","clear":"𝕮𝖑𝖊𝖆𝖗","person":"𝕻𝖊𝖗𝖘𝖔𝖓","org":"𝕺𝖗𝖌𝖆𝖓𝖎𝖟𝖆𝖙𝖎𝖔𝖓","location":"𝕷𝖔𝖈𝖆𝖙𝖎𝖔𝖓","event":"𝕰𝖛𝖊𝖓𝖙","workOfArt":"𝖂𝖔𝖗𝖐 𝖔𝖋 𝕬𝖗𝖙","consumerGood":"𝕮𝖔𝖓𝖘𝖚𝖒𝖊𝖗 𝕲𝖔𝖔𝖉","address":"𝕬𝖉𝖉𝖗𝖊𝖘𝖘","date":"𝕯𝖆𝖙𝖊","number":"𝕹𝖚𝖒𝖇𝖊𝖗","phoneNumber":"𝕻𝖍𝖔𝖓𝖊 𝕹𝖚𝖒𝖇𝖊𝖗","price":"𝕻𝖗𝖎𝖈𝖊","unknown":"𝖀𝖓𝖐𝖓𝖔𝖜𝖓","other":"𝕺𝖙𝖍𝖊𝖗","occurrences":"𝕺𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊𝖘","proper":"𝕻𝖗𝖔𝖕𝖊𝖗","common":"𝕮𝖔𝖒𝖒𝖔𝖓","advanced":"𝕬𝖉𝖛𝖆𝖓𝖈𝖊𝖉","relevanceThreshold":"𝕽𝖊𝖑𝖊𝖛𝖆𝖓𝖈𝖊 𝖙𝖍𝖗𝖊𝖘𝖍𝖔𝖑𝖉:","knowledgeGraph":"𝕶𝖓𝖔𝖜𝖑𝖊𝖉𝖌𝖊 𝖌𝖗𝖆𝖕𝖍:","hasKG":"𝕳𝖆𝖘 𝖆 𝖐𝖓𝖔𝖜𝖑𝖊𝖉𝖌𝖊 𝖌𝖗𝖆𝖕𝖍 𝕴𝕯","noKG":"𝕯𝖔𝖊𝖘 𝖓𝖔𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖐𝖓𝖔𝖜𝖑𝖊𝖉𝖌𝖊 𝖌𝖗𝖆𝖕𝖍 𝕴𝕯","wikiUrl":"𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆 𝖀𝕽𝕷:","hasWiki":"𝕳𝖆𝖘 𝖆 𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆 𝖀𝕽𝕷","noWiki":"𝕯𝖔𝖊𝖘 𝖓𝖔𝖙 𝖍𝖆𝖛𝖊 𝖆 𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆 𝖀𝕽𝕷","occurrence":"{n, plural, zero {} one {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊} other {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊𝖘}}","wikipedia":"𝖂𝖎𝖐𝖎𝖕𝖊𝖉𝖎𝖆","entityExtraction":"𝕰𝖓𝖙𝖎𝖙𝖞 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖔𝖓 𝖋𝖔𝖗 “{title}”","extractingEntities":"𝕰𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖓𝖌 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘...","welcome":"𝖂𝖊𝖑𝖈𝖔𝖒𝖊 𝖙𝖔 𝖊𝖓𝖙𝖎𝖙𝖞 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖔𝖓❗ 𝕿𝖍𝖎𝖘 𝖋𝖊𝖆𝖙𝖚𝖗𝖊 𝖎𝖘 𝖛𝖊𝖗𝖞 𝖒𝖚𝖈𝖍 𝖎𝖓 𝖕𝖗𝖔𝖌𝖗𝖊𝖘𝖘 𝖇𝖚𝖙 𝖜𝖊 𝖜𝖆𝖓𝖙 𝖎𝖙 𝖎𝖓 𝖞𝖔𝖚𝖗 𝖍𝖆𝖓𝖉𝖘 𝖊𝖆𝖗𝖑𝖞 𝖙𝖔 𝖜𝖊𝖑𝖈𝖔𝖒𝖊 𝖆𝖓𝖞 𝖋𝖊𝖊𝖉𝖇𝖆𝖈𝖐 𝖞𝖔𝖚 𝖒𝖎𝖌𝖍𝖙 𝖍𝖆𝖛𝖊.","manual":"𝕽𝖎𝖌𝖍𝖙 𝖓𝖔𝖜 𝖙𝖍𝖊 𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖋𝖔𝖗 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖎𝖓𝖌 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘 𝖎𝖘 𝖒𝖆𝖓𝖚𝖆𝖑. 𝕿𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖍𝖆𝖘 𝖓𝖔𝖙 𝖍𝖆𝖉 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘 𝖊𝖝𝖙𝖗𝖆𝖈𝖙𝖊𝖉 𝖞𝖊𝖙, 𝖘𝖔 𝖈𝖑𝖎𝖈𝖐 𝖇𝖊𝖑𝖔𝖜 𝖙𝖔 𝖌𝖊𝖙 𝖘𝖙𝖆𝖗𝖙𝖊𝖉.","error":"𝕬𝖓 𝖚𝖓𝖊𝖝𝖕𝖊𝖈𝖙𝖊𝖉 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉","extract":"𝕰𝖝𝖙𝖗𝖆𝖈𝖙 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘","noEntities":"𝕿𝖍𝖊𝖗𝖊 𝖆𝖗𝖊 𝖓𝖔 𝖊𝖓𝖙𝖎𝖙𝖎𝖊𝖘. 𝕿𝖍𝖎𝖘 𝖈𝖔𝖚𝖑𝖉 𝖍𝖆𝖕𝖕𝖊𝖓 𝖎𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖉𝖔𝖊𝖘𝖓’𝖙 𝖍𝖆𝖛𝖊 𝖙𝖊𝖝𝖙, 𝖎𝖘 𝖓𝖔𝖓-𝕰𝖓𝖌𝖑𝖎𝖘𝖍 (𝖔𝖓𝖑𝖞 𝕰𝖓𝖌𝖑𝖎𝖘𝖍 𝖎𝖘 𝖘𝖚𝖕𝖕𝖔𝖗𝖙𝖊𝖉 𝖋𝖔𝖗 𝖓𝖔𝖜), 𝖔𝖗 𝖘𝖔𝖒𝖊 𝖊𝖗𝖗𝖔𝖗 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖉.","starting":"𝕾𝖙𝖆𝖗𝖙𝖎𝖓𝖌 𝖊𝖝𝖙𝖆𝖈𝖙𝖎𝖔𝖓..."},"home":{"about":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝕮𝖑𝖔𝖚𝖉 𝖎𝖘 𝖆𝖓 𝖆𝖑𝖑-𝖎𝖓-𝖔𝖓𝖊 𝖕𝖑𝖆𝖙𝖋𝖔𝖗𝖒 𝖋𝖔𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘: 𝖚𝖕𝖑𝖔𝖆𝖉, 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊, 𝖆𝖓𝖆𝖑𝖞𝖟𝖊, 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖊, 𝖘𝖊𝖆𝖗𝖈𝖍, 𝖆𝖓𝖉 𝖊𝖒𝖇𝖊𝖉.","viewPublicDocs":"𝖁𝖎𝖊𝖜 𝖕𝖚𝖇𝖑𝖎𝖈 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙𝖘"},"annotation":{"title":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓 𝕿𝖎𝖙𝖑𝖊","description":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓 𝕯𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 (𝖔𝖕𝖙𝖎𝖔𝖓𝖆𝖑)","unchanged":"𝕹𝖔𝖙𝖊 𝖗𝖊𝖒𝖆𝖎𝖓𝖘 𝖚𝖓𝖈𝖍𝖆𝖓𝖌𝖊𝖉","noTitle":"𝕰𝖓𝖙𝖊𝖗 𝖆 𝖙𝖎𝖙𝖑𝖊 𝖋𝖔𝖗 𝖙𝖍𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓","org":"𝕿𝖍𝖎𝖘 𝖓𝖔𝖙𝖊 𝖎𝖘 𝖔𝖓𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚 𝖆𝖓𝖉 𝖔𝖙𝖍𝖊𝖗𝖘 𝖜𝖎𝖙𝖍 𝖊𝖉𝖎𝖙 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖙𝖍𝖎𝖘 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","private":"𝕿𝖍𝖎𝖘 𝖕𝖗𝖎𝖛𝖆𝖙𝖊 𝖓𝖔𝖙𝖊 𝖎𝖘 𝖔𝖓𝖑𝖞 𝖛𝖎𝖘𝖎𝖇𝖑𝖊 𝖙𝖔 𝖞𝖔𝖚","by":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊𝖉 𝖇𝖞 {name}","byOrg":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊𝖉 𝖇𝖞 {name}, {org}","addPageNote":"𝕬𝖉𝖉 𝖕𝖆𝖌𝖊 𝖓𝖔𝖙𝖊"},"viewDropdown":{"document":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙","plainText":"𝕻𝖑𝖆𝖎𝖓 𝕿𝖊𝖝𝖙","thumbnail":"𝕿𝖍𝖚𝖒𝖇𝖓𝖆𝖎𝖑","notes":"𝕹𝖔𝖙𝖊𝖘","search":"𝕾𝖊𝖆𝖗𝖈𝖍 𝕽𝖊𝖘𝖚𝖑𝖙𝖘"},"zoom":{"fitWidth":"𝕱𝖎𝖙 𝖜𝖎𝖉𝖙𝖍","fitHeight":"𝕱𝖎𝖙 𝖍𝖊𝖎𝖌𝖍𝖙"},"titleHeader":{"contributedBy":"𝕮𝖔𝖓𝖙𝖗𝖎𝖇𝖚𝖙𝖊𝖉 𝖇𝖞 {name}"},"annotatePane":{"annotateDocument":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙","desc":"𝕳𝖎𝖌𝖍𝖑𝖎𝖌𝖍𝖙 𝖆 𝖕𝖔𝖗𝖙𝖎𝖔𝖓 𝖔𝖋 𝖙𝖍𝖊 𝖕𝖆𝖌𝖊, 𝖔𝖗 𝖈𝖑𝖎𝖈𝖐 𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊𝖘 𝖙𝖔 𝖈𝖗𝖊𝖆𝖙𝖊 𝖆 𝖓𝖔𝖙𝖊."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝕻𝖆𝖌𝖊} other {# 𝕻𝖆𝖌𝖊𝖘}} 𝕾𝖊𝖑𝖊𝖈𝖙𝖊𝖉","applyModifications":"𝕬𝖕𝖕𝖑𝖞 𝕸𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘","duplicate":"𝕯𝖚𝖕𝖑𝖎𝖈𝖆𝖙𝖊","move":"𝕸𝖔𝖛𝖊","unselect":"𝖀𝖓𝖘𝖊𝖑𝖊𝖈𝖙","remove":"𝕽𝖊𝖒𝖔𝖛𝖊","insertPages":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝕻𝖆𝖌𝖊} other {# 𝕻𝖆𝖌𝖊𝖘}}","pagesPending":"{n, plural, one {# 𝕻𝖆𝖌𝖊} other {# 𝕻𝖆𝖌𝖊𝖘}} 𝕻𝖊𝖓𝖉𝖎𝖓𝖌 𝕴𝖓𝖘𝖊𝖗𝖙𝖎𝖔𝖓","insertBegin":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}} 𝖆𝖙 𝖇𝖊𝖌𝖎𝖓𝖓𝖎𝖓𝖌.","insertEnd":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}} 𝖆𝖙 𝖊𝖓𝖉.","insertBetween":"𝕴𝖓𝖘𝖊𝖗𝖙 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}} 𝖎𝖓 𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊 {p0} 𝖆𝖓𝖉 {p1}.","click":"𝕮𝖑𝖎𝖈𝖐 𝖎𝖓-𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊𝖘 𝖇𝖊𝖑𝖔𝖜 𝖙𝖔 𝖒𝖆𝖗𝖐 𝖜𝖍𝖊𝖗𝖊 𝖙𝖔 𝖕𝖆𝖘𝖙𝖊 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}.","insert":"𝕴𝖓𝖘𝖊𝖗𝖙","insertAtEnd":"𝕴𝖓𝖘𝖊𝖗𝖙 𝖆𝖙 𝖊𝖓𝖉","insertPosition":"𝕴𝖓𝖘𝖊𝖗𝖙 𝖕𝖆𝖌𝖊𝖘 𝖆𝖙 𝖕𝖔𝖘𝖎𝖙𝖎𝖔𝖓","insertOtherDoc":"𝕴𝖓𝖘𝖊𝖗𝖙 𝖋𝖗𝖔𝖒 𝖔𝖙𝖍𝖊𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙","modifyPages":"𝕸𝖔𝖉𝖎𝖋𝖞 𝕻𝖆𝖌𝖊𝖘","select":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖕𝖆𝖌𝖊𝖘 𝖇𝖊𝖑𝖔𝖜 𝖙𝖔 𝖆𝖕𝖕𝖑𝖞 𝖒𝖔𝖉𝖎𝖋𝖎𝖈𝖆𝖙𝖎𝖔𝖓𝖘 (𝖕𝖆𝖌𝖊 𝖗𝖔𝖙𝖆𝖙𝖎𝖔𝖓, 𝖗𝖊𝖆𝖗𝖗𝖆𝖓𝖌𝖎𝖓𝖌, 𝖆𝖓𝖉 𝖉𝖊𝖑𝖊𝖙𝖎𝖔𝖓). 𝕮𝖑𝖎𝖈𝖐 𝖎𝖓-𝖇𝖊𝖙𝖜𝖊𝖊𝖓 𝖕𝖆𝖌𝖊𝖘 𝖙𝖔 𝖎𝖓𝖘𝖊𝖗𝖙.","undo":"𝖀𝖓𝖉𝖔","redo":"𝕽𝖊𝖉𝖔"},"redactPane":{"redactDoc":"𝕽𝖊𝖉𝖆𝖈𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙","desc":"𝕮𝖑𝖎𝖈𝖐 𝖆𝖓𝖉 𝖉𝖗𝖆𝖌 𝖙𝖔 𝖉𝖗𝖆𝖜 𝖆 𝖇𝖑𝖆𝖈𝖐 𝖗𝖊𝖈𝖙𝖆𝖓𝖌𝖑𝖊 𝖔𝖛𝖊𝖗 𝖊𝖆𝖈𝖍 𝖕𝖔𝖗𝖙𝖎𝖔𝖓 𝖔𝖋 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚’𝖉 𝖑𝖎𝖐𝖊 𝖙𝖔 𝖗𝖊𝖉𝖆𝖈𝖙. 𝕬𝖘𝖘𝖔𝖈𝖎𝖆𝖙𝖊𝖉 𝖙𝖊𝖝𝖙 𝖜𝖎𝖑𝖑 𝖇𝖊 𝖗𝖊𝖒𝖔𝖛𝖊𝖉 𝖜𝖍𝖊𝖓 𝖞𝖔𝖚 𝖘𝖆𝖛𝖊 𝖞𝖔𝖚𝖗 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘.","confirm":"𝕮𝖔𝖓𝖋𝖎𝖗𝖒 𝕽𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘","undo":"𝖀𝖓𝖉𝖔"},"searchPane":{"yourQuery":"𝖄𝖔𝖚𝖗 𝖖𝖚𝖊𝖗𝖞 {search} 𝖜𝖆𝖘 𝖋𝖔𝖚𝖓𝖉 𝖔𝖓 {n, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}"},"selectNotePane":{"selectNote":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖆 𝖓𝖔𝖙𝖊","desc":"𝕾𝖊𝖑𝖊𝖈𝖙 𝖙𝖍𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓 𝖙𝖍𝖆𝖙 𝖞𝖔𝖚 𝖜𝖆𝖓𝖙 𝖙𝖔 𝖘𝖍𝖆𝖗𝖊."},"searchResults":{"resultPages":"{results, plural, one {# 𝖗𝖊𝖘𝖚𝖑𝖙} other {# 𝖗𝖊𝖘𝖚𝖑𝖙𝖘}} 𝖆𝖈𝖗𝖔𝖘𝖘 {pages, plural, one {# 𝖕𝖆𝖌𝖊} other {# 𝖕𝖆𝖌𝖊𝖘}}","noSearchResults":"𝕹𝖔 𝖘𝖊𝖆𝖗𝖈𝖍 𝖗𝖊𝖘𝖚𝖑𝖙𝖘. 𝕿𝖗𝖞 𝖆𝖌𝖆𝖎𝖓 𝖜𝖎𝖙𝖍 𝖆 𝖇𝖗𝖔𝖆𝖉𝖊𝖗 𝖖𝖚𝖊𝖗𝖞.","occurrences":"{n, plural, one {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊} other {# 𝖔𝖈𝖈𝖚𝖗𝖗𝖊𝖓𝖈𝖊𝖘}}"},"sidebar":{"updating":"𝖀𝖕𝖉𝖆𝖙𝖎𝖓𝖌 𝖉𝖔𝖈𝖚𝖈𝖒𝖊𝖓𝖙...","original":"𝕺𝖗𝖎𝖌𝖎𝖓𝖆𝖑 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 (𝕻𝕯𝕱) »","related":"𝕽𝖊𝖑𝖆𝖙𝖊𝖉 𝕬𝖗𝖙𝖎𝖈𝖑𝖊 »","contributed":"𝕮𝖔𝖓𝖙𝖗𝖎𝖇𝖚𝖙𝖊𝖉 𝖇𝖞 {name}","source":"𝕾𝖔𝖚𝖗𝖈𝖊: {source}","actions":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕬𝖈𝖙𝖎𝖔𝖓𝖘","share":"𝕾𝖍𝖆𝖗𝖊","shareDesc":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖆𝖓 𝖊𝖒𝖇𝖊𝖉 𝖔𝖗 𝖘𝖍𝖆𝖗𝖊 𝖔𝖓 𝖘𝖔𝖈𝖎𝖆𝖑 𝖒𝖊𝖉𝖎𝖆.","annotate":"𝕬𝖓𝖓𝖔𝖙𝖆𝖙𝖊","annotateDesc":"𝕸𝖆𝖐𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖐𝖊𝖊𝖕 𝖓𝖔𝖙𝖊𝖘 𝖔𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","redact":"𝕽𝖊𝖉𝖆𝖈𝖙","redactDesc":"𝕮𝖗𝖊𝖆𝖙𝖊 𝖗𝖊𝖉𝖆𝖈𝖙𝖎𝖔𝖓𝖘 𝖔𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖙𝖔 𝖍𝖎𝖉𝖊 𝖙𝖊𝖝𝖙. 𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖑𝖑 𝖗𝖊𝖕𝖗𝖔𝖈𝖊𝖘𝖘 𝖆𝖋𝖙𝖊𝖗𝖜𝖆𝖗𝖉𝖘.","modify":"𝕸𝖔𝖉𝖎𝖋𝖞 𝕻𝖆𝖌𝖊𝖘","modifyDesc":"𝕽𝖊𝖆𝖗𝖗𝖆𝖓𝖌𝖊, 𝖗𝖔𝖙𝖆𝖙𝖊, 𝖉𝖊𝖑𝖊𝖙𝖊, 𝖎𝖓𝖘𝖊𝖗𝖙, 𝖆𝖓𝖉 𝖘𝖕𝖑𝖎𝖙 𝖕𝖆𝖌𝖊𝖘.","info":"𝕰𝖉𝖎𝖙 𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝕴𝖓𝖋𝖔","infoDesc":"𝕸𝖔𝖉𝖎𝖋𝖞 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖓𝖋𝖔𝖗𝖒𝖆𝖙𝖎𝖔𝖓 𝖑𝖎𝖐𝖊 𝖉𝖊𝖘𝖈𝖗𝖎𝖕𝖙𝖎𝖔𝖓 𝖆𝖓𝖉 𝖗𝖊𝖑𝖆𝖙𝖊𝖉 𝖀𝕽𝕷.","data":"𝕰𝖉𝖎𝖙 𝕿𝖆𝖌𝖘 𝖆𝖓𝖉 𝕯𝖆𝖙𝖆","dataDesc":"𝕬𝖉𝖉 𝖙𝖆𝖌𝖘 𝖆𝖓𝖉 𝖐𝖊𝖞/𝖛𝖆𝖑𝖚𝖊 𝖕𝖆𝖎𝖗𝖘 𝖙𝖔 𝖈𝖆𝖙𝖊𝖌𝖔𝖗𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙.","sections":"𝕰𝖉𝖎𝖙 𝕾𝖊𝖈𝖙𝖎𝖔𝖓𝖘","sectionsDesc":"𝕬𝖉𝖉 𝖘𝖊𝖈𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖔𝖗𝖌𝖆𝖓𝖎𝖟𝖊 𝖞𝖔𝖚𝖗 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖜𝖎𝖙𝖍 𝖆 𝖙𝖆𝖇𝖑𝖊 𝖔𝖋 𝖈𝖔𝖓𝖙𝖊𝖓𝖙𝖘.","privateNote":"𝕬𝖉𝖉 𝕻𝖗𝖎𝖛𝖆𝖙𝖊 𝕹𝖔𝖙𝖊","privateNoteDesc":"𝕸𝖆𝖐𝖊 𝖆𝖓𝖓𝖔𝖙𝖆𝖙𝖎𝖔𝖓𝖘 𝖙𝖔 𝖐𝖊𝖊𝖕 𝖓𝖔𝖙𝖊𝖘 𝖔𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙."},"viewer":{"notFound":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖓𝖔𝖙 𝖋𝖔𝖚𝖓𝖉","notFoundDesc":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉 𝖊𝖎𝖙𝖍𝖊𝖗 𝖉𝖔𝖊𝖘 𝖓𝖔𝖙 𝖊𝖝𝖎𝖘𝖙 𝖔𝖗 𝖞𝖔𝖚 𝖑𝖆𝖈𝖐 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 𝖙𝖔 𝖆𝖈𝖈𝖊𝖘𝖘 𝖎𝖙","processing":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖎𝖘 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌","processingDesc":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉 𝖎𝖘 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖆𝖓𝖉 𝖜𝖎𝖑𝖑 𝖆𝖚𝖙𝖔𝖒𝖆𝖙𝖎𝖈𝖆𝖑𝖑𝖞 𝖗𝖊𝖋𝖗𝖊𝖘𝖍 𝖜𝖍𝖊𝖓 𝖎𝖙 𝖎𝖘 𝖗𝖊𝖆𝖉𝖞","error":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖍𝖆𝖘 𝖊𝖓𝖈𝖔𝖚𝖓𝖙𝖊𝖗𝖊𝖉 𝖆𝖓 𝖊𝖗𝖗𝖔𝖗","errorDesc":"𝕬 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖊𝖗𝖗𝖔𝖗 𝖍𝖆𝖘 𝖇𝖊𝖊𝖓 𝖊𝖓𝖈𝖔𝖚𝖓𝖙𝖊𝖗𝖊𝖉 𝖎𝖓 𝖙𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉","accessible":"𝕯𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖓𝖔𝖙 𝖆𝖈𝖈𝖊𝖘𝖘𝖎𝖇𝖑𝖊","accessibleDesc":"𝕿𝖍𝖊 𝖉𝖔𝖈𝖚𝖒𝖊𝖓𝖙 𝖞𝖔𝖚 𝖗𝖊𝖖𝖚𝖊𝖘𝖙𝖊𝖉 𝖎𝖘 𝖘𝖙𝖎𝖑𝖑 𝖕𝖗𝖔𝖈𝖊𝖘𝖘𝖎𝖓𝖌 𝖔𝖗 𝖞𝖔𝖚 𝖑𝖆𝖈𝖐 𝖕𝖊𝖗𝖒𝖎𝖘𝖘𝖎𝖔𝖓 𝖙𝖔 𝖆𝖈𝖈𝖊𝖘𝖘 𝖙𝖔 𝖎𝖙"}}');
-./public/src_langs_json_uk_json.0063838bd34dbef89154.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"Email адреса","loading":"Завантаження...","documentCloud":"DocumentCloud","home":"Головна"},"homeTemplate":{"signedIn":"Ви увійшли як {name}","signOut":"Вийти","signIn":"Увійти","signUp":"Реєстрація","goToApp":"В додаток"},"accessToggle":{"public":"Нотатка буде доступна для перегляду всім, хто має доступ до документа.","collaborator":"Нотатка буде доступна для перегляду всім, хто може редагувати цей документ.","private":"Нотатка буде доступна для перегляду тільки вам.","publicName":"Публічне","collaboratorName":"Співавтор","privateName":"Приватне"},"accessIcon":{"private":"Приватний доступ","organization":"Приватно для вашої організації","public":"Публічний доступ","privateExplanation":"Лише ви можете переглядати цей документ","organizationExplanation":"Тільки члени вашої організації можуть переглядати цей документ","publicExplanation":"Будь-хто може знайти та переглянути цей документ"},"appearanceCustomizer":{"customizeAppearance":"Налаштувати вигляд","hide":"Приховати довідковий текст","show":"Показати довідковий текст"},"appearanceDimension":{"responsive":"Автоматично (за замовчуванням)","fixed":"Закріплено"},"calendar":{"jan":"Січень","feb":"Лютий","mar":"Березень","apr":"Квітень","may":"Травень","jun":"Червень","jul":"Липень","aug":"Серпень","sep":"Вересень","oct":"Жовтень","nov":"Листопад","dec":"Грудень","hourShortcode":"ГГ","minuteShortcode":"ХХ"},"dialog":{"cancel":"Скасувати","delete":"Видалити","done":"Готово","edit":"Редагувати","remove":"Видалити","save":"Зберегти","create":"Створити","ok":"Ок","update":"Оновити","dismiss":"Закрити","continue":"Продовжити","dispatch":"Відправити"},"dialogAccessDialog":{"changeAccess":"Змінити доступ для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","selectAccess":"Обрати рівень доступу для {n, plural, one {вибраного документа} few {# вибраних документів} many {# вибраних документів} other {# вибраних документів}}","public":"Публічний доступ","publicDesc":"Будь-хто в інтернеті може знайти та переглянути документ.","verifiedHelp":"Тільки перевірені користувачі або члени перевірених організацій можуть робити завантажені документи публічними. Якщо ви журналіст, або ж іншим чином працюєте у публікації перевірених матеріалів, щоб інформувати громадськість, дізнайтеся більше і надішліть запит на верифікацію тут.","privateToOrg":"Ви не можете змінити рівень доступу на \\"Приватно для вашої організації\\", оскільки {n, plural, one {цей документ} other {один чи більше документів}} пов’язано з вашим індивідуальним обліковим записом, а не з організацією. Щоб додати {n, plural, one {його} other {їх}} до організації, виберіть {n, plural, one {його} other {їх}} у вікні керування та натисніть \\"Змінити власника\\". Ви можете приєднатися або створити організацію на цій сторінці.","private":"Приватний доступ","privateDesc":"Лише люди з явним дозволом (через співавторство) мають доступ.","organization":"Приватно для вашої організації","organizationDesc":"Лише люди у вашій організації мають доступ.","schedulePublication":"Запланувати публікацію","scheduleHelp":"Цей документ стане публічним у задану дату та час. Час публікації локально{timezone}.","noindexTitle":"Приховати від пошукових систем та пошуку DocumentCloud","noindexHelp":"Якщо ви увімкнете цю опцію, пошуковим системам на зразок Google буде повідомлено, що вони не повинні індексувати цей документ. Також, документ не буде відображатися в пошуку з DocumentCloud для користувачів, які не ввійшли до системи.","unchanged":"Доступ не змінено. Оберіть інший рівень доступу.","future":"Необхідно вибрати час у майбутньому","change":"Змінити","changeNoindex":"Змінити видимість для пошукових систем та пошуку DocumentCloud для {n, plural, one {документу} few {# документів} many {# документів} other {# документів}}"},"dialogCollaboratorDialog":{"confirm":"Підтвердити видалення користувача","confirmMsg":"Продовжуючи, ви видалите {name} з {title}. Продовжити?","addCollaborators":"Додати співавторів","invite":"Додати до імейла існуючого користувача DocumentCloud нижче. Якщо вони не зареєстровані, попросіть їх зареєструватися безкоштовно тут, а потім увійти в DocumentCloud принаймні один раз.","admin":"Адміністратор","view":"Перегляд","adminHelp":"Співавтори можуть редагувати цей проект та його документи","editHelp":"Співробітники можуть редагувати документи в цьому проекті","viewHelp":"Співавтори можуть переглядати документи в цьому проекті","add":"Додати","empty":"Ви ще не додали жодного співавтора до цього проекту. Запросіть співавторів, щоб надати доступ іншим користувачам до документів, доступних у цьому проекті. Ви можете контролювати, чи мають співавтори доступ до перегляду/редагування документів проекту або бути адміністратором з дозволами на запрошення інших користувачів і редагування самого проекту.","manageCollaborators":"Керувати співавторами","name":"Ім’я","access":"Доступ","you":"(ви)"},"dialogDataDialog":{"confirm":"Підтвердження видалення точки даних","removeMsg":"Продовження видалить {key}{value} точку даних з зазначених документів. Бажаєте продовжити?","addData":"Додайте дані для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","tag":"Тег","value":"Значення","key":"Ключ","keyValue":"Ключ / Значення","tagInfo":"Додайте користувацькі теги, щоб розділити ваші документи на категорії.","eg":"напр.","exampleTagReport":"звіт","exampleTagLawsuit":"судовий процес","exampleTagEmail":"електронна пошта","keyValueInfo":"Додайте пару користувацьких ключів / значень для точної категоризації ваших документів.","exampleKVState":"штат: Каліфорнія","exampleKVYear":"рік 2016","exampleKVType":"тип: пам\'ятка","enterTag":"Ввести тег","enterKey":"Ввести ключ","keyInvalid":"Ключі можуть містити лише літери, цифри, підкреслення (_) та тире (-)","emptyMsg":"Ви ще не додали жодних даних до зазначених документів. Додайте теги та пари ключ/значення для розділу на категорії та організації ваших документів. Ви можете фільтрувати і шукати дані документів, щоб надасть вам потужний контроль над керуванням документами.","manageDocumentData":"Керування даними документа","valueUnchanged":"Значення залишається незміненим","kvCannotBeEmpty":"Ключ/значення не може бути порожнім"},"dialogReprocessDialog":{"title":"Підтвердження повторної обробки","reprocessDocs":"Продовження змусить {n, plural, one {обраний документ} few {# обрані документи} many {# обраних документів} other {# обрані документи}} повторно обробити сторінку та текст зображення. Продовжити?","reprocessSingleDoc":"Продовження призведе до того, що документ повторно обробить сторінку та текст зображення. Бажаєте продовжити?","confirm":"Повторна обробка"},"dialogDeleteDialog":{"title":"Підтвердження повторної обробки","deleteDocs":"Продовження остаточно видалить {n, plural, one {обраний документ} few {# обрані документи} many {# обрані документи} other {# обрані документи}}Ви хочете продовжити?"},"dialogCancelProcessingDialog":{"title":"Скасування повторної обробки","deleteDocs":"Продовження змусить {n, plural, one {обраний документ} other {# обрані документи}} припинити обробку. Після припинення обробки з’явиться повідомлення про помилку, після чого ви можете \\"Примусово повторно обробити\\" або видалити {n, plural, one {документ} other {документи}} за допомогою меню редагування. Ви бажаєте продовжити?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Інформація, що доступна лише персоналу для вибраного {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","id":"Ідентифікатор","title":"Заголовок","actions":"Дії","debug":"Налагодження","viewErrors":"Переглянути помилки","viewS3":"Перегляд в S3"},"dialogDocumentEmbedDialog":{"responsive":"Адаптивне","respOn":"Ввімкнено (за замовчуванням)","respOnHelp":"Заповнити ширину вікна статті (зазвичай працює найкраще)","respOff":"Вимкнено","respOffHelp":"Документ відповідатиме розмірам зазначеним нижче","width":"Ширина","widthAuto":"Заповнить доступний простір, якщо документ налаштований бути адаптивним, інакше розмір буде за замовчуванням 700px","widthFixed":"Встановіть максимальну ширину, якщо документ адаптивний або встановіть фіксований розмір, якщо він не адаптивний","height":"Висота","heightAuto":"Висота базується на розмірах документа, без максимального розміру. Якщо він адаптивний, його висота буде встановлена по висоті вікна браузера мінус 100px","heightFixed":"Встановіть максимальну ширину, якщо документ адаптивний або встановіть фіксований розмір, якщо він не адаптивний","sidebarBehavior":"Налаштування бічної панелі","sbResponsive":"Адаптивне (за замовчуванням)","sbResponsiveHelp":"Показувати бічну панель автоматично на великих екранах і приховувати на мобільних пристроях. У режимі вбудовування бічна панель буде прихована","hidden":"Приховане","visible":"Видиме","visibleDefault":"Видиме (за замовчуванням)","sbHiddenHelp":"Приховувати бічну панель за замовчуванням","sbVisibleHelp":"Показувати бічну панель за замовчуванням","titleBehavior":"Налаштування заголовка","tVisibleHelp":"Відображати назву та авторство в заголовку переглядача","tHiddenHelp":"Приховати назву у заголовку переглядача (залишиться видимою на бічній панелі)","pdfLink":"Посилання на PDF","plVisibleHelp":"Показувати посилання на сирий PDF-документ в бічній панелі","plHiddenHelp":"Приховати посилання на PDF в бічній панелі (файл все ще доступний, якщо URL відомий)","fullscreenOption":"Повноекранний режим","fsVisibleHelp":"Показувати іконку повноекранного режиму в правому нижньому куті","fsHiddenHelp":"Приховати опцію повноекранного режиму","textMode":"Текстовий режим","tmVisibleHelp":"Показувати опцію перегляду тексту документа в випадаючому списку перегляду","tmHiddenHelp":"Приховати текстовий режим","contributedByFormat":"Внесено за форматом","cbfUserAndOrg":"Користувач та організація (за замовчуванням)","cbfUserAndOrgHelp":"Показати авторство документа як ім\'я користувача за яким слідує організація","cbfOrgOnly":"Лише організація","cbfOrgOnlyHelp":"Внесіть документ лише для організації","share":"Поділитися \\"{title}\\"","embedDesc":"Скопіюйте HTML-код для вставки цього документа у статтю"},"dialogDocumentInformationDialog":{"editInformation":"Додайте дані для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Встановіть параметри для вибраного доповнення для запуску на {n, plural, one {документі} few {# документах} many {# документах} other {# документах}}"},"dialogRedactDialog":{"title":"Підтвердження редакцій","description":"Ви впевнені, що бажаєте відредагувати поточний документ? Якщо ви продовжите, переглядач документів буде тимчасово недоступний, поки документ буде повторно оброблено з редагуванням. Ця зміна є незворотною."},"dialogModifyDialog":{"title":"Застосувати зміни","description":"Ви впевнені, що бажаєте модифікувати поточний документ? Якщо ви продовжите, переглядач документів буде тимчасово недоступний, поки документ буде повторно оброблено з модифікаціями. Ця зміна є незворотною.","closeTitle":"Підтвердити закриття","closeWarning":"Ви втратите всі незбережені модифікації. Ви впевнені, що хочете продовжити?"},"dialogDeleteNoteDialog":{"title":"Підтвердити видалення","description":"Ви впевнені, що хочете видалити поточну нотатку?"},"dialogEditSectionsDialog":{"confirmDelete":"Підтвердити видалення","proceedingWillRemove":"Якщо ви продовжите, буде видалено вказаний розділ (с. {page} {title}). Ви бажаєте продовжити?","editSections":"Редагувати розділи","manageSections":"Керуйте розділами для організації документа за допомогою таблиці вмісту.","pageAbbrevNo":"с. {n}","pageAbbrev":"с.","empty":"Ви не додали жодного розділу","edit":"Редагувати обраний розділ","add":"Додати новий розділ","title":"Заголовок","missingTitle":"Будь ласка, введіть заголовок","updateTitle":"Введіть новий заголовок або номер сторінки","uniquePageNumber":"Ви повинні ввести унікальний номер сторінки","invalidPageNumber":"Неправильний номер сторінки"},"dialogEmbedDialog":{"updatingDocument":"Оновлення документа...","makingPublic":"Наразі документ оприлюднюється. Це може зайняти кілька хвилин.","wouldMakePublic":"Ви хотіли б зробити цей документ публічним перед тим, як поділитись?","notPublic":"Документ на цей час не є публічним. Якщо ви вставляєте його або посилання на нього, лише ви та співавтори зможете переглядати його до тих пір, поки він не стане публічним. Натисніть нижче, коли ви готові опублікувати цей документ.","makePublic":"Зробити документ публічним","leave":"Залишити як є","selectShare":"Виберіть параметри опції \\"поділитися\\"","selectShareHelp":"Виберіть, чи слід поділитись усім документом, чи лише сторінкою, чи нотаткою.","shareDoc":"Поділитися усім документом","shareDocHelp":"Посилання або вставлення всього документа. (Це найпоширеніший параметр опції \\"поділитися\\".)","sharePage":"Поділитися конкретною сторінкою","sharePageHelp":"Посилання або вставлення однієї сторінки документа. Корисно для виділення уривка сторінки.","shareNote":"Поділитися конкретною нотаткою","shareNoteHelpHasNote":"Посилання або вставлення нотатки в документ. Корисно для виділення області сторінки.","shareNoteHelpNoNote":"Як тільки ви додасте нотатки до документа, використовуйте цю функцію для посилання або їх вставки."},"dialogErrorDialog":{"errorOccurred":"Сталася помилка","unexpectedErrorOccurred":"Сталася неочікувана помилка","tryAgain":"Будь ласка, спробуйте ще раз пізніше.","close":"Закрити","refresh":"Оновити"},"dialogNoteEmbedDialog":{"embedNote":"Вставити нотатку з “{title}”","embedDesc":"Скопіюйте HTML-код для вставки цієї нотатки у статтю або пост:"},"dialogPageEmbedDialog":{"embedPage":"Вставити сторінку з “{title}”","embedDesc":"Скопіюйте HTML-код для вставки цієї сторінки у статтю або пост:","selectPage":"Виберіть сторінку для вставки:","page":"Сторінка {n} (наразі видима)","otherPage":"Інша сторінка","enterPageNumber":"Введіть номер сторінки для вставки:"},"dialogProjectAccessDialog":{"changeAccessFor":"Змінити доступ для {name}","selectAccess":"Виберіть рівень доступу нижче для {name} в {title}","adminAccess":"Доступ адміністратора","editAccess":"Доступ до редагування","viewAccess":"Доступ до перегляду","adminHelp":"Цей співавтор може редагувати цей проект та його документи. Співавтор може запрошувати користувачів, видаляти користувачів і видаляти проект.","editHelp":"Цей співавтор може редагувати документи у цьому проекті, але не може редагувати сам проект.","viewHelp":"Цей співавтор може переглядати документи у цьому проекті, але не може редагувати їх або проект.","invalidAccess":"Доступ вже встановлено на {access}. Виберіть інший рівень доступу.","changeAccess":"Змінити доступ"},"dialogOwnerDialog":{"selectUser":"Потрібно вибрати користувача","selectOrg":"Потрібно вибрати організацію","changeOwner":"Змінити власника для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","accessWarning":"Попередження: Ви можете втратити доступ до вказаного {n, plural, one {документа} few {# документів} many {# документів} other {# документів}} в результаті зміни власника документа","user":"Користувач:","filterUsers":"Введіть для фільтрування користувачів...","filterOrgs":"Введіть для фільтрування організацій..."},"dialogProjectDialog":{"confirmDelete":"Підтвердити видалення","deleteProject":"Ви дійсно бажаєте видалити цей ({project})?","editProject":"Редагувати проект","createProject":"Створити новий проект","title":"Заголовок...","projectDesc":"Опис проєкту (необов\'язково)","manageCollabs":"Керувати співавторами","share":"Поділитись / Вставити проект","enterTitle":"Введіть назву","changeTitle":"Змінити назву або опис"},"dialogProjectEmbedDialog":{"share":"Поділитися \\"{title}\\"","embedDesc":"Скопіюйте HTML-код для вставки цього документа у статтю або пост:","invalid":"Недійсний проект","cannotEmbed":"Неможливо вставити цей проект, бо він не існує."},"htmlEditor":{"preview":"Перегляд:"},"image":{"error":"Сталася помилка. Спробуйте оновити сторінку"},"omniselect":{"filter":"Введіть для фільтрування мови","noResults":"Немає результатів. Натисніть, щоб очистити фільтр."},"shareOptions":{"errorText":"Сталася неочікувана помилка. Будь ласка, спробуйте пізніше.","copyHtml":"Скопіювати HTML код","addShortcode":"Додати цей короткий код до вмісту WordPress —","pluginRequired":"потрібен плагін","copyShortcode":"Скопіювати короткий код","copyUrl":"Скопіювати URL"},"specialMessage":{"contactUs":"Зв\'яжіться з нами з повідомленнями про помилки, питаннями та пропозиціями."},"uploadOptions":{"documentLang":"Мова документа:","forceOcr":"Примусовий OCR:"},"actionBar":{"selectDocs":"Виберіть декілька документів, щоб виявити дії редагування","noPerms":"Ви не маєте дозволу на редагування всіх вибраних документів","editMenu":"Редагувати","projectsMenu":"Проекти","addOnsMenu":"Додатки"},"authSection":{"help":"Допомога","language":"Мова","tips":"Поради та підказки","searchDocs":"Пошук документації","apiDocs":"Документація API","emailUs":"Напишіть нам","acctSettings":"Налаштування облікового запису","signOut":"Вийти","changeOrg":"Змінити організацію","personalAcct":"Особистий акаунт","signIn":"Увійти","uploadEmail":"Вивантажити через email"},"documents":{"yourDocuments":"Ваші документи","searchResults":"Результати пошуку","accessDocuments":"Ваші {access}документи","nameDocuments":"Документи {name} {access}","allDocuments":"Всі {access}документи","mustBeVerified":"Ви повинні бути верифікованим журналістом, щоб завантажувати документи","upload":"Завантажити","dropFile":"Перетягніть файл, щоб завантажити"},"document":{"open":"Відкрити","updating":"Оновлення документа...","processing":"Обробка","processingError":"Сталася помилка при спробі обробки документа","remove":"Видалити","improper":"Ваш документ було завантажено неправильно","project":"Проект","totalMatchingPages":"{n} з {m} сторінок відповідають запиту","showAll":"Показати все","matchingPages":"{n} сторінок відповідають запиту","pageAbbrev":"с.","pageCount":"{n, plural, one {# сторінка} other {# сторінок}}","source":"Джерело","noteCount":"{n, plural, one {# нотатка} other {# нотаток}}"},"documentThumbnail":{"pages":"сторінки","loading":"Завантаження інформації про прогрес..."},"mainContainer":{"error":"Помилка","errorMsg":"Не вдалося зв’язатися з сервером DocumentCloud. Будь ласка, спробуйте оновити сторінку пізніше.","refresh":"Оновити"},"editMenu":{"editDocInfo":"Редагувати інформацію документа","changeAccess":"Змінити доступ","editDocData":"Редагувати дані документа","cancelProcessing":"Скасувати обробку","forceReprocess":"Примусова повторна обробка","entities":"Особибета-версія","changeOwner":"Змінити власника","delete":"Видалити","diagnosticInfo":"Діагностична інформація"},"metaFields":{"defaultFieldInvalidText":"Цей документ вже має цей {fieldName}","titleFieldTitle":"Заголовок","titleFieldName":"назва","titleFieldNameUppercase":"Назва","titleFieldHeader":"Перейменувати {n, plural, one {# документ} few {# документа} other {# документів}}","titleFieldDescription":"Введіть ім\'я для {n, plural, one {обраний документ} few {# документа} other {# обраних документів}}","titleFieldButton":"Перейменувати","titleFieldInvalidSameName":"Цей документ вже має це ім\'я","titleFieldInvalidEmptyName":"Введіть дійсну назву","sourceFieldTitle":"Джерело","sourceFieldName":"джерело","sourceFieldNameUppercase":"Джерело","sourceFieldHeader":"Редагувати джерело для {n, plural, one {# документа} other {# документів}}","sourceFieldDescription":"Введіть джерело для {n, plural, one {обраного документа} other {# обраних документів}}","sourceFieldButton":"Редагувати","descriptionFieldTitle":"Опис","descriptionFieldName":"опис","descriptionFieldNameUppercase":"Опис","descriptionFieldHeader":"Редагуйте опис для {n, plural, one {# документа} other {# документів}}","descriptionFieldDescription":"Введіть опис {n, plural, one {обраного документа} other {# обраних документів}}","descriptionFieldButton":"Редагування","relatedArticleFieldTitle":"URL пов\'язаної статті","relatedArticleFieldName":"URL пов\'язаної статті","relatedArticleFieldNameUppercase":"URL пов\'язаної статті","relatedArticleFieldHeader":"Введіть URL-адресу пов\'язаної статті для {n, plural, one {вибраного документу} few {# вибраних документів} many {# вибраних документів} other {# вибраних документів}}","relatedArticleFieldDescription":"Введіть URL-адресу пов\'язаної статті нижче для {n, plural, one {вибраного документу} few {# вибраних документів} many {# вибраних документів} other {# вибраних документів}}","relatedArticleFieldButton":"Редагувати","publishedUrlFieldTitle":"Опубліковане URL","publishedUrlFieldName":"опубліковане URL","publishedUrlFieldNameUppercase":"Опубліковане URL","publishedUrlFieldHeader":"Редагувати опубліковану URL-адресу для {n, plural, one {# документа} few {# документів} many {# документів} other {# документів} other {# документів}}","publishedUrlFieldDescription":"Введіть опубліковану URL-адресу для {n, plural, one {обраного документа} few {# обраних документів} many {# обраних документів} other {# обраних документів}}","publishedUrlFieldButton":"Редагувати"},"projectsMenu":{"newProject":"+ Новий проект","projMembership":"Членство в проекті","selectDocs":"Виберіть документи, щоб розмістити їх в проектах","createProj":"Створити проект для організації та поширення документів"},"addonsMenu":{"newAddon":"Запросити новий додаток від персоналу","selectDocs":"Виберіть документи, щоб надіслати їх в додатках","addonsList":"Список додатків","createAddon":"Виберіть більше документів для використання додатків","addon":"Додаток","learnMore":"Дізнатися більше про додатки","browseAll":"Показати всі доповнення"},"noDocuments":{"noSearchResults":"Нічого не знайдено","queryNoResults":"Ваш пошуковий запит не дав результатів. Спробуйте ще раз з більш широким пошуковим запитом.","welcome":"Ласкаво просимо до DocumentCloud!","verify1":"Зауважте, що на даний момент ваш обліковий запис не веріфіковано для завантаження. Ви можете здійснювати пошук через публічну базу, організовувати цікаві для вас документи в проекти, залишати приватні нотатки і співпрацювати над редагуванням та анотацією документів, до яких вас запрошують інші користувачі.","verify2":"Якщо ви хочете завантажити або опублікувати документи, а також ви працюючий журналіст або інша організація зацікавлена у публікації первинних матеріалів у громадських інтересах, вам потрібно буде веріфікувати ваш обліковий запис або додати до веріфікованої організації. Це простий процес:","verify3":"Спочатку подивіться чи ваша організація вже існує, і, якщо ви її знайдете, натисніть \\"Запит на приєднання\\" на її сторінці.","verify4":"Якщо вашу організацію ще не веріфіковано, або якщо ви фрілансер, запитайте веріфікацію тут. Запит зазвичай займає два робочих дні для обробки.","uploadFirst":"Завантажте ваш перший документ","upload1":"Завантажте файл документа, щоб почати користуватися DocumentCloud. Ви можете перетягнути файл у це вікно, або натиснути на синю кнопку “Завантажити” вище.","upload2":"Як тільки ви завантажите файл, DocumentCloud обробить документ і вилучить його вміст. Це може зайняти кілька хвилин, але як тільки це буде зроблено, ваш документ буде оптимізований для аналізу та поширення в Інтернеті.","requestVerificationAction":"Запросити верифікацію для завантаження"},"paginator":{"of":"із","document":"{n, plural, one {документ} other {документів}}"},"processingBar":{"doneProcessing":"Обробка виконана","processingDocuments":"Обробка {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}"},"searchBar":{"tips":"Поради для пошуку: додайте фільтри вводячи користувача, проект:, чи організацію, і т.д. Використайте тип:, щоб упорядкувати результати.","learnMore":"Дізнатися більше","search":"Пошук"},"searchLink":{"search":"Пошук цій збірці документів"},"projects":{"header":"Проекти","allDocuments":"Всі документи","yourDocuments":"Ваші документи","yourPubDocuments":"Ваші публічні документи","orgDocuments":"Документи {name}","newProject":"+ Новий проект","createProject":"Створіть свій перший проект, натиснувши «Новий проект» вище."},"uploadDialog":{"docUpload":"Завантаження документа","docUploadProj":"Завантаження документа в {title}","beginUpload":"Почати завантаження","pdfSizeWarning":"Ви можете завантажувати лише PDF-файли менше {size}.","nonPdfSizeWarning":"Ви можете завантажувати лише не PDF-файли менше {size}.","fileReady":"{n, plural, one {файл} few {файли} many {файли} other {файли}} готові до завантаження","fileLimitWarning":"Ви можете завантажити тільки {limit} файлів за один раз.","moreOptions":"Інші параметри","selectFiles":"+ Вибрати файли","dragDrop":"Перетягніть файли сюди","publicMsg":"Документ буде загальнодоступним.","collabMsg":"Документ буде доступний для перегляду вашій організації.","privateMsg":"Документ буде доступний для перегляду тільки вам.","collabName":"Організація","submitting":"Майже готово... подання завантажених файлів для обробки ({percent})","uploading":"Завантаження... ({uploaded}/{length})","gettingInfo":"Отримання інформації щодо вивантаження ({percent})","pleaseLeaveOpen":"Будь ласка, залишіть цю сторінку відкритою, під час завантаження документів. Це вікно буде автоматично закрите по завершенню завантаження.","errorHeading":"Сталася помилка під час завантаження","errorMsg":"Не вдалося {errorMessage}. Будь ласка, спробуйте ще раз пізніше.","editDocInfo":"Редагувати інформацію документа:","untitled":"Без назви","uploadFiles":"Завантажити додаткові файли","selectMore":"+ Вибрати більше файлів","dragDropMore":"Перетягніть додаткові файли сюди"},"embedNote":{"viewTheNote":"Переглянути нотатку \'{title}\' в її оригінальному документі на DocumentCloud в новому вікні або вкладці","viewDoc":"Переглянути весь документ з DocumentCloud"},"embedPage":{"viewDoc":"Переглянути {title} повністю на DocumentCloud у новому вікні або вкладці","pageOf":"Сторінка {page} з {title}","gotoDocCloud":"Перейти до DocumentCloud у новому вікні або вкладці"},"entities":{"back":"Назад","page":"Сторінка","of":"із","totalEntityResult":"{n, plural, one {# підсумок осіб} other {# підсумків осіб}} ","filter":"Фільтр","applyFilters":"Застосувати фільтри","kind":"Тип","clear":"Очистити","person":"Особа","org":"Організація","location":"Розташування","event":"Подія","workOfArt":"Витвір мистецтва","consumerGood":"Споживчий товар","address":"Адреса","date":"Дата","number":"Кількість","phoneNumber":"Номер телефону","price":"Ціна","unknown":"Невідомо","other":"Інше","occurrences":"Випадки","proper":"Належні","common":"Загальні","advanced":"Додатково","relevanceThreshold":"Поріг відповідності:","knowledgeGraph":"База знань:","hasKG":"Має ідентифікатор бази знань","noKG":"Не має ідентифікатора бази знань","wikiUrl":"URL-адреса на Вікіпедії:","hasWiki":"Має URL-адресу на Вікіпедії","noWiki":"Немає URL-адресу на Вікіпедії","occurrence":"{n, plural, one {# випадок} other {# випадків}}","wikipedia":"Wikipedia","entityExtraction":"Вилучити особу для “{title}”","extractingEntities":"Вилучення осіб...","welcome":"Ласкаво просимо до функції вилучення осіб! Ця функція ще доробляється, але ми хочемо, щоб вона була у ваших руках раніше, тому раді будь-яким відгукам, які ви маєте.","manual":"Зараз процес вилучання осіб здійснюється вручну. У цьому документі ще не було вилучено осіб, тому натисніть нижче, щоб розпочати роботу.","error":"Сталась непередбачена помилка","extract":"Вилучити осіб","noEntities":"Немає осіб. Це може статися, якщо у документі немає тексту, він неанглійською (лише англійська мовна функція підтримується зараз), або відбулася помилка.","starting":"Запуск вилучення..."},"home":{"about":"DocumentCloud — це універсальна платформа для документів: завантаження, упорядкування, аналіз, анотування, пошук і вбудовування.","viewPublicDocs":"Перегляд публічних документів"},"annotation":{"title":"Заголовок анотації","description":"Опис анотації (необов\'язково)","unchanged":"Нотатка залишається без змін","noTitle":"Введіть заголовок для анотації","org":"Ця нотатка видима лише вам та іншим з доступом до редагування цього документа","private":"Ця приватна нотатка видима лише вам","by":"Примітка від {name}","byOrg":"Примітка від {name}, {org}","addPageNote":"Додати нотатку до сторінки"},"viewDropdown":{"document":"Документ","plainText":"Звичайний текст","thumbnail":"Мініатюра","notes":"Нотатки","search":"Результати пошуку"},"zoom":{"fitWidth":"Вмістити за шириною","fitHeight":"Вмістити за висотою"},"titleHeader":{"contributedBy":"Внесено {name}"},"annotatePane":{"annotateDocument":"Анотувати документ","desc":"Виділіть частину сторінки або клацніть між сторінками, щоб створити нотатку."},"modifyPane":{"pagesSelected":"{n, plural, one {# сторінка} other {# сторінки}} вибрано","applyModifications":"Застосувати зміни","duplicate":"Дублювати","move":"Перемістити","rotate":"Повернути","unselect":"Зняти віділення","remove":"Видалити","insertPages":"Вставити {n, plural, one {# cторінкe} few {# сторінки} many {# сторінок} other {# сторінок}}","pagesPending":"{n, plural, one {# сторінка} few {# сторінки} many {# сторінок} other {# сторінок}} в очікуванні вставки","insertBegin":"Вставити {n, plural, one {# сторінку} other {# сторінок}} на початку.","insertEnd":"Вставити {n, plural, one {# сторінку} few {# сторінки} many {# сторінок} other {# сторінок}}.","insertBetween":"Вставити {n, plural, one {# сторінку} few {# сторінки} many {# сторінок} other {# сторінки}} між сторінкою {p0} і {p1}.","click":"Натисніть між сторінками, щоб відмітити, де вставити {n, plural, one {# сторінку} few {# сторінки} many {# сторінок} other {# сторінок}}.","insert":"Вставити","insertAtEnd":"Вставити в кінці","insertPosition":"Вставляти сторінки в положення","insertOtherDoc":"Вставити з іншого документа","modifyPages":"Змінити сторінки","select":"Виберіть сторінки нижче, щоб застосувати зміни (поворот сторінки, перевпорядкування та видалення). Натисніть між сторінками, щоб вставити.","undo":"Відмінити","redo":"Повторити"},"redactPane":{"redactDoc":"Редакція документа","desc":"Натисніть і перетягніть, щоб намалювати чорний прямокутник над кожною частиною документа, який ви хочете відредагувати. Пов’язаний текст буде видалено, коли ви збережете редакції.","confirm":"Підтвердження редакцій","undo":"Відмінити"},"searchPane":{"yourQuery":"Ваш запит {search} був знайдений на {n, plural, one {# сторінці} few {# сторінках} many {# сторінках} other {# сторінках}}"},"selectNotePane":{"selectNote":"Виберіть нотатку","desc":"Виберіть примітку, якою хочете поділитися."},"searchResults":{"resultPages":"{results, plural, one {# результат} few {# результата} many {# результатів} other {# результат}} на {pages, plural, one {# сторінці} few {# сторінках} many {# сторінках} other {# сторінках}}","noSearchResults":"Пошук не дав результатів. Спробуйте ще раз з ширшим запитом.","occurrences":"{n, plural, one {випадок} other {віпадків}}"},"sidebar":{"updating":"Оновлення документа...","original":"Оригінальний документ (PDF)","related":"Пов\'язана стаття »","contributed":"Внесено {name}","source":"Джерело: {source}","actions":"Дії документа","share":"Поділитися","shareDesc":"Створіть вставку або поділиться в соціальних мережах.","annotate":"Аннотації","annotateDesc":"Зробити анотації для збереження нотаток на документі.","redact":"Редакція","redactDesc":"Відредагуйте документ, щоб приховати текст. Після цього документ буде повторно оброблено.","modify":"Змінити сторінки","modifyDesc":"Переставити, повернути, видалити, вставити та розділити сторінки.","info":"Редагувати інформацію документа","infoDesc":"Змінити інформацію про документ, такі як опис і пов\'язану URL-адресу.","data":"Редагувати теги та дані","dataDesc":"Додайте теги та пари ключ/значення для категоризації документа.","sections":"Редагувати розділи","sectionsDesc":"Додавайте розділи для організації документа за допомогою таблиці вмісту.","privateNote":"Додати приватну нотатку","privateNoteDesc":"Зробити анотації для збереження нотаток у документі."},"viewer":{"notFound":"Документ не знайдено","notFoundDesc":"Запитаний вами документ або не існує, або у вас немає дозволу на доступ до нього","processing":"Документ обробляється","processingDesc":"Документ, який ви запитали, обробляється і автоматично оновиться, коли він буде готовий","error":"З документом сталася помилка","errorDesc":"Сталася помилка обробки в документі, який ви запитували","accessible":"Документ недоступний","accessibleDesc":"Запитаний документ досі обробляється, або вам не вистачає дозволу на доступ до нього"},"addonDispatchDialog":{"select":"Виберіть, з якими документами ви хочете запустити цей додаток:","queryNoSelected":"Цей додаток спробує запуститися з {n, plural, one {# документом} other {# документами}} наразі включених до ваших результатів пошуку. Щоб запустити його лише з вибраними документами, скасуйте це і виберіть деякі з них - потім знову виберіть додаток.","noSelected":"Ви повинні вибрати деякі документи, щоб запустити їх. Скасуйте цей та виберіть деякі з них, а потім виберіть додаток знову.","runSelected":"Цей додаток спробує запуститися з {n, plural, one {# наразі обраним документом} other {наразі обраними документами}}.","runQuery":"Цей додаток спробує запуститися з {n, plural, one {# документом} other {# документами}} наразі включеними до ваших результатів пошуку.","labelSelected":"{n, plural, one {# обраний наразі документ} few {# обраних наразі документа} many {# обраних наразі документів} other {# обраних наразі документів}}","labelQuery":"{n, plural, one {# документ} few {# документа} many {# документів} other {# документів}} з поточних результатів пошуку","learnMore":"Дізнатися більше.","hideAddons":"Сховати заплановані додатки","showRuns":"Показати запуски","hideRuns":"Приховати запуски","showAddons":"Показати заплановані додатки ({n})","runSchedule":"Запуск за розкладом:","disable":"Вимкнути"},"addonBrowserDialog":{"searchPlaceholder":"Пошук...","active":"Активне","inactive":"Неактивне","next":"Далі","previous":"Назад"},"uploadEmailDialog":{"uploadEmailAddress":"Вивантажити через email","bodyText":"Ви можете завантажити документи до вашого аккаунту, відправивши їх на спеціальний email в якості вкладених файлів. З міркувань безпеки цей email відображається вам лише один раз. Скопіюйте його в захищене розташування: він прийме вкладення з будь-якого облікового запису електронної пошти. Ви можете згенерувати нову адресу завантаження у будь-який час (який відключить попередній) або взагалі вимкнути цю функцію. Документи завантажуються як приватні.
\n","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","import { Svue } from \"svue\";\n\nconst DOCUMENTCLOUD_TOKEN_STORAGE_KEY = \"documentcloud_token\";\n\nexport const SQUARELET_URL = process.env.SQUARELET_BASE;\nexport const SIGN_IN_URL = process.env.DC_BASE + process.env.DC_LOGIN;\nexport const SIGN_UP_URL =\n process.env.SQUARELET_BASE +\n process.env.SQUARELET_SIGNUP +\n encodeURIComponent(window.location.href);\nexport const SIGN_OUT_URL = process.env.DC_BASE + process.env.DC_LOGOUT;\n\nexport const auth = new Svue({\n data() {\n return {\n signingIn: false,\n key: null,\n };\n },\n computed: {\n isAuthenticated(key) {\n return key !== null;\n },\n },\n});\n\nexport function login() {\n setToken(true);\n}\n\nexport function logout() {\n // TODO: use some Squarelet method and have a finally clause of removeToken()\n // for now, we just \"forget\" we're logged in\n removeToken();\n}\n\n// Token methods\nfunction initialize() {\n try {\n const storedData = localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n if (storedData === null) {\n // Logged in\n return;\n }\n if (storedData !== null) {\n const key = JSON.parse(storedData);\n setToken(key);\n return;\n }\n } catch (e) {\n removeToken();\n return;\n }\n\n removeToken();\n return;\n}\n\nfunction setToken(key) {\n // Set the token state.\n try {\n localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY, JSON.stringify(key));\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = key;\n}\n\nfunction removeToken() {\n try {\n localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = null;\n}\n\n// Initialize the token\ninitialize();\n","const languageCodes = process.env.LANGUAGE_CODES.split(\"|\");\nconst languageNames = process.env.LANGUAGE_NAMES.split(\"|\");\nexport const defaultLanguage = process.env.DEFAULT_LANGUAGE;\n\nfunction makeLanguagePairs(codes, names) {\n const results = [];\n for (let i = 0; i < codes.length; i++) {\n results.push([codes[i], names[i]]);\n }\n results.sort((a, b) => (a[1] > b[1] ? 1 : a[1] < b[1] ? -1 : 0));\n return results;\n}\n\nexport const languages = makeLanguagePairs(languageCodes, languageNames);\n\nconst textractLanguageCodes = [\"eng\", \"spa\", \"ita\", \"por\", \"fra\", \"deu\"];\nexport const textractLanguages = languages.filter((l) =>\n textractLanguageCodes.indexOf(l[0]) != -1\n);\n","const docTitleLimit = process.env.DOCUMENT_TITLE_CHAR_LIMIT;\nconst docSourceLimit = process.env.DOCUMENT_SOURCE_CHAR_LIMIT;\nconst docDescriptionLimit = process.env.DOCUMENT_DESCRIPTION_CHAR_LIMIT;\nconst relatedArticleLimit = process.env.RELATED_ARTICLE_URL_CHAR_LIMIT;\nconst publishedUrlLimit = process.env.PUBLISHED_URL_CHAR_LIMIT;\n\nexport const metaDialogs = [\n {\n menuTitle: \"metaFields.titleFieldTitle\",\n charLimit: docTitleLimit,\n fieldAccessor: (x) => x.title,\n fieldName: \"metaFields.titleFieldName\",\n fieldNameUppercase: \"metaFields.titleFieldNameUppercase\",\n apiField: \"title\",\n headerText: \"metaFields.titleFieldHeader\",\n explainerText: \"metaFields.titleFieldDescription\",\n buttonText: \"metaFields.titleFieldButton\",\n fieldValid: (value, initial) => value != initial && value.trim().length > 0,\n fieldInvalidText: (value, initial) =>\n value == initial\n ? \"metaFields.titleFieldInvalidSameName\"\n : value.trim().length == 0\n ? \"metaFields.titleFieldInvalidEmptyName\"\n : \"\",\n disabled: (numSelected) => numSelected != 1,\n },\n {\n menuTitle: \"metaFields.sourceFieldTitle\",\n charLimit: docSourceLimit,\n fieldAccessor: (x) => x.source,\n fieldName: \"metaFields.sourceFieldName\",\n fieldNameUppercase: \"metaFields.sourceFieldNameUppercase\",\n apiField: \"source\",\n headerText: \"metaFields.sourceFieldHeader\",\n explainerText: \"metaFields.sourceFieldDescription\",\n buttonText: \"metaFields.sourceFieldButton\",\n },\n {\n menuTitle: \"metaFields.descriptionFieldTitle\",\n charLimit: docDescriptionLimit,\n fieldAccessor: (x) => x.description,\n fieldName: \"metaFields.descriptionFieldName\",\n fieldNameUppercase: \"metaFields.descriptionFieldNameUppercase\",\n apiField: \"description\",\n headerText: \"metaFields.descriptionFieldHeader\",\n explainerText: \"metaFields.descriptionFieldDescription\",\n isTextArea: true,\n buttonText: \"metaFields.descriptionFieldButton\",\n },\n {\n menuTitle: \"metaFields.relatedArticleFieldTitle\",\n charLimit: relatedArticleLimit,\n fieldAccessor: (x) => x.relatedArticleUrl,\n fieldName: \"rmetaFields.relatedArticleFieldName\",\n fieldNameUppercase: \"metaFields.relatedArticleFieldNameUppercase\",\n apiField: \"related_article\",\n headerText: \"metaFields.relatedArticleFieldHeader\",\n explainerText: \"metaFields.relatedArticleFieldDescription\",\n buttonText: \"metaFields.relatedArticleFieldButton\",\n },\n {\n menuTitle: \"metaFields.publishedUrlFieldTitle\",\n charLimit: publishedUrlLimit,\n fieldAccessor: (x) => x.publishedUrl,\n fieldName: \"metaFields.publishedUrlFieldName\",\n fieldNameUppercase: \"metaFields.publishedUrlFieldNameUppercase\",\n apiField: \"published_url\",\n headerText: \"metaFields.publishedUrlFieldHeader\",\n explainerText: \"metaFields.publishedUrlFieldDescription\",\n buttonText: \"metaFields.publishedUrlFieldButton\",\n },\n];\n","import { timeoutify } from \"@/util/closure.js\";\n\nexport function informSize(\n element,\n useScrollDimension = true,\n updateStyleProps = false,\n) {\n // Inform a parent window about an embed size\n const update = () => {\n window.parent.postMessage(\n {\n width: Math.max(\n useScrollDimension ? element.scrollWidth : 0,\n element.offsetWidth,\n ),\n height: Math.max(\n useScrollDimension ? element.scrollHeight : 0,\n element.offsetHeight,\n ),\n updateStyleProps,\n },\n \"*\",\n );\n };\n\n // Trigger event now and any time the window resizes\n window.addEventListener(\"resize\", timeoutify(update));\n update();\n}\n\nexport function setupResizeEvent(iframe) {\n window.addEventListener(\"message\", (event) => {\n if (event.source == iframe.contentWindow) {\n const { width, height, updateStyleProps } = event.data;\n if (width != null) {\n iframe.width = width;\n }\n if (height != null) {\n iframe.height = height;\n if (updateStyleProps) {\n // Set max height\n const existingMaxHeight = parseFloat(\n iframe.dataset.cachemaxheight || iframe.style.maxHeight,\n );\n const existingMinHeight = parseFloat(\n iframe.dataset.cacheminheight || iframe.style.minHeight,\n );\n if (\n !isNaN(existingMaxHeight) &&\n existingMaxHeight != null &&\n !isNaN(existingMinHeight) &&\n existingMinHeight != null\n ) {\n // Cache original maxheight\n iframe.dataset.cachemaxheight = existingMaxHeight;\n iframe.dataset.cacheminheight = existingMinHeight;\n iframe.style.maxHeight =\n \"\" + Math.min(existingMaxHeight, height) + \"px\";\n iframe.style.minHeight =\n \"\" + Math.max(existingMinHeight, height) + \"px\";\n } else {\n iframe.style.maxHeight = \"\" + height + \"px\";\n iframe.style.minHeight = \"\" + height + \"px\";\n }\n }\n }\n }\n });\n}\n","export function smoothify(fn) {\n let timer = null;\n\n return (...args) => {\n if (timer != null) {\n cancelAnimationFrame(timer);\n timer = null;\n }\n\n timer = requestAnimationFrame(() => {\n timer = null;\n fn(...args);\n });\n };\n}\n\nexport function timeoutify(fn, timeout = 100) {\n let timer = null;\n\n return (...args) => {\n if (timer != null) {\n clearTimeout(timer);\n timer = null;\n }\n\n timer = setTimeout(() => {\n timer = null;\n fn(...args);\n }, timeout);\n };\n}\n\nexport function ignoreFirst(closure) {\n // Ignore first invocation of a function\n let first = true;\n return (...args) => {\n if (first) {\n first = false;\n } else {\n closure(...args);\n }\n };\n}\n"],"names":["toString","author","name","repository","usage","active","addon","date_format","created_at","progress","includes","uuid","rating","comment","message","file_url","status","me","newPage","nopadding","homeLink","toUrl","$orgsAndUsers","small","inline","has","input","label","placeholder","options","selected","value","valueToName","reduce","m","opt","set","Map","nameToValue","get","e","values","organization","n","monthly_ai_credits","language","forceOcr","ocrEngine","hasTextract","feature_level","languageName","languages","code","find","defaultLanguageName","ocrEngines","async","selectLanguages","REM","publishedUrl","trim","length","Math","floor","id","slugId","thumbnail","viewable","pending","document","embed","dialog","noteCount","publicNote","orgNote","privateNote","emit","pick","realProgress","$documents","realProgressMap","pagesProcessed","pagesProcessedMap","pageCount","pageCountMap","dispatch","checkbox","checked","indeterminate","disabled","results","count","onlyPage","hasPrev","hasNext","search","start","end","rawResults","hasResults","manager","data","documents","layout","computed","hasDocuments","allSelected","every","doc","selectedMap","someSelected","hasSelection","noneSelected","removeSelected","changeAccessSelected","numSelected","accessEditDocuments","slice","changeOwnerSelected","ownerEditDocuments","reprocessSelected","reprocessDocuments","cancelProcessSelected","editDataSelected","showDiagnosticsSelected","diagnosticsOpen","showMailkeySelected","mailkeyOpen","menuTitle","metaDialogs","isStaff","processing","allProcessing","canChangeOwner","visible","$layout","filter","userId","publicAccess","organizations","indexOf","orgId","docs","documentInfoOpen","meta","metaOpen","editMetaSelected","title","project","scope","caption","addRemoveableProjects","alphabetizedProjects","projects","sort","a","b","localeCompare","$projects","addonURL","window","plausible","q","push","arguments","alphabetizedAddons","$pinned","loggedIn","selectionEditable","loading","outerHeight","editVisible","detail","forEach","selectAll","closed","langs","triggerWindowResize","dispatchEvent","Event","change","org","updateLanguage","$locale","localStorage","setItem","list","individual","currentOrg","orgs","selfOrgs","individualOrg","documentTypes","split","map","x","toLowerCase","filterFiles","files","file","endsWith","dragging","leave","Array","from","handleFiles","dataTransfer","source","createdAt","format","userName","userOrgString","description","error","nofile","projectIds","highlights","noteHighlights","readable","dataPoints","editAccess","projectsById","text","type","page","passages","relativePageUrl","aspect","pageNumber","note","isPageNote","titlePassages","hlContent","relativeNoteUrl","notes","some","access","expandHighlights","closeHighlights","closeNoteHighlights","shiftKey","highlightsActive","trimmedHighlights","moreToExpand","key","params","oneUserSearch","noStatus","noAccess","isVerified","doneProcessing","processingProgress","numProcessing","dismissed","subscribe","link","contact","version","endpoint","URL","base","resp","fetch","ok","content","json","load","show","showContact","delete","done","uploadMode","size","secondary","multiselect","join","picker","click","fileList","i","limit","errorMessage","allUploaded","percent","uploaded","index","setDismissable","initialFiles","uploadFiles","uploadAdditional","LIMIT","parseInt","PDF_SIZE_LIMIT","DOCUMENT_SIZE_LIMIT","numUploaded","tooManyFiles","tooManyBigFiles","createProgress","processProgress","uploadInProgress","newFiles","hasTooBigPdf","hasTooBigDocument","newFile","isPdf","removeFile","uploadProject","$search","oneProjectSearch","displayFiles","total","createProgressPercent","processProgressPercent","uploading","goodDocuments","newName","$_","projectEmbedTitle","projectEmbedId","duration","query","projectEmbedSearchBar","containerElem","containerWidth","containerHeight","preUploadFiles","anonymousClosed","newTitle","isSearch","oneOrZeroAccesses","oneAccessSearch","user","usersById","projs","oneOrgSearch","orgsById","isAllSearch","languageOptions","sortCompletions","info","feed","validSorts","fieldValid","example","fieldMatch","match","valid","field","transform","startsWith","completions","highlightLetters","score","completionScore","completion","lastPos","char","charAt","idx","completionFilter","candidates","candidate","fieldAliases","account","group","order","alias","mirror","compact","forceInput","bubbles","target","selectionStart","selectionEnd","completionCache","asyncComplete","fieldPost","then","mappedOrgs","mappedUsers","isMe","orgsAndUsers","mappedUser","unshift","mapped","triggerCompletion","deleteChars","individualSelection","setPreserveSpace","insert","restoreSelectionPosition","substr","setSelectionRange","preserveSpace","preserveSpaceOnKeyPress","preserveSpaceIndex","handleCursor","space","fieldPreIndex","completionX","setCompletionX","allChunks","highlight","concat","pos","highlightIdx","children","completionLeft","firstChild","getBoundingClientRect","completionRight","right","escPressed","completionIndex","transformedQuery","selectionAtEnd","searchPre","searchPost","showCompletions","test","fieldRaw","fieldPre","processedCompletions","processCompletions","selectedCompletion","noCompletion","autocomplete","ensureValidity","String","fromCharCode","keyCode","which","preventDefault","unsubscribe","filePickerUser","router","route","resolvedRoute","props","module","exports","DOCUMENTCLOUD_TOKEN_STORAGE_KEY","SQUARELET_URL","SIGN_IN_URL","SIGN_UP_URL","encodeURIComponent","location","href","SIGN_OUT_URL","auth","signingIn","isAuthenticated","setToken","JSON","stringify","removeToken","removeItem","storedData","getItem","parse","initialize","languageCodes","languageNames","defaultLanguage","codes","names","makeLanguagePairs","textractLanguageCodes","textractLanguages","l","charLimit","fieldAccessor","fieldName","fieldNameUppercase","apiField","headerText","explainerText","buttonText","initial","fieldInvalidText","isTextArea","relatedArticleUrl","informSize","element","useScrollDimension","updateStyleProps","update","parent","postMessage","width","max","scrollWidth","offsetWidth","height","scrollHeight","offsetHeight","addEventListener","timeoutify","fn","timeout","timer","args","clearTimeout","setTimeout"],"sourceRoot":""}
-./public/9811.e59ecf3bc82acb0b97f4.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="7ef81f28-83bd-40ef-94ec-8494626303af",e._sentryDebugIdIdentifier="sentry-dbid-7ef81f28-83bd-40ef-94ec-8494626303af")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[9811],{2869:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return AddOnListItem_svelte},g:function(){return pinned}});var internal=__webpack_require__(4234),store=__webpack_require__(8261),runtime_esm=__webpack_require__(6469),base=__webpack_require__(5364),session=__webpack_require__(9596),Pin_svelte=__webpack_require__(6666);function create_fragment(ctx){let button,pin,current,mounted,dispose;return pin=new Pin_svelte.Z({props:{title:ctx[4],size:ctx[0]}}),{c(){button=(0,internal.bGB)("button"),(0,internal.YCL)(pin.$$.fragment),(0,internal.Ljt)(button,"class","pin svelte-7k8afm"),(0,internal.Ljt)(button,"style",ctx[3]),(0,internal.VHj)(button,"active",ctx[1]),(0,internal.VHj)(button,"disabled",ctx[2])},m(target,anchor){(0,internal.$Tr)(target,button,anchor),(0,internal.yef)(pin,button,null),current=!0,mounted||(dispose=(0,internal.oLt)(button,"click",ctx[5]),mounted=!0)},p(ctx,[dirty]){const pin_changes={};16&dirty&&(pin_changes.title=ctx[4]),1&dirty&&(pin_changes.size=ctx[0]),pin.$set(pin_changes),(!current||8&dirty)&&(0,internal.Ljt)(button,"style",ctx[3]),(!current||2&dirty)&&(0,internal.VHj)(button,"active",ctx[1]),(!current||4&dirty)&&(0,internal.VHj)(button,"disabled",ctx[2])},i(local){current||((0,internal.Ui)(pin.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(pin.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(button),(0,internal.vpE)(pin),mounted=!1,dispose()}}}function instance($$self,$$props,$$invalidate){let title,cssVarStyles,{size:size=1}=$$props,{active:active=!1}=$$props,{disabled:disabled=!1}=$$props;return $$self.$$set=$$props=>{"size"in $$props&&$$invalidate(0,size=$$props.size),"active"in $$props&&$$invalidate(1,active=$$props.active),"disabled"in $$props&&$$invalidate(2,disabled=$$props.disabled)},$$self.$$.update=()=>{6&$$self.$$.dirty&&$$invalidate(4,title=disabled?"Pinning is disabled":active?"Click to Unpin":"Click to Pin"),1&$$self.$$.dirty&&$$invalidate(3,cssVarStyles=`--padding:${.25*size}em; --border-radius:${4*size}px;`)},[size,active,disabled,cssVarStyles,title,function(event){internal.cKT.call(this,$$self,event)}]}class Pin_1 extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{size:0,active:1,disabled:2})}}var common_Pin_svelte=Pin_1,string=__webpack_require__(3581);function Popularity_svelte_create_fragment(ctx){let div,span0,svg,title,t0,path,t1,span1,t2,div_title_value,t0_value=ctx[1]("addonBrowserDialog.usage")+"",t2_value=(0,string.pF)(ctx[0],1)+"";return{c(){div=(0,internal.bGB)("div"),span0=(0,internal.bGB)("span"),svg=(0,internal.bi5)("svg"),title=(0,internal.bi5)("title"),t0=(0,internal.fLW)(t0_value),path=(0,internal.bi5)("path"),t1=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),t2=(0,internal.fLW)(t2_value),(0,internal.Ljt)(path,"d","M12.0007811,5 C11.4477282,5 11.0009113,4.553125 11.0009113,4 C11.0009113,3.446875 11.4477282,3 12.0007811,3 L17.0001302,3 C17.5531832,3 18,3.446875 18,4 L18,9 C18,9.553125 17.5531832,10 17.0001302,10 C16.4470772,10 16.0002604,9.553125 16.0002604,9 L16.0002604,6.415625 L10.7071996,11.70625 C10.3166254,12.096875 9.68233303,12.096875 9.29175889,11.70625 L6.0015623,8.415625 L1.70837131,12.70625 C1.31779716,13.096875 0.683504752,13.096875 0.292930608,12.70625 C-0.097643536,12.315625 -0.097643536,11.68125 0.292930608,11.290625 L5.29227965,6.290625 C5.6828538,5.9 6.3171462,5.9 6.70772035,6.290625 L10.0010415,9.584375 L14.5848197,5 L12.0007811,5 Z"),(0,internal.Ljt)(path,"fill-rule","nonzero"),(0,internal.Ljt)(svg,"width","18px"),(0,internal.Ljt)(svg,"height","16px"),(0,internal.Ljt)(svg,"viewBox","0 0 18 16"),(0,internal.Ljt)(svg,"class","svelte-rk218i"),(0,internal.Ljt)(span0,"class","icon svelte-rk218i"),(0,internal.Ljt)(span1,"class","count"),(0,internal.Ljt)(div,"class","container svelte-rk218i"),(0,internal.Ljt)(div,"title",div_title_value=ctx[0].toString())},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,span0),(0,internal.R3I)(span0,svg),(0,internal.R3I)(svg,title),(0,internal.R3I)(title,t0),(0,internal.R3I)(svg,path),(0,internal.R3I)(div,t1),(0,internal.R3I)(div,span1),(0,internal.R3I)(span1,t2)},p(ctx,[dirty]){2&dirty&&t0_value!==(t0_value=ctx[1]("addonBrowserDialog.usage")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=(0,string.pF)(ctx[0],1)+"")&&(0,internal.rTO)(t2,t2_value),1&dirty&&div_title_value!==(div_title_value=ctx[0].toString())&&(0,internal.Ljt)(div,"title",div_title_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div)}}}function Popularity_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));let{useCount:useCount}=$$props;return $$self.$$set=$$props=>{"useCount"in $$props&&$$invalidate(0,useCount=$$props.useCount)},[useCount,$_]}class Popularity extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Popularity_svelte_instance,Popularity_svelte_create_fragment,internal.N8,{useCount:0})}}var Popularity_svelte=Popularity;function create_if_block_2(ctx){let p,a,t,a_href_value,a_title_value,t_value=ctx[0].author.name+"";return{c(){p=(0,internal.bGB)("p"),a=(0,internal.bGB)("a"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(a,"href",a_href_value="http://github.com/"+ctx[0].repository),(0,internal.Ljt)(a,"target","_blank"),(0,internal.Ljt)(a,"rel","noopener noreferrer"),(0,internal.Ljt)(a,"title",a_title_value=ctx[3]("addonBrowserDialog.viewsource")),(0,internal.Ljt)(a,"class","svelte-1xqbc4m"),(0,internal.Ljt)(p,"class","author svelte-1xqbc4m")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,a),(0,internal.R3I)(a,t)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].author.name+"")&&(0,internal.rTO)(t,t_value),1&dirty&&a_href_value!==(a_href_value="http://github.com/"+ctx[0].repository)&&(0,internal.Ljt)(a,"href",a_href_value),8&dirty&&a_title_value!==(a_title_value=ctx[3]("addonBrowserDialog.viewsource"))&&(0,internal.Ljt)(a,"title",a_title_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function create_if_block_1(ctx){let addonpopularity,current;return addonpopularity=new Popularity_svelte({props:{useCount:ctx[0].usage}}),{c(){(0,internal.YCL)(addonpopularity.$$.fragment)},m(target,anchor){(0,internal.yef)(addonpopularity,target,anchor),current=!0},p(ctx,dirty){const addonpopularity_changes={};1&dirty&&(addonpopularity_changes.useCount=ctx[0].usage),addonpopularity.$set(addonpopularity_changes)},i(local){current||((0,internal.Ui)(addonpopularity.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(addonpopularity.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(addonpopularity,detaching)}}}function create_if_block(ctx){let div;return{c(){div=(0,internal.bGB)("div"),(0,internal.Ljt)(div,"class","description svelte-1xqbc4m")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),div.innerHTML=ctx[2]},p(ctx,dirty){4&dirty&&(div.innerHTML=ctx[2])},d(detaching){detaching&&(0,internal.ogt)(div)}}}function AddOnListItem_svelte_create_fragment(ctx){let a,div4,div3,div0,pin,t0,div1,h3,t1,t2,div2,t3,t4,div4_id_value,current,t1_value=ctx[0].name+"";pin=new common_Pin_svelte({props:{active:ctx[0].active}}),pin.$on("click",ctx[4]);let if_block0=ctx[0]?.author?.name&&create_if_block_2(ctx),if_block1=ctx[0].usage&&create_if_block_1(ctx),if_block2=ctx[2]&&create_if_block(ctx);return{c(){a=(0,internal.bGB)("a"),div4=(0,internal.bGB)("div"),div3=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),(0,internal.YCL)(pin.$$.fragment),t0=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),h3=(0,internal.bGB)("h3"),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t3=(0,internal.DhX)(),if_block1&&if_block1.c(),t4=(0,internal.DhX)(),if_block2&&if_block2.c(),(0,internal.Ljt)(div0,"class","center-self svelte-1xqbc4m"),(0,internal.Ljt)(h3,"class","addon-name svelte-1xqbc4m"),(0,internal.Ljt)(div1,"class","stretch svelte-1xqbc4m"),(0,internal.Ljt)(div2,"class","metadata svelte-1xqbc4m"),(0,internal.Ljt)(div3,"class","top-row svelte-1xqbc4m"),(0,internal.Ljt)(div4,"class","container svelte-1xqbc4m"),(0,internal.Ljt)(div4,"id",div4_id_value=ctx[0].repository),(0,internal.Ljt)(a,"class","addon-link svelte-1xqbc4m"),(0,internal.Ljt)(a,"href",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,a,anchor),(0,internal.R3I)(a,div4),(0,internal.R3I)(div4,div3),(0,internal.R3I)(div3,div0),(0,internal.yef)(pin,div0,null),(0,internal.R3I)(div3,t0),(0,internal.R3I)(div3,div1),(0,internal.R3I)(div1,h3),(0,internal.R3I)(h3,t1),(0,internal.R3I)(div3,t2),(0,internal.R3I)(div3,div2),if_block0&&if_block0.m(div2,null),(0,internal.R3I)(div2,t3),if_block1&&if_block1.m(div2,null),(0,internal.R3I)(div4,t4),if_block2&&if_block2.m(div4,null),current=!0},p(ctx,[dirty]){const pin_changes={};1&dirty&&(pin_changes.active=ctx[0].active),pin.$set(pin_changes),(!current||1&dirty)&&t1_value!==(t1_value=ctx[0].name+"")&&(0,internal.rTO)(t1,t1_value),ctx[0]?.author?.name?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_2(ctx),if_block0.c(),if_block0.m(div2,t3)):if_block0&&(if_block0.d(1),if_block0=null),ctx[0].usage?if_block1?(if_block1.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=create_if_block_1(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div2,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),ctx[2]?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block(ctx),if_block2.c(),if_block2.m(div4,null)):if_block2&&(if_block2.d(1),if_block2=null),(!current||1&dirty&&div4_id_value!==(div4_id_value=ctx[0].repository))&&(0,internal.Ljt)(div4,"id",div4_id_value),(!current||2&dirty)&&(0,internal.Ljt)(a,"href",ctx[1])},i(local){current||((0,internal.Ui)(pin.$$.fragment,local),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(pin.$$.fragment,local),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(a),(0,internal.vpE)(pin),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}const pinned=(0,store.fZ)([]);function AddOnListItem_svelte_instance($$self,$$props,$$invalidate){let endpoint,description,url,$pinned,$_,$$unsubscribe_pinned=internal.ZTd;(0,internal.FIv)($$self,pinned,($$value=>$$invalidate(6,$pinned=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value))),$$self.$$.on_destroy.push((()=>$$unsubscribe_pinned()));let{addon:addon}=$$props;return $$self.$$set=$$props=>{"addon"in $$props&&$$invalidate(0,addon=$$props.addon)},$$self.$$.update=()=>{1&$$self.$$.dirty&&(addon?.author||$$invalidate(0,addon.author={name:addon?.repository?.split("/")[0]},addon)),1&$$self.$$.dirty&&(endpoint=new URL(`/api/addons/${addon.id}/`,base.t)),1&$$self.$$.dirty&&$$invalidate(2,description=addon.parameters?.description),1&$$self.$$.dirty&&$$invalidate(1,url=`#add-ons/${addon.repository}`)},[addon,url,description,$_,async function(event){event.preventDefault();const options={credentials:"include",method:"PATCH",headers:{"X-CSRFToken":(0,session._V)(),"Content-type":"application/json"}};$$invalidate(0,addon.active=!addon.active,addon);const resp=await fetch(endpoint,{...options,body:JSON.stringify({active:addon.active})}).catch((err=>($$invalidate(0,addon.active=!addon.active,addon),{ok:!1,statusText:String(err)})));resp.ok||($$invalidate(0,addon.active=!addon.active,addon),console.error(`Problem updating add-on: ${resp.statusText}`)),(0,internal.fxP)(pinned,$pinned=addon.active?[...$pinned,addon]:$pinned.filter((a=>a.id!==addon.id)),$pinned)}]}class AddOnListItem extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AddOnListItem_svelte_instance,AddOnListItem_svelte_create_fragment,internal.N8,{addon:0})}}var AddOnListItem_svelte=AddOnListItem},1195:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Or:function(){return runs}});var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),svelte_store__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(8261),svelte_i18n__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(6469),_common_Progress_svelte__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(5242),_common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(7120),_api_base_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(5364),_api_session_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(9596);function create_else_block_3(ctx){let t,t_value=ctx[0].addon.name+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].addon.name+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_9(ctx){let t,t_value=date_format(ctx[0].created_at)+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=date_format(ctx[0].created_at)+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_4(ctx){let progress,t0,span,button,t1,current_block_type_index,if_block,if_block_anchor,current;progress=new _common_Progress_svelte__WEBPACK_IMPORTED_MODULE_3__.Z({props:{progress:ctx[5]?1:ctx[0].progress/100,initializing:0==ctx[0].progress&&!ctx[5],compact:0==ctx[0].progress&&!ctx[5],failure:ctx[6]}}),button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:ctx[6],$$slots:{default:[create_default_slot_5]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[2]);const if_block_creators=[create_if_block_5,create_else_block_1],if_blocks=[];function select_block_type_1(ctx,dirty){return ctx[5]?0:1}return current_block_type_index=select_block_type_1(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(progress.$$.fragment),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","dismiss svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(progress,target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t0,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t1,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const progress_changes={};33&dirty&&(progress_changes.progress=ctx[5]?1:ctx[0].progress/100),33&dirty&&(progress_changes.initializing=0==ctx[0].progress&&!ctx[5]),33&dirty&&(progress_changes.compact=0==ctx[0].progress&&!ctx[5]),64&dirty&&(progress_changes.failure=ctx[6]),progress.$set(progress_changes);const button_changes={};64&dirty&&(button_changes.danger=ctx[6]),131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(progress.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(progress.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(progress,detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t0),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t1),if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_default_slot_5(ctx){let t,t_value=ctx[8]("dialog.dismiss")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.dismiss")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_else_block_1(ctx){let span,show_if,current_block_type_index,if_block,current;const if_block_creators=[create_if_block_8,create_else_block_2],if_blocks=[];function select_block_type_3(ctx,dirty){return 129&dirty&&(show_if=null),null==show_if&&(show_if=!!ctx[7].includes(ctx[0].uuid)),show_if?0:1}return current_block_type_index=select_block_type_3(ctx,-1),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","cancel")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),if_blocks[current_block_type_index].m(span,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_3(ctx,dirty),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),if_blocks[current_block_type_index].d()}}}function create_if_block_5(ctx){let span,button0,t0,button1,t1,current;button0=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,secondary:1!==ctx[0].rating,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),button0.$on("click",ctx[10]),button1=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,secondary:-1!==ctx[0].rating,$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),button1.$on("click",ctx[11]);let if_block=0!==ctx[0].rating&&create_if_block_6(ctx);return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button0.$$.fragment),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button1.$$.fragment),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block&&if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","rate svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button0,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button1,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t1),if_block&&if_block.m(span,null),current=!0},p(ctx,dirty){const button0_changes={};1&dirty&&(button0_changes.secondary=1!==ctx[0].rating),131072&dirty&&(button0_changes.$$scope={dirty:dirty,ctx:ctx}),button0.$set(button0_changes);const button1_changes={};1&dirty&&(button1_changes.secondary=-1!==ctx[0].rating),131072&dirty&&(button1_changes.$$scope={dirty:dirty,ctx:ctx}),button1.$set(button1_changes),0!==ctx[0].rating?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1)):(if_block=create_if_block_6(ctx),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null)):if_block&&((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block,1,1,(()=>{if_block=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)())},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button0.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button1.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button0.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button1.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button1),if_block&&if_block.d()}}}function create_else_block_2(ctx){let button,current;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:!0,$$slots:{default:[create_default_slot_4]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[3]),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching)}}}function create_if_block_8(ctx){let button,current;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:!0,disabled:!0,$$slots:{default:[create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching)}}}function create_default_slot_4(ctx){let t,t_value=ctx[8]("dialog.cancel")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.cancel")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_3(ctx){let t,t_value=ctx[8]("dialog.cancelling")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.cancelling")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_2(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("👍")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_1(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("👎")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_6(ctx){let span,current_block_type_index,if_block,current;const if_block_creators=[create_if_block_7,create_else_block],if_blocks=[];function select_block_type_2(ctx,dirty){return""===ctx[0].comment?0:1}return current_block_type_index=select_block_type_2(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","info processingText message comment svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"compact",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),if_blocks[current_block_type_index].m(span,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_2(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null)),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"compact",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),if_blocks[current_block_type_index].d()}}}function create_else_block(ctx){let span,t,t_value=ctx[8]("addonProgress.thanks")+"";return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("addonProgress.thanks")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_if_block_7(ctx){let input,input_placeholder_value,t,button,current,mounted,dispose;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[12]),{c(){input=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("input"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"placeholder",input_placeholder_value=ctx[8]("addonProgress.feedback")),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"maxlength","255")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,input,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.BmG)(input,ctx[4]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0,mounted||(dispose=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.oLt)(input,"input",ctx[13]),mounted=!0)},p(ctx,dirty){(!current||256&dirty&&input_placeholder_value!==(input_placeholder_value=ctx[8]("addonProgress.feedback")))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"placeholder",input_placeholder_value),16&dirty&&input.value!==ctx[4]&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.BmG)(input,ctx[4]);const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(input),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching),mounted=!1,dispose()}}}function create_default_slot(ctx){let t,t_value=ctx[8]("dialog.submit")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.submit")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block(ctx){let div,t0,t1,if_block0=ctx[0].message&&create_if_block_3(ctx),if_block1=ctx[0].message&&ctx[0].file_url&&create_if_block_2(ctx),if_block2=ctx[0].file_url&&create_if_block_1(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0&&if_block0.c(),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","info message processingText svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"compact",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t1),if_block2&&if_block2.m(div,null)},p(ctx,dirty){ctx[0].message?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_3(ctx),if_block0.c(),if_block0.m(div,t0)):if_block0&&(if_block0.d(1),if_block0=null),ctx[0].message&&ctx[0].file_url?if_block1||(if_block1=create_if_block_2(ctx),if_block1.c(),if_block1.m(div,t1)):if_block1&&(if_block1.d(1),if_block1=null),ctx[0].file_url?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_1(ctx),if_block2.c(),if_block2.m(div,null)):if_block2&&(if_block2.d(1),if_block2=null),2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"compact",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_3(ctx){let t,t_value=ctx[0].message+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].message+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_2(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("-")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_1(ctx){let a,t,a_href_value,t_value=ctx[8]("addonProgress.download")+"";return{c(){a=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("a"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value=ctx[0].file_url),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"class","svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,a,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(a,t)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("addonProgress.download")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value),1&dirty&&a_href_value!==(a_href_value=ctx[0].file_url)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(a)}}}function create_fragment(ctx){let div1,div0,t0,t1,t2,t3,div1_class_value,current,t1_value=ctx[9](ctx[0].status)+"";function select_block_type(ctx,dirty){return ctx[1]?create_if_block_9:create_else_block_3}let current_block_type=select_block_type(ctx),if_block0=current_block_type(ctx),if_block1=!ctx[1]&&create_if_block_4(ctx),if_block2=(ctx[0].message||ctx[0].file_url)&&create_if_block(ctx);return{c(){div1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),div0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0.c(),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("\n - "),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t1_value),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div0,"class","info processingText svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div0,"compact",ctx[1]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div1,"class",div1_class_value="addonRun "+ctx[0].status+" svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div1,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,div0),if_block0.m(div0,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div0,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div0,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,t2),if_block1&&if_block1.m(div1,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,t3),if_block2&&if_block2.m(div1,null),current=!0},p(ctx,[dirty]){current_block_type===(current_block_type=select_block_type(ctx))&&if_block0?if_block0.p(ctx,dirty):(if_block0.d(1),if_block0=current_block_type(ctx),if_block0&&(if_block0.c(),if_block0.m(div0,t0))),(!current||1&dirty)&&t1_value!==(t1_value=ctx[9](ctx[0].status)+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t1,t1_value),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div0,"compact",ctx[1]),ctx[1]?if_block1&&((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)()):if_block1?(if_block1.p(ctx,dirty),2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1,1)):(if_block1=create_if_block_4(ctx),if_block1.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1,1),if_block1.m(div1,t3)),ctx[0].message||ctx[0].file_url?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block(ctx),if_block2.c(),if_block2.m(div1,null)):if_block2&&(if_block2.d(1),if_block2=null),(!current||1&dirty&&div1_class_value!==(div1_class_value="addonRun "+ctx[0].status+" svelte-56sm9o"))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div1,"class",div1_class_value)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block1),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div1),if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}const runs=(0,svelte_store__WEBPACK_IMPORTED_MODULE_1__.fZ)([]),cancelled=(0,svelte_store__WEBPACK_IMPORTED_MODULE_1__.fZ)([]);function date_format(s){return new Date(s).toLocaleString()}function instance($$self,$$props,$$invalidate){let failure,done,$cancelled,$runs,$_,$$unsubscribe_cancelled=svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,$$unsubscribe_runs=svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,cancelled,($$value=>$$invalidate(7,$cancelled=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,runs,($$value=>$$invalidate(14,$runs=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,svelte_i18n__WEBPACK_IMPORTED_MODULE_2__._,($$value=>$$invalidate(8,$_=$$value))),$$self.$$.on_destroy.push((()=>$$unsubscribe_cancelled())),$$self.$$.on_destroy.push((()=>$$unsubscribe_runs()));let{run:run}=$$props,{compact:compact=!1}=$$props,comment="";async function update(params,method="PATCH"){const endpoint=new URL(`/api/addon_runs/${run.uuid}/`,_api_base_js__WEBPACK_IMPORTED_MODULE_6__.t);"DELETE"!==method&&endpoint.searchParams.set("expand","addon");const options={credentials:"include",headers:{"X-CSRFToken":(0,_api_session_js__WEBPACK_IMPORTED_MODULE_5__._V)()},method:method};"DELETE"!==method&&(options.body=JSON.stringify(params),options.headers["Content-type"]="application/json");const resp=await fetch(endpoint,options);if(!resp.ok)throw new Error(resp.statusText);if("DELETE"!==method)return resp.json()}async function rate(val){const newVal=run.rating===val?0:val;$$invalidate(0,run=await update({rating:newVal}))}return $$self.$$set=$$props=>{"run"in $$props&&$$invalidate(0,run=$$props.run),"compact"in $$props&&$$invalidate(1,compact=$$props.compact)},$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(6,failure="failure"===run.status),1&$$self.$$.dirty&&$$invalidate(5,done="queued"!==run.status&&"in_progress"!==run.status)},[run,compact,async function(){$$invalidate(0,run=await update({dismissed:!0})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fxP)(runs,$runs=$runs.filter((r=>r.uuid!==run.uuid)),$runs)},async function(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fxP)(cancelled,$cancelled=[...$cancelled,run.uuid],$cancelled),await update({},"DELETE")},comment,done,failure,$cancelled,$_,function(status){return"cancelled"===status?$_("addonProgress.timedOut"):status.split("_").map((s=>s.charAt(0).toUpperCase()+s.slice(1))).join(" ")},function(){rate(1)},function(){rate(-1)},async function(){$$invalidate(0,run=await update({comment:comment}))},function(){comment=this.value,$$invalidate(4,comment)}]}class AddonRun extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{run:0,compact:1,dismiss:2,cancel:3})}get dismiss(){return this.$$.ctx[2]}get cancel(){return this.$$.ctx[3]}}__webpack_exports__.ZP=AddonRun},4386:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),_router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(3566),_manager_orgsAndUsers_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5340),_search_search_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(6046),_router_router_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(3356),_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(393),_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5__);function create_else_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[0],inlineBlock:!0,toUrl:ctx[3],$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty&&(link_changes.newPage=ctx[0]),8&dirty&&(link_changes.toUrl=ctx[3]),34&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_if_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[0],inlineBlock:!0,toUrl:ctx[3],$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty&&(link_changes.newPage=ctx[0]),8&dirty&&(link_changes.toUrl=ctx[3]),34&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_default_slot_1(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","svelte-35bemg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default()},p(ctx,dirty){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_default_slot(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","svelte-35bemg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default()},p(ctx,dirty){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_fragment(ctx){let current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block,create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return null!==ctx[2].me?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function instance($$self,$$props,$$invalidate){let toUrl,$orgsAndUsers;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,_manager_orgsAndUsers_js__WEBPACK_IMPORTED_MODULE_2__.pn,($$value=>$$invalidate(2,$orgsAndUsers=$$value)));let{newPage:newPage=!1}=$$props,{nopadding:nopadding=!1}=$$props,{homeLink:homeLink=!1}=$$props;return $$self.$$set=$$props=>{"newPage"in $$props&&$$invalidate(0,newPage=$$props.newPage),"nopadding"in $$props&&$$invalidate(1,nopadding=$$props.nopadding),"homeLink"in $$props&&$$invalidate(4,homeLink=$$props.homeLink)},$$self.$$.update=()=>{20&$$self.$$.dirty&&$$invalidate(3,toUrl=homeLink?(0,_router_router_js__WEBPACK_IMPORTED_MODULE_4__.DW)("default"):null!=$orgsAndUsers.me?(0,_search_search_js__WEBPACK_IMPORTED_MODULE_3__.GN)($orgsAndUsers.me):(0,_router_router_js__WEBPACK_IMPORTED_MODULE_4__.DW)("app"))},[newPage,nopadding,$orgsAndUsers,toUrl,homeLink]}class Logo extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{newPage:0,nopadding:1,homeLink:4})}}__webpack_exports__.Z=Logo},4725:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234);function create_fragment(ctx){let div,current;const default_slot_template=ctx[3].default,default_slot=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.nuO)(default_slot_template,ctx,ctx[2],null);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),default_slot&&default_slot.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","primary svelte-1dbe0bg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"small",ctx[0]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"inline",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||4&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.kmG)(default_slot,default_slot_template,ctx,ctx[2],current?(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.u2N)(default_slot_template,ctx[2],dirty,null):(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VOJ)(ctx[2]),null),(!current||1&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"small",ctx[0]),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"inline",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(default_slot,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),default_slot&&default_slot.d(detaching)}}}function instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props,{small:small=!1}=$$props,{inline:inline=!1}=$$props;return $$self.$$set=$$props=>{"small"in $$props&&$$invalidate(0,small=$$props.small),"inline"in $$props&&$$invalidate(1,inline=$$props.inline),"$$scope"in $$props&&$$invalidate(2,$$scope=$$props.$$scope)},[small,inline,$$scope,slots]}class Title extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{small:0,inline:1})}}__webpack_exports__.Z=Title},8618:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return UploadOptions_svelte}});var internal=__webpack_require__(4234),api_languages=__webpack_require__(9275),orgsAndUsers=__webpack_require__(5340),svelte=__webpack_require__(8568),runtime_esm=__webpack_require__(6469);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[9]=list[i][0],child_ctx[4]=list[i][1],child_ctx[13]=list[i][2],child_ctx}function create_if_block(ctx){let optgroup,option,t;return{c(){optgroup=(0,internal.bGB)("optgroup"),option=(0,internal.bGB)("option"),t=(0,internal.fLW)(ctx[0]),option.__value=ctx[0],option.value=option.__value},m(target,anchor){(0,internal.$Tr)(target,optgroup,anchor),(0,internal.R3I)(optgroup,option),(0,internal.R3I)(option,t)},p(ctx,dirty){1&dirty&&(0,internal.rTO)(t,ctx[0]),1&dirty&&(option.__value=ctx[0],option.value=option.__value)},d(detaching){detaching&&(0,internal.ogt)(optgroup)}}}function create_each_block(ctx){let option,t,option_disabled_value,option_value_value,t_value=ctx[4]+"";return{c(){option=(0,internal.bGB)("option"),t=(0,internal.fLW)(t_value),option.disabled=option_disabled_value=ctx[13],option.__value=option_value_value=ctx[4],option.value=option.__value},m(target,anchor){(0,internal.$Tr)(target,option,anchor),(0,internal.R3I)(option,t)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[4]+"")&&(0,internal.rTO)(t,t_value),8&dirty&&option_disabled_value!==(option_disabled_value=ctx[13])&&(option.disabled=option_disabled_value),8&dirty&&option_value_value!==(option_value_value=ctx[4])&&(option.__value=option_value_value,option.value=option.__value)},d(detaching){detaching&&(0,internal.ogt)(option)}}}function create_fragment(ctx){let label_1,t0,t1,input_1,t2,datalist,if_block_anchor,mounted,dispose,show_if=ctx[5].has(ctx[0]),if_block=show_if&&create_if_block(ctx),each_value=ctx[3],each_blocks=[];for(let i=0;i{"name"in $$props&&$$invalidate(4,name=$$props.name),"label"in $$props&&$$invalidate(1,label=$$props.label),"placeholder"in $$props&&$$invalidate(2,placeholder=$$props.placeholder),"options"in $$props&&$$invalidate(3,options=$$props.options),"selected"in $$props&&$$invalidate(0,selected=$$props.selected),"value"in $$props&&$$invalidate(9,value=$$props.value)},$$self.$$.update=()=>{8&$$self.$$.dirty&&(valueToName=options.reduce(((m,opt)=>(m.set(opt[0],opt[1]),m)),new Map)),8&$$self.$$.dirty&&$$invalidate(5,nameToValue=options.reduce(((m,opt)=>(m.set(opt[1],opt[0]),m)),new Map)),33&$$self.$$.dirty&&$$invalidate(9,value=nameToValue.get(selected))},[selected,label,placeholder,options,name,nameToValue,input,function(e){$$invalidate(0,selected=input.value),$$invalidate(6,input.value="",input)},function(e){$$invalidate(6,input.value=selected,input)},value,function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{input=$$value,$$invalidate(6,input)}))},function(){selected=this.value,$$invalidate(0,selected)}]}class Select extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{name:4,label:1,placeholder:2,options:3,selected:0,value:9})}}var Select_svelte=Select;function UploadOptions_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[14]=list[i][0],child_ctx[15]=list[i][1],child_ctx[16]=list[i][2],child_ctx}function UploadOptions_svelte_create_each_block(ctx){let option,t,option_value_value,option_disabled_value,t_value=ctx[15]+"";return{c(){option=(0,internal.bGB)("option"),t=(0,internal.fLW)(t_value),option.__value=option_value_value=ctx[14],option.value=option.__value,option.disabled=option_disabled_value=ctx[16]},m(target,anchor){(0,internal.$Tr)(target,option,anchor),(0,internal.R3I)(option,t)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(option)}}}function create_else_block(ctx){let p,t,t_value=ctx[6]("uploadOptions.creditHelpText",{values:{organization:ctx[5].me.organization.name,n:ctx[5].me.organization.monthly_ai_credits}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","svelte-1to6tyt")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){96&dirty&&t_value!==(t_value=ctx[6]("uploadOptions.creditHelpText",{values:{organization:ctx[5].me.organization.name,n:ctx[5].me.organization.monthly_ai_credits}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadOptions_svelte_create_if_block(ctx){let p,raw_value=ctx[6]("uploadOptions.textractPremium")+"";return{c(){p=(0,internal.bGB)("p"),(0,internal.Ljt)(p,"class","svelte-1to6tyt")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),p.innerHTML=raw_value},p(ctx,dirty){64&dirty&&raw_value!==(raw_value=ctx[6]("uploadOptions.textractPremium")+"")&&(p.innerHTML=raw_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadOptions_svelte_create_fragment(ctx){let div0,select0,updating_selected,updating_value,t0,div2,div1,label0,t1,t2,input,t3,div4,label1,t4,t5,select1,t6,div3,p,t7,current,mounted,dispose,t1_value=ctx[6]("uploadOptions.forceOcr")+"",t4_value=ctx[6]("uploadOptions.ocrEngine")+"",raw_value=ctx[6]("uploadOptions.tesseract")+"";function select0_selected_binding(value){ctx[9](value)}function select0_value_binding(value){ctx[10](value)}let select0_props={name:"document-language",label:ctx[6]("uploadOptions.documentLang"),placeholder:ctx[6]("uploadOptions.documentLanguagePlaceholder"),options:ctx[4]};void 0!==ctx[3]&&(select0_props.selected=ctx[3]),void 0!==ctx[1]&&(select0_props.value=ctx[1]),select0=new Select_svelte({props:select0_props}),internal.VnY.push((()=>(0,internal.akz)(select0,"selected",select0_selected_binding))),internal.VnY.push((()=>(0,internal.akz)(select0,"value",select0_value_binding)));let each_value=ctx[8],each_blocks=[];for(let i=0;ictx[12].call(select1))),(0,internal.Ljt)(label1,"class","svelte-1to6tyt"),(0,internal.Ljt)(p,"class","svelte-1to6tyt"),(0,internal.Ljt)(div3,"class","small svelte-1to6tyt"),(0,internal.Ljt)(div4,"class","option")},m(target,anchor){(0,internal.$Tr)(target,div0,anchor),(0,internal.yef)(select0,div0,null),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,label0),(0,internal.R3I)(label0,t1),(0,internal.R3I)(label0,t2),(0,internal.R3I)(label0,input),input.checked=ctx[2],(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,div4,anchor),(0,internal.R3I)(div4,label1),(0,internal.R3I)(label1,t4),(0,internal.R3I)(label1,t5),(0,internal.R3I)(label1,select1);for(let i=0;iupdating_selected=!1))),!updating_value&&2&dirty&&(updating_value=!0,select0_changes.value=ctx[1],(0,internal.hjT)((()=>updating_value=!1))),select0.$set(select0_changes),(!current||64&dirty)&&t1_value!==(t1_value=ctx[6]("uploadOptions.forceOcr")+"")&&(0,internal.rTO)(t1,t1_value),4&dirty&&(input.checked=ctx[2]),(!current||64&dirty)&&t4_value!==(t4_value=ctx[6]("uploadOptions.ocrEngine")+"")&&(0,internal.rTO)(t4,t4_value),256&dirty){let i;for(each_value=ctx[8],i=0;i$$invalidate(5,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));let{language:language=api_languages.X9}=$$props,{forceOcr:forceOcr=!1}=$$props,{ocrEngine:ocrEngine="tess4"}=$$props;const hasTextract=$orgsAndUsers.me.feature_level>0;let languageName=function(languages){const[code,name]=languages.find((([code,name])=>code===api_languages.X9));return name}(api_languages.Mj);const ocrEngines=[["tess4","Tesseract",!1],["textract","Textract",!hasTextract]];return(0,svelte.H3)((async()=>{await(0,orgsAndUsers.q1)()})),$$self.$$set=$$props=>{"language"in $$props&&$$invalidate(1,language=$$props.language),"forceOcr"in $$props&&$$invalidate(2,forceOcr=$$props.forceOcr),"ocrEngine"in $$props&&$$invalidate(0,ocrEngine=$$props.ocrEngine)},$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(4,selectLanguages="textract"===ocrEngine?api_languages.g2:api_languages.Mj)},[ocrEngine,language,forceOcr,languageName,selectLanguages,$orgsAndUsers,$_,hasTextract,ocrEngines,function(value){languageName=value,$$invalidate(3,languageName)},function(value){language=value,$$invalidate(1,language)},function(){forceOcr=this.checked,$$invalidate(2,forceOcr)},function(){ocrEngine=(0,internal.RMU)(this),$$invalidate(0,ocrEngine),$$invalidate(8,ocrEngines)}]}class UploadOptions extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,UploadOptions_svelte_instance,UploadOptions_svelte_create_fragment,internal.N8,{language:1,forceOcr:2,ocrEngine:0})}}var UploadOptions_svelte=UploadOptions},6666:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234);function create_fragment(ctx){let svg,title_1,t,path,svg_width_value,svg_height_value;return{c(){svg=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("svg"),title_1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("title"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[1]),path=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("path"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(path,"d","M3.00220543,1 C3.00220543,0.446875 3.44891524,0 4.00183577,0 L11.9988785,0 C12.551799,0 12.9985088,0.446875 12.9985088,1 C12.9985088,1.553125 12.551799,2 11.9988785,2 L11.0773442,2 L11.4334625,6.63125 C12.5799136,7.253125 13.4858286,8.29375 13.9169192,9.590625 L13.9481576,9.684375 C14.0512445,9.990625 13.9981391,10.325 13.8107084,10.584375 C13.6232777,10.84375 13.3202648,11 12.9985088,11 L3.00220543,11 C2.68044942,11 2.38056032,10.846875 2.19000578,10.584375 C1.99945125,10.321875 1.94946973,9.9875 2.05255661,9.684375 L2.08379506,9.590625 C2.51488564,8.29375 3.42080063,7.253125 4.56725167,6.63125 L4.92336998,2 L4.00183577,2 C3.44891524,2 3.00220543,1.553125 3.00220543,1 Z M7.00072677,12 L8.99998744,12 L8.99998744,15 C8.99998744,15.553125 8.55327764,16 8.00035711,16 C7.44743658,16 7.00072677,15.553125 7.00072677,15 L7.00072677,12 Z"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(path,"fill-rule","nonzero"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"width",svg_width_value=ctx[0]*REM+"px"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"height",svg_height_value=ctx[0]*REM+"px"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"viewBox","0 0 16 16"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"class","svelte-yezalu")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,svg,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(svg,title_1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(title_1,t),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(svg,path)},p(ctx,[dirty]){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,ctx[1]),1&dirty&&svg_width_value!==(svg_width_value=ctx[0]*REM+"px")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"width",svg_width_value),1&dirty&&svg_height_value!==(svg_height_value=ctx[0]*REM+"px")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"height",svg_height_value)},i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(svg)}}}const REM=16;function instance($$self,$$props,$$invalidate){let{size:size=1}=$$props,{title:title="Pin"}=$$props;return $$self.$$set=$$props=>{"size"in $$props&&$$invalidate(0,size=$$props.size),"title"in $$props&&$$invalidate(1,title=$$props.title)},[size,title]}class Pin extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{size:0,title:1})}}__webpack_exports__.Z=Pin},3213:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),_router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(3566),_common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5465),_common_Loader_svelte__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(1172),_common_Tooltip_svelte__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(592),_emit_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(1812),_manager_documents_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(9914),svelte_i18n__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(6469),_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(8902),_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8___default=__webpack_require__.n(_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8__),_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(2381),_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9___default=__webpack_require__.n(_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9__),_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(9002),_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10___default=__webpack_require__.n(_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10__),_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(4172),_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11___default=__webpack_require__.n(_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11__);function create_else_block_2(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","error svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8___default()},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_if_block_7(ctx){let tooltip,current;return tooltip=new _common_Tooltip_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{$$slots:{caption:[create_caption_slot],default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(tooltip.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(tooltip,target,anchor),current=!0},p(ctx,dirty){const tooltip_changes={};18305&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(tooltip,detaching)}}}function create_if_block_4(ctx){let show_if,current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block_5,create_if_block_6,create_else_block],if_blocks=[];function select_block_type_1(ctx,dirty){return 3&dirty&&(show_if=null),ctx[2]?0:(null==show_if&&(show_if=!!(ctx[1]&&null!=ctx[0].publishedUrl&&ctx[0].publishedUrl.trim().length>0)),show_if?1:2)}return current_block_type_index=select_block_type_1(ctx,-1),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx,dirty),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_default_slot_2(ctx){let span,t,t_value=ctx[0].status+"";return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","fullstatus svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].status+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_default_slot_1(ctx){let loader,current;return loader=new _common_Loader_svelte__WEBPACK_IMPORTED_MODULE_3__.Z({props:{active:!0,center:!0,big:!0,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(loader.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(loader,target,anchor),current=!0},p(ctx,dirty){const loader_changes={};16385&dirty&&(loader_changes.$$scope={dirty:dirty,ctx:ctx}),loader.$set(loader_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(loader.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(loader.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(loader,detaching)}}}function create_else_block_1(ctx){let t,t_value=ctx[10]("documentThumbnail.loading")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1024&dirty&&t_value!==(t_value=ctx[10]("documentThumbnail.loading")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_8(ctx){let p,t0,t1,t2,if_block_anchor,t0_value=Math.floor(100*ctx[9])+"",if_block=null!=ctx[8]&&create_if_block_9(ctx);return{c(){p=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("p"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t0_value),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("%"),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(p,"class","svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,p,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t2,anchor),if_block&&if_block.m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){512&dirty&&t0_value!==(t0_value=Math.floor(100*ctx[9])+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,t0_value),null!=ctx[8]?if_block?if_block.p(ctx,dirty):(if_block=create_if_block_9(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(p),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t2),if_block&&if_block.d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_if_block_9(ctx){let p,t0,t1,t2,t3,t4,t4_value=ctx[10]("documentThumbnail.pages")+"";return{c(){p=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("p"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[8]),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(" / "),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[7]),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),t4=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t4_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(p,"class","svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,p,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t2),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t3),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t4)},p(ctx,dirty){256&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,ctx[8]),128&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t2,ctx[7]),1024&dirty&&t4_value!==(t4_value=ctx[10]("documentThumbnail.pages")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t4,t4_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(p)}}}function create_caption_slot(ctx){let div;function select_block_type_2(ctx,dirty){return null!=ctx[9]?create_if_block_8:create_else_block_1}let current_block_type=select_block_type_2(ctx),if_block=current_block_type(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"slot","caption"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","caption svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block.m(div,null)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_2(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div,null)))},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block.d()}}}function create_else_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[1],to:"viewer",params:{id:ctx[0].slugId},$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};2&dirty&&(link_changes.newPage=ctx[1]),1&dirty&&(link_changes.params={id:ctx[0].slugId}),16385&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_if_block_6(ctx){let a,image,a_href_value,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{src:ctx[0].thumbnail}}),{c(){a=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("a"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value=ctx[0].publishedUrl),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"rel","noreferrer"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"target","_blank")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,a,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,a,null),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes),(!current||1&dirty&&a_href_value!==(a_href_value=ctx[0].publishedUrl))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(a),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image)}}}function create_if_block_5(ctx){let image,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{clickable:!0,src:ctx[0].thumbnail}}),image.$on("click",ctx[13]),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,target,anchor),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image,detaching)}}}function create_default_slot(ctx){let image,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{src:ctx[0].thumbnail}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,target,anchor),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image,detaching)}}}function create_if_block(ctx){let span,t0,t1,div,t2,t3,t0_value=ctx[10]("document.noteCount",{values:{n:ctx[3]}})+"",if_block0=ctx[4]&&create_if_block_3(ctx),if_block1=ctx[5]&&create_if_block_2(ctx),if_block2=ctx[6]&&create_if_block_1(ctx);return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t0_value),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0&&if_block0.c(),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","note-count svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","tag svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t1,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t2),if_block1&&if_block1.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t3),if_block2&&if_block2.m(div,null)},p(ctx,dirty){1032&dirty&&t0_value!==(t0_value=ctx[10]("document.noteCount",{values:{n:ctx[3]}})+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,t0_value),ctx[4]?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_3(ctx),if_block0.c(),if_block0.m(div,t2)):if_block0&&(if_block0.d(1),if_block0=null),ctx[5]?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_2(ctx),if_block1.c(),if_block1.m(div,t3)):if_block1&&(if_block1.d(1),if_block1=null),ctx[6]?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_1(ctx),if_block2.c(),if_block2.m(div,null)):if_block2&&(if_block2.d(1),if_block2=null)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t1),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_3(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_if_block_2(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_if_block_1(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_fragment(ctx){let div,span,current_block_type_index,if_block0,t,div_data_id_value,current;const if_block_creators=[create_if_block_4,create_if_block_7,create_else_block_2],if_blocks=[];function select_block_type(ctx,dirty){return ctx[0].viewable?0:ctx[0].pending?1:2}current_block_type_index=select_block_type(ctx),if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block1=ctx[3]>0&&create_if_block(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block0.c(),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","imgwrap svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","img svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"data-id",div_data_id_value=ctx[0].id),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"embed",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,span),if_blocks[current_block_type_index].m(span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t),if_block1&&if_block1.m(div,null),current=!0},p(ctx,[dirty]){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block0,1),if_block0.m(span,null)),ctx[3]>0?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block(ctx),if_block1.c(),if_block1.m(div,null)):if_block1&&(if_block1.d(1),if_block1=null),(!current||1&dirty&&div_data_id_value!==(div_data_id_value=ctx[0].id))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"data-id",div_data_id_value),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"embed",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block0),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block0),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_blocks[current_block_type_index].d(),if_block1&&if_block1.d()}}}function instance($$self,$$props,$$invalidate){let realProgress,pagesProcessed,pageCount,$documents,$_;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,_manager_documents_js__WEBPACK_IMPORTED_MODULE_6__.De,($$value=>$$invalidate(12,$documents=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,svelte_i18n__WEBPACK_IMPORTED_MODULE_7__._,($$value=>$$invalidate(10,$_=$$value)));let{document:document}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props,{noteCount:noteCount=0}=$$props,{publicNote:publicNote=!1}=$$props,{orgNote:orgNote=!1}=$$props,{privateNote:privateNote=!1}=$$props;const emit=(0,_emit_js__WEBPACK_IMPORTED_MODULE_5__.Z)({pick(){}});return $$self.$$set=$$props=>{"document"in $$props&&$$invalidate(0,document=$$props.document),"embed"in $$props&&$$invalidate(1,embed=$$props.embed),"dialog"in $$props&&$$invalidate(2,dialog=$$props.dialog),"noteCount"in $$props&&$$invalidate(3,noteCount=$$props.noteCount),"publicNote"in $$props&&$$invalidate(4,publicNote=$$props.publicNote),"orgNote"in $$props&&$$invalidate(5,orgNote=$$props.orgNote),"privateNote"in $$props&&$$invalidate(6,privateNote=$$props.privateNote)},$$self.$$.update=()=>{4097&$$self.$$.dirty&&$$invalidate(9,realProgress=null==document?null:$documents.realProgressMap[document.id]),4097&$$self.$$.dirty&&$$invalidate(8,pagesProcessed=null==document?null:$documents.pagesProcessedMap[document.id]),4097&$$self.$$.dirty&&$$invalidate(7,pageCount=null==document?null:$documents.pageCountMap[document.id])},[document,embed,dialog,noteCount,publicNote,orgNote,privateNote,pageCount,pagesProcessed,realProgress,$_,emit,$documents,()=>emit.pick(document)]}class DocumentThumbnail extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{document:0,embed:1,dialog:2,noteCount:3,publicNote:4,orgNote:5,privateNote:6})}}__webpack_exports__.Z=DocumentThumbnail},76:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return Documents_svelte}});var internal=__webpack_require__(4234),runtime_esm=__webpack_require__(6469),animate=__webpack_require__(7431),svelte=__webpack_require__(8568),AddonRun_svelte=__webpack_require__(1195),base=__webpack_require__(5364);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[7]=list[i],child_ctx}function create_if_block(ctx){let div,h3,t0,t1,current,t0_value=ctx[1]("addonProgress.progress")+"",each_blocks=[],each_1_lookup=new Map,each_value=ctx[0];const get_key=ctx=>ctx[7].uuid;for(let i=0;i0&&create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){ctx[0].length>0?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block,1)):(if_block=create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function instance($$self,$$props,$$invalidate){let $runs,$_;(0,internal.FIv)($$self,AddonRun_svelte.Or,($$value=>$$invalidate(0,$runs=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));const POLL_INTERVAL=parseInt("5000",10),endpoint=new URL("/api/addon_runs/?expand=addon&dismissed=false&per_page=20",base.t),options={credentials:"include"};let timeout;async function load(){const resp=await fetch(endpoint,options);if(!resp.ok)throw new Error(resp.statusText);const{results:results}=await resp.json();(0,internal.fxP)(AddonRun_svelte.Or,$runs=results,$runs)}return(0,svelte.H3)((async()=>{await load()})),(0,svelte.gx)((()=>{$runs.length>0&&(timeout=setTimeout(load,POLL_INTERVAL))})),[$runs,$_]}class AddonStatus extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{})}}var AddonStatus_svelte=AddonStatus,lib=__webpack_require__(456);function Checkbox_svelte_create_if_block(ctx){let current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block_1,create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[1]?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index!==previous_block_index&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block||(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_else_block(ctx){let check16,current;return check16=new lib.L7T({}),{c(){(0,internal.YCL)(check16.$$.fragment)},m(target,anchor){(0,internal.yef)(check16,target,anchor),current=!0},i(local){current||((0,internal.Ui)(check16.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(check16.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(check16,detaching)}}}function create_if_block_1(ctx){let dash16,current;return dash16=new lib.cuT({}),{c(){(0,internal.YCL)(dash16.$$.fragment)},m(target,anchor){(0,internal.yef)(dash16,target,anchor),current=!0},i(local){current||((0,internal.Ui)(dash16.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dash16.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dash16,detaching)}}}function Checkbox_svelte_create_fragment(ctx){let label,input,t,span,current,mounted,dispose,if_block=ctx[0]&&Checkbox_svelte_create_if_block(ctx);return{c(){label=(0,internal.bGB)("label"),input=(0,internal.bGB)("input"),t=(0,internal.DhX)(),span=(0,internal.bGB)("span"),if_block&&if_block.c(),(0,internal.Ljt)(input,"type","checkbox"),input.disabled=ctx[2],(0,internal.Ljt)(input,"class","svelte-1ypg73i"),(0,internal.Ljt)(span,"class","svelte-1ypg73i"),(0,internal.Ljt)(label,"class","svelte-1ypg73i")},m(target,anchor){(0,internal.$Tr)(target,label,anchor),(0,internal.R3I)(label,input),ctx[5](input),input.checked=ctx[0],(0,internal.R3I)(label,t),(0,internal.R3I)(label,span),if_block&&if_block.m(span,null),current=!0,mounted||(dispose=[(0,internal.oLt)(input,"change",ctx[6]),(0,internal.oLt)(input,"change",ctx[4])],mounted=!0)},p(ctx,[dirty]){(!current||4&dirty)&&(input.disabled=ctx[2]),1&dirty&&(input.checked=ctx[0]),ctx[0]?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block,1)):(if_block=Checkbox_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(span,null)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(label),ctx[5](null),if_block&&if_block.d(),mounted=!1,(0,internal.j7q)(dispose)}}}function Checkbox_svelte_instance($$self,$$props,$$invalidate){const dispatch=(0,svelte.x)();let checkbox,{checked:checked=!1}=$$props,{indeterminate:indeterminate=!1}=$$props,{disabled:disabled=!1}=$$props;return $$self.$$set=$$props=>{"checked"in $$props&&$$invalidate(0,checked=$$props.checked),"indeterminate"in $$props&&$$invalidate(1,indeterminate=$$props.indeterminate),"disabled"in $$props&&$$invalidate(2,disabled=$$props.disabled)},[checked,indeterminate,disabled,checkbox,function(){checked?dispatch("check",{indeterminate:indeterminate}):dispatch("uncheck")},function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{checkbox=$$value,$$invalidate(3,checkbox)}))},function(){checked=this.checked,$$invalidate(0,checked)}]}class Checkbox extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Checkbox_svelte_instance,Checkbox_svelte_create_fragment,internal.N8,{checked:0,indeterminate:1,disabled:2})}}var Checkbox_svelte=Checkbox,Tooltip_svelte=__webpack_require__(592),Dropdown_svelte=__webpack_require__(2127),search=__webpack_require__(6046),page_arrow_leftraw=__webpack_require__(2728),page_arrow_leftraw_default=__webpack_require__.n(page_arrow_leftraw),page_arrow_rightraw=__webpack_require__(4704),page_arrow_rightraw_default=__webpack_require__.n(page_arrow_rightraw);function Paginator_svelte_create_if_block(ctx){let button0,button0_disabled_value,t0,div2,div0,t1,div1,t2,t3,button1,button1_disabled_value,mounted,dispose,t2_value=ctx[1]("paginator.document",{values:{n:ctx[0].results.count}})+"";function select_block_type(ctx,dirty){return ctx[0].results.onlyPage?Paginator_svelte_create_if_block_1:Paginator_svelte_create_else_block}let current_block_type=select_block_type(ctx),if_block=current_block_type(ctx);return{c(){button0=(0,internal.bGB)("button"),t0=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),if_block.c(),t1=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),button1=(0,internal.bGB)("button"),button0.disabled=button0_disabled_value=!ctx[0].hasPrev,(0,internal.Ljt)(button0,"class","svelte-1b2tp76"),(0,internal.Ljt)(div0,"class","number svelte-1b2tp76"),(0,internal.Ljt)(div1,"class","documents svelte-1b2tp76"),(0,internal.Ljt)(div2,"class","text svelte-1b2tp76"),button1.disabled=button1_disabled_value=!ctx[0].hasNext,(0,internal.Ljt)(button1,"class","svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,button0,anchor),button0.innerHTML=page_arrow_leftraw_default(),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div0),if_block.m(div0,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,t2),(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,button1,anchor),button1.innerHTML=page_arrow_rightraw_default(),mounted||(dispose=[(0,internal.oLt)(button0,"click",search.Dj),(0,internal.oLt)(button1,"click",search.Xp)],mounted=!0)},p(ctx,dirty){1&dirty&&button0_disabled_value!==(button0_disabled_value=!ctx[0].hasPrev)&&(button0.disabled=button0_disabled_value),current_block_type===(current_block_type=select_block_type(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div0,null))),3&dirty&&t2_value!==(t2_value=ctx[1]("paginator.document",{values:{n:ctx[0].results.count}})+"")&&(0,internal.rTO)(t2,t2_value),1&dirty&&button1_disabled_value!==(button1_disabled_value=!ctx[0].hasNext)&&(button1.disabled=button1_disabled_value)},d(detaching){detaching&&(0,internal.ogt)(button0),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(div2),if_block.d(),detaching&&(0,internal.ogt)(t3),detaching&&(0,internal.ogt)(button1),mounted=!1,(0,internal.j7q)(dispose)}}}function Paginator_svelte_create_else_block(ctx){let span,t0,t1,t2,t3,if_block_anchor,t0_value=ctx[0].start+"",t2_value=ctx[0].end+"",if_block=ctx[0].results.count&&create_if_block_2(ctx);return{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)("\n -\n "),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)(),(0,internal.Ljt)(span,"class","range svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.R3I)(span,t1),(0,internal.R3I)(span,t2),(0,internal.$Tr)(target,t3,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){1&dirty&&t0_value!==(t0_value=ctx[0].start+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=ctx[0].end+"")&&(0,internal.rTO)(t2,t2_value),ctx[0].results.count?if_block?if_block.p(ctx,dirty):(if_block=create_if_block_2(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t3),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Paginator_svelte_create_if_block_1(ctx){let t,t_value=ctx[0].results.rawResults.results.length+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].results.rawResults.results.length+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_if_block_2(ctx){let t0,t1,t2,t0_value=ctx[1]("paginator.of")+"",t2_value=ctx[0].results.count+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),t2=(0,internal.fLW)(t2_value)},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,t2,anchor)},p(ctx,dirty){2&dirty&&t0_value!==(t0_value=ctx[1]("paginator.of")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=ctx[0].results.count+"")&&(0,internal.rTO)(t2,t2_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(t2)}}}function Paginator_svelte_create_fragment(ctx){let div,if_block=ctx[0].hasResults&&Paginator_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","paginator svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null)},p(ctx,[dirty]){ctx[0].hasResults?if_block?if_block.p(ctx,dirty):(if_block=Paginator_svelte_create_if_block(ctx),if_block.c(),if_block.m(div,null)):if_block&&(if_block.d(1),if_block=null)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d()}}}function Paginator_svelte_instance($$self,$$props,$$invalidate){let $search,$_;return(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(0,$search=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value))),[$search,$_]}class Paginator extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Paginator_svelte_instance,Paginator_svelte_create_fragment,internal.N8,{})}}var Paginator_svelte=Paginator,Menu_svelte=__webpack_require__(7918),MenuItem_svelte=__webpack_require__(9213),layout=__webpack_require__(3423),metaDialogs=__webpack_require__(9216),orgsAndUsers=__webpack_require__(5340),svue=__webpack_require__(3396),documents=__webpack_require__(9914);const manager=new svue.x({data(){return{documents:documents.De,layout:layout.bK}},computed:{hasDocuments(documents){return documents.documents.length>0},allSelected(hasDocuments,documents,layout){return hasDocuments&&documents.documents.every((doc=>null!=layout.selectedMap[doc.id]))},someSelected(hasDocuments,layout,allSelected){return hasDocuments&&layout.hasSelection&&!allSelected},noneSelected(hasDocuments,layout){return!hasDocuments||!layout.hasSelection}}});function removeSelected(){(0,documents.u$)(layout.bK.selected)}function changeAccessSelected(){0!=layout.bK.numSelected&&(layout.bK.accessEditDocuments=layout.bK.selected.slice())}function changeOwnerSelected(){0!=layout.bK.numSelected&&(layout.bK.ownerEditDocuments=layout.bK.selected.slice())}function reprocessSelected(){0!=layout.bK.numSelected&&(layout.bK.reprocessDocuments=layout.bK.selected.slice())}function cancelProcessSelected(){(0,documents.Qy)(layout.bK.selected)}function editDataSelected(){(0,layout.re)(layout.bK.selected)}function showDiagnosticsSelected(){layout.bK.diagnosticsOpen=!0}function showMailkeySelected(){layout.bK.mailkeyOpen=!0}var router=__webpack_require__(3356);function EditMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[10]=list[i],child_ctx}function create_default_slot_10(ctx){let t,t_value=ctx[5]("editMenu.editDocInfo")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.editDocInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_9(ctx){let t,t_value=ctx[5](ctx[10].menuTitle)+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5](ctx[10].menuTitle)+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_each_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{indent:!0,disabled:null!=ctx[10].disabled&&ctx[10].disabled(ctx[1].numSelected),$$slots:{default:[create_default_slot_9]},$$scope:{ctx:ctx}}}),menuitem.$on("click",(function(){return ctx[9](ctx[10])})),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx;const menuitem_changes={};2&dirty&&(menuitem_changes.disabled=null!=ctx[10].disabled&&ctx[10].disabled(ctx[1].numSelected)),8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_8(ctx){let t,t_value=ctx[5]("editMenu.changeAccess")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.changeAccess")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_7(ctx){let t,t_value=ctx[5]("editMenu.editDocData")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.editDocData")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_if_block_4(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_6]},$$scope:{ctx:ctx}}}),menuitem.$on("click",reprocessSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_if_block_3(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_5]},$$scope:{ctx:ctx}}}),menuitem.$on("click",cancelProcessSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_6(ctx){let t,t_value=ctx[5]("editMenu.forceReprocess")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.forceReprocess")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_5(ctx){let t,t_value=ctx[5]("editMenu.cancelProcessing")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.cancelProcessing")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_if_block_2(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_4]},$$scope:{ctx:ctx}}}),menuitem.$on("click",ctx[6]),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_4(ctx){let html_tag,html_anchor,raw_value=ctx[5]("editMenu.entities")+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){32&dirty&&raw_value!==(raw_value=ctx[5]("editMenu.entities")+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function EditMenu_svelte_create_if_block_1(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem.$on("click",changeOwnerSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_3(ctx){let t,t_value=ctx[5]("editMenu.changeOwner")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.changeOwner")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_2(ctx){let t,t_value=ctx[5]("editMenu.delete")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.delete")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_if_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{special:!0,$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),menuitem.$on("click",showDiagnosticsSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_1(ctx){let t,t_value=ctx[5]("editMenu.diagnosticInfo")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.diagnosticInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot(ctx){let menuitem0,t0,t1,menuitem1,t2,menuitem2,t3,current_block_type_index,if_block0,t4,t5,t6,menuitem3,t7,if_block3_anchor,current;menuitem0=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_10]},$$scope:{ctx:ctx}}}),menuitem0.$on("click",ctx[8]);let each_value=metaDialogs.h,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));menuitem1=new MenuItem_svelte.Z({props:{disabled:ctx[2],$$slots:{default:[create_default_slot_8]},$$scope:{ctx:ctx}}}),menuitem1.$on("click",changeAccessSelected),menuitem2=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_7]},$$scope:{ctx:ctx}}}),menuitem2.$on("click",editDataSelected);const if_block_creators=[create_if_block_3,create_if_block_4],if_blocks=[];function select_block_type(ctx,dirty){return ctx[3]?0:ctx[2]?-1:1}~(current_block_type_index=select_block_type(ctx))&&(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block1=1==ctx[1].numSelected&&EditMenu_svelte_create_if_block_2(ctx),if_block2=ctx[4]&&EditMenu_svelte_create_if_block_1(ctx);menuitem3=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),menuitem3.$on("click",removeSelected);let if_block3=ctx[0].isStaff&&EditMenu_svelte_create_if_block(ctx);return{c(){(0,internal.YCL)(menuitem0.$$.fragment),t0=(0,internal.DhX)();for(let i=0;i{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(t4.parentNode,t4)):if_block0=null),1==ctx[1].numSelected?if_block1?(if_block1.p(ctx,dirty),2&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=EditMenu_svelte_create_if_block_2(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t5.parentNode,t5)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),ctx[4]?if_block2?(if_block2.p(ctx,dirty),16&dirty&&(0,internal.Ui)(if_block2,1)):(if_block2=EditMenu_svelte_create_if_block_1(ctx),if_block2.c(),(0,internal.Ui)(if_block2,1),if_block2.m(t6.parentNode,t6)):if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_block2,1,1,(()=>{if_block2=null})),(0,internal.gbL)());const menuitem3_changes={};8224&dirty&&(menuitem3_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem3.$set(menuitem3_changes),ctx[0].isStaff?if_block3?(if_block3.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block3,1)):(if_block3=EditMenu_svelte_create_if_block(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(if_block3_anchor.parentNode,if_block3_anchor)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)())},i(local){if(!current){(0,internal.Ui)(menuitem0.$$.fragment,local);for(let i=0;i$$invalidate(0,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(1,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(5,$_=$$value)));let processing=!1,allProcessing=!1,canChangeOwner=!1,{visible:visible=!1}=$$props;return $$self.$$set=$$props=>{"visible"in $$props&&$$invalidate(7,visible=$$props.visible)},$$self.$$.update=()=>{128&$$self.$$.dirty&&visible&&$$invalidate(2,[processing,allProcessing]=(0,layout.SW)(),processing,($$invalidate(3,allProcessing),$$invalidate(7,visible))),131&$$self.$$.dirty&&visible&&$orgsAndUsers.me&&$$invalidate(4,canChangeOwner=0==$layout.selected.filter((doc=>!(doc.userId==$orgsAndUsers.me.id&&(!doc.publicAccess||$orgsAndUsers.me.organizations.indexOf(doc.orgId)>=0)))).length)},[$orgsAndUsers,$layout,processing,allProcessing,canChangeOwner,$_,function(){const docs=layout.bK.selected;if(1!=docs.length)return;const doc=docs[0];(0,router.$n)("entity",{id:doc.slugId})},visible,()=>{0!=layout.bK.numSelected&&(layout.bK.documentInfoOpen=!0)},meta=>function(meta){0!=layout.bK.numSelected&&(layout.bK.metaOpen=meta)}(meta)]}class EditMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,EditMenu_svelte_instance,EditMenu_svelte_create_fragment,internal.N8,{visible:7})}}var EditMenu_svelte=EditMenu,projects=__webpack_require__(9365),string=__webpack_require__(3581);function ProjectMenuItem_svelte_create_if_block(ctx){let t;return{c(){t=(0,internal.fLW)("✓")},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProjectMenuItem_svelte_create_default_slot_1(ctx){let t0,t1,span,t0_value=ctx[0].title+"",if_block="fully"==ctx[1]&&ProjectMenuItem_svelte_create_if_block();return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span=(0,internal.bGB)("span"),if_block&&if_block.c(),(0,internal.Ljt)(span,"class","scope svelte-1js79cp")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span,anchor),if_block&&if_block.m(span,null)},p(ctx,dirty){1&dirty&&t0_value!==(t0_value=ctx[0].title+"")&&(0,internal.rTO)(t0,t0_value),"fully"==ctx[1]?if_block||(if_block=ProjectMenuItem_svelte_create_if_block(),if_block.c(),if_block.m(span,null)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span),if_block&&if_block.d()}}}function ProjectMenuItem_svelte_create_default_slot(ctx){let tooltip,current;return tooltip=new Tooltip_svelte.Z({props:{delay:500,caption:ctx[2],$$slots:{default:[ProjectMenuItem_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(tooltip.$$.fragment)},m(target,anchor){(0,internal.yef)(tooltip,target,anchor),current=!0},p(ctx,dirty){const tooltip_changes={};4&dirty&&(tooltip_changes.caption=ctx[2]),35&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,internal.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(tooltip,detaching)}}}function ProjectMenuItem_svelte_create_fragment(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[ProjectMenuItem_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),menuitem.$on("click",ctx[3]),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,[dirty]){const menuitem_changes={};39&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function ProjectMenuItem_svelte_instance($$self,$$props,$$invalidate){let scope,caption,$layout;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(4,$layout=$$value)));let{project:project}=$$props;return $$self.$$set=$$props=>{"project"in $$props&&$$invalidate(0,project=$$props.project)},$$self.$$.update=()=>{17&$$self.$$.dirty&&$$invalidate(1,scope=$layout.selected.length>0?(0,projects.Ip)(project):"none"),18&$$self.$$.dirty&&$$invalidate(2,caption="fully"==scope?`Remove ${(0,string.fu)($layout.selected.length,"document")} from project`:`Add ${(0,string.fu)($layout.selected.length,"document")} to project`)},[project,scope,caption,function(){"fully"==scope?(0,projects.lF)(project):(0,projects.du)(project)},$layout]}class ProjectMenuItem extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProjectMenuItem_svelte_instance,ProjectMenuItem_svelte_create_fragment,internal.N8,{project:0})}}var ProjectMenuItem_svelte=ProjectMenuItem;function ProjectsMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[4]=list[i],child_ctx}function ProjectsMenu_svelte_create_default_slot_3(ctx){let t,t_value=ctx[2]("projectsMenu.newProject")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("projectsMenu.newProject")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProjectsMenu_svelte_create_else_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};133&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function ProjectsMenu_svelte_create_if_block(ctx){let menuitem,t,each_1_anchor,current;menuitem=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}});let each_value=ctx[1],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){(0,internal.YCL)(menuitem.$$.fragment),t=(0,internal.DhX)();for(let i=0;i0?ProjectsMenu_svelte_create_if_block_1:create_else_block_1}let current_block_type=select_block_type_1(ctx),if_block=current_block_type(ctx);return{c(){if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_1(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)))},d(detaching){if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProjectsMenu_svelte_create_default_slot_1(ctx){let div,t,t_value=ctx[2]("projectsMenu.projMembership")+"";return{c(){div=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div,"class","small")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("projectsMenu.projMembership")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function ProjectsMenu_svelte_create_each_block(ctx){let projectmenuitem,current;return projectmenuitem=new ProjectMenuItem_svelte({props:{project:ctx[4]}}),{c(){(0,internal.YCL)(projectmenuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(projectmenuitem,target,anchor),current=!0},p(ctx,dirty){const projectmenuitem_changes={};2&dirty&&(projectmenuitem_changes.project=ctx[4]),projectmenuitem.$set(projectmenuitem_changes)},i(local){current||((0,internal.Ui)(projectmenuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(projectmenuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(projectmenuitem,detaching)}}}function ProjectsMenu_svelte_create_default_slot(ctx){let menuitem,t,current_block_type_index,if_block,if_block_anchor,current;menuitem=new MenuItem_svelte.Z({props:{primary:!0,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem.$on("click",layout.o9);const if_block_creators=[ProjectsMenu_svelte_create_if_block,ProjectsMenu_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[3].hasSelection&&ctx[0].addRemoveableProjects.length>0?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){(0,internal.YCL)(menuitem.$$.fragment),t=(0,internal.DhX)(),if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),(0,internal.$Tr)(target,t,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};132&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching),detaching&&(0,internal.ogt)(t),if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProjectsMenu_svelte_create_fragment(ctx){let menu,current;return menu=new Menu_svelte.Z({props:{$$slots:{default:[ProjectsMenu_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menu.$$.fragment)},m(target,anchor){(0,internal.yef)(menu,target,anchor),current=!0},p(ctx,[dirty]){const menu_changes={};143&dirty&&(menu_changes.$$scope={dirty:dirty,ctx:ctx}),menu.$set(menu_changes)},i(local){current||((0,internal.Ui)(menu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menu,detaching)}}}function ProjectsMenu_svelte_instance($$self,$$props,$$invalidate){let alphabetizedProjects,$projects,$_,$layout;return(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(0,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(3,$layout=$$value))),$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(1,alphabetizedProjects=function(projects){if(null==projects)return[];try{projects.sort(((a,b)=>a.title.localeCompare(b.title)))}catch(e){}return projects}($projects.addRemoveableProjects))},[$projects,alphabetizedProjects,$_,$layout]}class ProjectsMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProjectsMenu_svelte_instance,ProjectsMenu_svelte_create_fragment,internal.N8,{})}}var ProjectsMenu_svelte=ProjectsMenu,AddOnListItem_svelte=__webpack_require__(2869);function AddonsMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[3]=list[i],child_ctx}function AddonsMenu_svelte_create_default_slot_4(ctx){let t,t_value=ctx[3].name+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[3].name+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_each_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{href:addonURL(ctx[3]),$$slots:{default:[AddonsMenu_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1&dirty&&(menuitem_changes.href=addonURL(ctx[3])),65&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function AddonsMenu_svelte_create_default_slot_3(ctx){let t,t_value=ctx[1]("addonsMenu.browseAll")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.browseAll")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot_2(ctx){let t,t_value=ctx[1]("addonsMenu.addonRuns")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.addonRuns")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot_1(ctx){let t,t_value=ctx[1]("addonsMenu.learnMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.learnMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot(ctx){let t0,hr,t1,menuitem0,t2,menuitem1,t3,menuitem2,current,each_value=ctx[0],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return menuitem0=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=browser",href:"#add-ons",$$slots:{default:[AddonsMenu_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem1=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=runs",href:"#add-ons/runs",$$slots:{default:[AddonsMenu_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),menuitem2=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=help",target:"_blank",href:"https://www.documentcloud.org/help/add-ons/",$$slots:{default:[AddonsMenu_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){for(let i=0;i$$invalidate(2,$pinned=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value))),(0,svelte.H3)((()=>{window.plausible=window.plausible||function(){(window.plausible.q=window.plausible.q||[]).push(arguments)}})),$$self.$$.update=()=>{4&$$self.$$.dirty&&$$invalidate(0,alphabetizedAddons=$pinned.sort(((a,b)=>a.name.localeCompare(b.name))))},[alphabetizedAddons,$_,$pinned]}class AddonsMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AddonsMenu_svelte_instance,AddonsMenu_svelte_create_fragment,internal.N8,{})}}var AddonsMenu_svelte=AddonsMenu;function ActionBar_svelte_create_if_block(ctx){let div,t,span,paginator,current,if_block=ctx[3].loggedIn&&ActionBar_svelte_create_if_block_1(ctx);return paginator=new Paginator_svelte({}),{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),t=(0,internal.DhX)(),span=(0,internal.bGB)("span"),(0,internal.YCL)(paginator.$$.fragment),(0,internal.Ljt)(span,"class","narrowhide svelte-5udg7h"),(0,internal.Ljt)(div,"class","bar svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null),(0,internal.R3I)(div,t),(0,internal.R3I)(div,span),(0,internal.yef)(paginator,span,null),current=!0},p(ctx,dirty){ctx[3].loggedIn?if_block?(if_block.p(ctx,dirty),8&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ActionBar_svelte_create_if_block_1(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,t)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),(0,internal.Ui)(paginator.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block),(0,internal.etI)(paginator.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d(),(0,internal.vpE)(paginator)}}}function ActionBar_svelte_create_if_block_1(ctx){let span,t0,current_block_type_index,if_block1,t1,dropdown0,t2,dropdown1,current,if_block0=ctx[4].documents.length>0&&ActionBar_svelte_create_if_block_3(ctx);const if_block_creators=[ActionBar_svelte_create_if_block_2,ActionBar_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[2].hasSelection&&ctx[2].selectionEditable?0:1}return current_block_type_index=select_block_type(ctx),if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),dropdown0=new Dropdown_svelte.Z({props:{name:"projects-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot_1],default:[ActionBar_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),dropdown1=new Dropdown_svelte.Z({props:{name:"addons-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot],default:[ActionBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){span=(0,internal.bGB)("span"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1.c(),t1=(0,internal.DhX)(),(0,internal.YCL)(dropdown0.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(dropdown1.$$.fragment),(0,internal.Ljt)(span,"class","action check scaledown svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),if_block0&&if_block0.m(span,null),(0,internal.$Tr)(target,t0,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(dropdown0,target,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(dropdown1,target,anchor),current=!0},p(ctx,dirty){ctx[4].documents.length>0?if_block0?(if_block0.p(ctx,dirty),16&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=ActionBar_svelte_create_if_block_3(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(span,null)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)());let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block1=if_blocks[current_block_type_index],if_block1?if_block1.p(ctx,dirty):(if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block1.c()),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1));const dropdown0_changes={};1&dirty&&(dropdown0_changes.fixed=ctx[0]>600),1088&dirty&&(dropdown0_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown0.$set(dropdown0_changes);const dropdown1_changes={};1&dirty&&(dropdown1_changes.fixed=ctx[0]>600),1088&dirty&&(dropdown1_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown1.$set(dropdown1_changes)},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(dropdown0.$$.fragment,local),(0,internal.Ui)(dropdown1.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(dropdown0.$$.fragment,local),(0,internal.etI)(dropdown1.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),if_block0&&if_block0.d(),detaching&&(0,internal.ogt)(t0),if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(dropdown0,detaching),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(dropdown1,detaching)}}}function ActionBar_svelte_create_if_block_3(ctx){let checkbox,current;return checkbox=new Checkbox_svelte({props:{indeterminate:ctx[5].someSelected,checked:ctx[2].hasSelection}}),checkbox.$on("check",ctx[7]),checkbox.$on("uncheck",documents.HF),{c(){(0,internal.YCL)(checkbox.$$.fragment)},m(target,anchor){(0,internal.yef)(checkbox,target,anchor),current=!0},p(ctx,dirty){const checkbox_changes={};32&dirty&&(checkbox_changes.indeterminate=ctx[5].someSelected),4&dirty&&(checkbox_changes.checked=ctx[2].hasSelection),checkbox.$set(checkbox_changes)},i(local){current||((0,internal.Ui)(checkbox.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(checkbox.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(checkbox,detaching)}}}function ActionBar_svelte_create_else_block(ctx){let span,tooltip,current;return tooltip=new Tooltip_svelte.Z({props:{caption:ctx[2].selectionEditable?ctx[6]("actionBar.selectDocs"):ctx[6]("actionBar.noPerms"),$$slots:{default:[ActionBar_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){span=(0,internal.bGB)("span"),(0,internal.YCL)(tooltip.$$.fragment),(0,internal.Ljt)(span,"class","action disabled shortpad nowrap svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.yef)(tooltip,span,null),current=!0},p(ctx,dirty){const tooltip_changes={};68&dirty&&(tooltip_changes.caption=ctx[2].selectionEditable?ctx[6]("actionBar.selectDocs"):ctx[6]("actionBar.noPerms")),1088&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,internal.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(tooltip)}}}function ActionBar_svelte_create_if_block_2(ctx){let dropdown,current;return dropdown=new Dropdown_svelte.Z({props:{name:"edit-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot_2],default:[ActionBar_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),dropdown.$on("active",ctx[9]),{c(){(0,internal.YCL)(dropdown.$$.fragment)},m(target,anchor){(0,internal.yef)(dropdown,target,anchor),current=!0},p(ctx,dirty){const dropdown_changes={};1&dirty&&(dropdown_changes.fixed=ctx[0]>600),1090&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes)},i(local){current||((0,internal.Ui)(dropdown.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropdown.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dropdown,detaching)}}}function ActionBar_svelte_create_default_slot_3(ctx){let t0,t1,span,t0_value=ctx[6]("actionBar.editMenu")+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span=(0,internal.bGB)("span"),span.textContent="▼",(0,internal.Ljt)(span,"class","dropper")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span,anchor)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.editMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span)}}}function ActionBar_svelte_create_default_slot_2(ctx){let editmenu,current;return editmenu=new EditMenu_svelte({props:{visible:ctx[1]}}),{c(){(0,internal.YCL)(editmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(editmenu,target,anchor),current=!0},p(ctx,dirty){const editmenu_changes={};2&dirty&&(editmenu_changes.visible=ctx[1]),editmenu.$set(editmenu_changes)},i(local){current||((0,internal.Ui)(editmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(editmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(editmenu,detaching)}}}function create_title_slot_2(ctx){let span1,t0,t1,span0,t0_value=ctx[6]("actionBar.editMenu")+"";return{c(){span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span1,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.editMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function ActionBar_svelte_create_default_slot_1(ctx){let projectsmenu,current;return projectsmenu=new ProjectsMenu_svelte({}),{c(){(0,internal.YCL)(projectsmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(projectsmenu,target,anchor),current=!0},i(local){current||((0,internal.Ui)(projectsmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(projectsmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(projectsmenu,detaching)}}}function create_title_slot_1(ctx){let span1,t0,t1,span0,t0_value=ctx[6]("actionBar.projectsMenu")+"";return{c(){span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span1,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.projectsMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function ActionBar_svelte_create_default_slot(ctx){let addonsmenu,current;return addonsmenu=new AddonsMenu_svelte({}),{c(){(0,internal.YCL)(addonsmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(addonsmenu,target,anchor),current=!0},i(local){current||((0,internal.Ui)(addonsmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(addonsmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(addonsmenu,detaching)}}}function create_title_slot(ctx){let span2,span0,t0,t1,t2,t3,t4,span1,t0_value=ctx[6]("common.new")+"",t3_value=ctx[6]("actionBar.addOnsMenu")+"";return{c(){span2=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)("!"),t2=(0,internal.DhX)(),t3=(0,internal.fLW)(t3_value),t4=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="▼",(0,internal.Ljt)(span0,"class","badge svelte-5udg7h"),(0,internal.Ljt)(span1,"class","dropper"),(0,internal.Ljt)(span2,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span2,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span2,anchor),(0,internal.R3I)(span2,span0),(0,internal.R3I)(span0,t0),(0,internal.R3I)(span0,t1),(0,internal.R3I)(span2,t2),(0,internal.R3I)(span2,t3),(0,internal.R3I)(span2,t4),(0,internal.R3I)(span2,span1)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("common.new")+"")&&(0,internal.rTO)(t0,t0_value),64&dirty&&t3_value!==(t3_value=ctx[6]("actionBar.addOnsMenu")+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(span2)}}}function ActionBar_svelte_create_fragment(ctx){let div,current,mounted,dispose;(0,internal.P$F)(ctx[8]);let if_block=!ctx[2].loading&&ActionBar_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","barcontainer svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null),current=!0,mounted||(dispose=(0,internal.oLt)(window,"resize",ctx[8]),mounted=!0)},p(ctx,[dirty]){ctx[2].loading?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),4&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ActionBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,null))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d(),mounted=!1,dispose()}}}function ActionBar_svelte_instance($$self,$$props,$$invalidate){let $layout,$orgsAndUsers,$documents,$manager,$_;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(2,$layout=$$value))),(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(3,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(4,$documents=$$value))),(0,internal.FIv)($$self,manager,($$value=>$$invalidate(5,$manager=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));let outerHeight=1e3,editVisible=!1;return[outerHeight,editVisible,$layout,$orgsAndUsers,$documents,$manager,$_,function({detail:detail}){detail.indeterminate||function(){const results={};documents.De.documents.forEach((doc=>{results[doc.id]=doc})),layout.bK.selectedMap=results}()},function(){$$invalidate(0,outerHeight=window.outerHeight)},e=>$$invalidate(1,editVisible=e.detail)]}class ActionBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ActionBar_svelte_instance,ActionBar_svelte_create_fragment,internal.N8,{})}}var ActionBar_svelte=ActionBar,Button_svelte=__webpack_require__(7120),transition=__webpack_require__(6318),document_silhouetteraw=__webpack_require__(6842),document_silhouetteraw_default=__webpack_require__.n(document_silhouetteraw);function Anonymous_svelte_create_default_slot(ctx){let t;return{c(){t=(0,internal.fLW)("Subscribe")},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Anonymous_svelte_create_fragment(ctx){let div2,button0,xcircle24,t0,h2,t1,t2,div0,t3,div1,p0,t4,t5,p1,t6,p2,t7,t8,form,input0,input0_placeholder_value,t9,input1,t10,button1,t11,p3,div2_outro,current,mounted,dispose,t1_value=ctx[0]("anonymous.title")+"",t4_value=ctx[0]("anonymous.p1",{values:{n:ctx[1].results.count}})+"",raw1_value=ctx[0]("anonymous.p2")+"",t7_value=ctx[0]("anonymous.p3")+"",raw2_value=ctx[0]("anonymous.p4")+"";return xcircle24=new lib.ZCA({}),button1=new Button_svelte.Z({props:{$$slots:{default:[Anonymous_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){div2=(0,internal.bGB)("div"),button0=(0,internal.bGB)("button"),(0,internal.YCL)(xcircle24.$$.fragment),t0=(0,internal.DhX)(),h2=(0,internal.bGB)("h2"),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t3=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t4=(0,internal.fLW)(t4_value),t5=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t6=(0,internal.DhX)(),p2=(0,internal.bGB)("p"),t7=(0,internal.fLW)(t7_value),t8=(0,internal.DhX)(),form=(0,internal.bGB)("form"),input0=(0,internal.bGB)("input"),t9=(0,internal.DhX)(),input1=(0,internal.bGB)("input"),t10=(0,internal.DhX)(),(0,internal.YCL)(button1.$$.fragment),t11=(0,internal.DhX)(),p3=(0,internal.bGB)("p"),(0,internal.Ljt)(button0,"class","dismiss svelte-16go80m"),(0,internal.Ljt)(h2,"class","svelte-16go80m"),(0,internal.Ljt)(div0,"class","img svelte-16go80m"),(0,internal.Ljt)(p0,"class","svelte-16go80m"),(0,internal.Ljt)(p1,"class","svelte-16go80m"),(0,internal.Ljt)(p2,"class","svelte-16go80m"),(0,internal.Ljt)(input0,"type","email"),(0,internal.Ljt)(input0,"name","EMAIL"),(0,internal.Ljt)(input0,"class","required email"),(0,internal.Ljt)(input0,"id","mce-EMAIL"),input0.required="",input0.value="",(0,internal.Ljt)(input0,"placeholder",input0_placeholder_value=ctx[0]("common.emailAddress")),(0,internal.Ljt)(input1,"type","hidden"),(0,internal.Ljt)(input1,"name","b_74862d74361490eca930f4384_20aa4a931d"),input1.value="",(0,internal.Ljt)(form,"action","https://muckrock.us2.list-manage.com/subscribe/post?u=74862d74361490eca930f4384&id=20aa4a931d&f_id=00f4c0e1f0"),(0,internal.Ljt)(form,"method","post"),(0,internal.Ljt)(form,"id","mc-embedded-subscribe-form"),(0,internal.Ljt)(form,"name","mc-embedded-subscribe-form"),(0,internal.Ljt)(form,"class","validate"),(0,internal.Ljt)(form,"target","_blank"),form.noValidate="",(0,internal.Ljt)(p3,"class","svelte-16go80m"),(0,internal.Ljt)(div1,"class","text svelte-16go80m"),(0,internal.Ljt)(div2,"class","container svelte-16go80m")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,button0),(0,internal.yef)(xcircle24,button0,null),(0,internal.R3I)(div2,t0),(0,internal.R3I)(div2,h2),(0,internal.R3I)(h2,t1),(0,internal.R3I)(div2,t2),(0,internal.R3I)(div2,div0),div0.innerHTML=document_silhouetteraw_default(),(0,internal.R3I)(div2,t3),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,p0),(0,internal.R3I)(p0,t4),(0,internal.R3I)(div1,t5),(0,internal.R3I)(div1,p1),p1.innerHTML=raw1_value,(0,internal.R3I)(div1,t6),(0,internal.R3I)(div1,p2),(0,internal.R3I)(p2,t7),(0,internal.R3I)(div1,t8),(0,internal.R3I)(div1,form),(0,internal.R3I)(form,input0),(0,internal.R3I)(form,t9),(0,internal.R3I)(form,input1),(0,internal.R3I)(form,t10),(0,internal.yef)(button1,form,null),(0,internal.R3I)(div1,t11),(0,internal.R3I)(div1,p3),p3.innerHTML=raw2_value,current=!0,mounted||(dispose=(0,internal.oLt)(button0,"click",ctx[2]),mounted=!0)},p(ctx,[dirty]){(!current||1&dirty)&&t1_value!==(t1_value=ctx[0]("anonymous.title")+"")&&(0,internal.rTO)(t1,t1_value),(!current||3&dirty)&&t4_value!==(t4_value=ctx[0]("anonymous.p1",{values:{n:ctx[1].results.count}})+"")&&(0,internal.rTO)(t4,t4_value),(!current||1&dirty)&&raw1_value!==(raw1_value=ctx[0]("anonymous.p2")+"")&&(p1.innerHTML=raw1_value),(!current||1&dirty)&&t7_value!==(t7_value=ctx[0]("anonymous.p3")+"")&&(0,internal.rTO)(t7,t7_value),(!current||1&dirty&&input0_placeholder_value!==(input0_placeholder_value=ctx[0]("common.emailAddress")))&&(0,internal.Ljt)(input0,"placeholder",input0_placeholder_value);const button1_changes={};16&dirty&&(button1_changes.$$scope={dirty:dirty,ctx:ctx}),button1.$set(button1_changes),(!current||1&dirty)&&raw2_value!==(raw2_value=ctx[0]("anonymous.p4")+"")&&(p3.innerHTML=raw2_value)},i(local){current||((0,internal.Ui)(xcircle24.$$.fragment,local),(0,internal.Ui)(button1.$$.fragment,local),div2_outro&&div2_outro.end(1),current=!0)},o(local){(0,internal.etI)(xcircle24.$$.fragment,local),(0,internal.etI)(button1.$$.fragment,local),div2_outro=(0,internal.eZl)(div2,transition.U1,{}),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),(0,internal.vpE)(xcircle24),(0,internal.vpE)(button1),detaching&&div2_outro&&div2_outro.end(),mounted=!1,dispose()}}}function Anonymous_svelte_instance($$self,$$props,$$invalidate){let $_,$search;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(0,$_=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(1,$search=$$value)));let{closed:closed=!1}=$$props;return $$self.$$set=$$props=>{"closed"in $$props&&$$invalidate(3,closed=$$props.closed)},[$_,$search,function(){$$invalidate(3,closed=!0)},closed]}class Anonymous extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Anonymous_svelte_instance,Anonymous_svelte_create_fragment,internal.N8,{closed:3})}}var Anonymous_svelte=Anonymous,Link_svelte=__webpack_require__(3566),auth=__webpack_require__(5232),langs=__webpack_require__(4358);function AuthSection_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[13]=list[i],child_ctx}function get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[16]=list[i][0],child_ctx[17]=list[i][1],child_ctx}function create_default_slot_24(ctx){let t,t_value=ctx[6]("common.home")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("common.home")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_23(ctx){let t,t_value=ctx[6]("authSection.faq")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.faq")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_22(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_23]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_21(ctx){let t,t_value=ctx[6]("authSection.searchDocs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.searchDocs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_20(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_21]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_19(ctx){let t,t_value=ctx[6]("authSection.apiDocs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.apiDocs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_18(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_19]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_17(ctx){let t,t_value=ctx[6]("authSection.addOns")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.addOns")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_16(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_17]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_15(ctx){let t,t_value=ctx[6]("authSection.premium")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.premium")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_14(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_15]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_13(ctx){let t,t_value=ctx[6]("authSection.emailUs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.emailUs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_12(ctx){let link0,t0,link1,t1,link2,t2,link3,t3,link4,t4,a,menuitem,current;return link0=new Link_svelte.Z({props:{toUrl:"/help/faq",color:!0,$$slots:{default:[create_default_slot_22]},$$scope:{ctx:ctx}}}),link1=new Link_svelte.Z({props:{toUrl:"/help/search",color:!0,$$slots:{default:[create_default_slot_20]},$$scope:{ctx:ctx}}}),link2=new Link_svelte.Z({props:{toUrl:"/help/api",color:!0,$$slots:{default:[create_default_slot_18]},$$scope:{ctx:ctx}}}),link3=new Link_svelte.Z({props:{toUrl:"/help/add-ons",color:!0,$$slots:{default:[create_default_slot_16]},$$scope:{ctx:ctx}}}),link4=new Link_svelte.Z({props:{toUrl:"/help/premium",color:!0,$$slots:{default:[create_default_slot_14]},$$scope:{ctx:ctx}}}),menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_13]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(link0.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(link1.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(link2.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(link3.$$.fragment),t3=(0,internal.DhX)(),(0,internal.YCL)(link4.$$.fragment),t4=(0,internal.DhX)(),a=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem.$$.fragment),(0,internal.Ljt)(a,"href","mailto:info@documentcloud.org"),(0,internal.Ljt)(a,"class","color svelte-1cdvx7j"),(0,internal.Ljt)(a,"target","_blank")},m(target,anchor){(0,internal.yef)(link0,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.yef)(link1,target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(link2,target,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(link3,target,anchor),(0,internal.$Tr)(target,t3,anchor),(0,internal.yef)(link4,target,anchor),(0,internal.$Tr)(target,t4,anchor),(0,internal.$Tr)(target,a,anchor),(0,internal.yef)(menuitem,a,null),current=!0},p(ctx,dirty){const link0_changes={};1048640&dirty&&(link0_changes.$$scope={dirty:dirty,ctx:ctx}),link0.$set(link0_changes);const link1_changes={};1048640&dirty&&(link1_changes.$$scope={dirty:dirty,ctx:ctx}),link1.$set(link1_changes);const link2_changes={};1048640&dirty&&(link2_changes.$$scope={dirty:dirty,ctx:ctx}),link2.$set(link2_changes);const link3_changes={};1048640&dirty&&(link3_changes.$$scope={dirty:dirty,ctx:ctx}),link3.$set(link3_changes);const link4_changes={};1048640&dirty&&(link4_changes.$$scope={dirty:dirty,ctx:ctx}),link4.$set(link4_changes);const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(link0.$$.fragment,local),(0,internal.Ui)(link1.$$.fragment,local),(0,internal.Ui)(link2.$$.fragment,local),(0,internal.Ui)(link3.$$.fragment,local),(0,internal.Ui)(link4.$$.fragment,local),(0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(link0.$$.fragment,local),(0,internal.etI)(link1.$$.fragment,local),(0,internal.etI)(link2.$$.fragment,local),(0,internal.etI)(link3.$$.fragment,local),(0,internal.etI)(link4.$$.fragment,local),(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(link0,detaching),detaching&&(0,internal.ogt)(t0),(0,internal.vpE)(link1,detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(link2,detaching),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(link3,detaching),detaching&&(0,internal.ogt)(t3),(0,internal.vpE)(link4,detaching),detaching&&(0,internal.ogt)(t4),detaching&&(0,internal.ogt)(a),(0,internal.vpE)(menuitem)}}}function create_default_slot_11(ctx){let menu,current;return menu=new Menu_svelte.Z({props:{$$slots:{default:[create_default_slot_12]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menu.$$.fragment)},m(target,anchor){(0,internal.yef)(menu,target,anchor),current=!0},p(ctx,dirty){const menu_changes={};1048640&dirty&&(menu_changes.$$scope={dirty:dirty,ctx:ctx}),menu.$set(menu_changes)},i(local){current||((0,internal.Ui)(menu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menu,detaching)}}}function AuthSection_svelte_create_title_slot_2(ctx){let span2,span1,t0,t1,span0,t0_value=ctx[6]("authSection.help")+"";return{c(){span2=(0,internal.bGB)("span"),span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","nowrap title svelte-1cdvx7j"),(0,internal.Ljt)(span2,"class","action"),(0,internal.Ljt)(span2,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span2,anchor),(0,internal.R3I)(span2,span1),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("authSection.help")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span2)}}}function create_if_block_7(ctx){let span,t1;return{c(){span=(0,internal.bGB)("span"),span.textContent="✓",t1=(0,internal.DhX)(),(0,internal.Ljt)(span,"class","scope svelte-1cdvx7j")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.$Tr)(target,t1,anchor)},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t1)}}}function AuthSection_svelte_create_default_slot_10(ctx){let t0,t1,if_block_anchor,t0_value=ctx[16]+"",if_block=ctx[17]==ctx[5]&&create_if_block_7();return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){ctx[17]==ctx[5]?if_block||(if_block=create_if_block_7(),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_each_block_1(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_10]},$$scope:{ctx:ctx}}}),menuitem.$on("click",(function(){return ctx[10](ctx[17])})),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx;const menuitem_changes={};1048608&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function AuthSection_svelte_create_default_slot_9(ctx){let each_1_anchor,current,each_value_1=langs,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){for(let i=0;i{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function AuthSection_svelte_create_default_slot_1(ctx){let a0,menuitem0,t0,menuitem1,t1,a1,menuitem2,t2,menuitem3,t3,t4,each_1_anchor,current;menuitem0=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),menuitem1=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}}),menuitem1.$on("click",showMailkeySelected),menuitem2=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_5]},$$scope:{ctx:ctx}}}),menuitem3=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[AuthSection_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}});let if_block=null!==ctx[2]&&AuthSection_svelte_create_if_block_4(ctx),each_value=ctx[0],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){a0=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem0.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(menuitem1.$$.fragment),t1=(0,internal.DhX)(),a1=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem2.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(menuitem3.$$.fragment),t3=(0,internal.DhX)(),if_block&&if_block.c(),t4=(0,internal.DhX)();for(let i=0;i{if_block=null})),(0,internal.gbL)()),141&dirty){let i;for(each_value=ctx[0],i=0;i1&&function(ctx){let dropdown,t0,span,current;return dropdown=new Dropdown_svelte.Z({props:{name:"language",fixed:!0,$$slots:{title:[AuthSection_svelte_create_title_slot_1],default:[AuthSection_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(dropdown.$$.fragment),t0=(0,internal.DhX)(),span=(0,internal.bGB)("span"),span.textContent="·",(0,internal.Ljt)(span,"class","dot svelte-1cdvx7j")},m(target,anchor){(0,internal.yef)(dropdown,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,span,anchor),current=!0},p(ctx,dirty){const dropdown_changes={};1048672&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes)},i(local){current||((0,internal.Ui)(dropdown.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropdown.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dropdown,detaching),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(span)}}}(ctx);const if_block_creators=[AuthSection_svelte_create_if_block,AuthSection_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return null!=ctx[1]?0:1}return current_block_type_index=select_block_type(ctx),if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(link.$$.fragment),t0=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="·",t2=(0,internal.DhX)(),(0,internal.YCL)(dropdown.$$.fragment),t3=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="·",t5=(0,internal.DhX)(),if_block0&&if_block0.c(),t6=(0,internal.DhX)(),if_block1.c(),(0,internal.Ljt)(span0,"class","dot svelte-1cdvx7j"),(0,internal.Ljt)(span1,"class","dot svelte-1cdvx7j"),(0,internal.Ljt)(div,"class","auth svelte-1cdvx7j")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(link,div,null),(0,internal.R3I)(div,t0),(0,internal.R3I)(div,span0),(0,internal.R3I)(div,t2),(0,internal.yef)(dropdown,div,null),(0,internal.R3I)(div,t3),(0,internal.R3I)(div,span1),(0,internal.R3I)(div,t5),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t6),if_blocks[current_block_type_index].m(div,null),current=!0},p(ctx,[dirty]){const link_changes={};1048640&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes);const dropdown_changes={};1048640&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes),langs.length>1&&if_block0.p(ctx,dirty);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block1=if_blocks[current_block_type_index],if_block1?if_block1.p(ctx,dirty):(if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block1.c()),(0,internal.Ui)(if_block1,1),if_block1.m(div,null))},i(local){current||((0,internal.Ui)(link.$$.fragment,local),(0,internal.Ui)(dropdown.$$.fragment,local),(0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),(0,internal.etI)(dropdown.$$.fragment,local),(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(link),(0,internal.vpE)(dropdown),if_block0&&if_block0.d(),if_blocks[current_block_type_index].d()}}}function triggerWindowResize(){window.dispatchEvent(new Event("resize"))}function AuthSection_svelte_instance($$self,$$props,$$invalidate){let me,individual,currentOrg,orgs,individualOrg,$orgsAndUsers,$locale,$_;async function change(org){await(0,orgsAndUsers.P8)(org),triggerWindowResize()}function updateLanguage(code){(0,internal.fxP)(runtime_esm.SP,$locale=code,$locale);try{localStorage.setItem("dc-locale",code)}catch(e){}triggerWindowResize()}(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(9,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,runtime_esm.SP,($$value=>$$invalidate(5,$locale=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));return $$self.$$.update=()=>{var list;512&$$self.$$.dirty&&$$invalidate(1,me=$orgsAndUsers.me),2&$$self.$$.dirty&&$$invalidate(4,individual=null!==me&&me.organization.individual),2&$$self.$$.dirty&&$$invalidate(3,currentOrg=null===me?null:me.organization),512&$$self.$$.dirty&&$$invalidate(0,orgs=null===$orgsAndUsers.selfOrgs?[]:$orgsAndUsers.selfOrgs),1&$$self.$$.dirty&&$$invalidate(2,(list=orgs.filter((org=>org.individual)),individualOrg=null==list||1!=list.length?null:list[0]))},[orgs,me,individualOrg,currentOrg,individual,$locale,$_,change,updateLanguage,$orgsAndUsers,code=>updateLanguage(code),()=>change(individualOrg),org=>change(org)]}class AuthSection extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AuthSection_svelte_instance,AuthSection_svelte_create_fragment,internal.N8,{})}}var AuthSection_svelte=AuthSection,src_emit=__webpack_require__(1812),array=__webpack_require__(4152);const documentTypes="123,602,abw,agd,bmp,cdr,cgm,cmx,csv,cwk,dbf,dif,doc,docx,dot,emf,eps,fb2,fhd,fodg,fodp,fods,fodt,gif,gnm,gnumeric,htm,html,hwp,jpeg,jpg,jtd,jtt,key,kth,mml,numbers,odb,odf,odg,odp,ods,odt,p65,pages,pbm,pcd,pct,pcx,pdf,pgm,plt,pm3,pm4,pm5,pm6,pmd,png,pot,ppm,pps,ppt,pptx,psd,pub,qxp,ras,rlf,rtf,sda,sdc,sdd,sdp,sdw,sgf,sgl,sgv,slk,stc,std,sti,stw,svg,svm,sxc,sxd,sxi,sxm,sxw,tga,tif,tiff,txt,uof,uop,uos,uot,vor,vsd,wb2,wdb,wk1,wk3,wk4,wks,wpd,wps,wq1,wq2,wri,xbm,xls,xlsx,xlt,xlw,xml,xpm,zabw,zmf".split(",").map((x=>`.${x.toLowerCase().trim()}`));function filterFiles(files){return files.filter((file=>(0,array.q9)(documentTypes,file.name.toLowerCase().trim(),((a,b)=>b.endsWith(a)))))}function Draggable_svelte_create_fragment(ctx){let div,current,mounted,dispose;const default_slot_template=ctx[6].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[5],null);return{c(){div=(0,internal.bGB)("div"),default_slot&&default_slot.c(),(0,internal.Ljt)(div,"class","outer svelte-d0ld7j"),(0,internal.VHj)(div,"dragging",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0,mounted||(dispose=[(0,internal.oLt)(div,"dragenter",(0,internal.AT7)(ctx[1])),(0,internal.oLt)(div,"dragover",(0,internal.AT7)(ctx[1])),(0,internal.oLt)(div,"dragleave",(0,internal.AT7)(ctx[2])),(0,internal.oLt)(div,"drop",(0,internal.AT7)(ctx[3]))],mounted=!0)},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||32&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[5],current?(0,internal.u2N)(default_slot_template,ctx[5],dirty,null):(0,internal.VOJ)(ctx[5]),null),(!current||1&dirty)&&(0,internal.VHj)(div,"dragging",ctx[0])},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),default_slot&&default_slot.d(detaching),mounted=!1,(0,internal.j7q)(dispose)}}}function Draggable_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props;const emit=(0,src_emit.Z)({files(){}});let dragging=!1,{disabled:disabled=!1}=$$props;function leave(){disabled||$$invalidate(0,dragging=!1)}return $$self.$$set=$$props=>{"disabled"in $$props&&$$invalidate(4,disabled=$$props.disabled),"$$scope"in $$props&&$$invalidate(5,$$scope=$$props.$$scope)},[dragging,function(e){disabled||$$invalidate(0,dragging=!0)},leave,function(e){disabled||function(files){if(disabled)return;if(leave(),0==(files=filterFiles(Array.from(files))).length)return;emit.files(files)}(e.dataTransfer.files)},disabled,$$scope,slots]}class Draggable extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Draggable_svelte_instance,Draggable_svelte_create_fragment,internal.N8,{disabled:4})}}var Draggable_svelte=Draggable,AccessIcon_svelte=__webpack_require__(2212),Image_svelte=__webpack_require__(5465),Progress_svelte=__webpack_require__(5242),HtmlField_svelte=__webpack_require__(3448),DocumentThumbnail_svelte=__webpack_require__(3213),Annotation_svelte=__webpack_require__(2926),close_inlineraw=__webpack_require__(3218),close_inlineraw_default=__webpack_require__.n(close_inlineraw),pencilraw=__webpack_require__(4713),pencilraw_default=__webpack_require__.n(pencilraw),viewer=__webpack_require__(3248);function Document_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[27]=list[i],child_ctx}function Document_svelte_get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[27]=list[i],child_ctx}function get_each_context_2(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[32]=list[i],child_ctx}function get_each_context_3(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[35]=list[i],child_ctx}function get_each_context_4(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[38]=list[i].key,child_ctx[39]=list[i].value,child_ctx}function get_each_context_5(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[42]=list[i],child_ctx}function create_if_block_20(ctx){let div,checkbox,current;return checkbox=new Checkbox_svelte({props:{checked:null!=ctx[11].selectedMap[ctx[0].id]}}),checkbox.$on("check",ctx[20]),checkbox.$on("uncheck",ctx[21]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(checkbox.$$.fragment),(0,internal.Ljt)(div,"class","check svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(checkbox,div,null),current=!0},p(ctx,dirty){const checkbox_changes={};2049&dirty[0]&&(checkbox_changes.checked=null!=ctx[11].selectedMap[ctx[0].id]),checkbox.$set(checkbox_changes)},i(local){current||((0,internal.Ui)(checkbox.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(checkbox.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(checkbox)}}}function create_if_block_19(ctx){let span,accessicon,current;return accessicon=new AccessIcon_svelte.Z({props:{document:ctx[0]}}),{c(){span=(0,internal.bGB)("span"),(0,internal.YCL)(accessicon.$$.fragment),(0,internal.Ljt)(span,"class","valign marginleft svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.yef)(accessicon,span,null),current=!0},p(ctx,dirty){const accessicon_changes={};1&dirty[0]&&(accessicon_changes.document=ctx[0]),accessicon.$set(accessicon_changes)},i(local){current||((0,internal.Ui)(accessicon.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(accessicon.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(accessicon)}}}function create_if_block_15(ctx){let h3,t0,t1,t2,t3,show_if=null!=ctx[0].source&&ctx[0].source.trim().length>0,t3_value=ctx[13](ctx[0].createdAt,{format:"medium"})+"",if_block0=ctx[0].pageCount>0&&create_if_block_18(ctx),if_block1=show_if&&create_if_block_17(ctx),if_block2=null!==ctx[0].userName&&create_if_block_16(ctx);return{c(){h3=(0,internal.bGB)("h3"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),t3=(0,internal.fLW)(t3_value),(0,internal.Ljt)(h3,"class","svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,h3,anchor),if_block0&&if_block0.m(h3,null),(0,internal.R3I)(h3,t0),if_block1&&if_block1.m(h3,null),(0,internal.R3I)(h3,t1),if_block2&&if_block2.m(h3,null),(0,internal.R3I)(h3,t2),(0,internal.R3I)(h3,t3)},p(ctx,dirty){ctx[0].pageCount>0?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_18(ctx),if_block0.c(),if_block0.m(h3,t0)):if_block0&&(if_block0.d(1),if_block0=null),1&dirty[0]&&(show_if=null!=ctx[0].source&&ctx[0].source.trim().length>0),show_if?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_17(ctx),if_block1.c(),if_block1.m(h3,t1)):if_block1&&(if_block1.d(1),if_block1=null),null!==ctx[0].userName?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_16(ctx),if_block2.c(),if_block2.m(h3,t2)):if_block2&&(if_block2.d(1),if_block2=null),8193&dirty[0]&&t3_value!==(t3_value=ctx[13](ctx[0].createdAt,{format:"medium"})+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(h3),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_18(ctx){let t0,t1,t0_value=ctx[12]("document.pageCount",{values:{n:ctx[0].pageCount}})+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){4097&dirty[0]&&t0_value!==(t0_value=ctx[12]("document.pageCount",{values:{n:ctx[0].pageCount}})+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function create_if_block_17(ctx){let t0,t1,t2,t3,t0_value=ctx[12]("document.source")+"",t2_value=ctx[0].source+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(": "),t2=(0,internal.fLW)(t2_value),t3=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,t3,anchor)},p(ctx,dirty){4096&dirty[0]&&t0_value!==(t0_value=ctx[12]("document.source")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty[0]&&t2_value!==(t2_value=ctx[0].source+"")&&(0,internal.rTO)(t2,t2_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(t3)}}}function create_if_block_16(ctx){let t0,t1,t0_value=ctx[0].userOrgString+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){1&dirty[0]&&t0_value!==(t0_value=ctx[0].userOrgString+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function create_if_block_14(ctx){let div,htmlfield,current;return htmlfield=new HtmlField_svelte.Z({props:{content:ctx[0].description}}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(htmlfield.$$.fragment),(0,internal.Ljt)(div,"class","description svelte-embfgs"),(0,internal.VHj)(div,"embeddescription",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(htmlfield,div,null),current=!0},p(ctx,dirty){const htmlfield_changes={};1&dirty[0]&&(htmlfield_changes.content=ctx[0].description),htmlfield.$set(htmlfield_changes),(!current||2&dirty[0])&&(0,internal.VHj)(div,"embeddescription",ctx[1])},i(local){current||((0,internal.Ui)(htmlfield.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(htmlfield.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(htmlfield)}}}function Document_svelte_create_if_block(ctx){let div,current_block_type_index,if_block0,t0,t1,t2,if_block3_anchor,current;const if_block_creators=[create_if_block_9,create_if_block_11,create_if_block_12,create_if_block_13],if_blocks=[];function select_block_type(ctx,dirty){return ctx[0].viewable?0:ctx[0].pending?1:ctx[0].error?2:ctx[0].nofile?3:-1}~(current_block_type_index=select_block_type(ctx))&&(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block1=null!=ctx[0].projectIds&&Document_svelte_create_if_block_5(ctx),if_block2=null!=ctx[0].highlights&&ctx[0].highlights.length>0&&!ctx[4]&&Document_svelte_create_if_block_2(ctx),if_block3=null!=ctx[0].noteHighlights&&ctx[0].noteHighlights.length>0&&!ctx[5]&&Document_svelte_create_if_block_1(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),if_block3&&if_block3.c(),if_block3_anchor=(0,internal.cSb)(),(0,internal.Ljt)(div,"class","actions svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),~current_block_type_index&&if_blocks[current_block_type_index].m(div,null),(0,internal.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,internal.$Tr)(target,t1,anchor),if_block2&&if_block2.m(target,anchor),(0,internal.$Tr)(target,t2,anchor),if_block3&&if_block3.m(target,anchor),(0,internal.$Tr)(target,if_block3_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?~current_block_type_index&&if_blocks[current_block_type_index].p(ctx,dirty):(if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(div,t0)):if_block0=null),null!=ctx[0].projectIds?if_block1?(if_block1.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=Document_svelte_create_if_block_5(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),null!=ctx[0].highlights&&ctx[0].highlights.length>0&&!ctx[4]?if_block2?(if_block2.p(ctx,dirty),17&dirty[0]&&(0,internal.Ui)(if_block2,1)):(if_block2=Document_svelte_create_if_block_2(ctx),if_block2.c(),(0,internal.Ui)(if_block2,1),if_block2.m(t2.parentNode,t2)):if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_block2,1,1,(()=>{if_block2=null})),(0,internal.gbL)()),null!=ctx[0].noteHighlights&&ctx[0].noteHighlights.length>0&&!ctx[5]?if_block3?(if_block3.p(ctx,dirty),33&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=Document_svelte_create_if_block_1(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(if_block3_anchor.parentNode,if_block3_anchor)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),~current_block_type_index&&if_blocks[current_block_type_index].d(),if_block1&&if_block1.d(),detaching&&(0,internal.ogt)(t1),if_block2&&if_block2.d(detaching),detaching&&(0,internal.ogt)(t2),if_block3&&if_block3.d(detaching),detaching&&(0,internal.ogt)(if_block3_anchor)}}}function create_if_block_13(ctx){let span,t0,t1,br,t2,button,current,t0_value=ctx[12]("document.improper")+"";return button=new Button_svelte.Z({props:{small:!0,secondary:!0,$$slots:{default:[Document_svelte_create_default_slot_9]},$$scope:{ctx:ctx}}}),button.$on("click",(function(){(0,internal.sBU)((0,documents.Cf)(ctx[0]))&&(0,documents.Cf)(ctx[0]).apply(this,arguments)})),{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),br=(0,internal.bGB)("br"),t2=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","error svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,br,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(button,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx,(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.improper")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(br),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(button,detaching)}}}function create_if_block_12(ctx){let span,t0,t1,br,t2,button,current,t0_value=ctx[12]("document.processingError")+"";return button=new Button_svelte.Z({props:{small:!0,secondary:!0,$$slots:{default:[Document_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),button.$on("click",(function(){(0,internal.sBU)((0,documents.Cf)(ctx[0]))&&(0,documents.Cf)(ctx[0]).apply(this,arguments)})),{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),br=(0,internal.bGB)("br"),t2=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","error svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.R3I)(span,t1),(0,internal.R3I)(span,br),(0,internal.R3I)(span,t2),(0,internal.yef)(button,span,null),current=!0},p(new_ctx,dirty){ctx=new_ctx,(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.processingError")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(button)}}}function create_if_block_11(ctx){let span,t,t_value=ctx[12]("document.processing")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(span,"class","pending svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.processing")+"")&&(0,internal.rTO)(t,t_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(span)}}}function create_if_block_9(ctx){let link,t,if_block_anchor,current;link=new Link_svelte.Z({props:{to:"viewer",params:{id:ctx[0].slugId},$$slots:{default:[Document_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}});let if_block=ctx[0].readable&&create_if_block_10(ctx);return{c(){(0,internal.YCL)(link.$$.fragment),t=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(link,target,anchor),(0,internal.$Tr)(target,t,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty[0]&&(link_changes.params={id:ctx[0].slugId}),4096&dirty[0]|16384&dirty[1]&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes),ctx[0].readable?if_block?(if_block.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block,1)):(if_block=create_if_block_10(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(link.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){(0,internal.vpE)(link,detaching),detaching&&(0,internal.ogt)(t),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Document_svelte_create_default_slot_9(ctx){let t,t_value=ctx[12]("document.remove")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.remove")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_8(ctx){let t,t_value=ctx[12]("document.remove")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.remove")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_7(ctx){let t,t_value=ctx[12]("document.open")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.open")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_6(ctx){let button,current;return button=new Button_svelte.Z({props:{action:!0,$$slots:{default:[Document_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function create_if_block_10(ctx){let div,t0,t1,progress,current,t0_value=ctx[12]("document.updating")+"";return progress=new Progress_svelte.Z({props:{initializing:!0,progress:0,compact:!0}}),{c(){div=(0,internal.bGB)("div"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),(0,internal.YCL)(progress.$$.fragment),(0,internal.Ljt)(div,"class","updating svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t0),(0,internal.R3I)(div,t1),(0,internal.yef)(progress,div,null),current=!0},p(ctx,dirty){(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.updating")+"")&&(0,internal.rTO)(t0,t0_value)},i(local){current||((0,internal.Ui)(progress.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(progress.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(progress)}}}function Document_svelte_create_if_block_5(ctx){let t0,t1,if_block_anchor,current,each_value_5=ctx[0].projectIds,each_blocks_1=[];for(let i=0;i(0,internal.etI)(each_blocks_1[i],1,1,(()=>{each_blocks_1[i]=null}));let each_value_4=ctx[0].dataPoints,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));let if_block=ctx[0].dataPoints.length>0&&ctx[0].editAccess&&Document_svelte_create_if_block_6(ctx);return{c(){for(let i=0;i0&&ctx[0].editAccess?if_block?if_block.p(ctx,dirty):(if_block=Document_svelte_create_if_block_6(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},i(local){if(!current){for(let i=0;i{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Document_svelte_create_if_block_7(ctx){let t0,t1,t0_value=ctx[38]+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(":")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){1&dirty[0]&&t0_value!==(t0_value=ctx[38]+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Document_svelte_create_default_slot_3(ctx){let t0,t1,t1_value=ctx[39]+"",if_block=ctx[38]!=ctx[17]&&Document_svelte_create_if_block_7(ctx);return{c(){if_block&&if_block.c(),t0=(0,internal.DhX)(),t1=(0,internal.fLW)(t1_value)},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){ctx[38]!=ctx[17]?if_block?if_block.p(ctx,dirty):(if_block=Document_svelte_create_if_block_7(ctx),if_block.c(),if_block.m(t0.parentNode,t0)):if_block&&(if_block.d(1),if_block=null),1&dirty[0]&&t1_value!==(t1_value=ctx[39]+"")&&(0,internal.rTO)(t1,t1_value)},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Document_svelte_create_default_slot_2(ctx){let button,current;return button=new Button_svelte.Z({props:{plain:!0,$$slots:{default:[Document_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};1&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function create_each_block_4(ctx){let link,current;return link=new Link_svelte.Z({props:{toUrl:(0,search.c8)(ctx[38],ctx[39]),$$slots:{default:[Document_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(link.$$.fragment)},m(target,anchor){(0,internal.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty[0]&&(link_changes.toUrl=(0,search.c8)(ctx[38],ctx[39])),1&dirty[0]|16384&dirty[1]&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,internal.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(link,detaching)}}}function Document_svelte_create_if_block_6(ctx){let span,mounted,dispose;return{c(){span=(0,internal.bGB)("span"),(0,internal.Ljt)(span,"class","pencil svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),span.innerHTML=pencilraw_default(),mounted||(dispose=(0,internal.oLt)(span,"click",ctx[23]),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(span),mounted=!1,dispose()}}}function Document_svelte_create_if_block_2(ctx){let div0,span,t0,t1,div1,current,mounted,dispose;function select_block_type_1(ctx,dirty){return ctx[9]?Document_svelte_create_if_block_4:Document_svelte_create_else_block_1}let current_block_type=select_block_type_1(ctx),if_block=current_block_type(ctx),each_value_1=ctx[8],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){div0=(0,internal.bGB)("div"),span=(0,internal.bGB)("span"),t0=(0,internal.DhX)(),if_block.c(),t1=(0,internal.DhX)(),div1=(0,internal.bGB)("div");for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){div0=(0,internal.bGB)("div"),span0=(0,internal.bGB)("span"),t0=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="Notes matching the query",t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div");for(let i=0;i0,if_block0=ctx[10].loggedIn&&!ctx[1]&&!ctx[2]&&create_if_block_20(ctx);documentthumbnail=new DocumentThumbnail_svelte.Z({props:{embed:ctx[1],dialog:ctx[2],document:ctx[0],noteCount:ctx[0].notes.length,publicNote:ctx[0].notes.some(func),orgNote:ctx[0].notes.some(func_1),privateNote:ctx[0].notes.some(func_2)}}),documentthumbnail.$on("pick",ctx[22]);let if_block1=!ctx[1]&&create_if_block_19(ctx),if_block2=!ctx[1]&&create_if_block_15(ctx),if_block3=show_if&&create_if_block_14(ctx),if_block4=!ctx[1]&&Document_svelte_create_if_block(ctx);return{c(){div2=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),(0,internal.YCL)(documentthumbnail.$$.fragment),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),h2=(0,internal.bGB)("h2"),span=(0,internal.bGB)("span"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),if_block1&&if_block1.c(),t4=(0,internal.DhX)(),if_block2&&if_block2.c(),t5=(0,internal.DhX)(),if_block3&&if_block3.c(),t6=(0,internal.DhX)(),if_block4&&if_block4.c(),(0,internal.Ljt)(span,"class","valign svelte-embfgs"),(0,internal.Ljt)(h2,"class","svelte-embfgs"),(0,internal.Ljt)(div0,"class","info svelte-embfgs"),(0,internal.Ljt)(div1,"class","row svelte-embfgs"),(0,internal.Ljt)(div2,"class","card svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div1,t0),(0,internal.yef)(documentthumbnail,div1,null),(0,internal.R3I)(div1,t1),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,h2),(0,internal.R3I)(h2,span),(0,internal.R3I)(span,t2),(0,internal.R3I)(h2,t3),if_block1&&if_block1.m(h2,null),(0,internal.R3I)(div0,t4),if_block2&&if_block2.m(div0,null),(0,internal.R3I)(div0,t5),if_block3&&if_block3.m(div0,null),(0,internal.R3I)(div0,t6),if_block4&&if_block4.m(div0,null),current=!0,mounted||(dispose=[(0,internal.oLt)(window,"keydown",ctx[15]),(0,internal.oLt)(window,"keyup",ctx[16])],mounted=!0)},p(ctx,dirty){!ctx[10].loggedIn||ctx[1]||ctx[2]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),1030&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=create_if_block_20(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div1,t0));const documentthumbnail_changes={};2&dirty[0]&&(documentthumbnail_changes.embed=ctx[1]),4&dirty[0]&&(documentthumbnail_changes.dialog=ctx[2]),1&dirty[0]&&(documentthumbnail_changes.document=ctx[0]),1&dirty[0]&&(documentthumbnail_changes.noteCount=ctx[0].notes.length),1&dirty[0]&&(documentthumbnail_changes.publicNote=ctx[0].notes.some(func)),1&dirty[0]&&(documentthumbnail_changes.orgNote=ctx[0].notes.some(func_1)),1&dirty[0]&&(documentthumbnail_changes.privateNote=ctx[0].notes.some(func_2)),documentthumbnail.$set(documentthumbnail_changes),(!current||1&dirty[0])&&t2_value!==(t2_value=ctx[0].title+"")&&(0,internal.rTO)(t2,t2_value),ctx[1]?if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()):if_block1?(if_block1.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=create_if_block_19(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(h2,null)),ctx[1]?if_block2&&(if_block2.d(1),if_block2=null):if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_15(ctx),if_block2.c(),if_block2.m(div0,t5)),1&dirty[0]&&(show_if=null!=ctx[0].description&&ctx[0].description.trim().length>0),show_if?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=create_if_block_14(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div0,t6)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()),ctx[1]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?(if_block4.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block4,1)):(if_block4=Document_svelte_create_if_block(ctx),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div0,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(documentthumbnail.$$.fragment,local),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(documentthumbnail.$$.fragment,local),(0,internal.etI)(if_block1),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),if_block0&&if_block0.d(),(0,internal.vpE)(documentthumbnail),if_block1&&if_block1.d(),if_block2&&if_block2.d(),if_block3&&if_block3.d(),if_block4&&if_block4.d(),mounted=!1,(0,internal.j7q)(dispose)}}}const func=x=>"public"==x.access,func_1=x=>"organization"==x.access,func_2=x=>"private"==x.access;function Document_svelte_instance($$self,$$props,$$invalidate){let highlightsActive,trimmedHighlights,moreToExpand,highlights,noteHighlights,$orgsAndUsers,$layout,$_,$date,$projects;(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(10,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(11,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(12,$_=$$value))),(0,internal.FIv)($$self,runtime_esm.hT,($$value=>$$invalidate(13,$date=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(14,$projects=$$value)));let{document:document}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props,expandHighlights=!1,closeHighlights=!1,closeNoteHighlights=!1,shiftKey=!1;return $$self.$$set=$$props=>{"document"in $$props&&$$invalidate(0,document=$$props.document),"embed"in $$props&&$$invalidate(1,embed=$$props.embed),"dialog"in $$props&&$$invalidate(2,dialog=$$props.dialog)},$$self.$$.update=()=>{1&$$self.$$.dirty[0]&&$$invalidate(19,highlightsActive=null!=document.highlights&&document.highlights.length>0),524289&$$self.$$.dirty[0]&&$$invalidate(18,trimmedHighlights=highlightsActive?document.highlights.slice(0,3):null),786441&$$self.$$.dirty[0]&&$$invalidate(9,moreToExpand=!!highlightsActive&&(!expandHighlights&&trimmedHighlights.length!=document.highlights.length)),786441&$$self.$$.dirty[0]&&$$invalidate(8,highlights=highlightsActive?expandHighlights?document.highlights:trimmedHighlights:null),1&$$self.$$.dirty[0]&&$$invalidate(7,noteHighlights=document.noteHighlights)},[document,embed,dialog,expandHighlights,closeHighlights,closeNoteHighlights,shiftKey,noteHighlights,highlights,moreToExpand,$orgsAndUsers,$layout,$_,$date,$projects,function(e){"Shift"==e.key&&$$invalidate(6,shiftKey=!0)},function(e){"Shift"==e.key&&$$invalidate(6,shiftKey=!1)},"_tag",trimmedHighlights,highlightsActive,()=>(0,documents.P7)(document,shiftKey),()=>(0,layout.HU)(document),function(event){internal.cKT.call(this,$$self,event)},()=>(0,layout.re)([document]),()=>$$invalidate(4,closeHighlights=!0),()=>$$invalidate(3,expandHighlights=!0),()=>$$invalidate(5,closeNoteHighlights=!0)]}class Document extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Document_svelte_instance,Document_svelte_create_fragment,internal.N8,{document:0,embed:1,dialog:2},null,[-1,-1])}}var Document_svelte=Document,Logo_svelte=__webpack_require__(4386);function EmbedFooter_svelte_create_if_block(ctx){let div,logo,current;return logo=new Logo_svelte.Z({props:{newPage:!0,nopadding:!0,homeLink:!0}}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(logo.$$.fragment),(0,internal.Ljt)(div,"class","logo svelte-1126yno")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(logo,div,null),current=!0},i(local){current||((0,internal.Ui)(logo.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(logo.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(logo)}}}function EmbedFooter_svelte_create_fragment(ctx){let div2,div0,t0,div1,paginator,t1,current;paginator=new Paginator_svelte({});let if_block=!ctx[0]&&EmbedFooter_svelte_create_if_block();return{c(){div2=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),(0,internal.YCL)(paginator.$$.fragment),t1=(0,internal.DhX)(),if_block&&if_block.c(),(0,internal.Ljt)(div0,"class","background svelte-1126yno"),(0,internal.Ljt)(div1,"class","paginator svelte-1126yno"),(0,internal.Ljt)(div2,"class","footer svelte-1126yno"),(0,internal.VHj)(div2,"dialog",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div0),(0,internal.R3I)(div2,t0),(0,internal.R3I)(div2,div1),(0,internal.yef)(paginator,div1,null),(0,internal.R3I)(div2,t1),if_block&&if_block.m(div2,null),current=!0},p(ctx,[dirty]){ctx[0]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?1&dirty&&(0,internal.Ui)(if_block,1):(if_block=EmbedFooter_svelte_create_if_block(),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div2,null)),(!current||1&dirty)&&(0,internal.VHj)(div2,"dialog",ctx[0])},i(local){current||((0,internal.Ui)(paginator.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(paginator.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),(0,internal.vpE)(paginator),if_block&&if_block.d()}}}function EmbedFooter_svelte_instance($$self,$$props,$$invalidate){let{dialog:dialog=!1}=$$props;return $$self.$$set=$$props=>{"dialog"in $$props&&$$invalidate(0,dialog=$$props.dialog)},[dialog]}class EmbedFooter extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,EmbedFooter_svelte_instance,EmbedFooter_svelte_create_fragment,internal.N8,{dialog:0})}}var EmbedFooter_svelte=EmbedFooter,Loader_svelte=__webpack_require__(1172),Modal_svelte=__webpack_require__(865),empty_resultsraw=__webpack_require__(4156),empty_resultsraw_default=__webpack_require__.n(empty_resultsraw);function NoDocuments_svelte_create_else_block(ctx){let h2,t0,t1,div0,t2,div1,p0,t3,t4,p1,t5,t0_value=ctx[2]("noDocuments.uploadFirst")+"",t3_value=ctx[2]("noDocuments.upload1")+"",t5_value=ctx[2]("noDocuments.upload2")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t3=(0,internal.fLW)(t3_value),t4=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t5=(0,internal.fLW)(t5_value),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p0,"class","svelte-dlrhmn"),(0,internal.Ljt)(p1,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=document_silhouetteraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p0),(0,internal.R3I)(p0,t3),(0,internal.R3I)(div1,t4),(0,internal.R3I)(div1,p1),(0,internal.R3I)(p1,t5)},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.uploadFirst")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&t3_value!==(t3_value=ctx[2]("noDocuments.upload1")+"")&&(0,internal.rTO)(t3,t3_value),4&dirty&&t5_value!==(t5_value=ctx[2]("noDocuments.upload2")+"")&&(0,internal.rTO)(t5,t5_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_if_block_1(ctx){let h2,t0,t1,div0,t2,div1,p0,t3,p1,t4,t5,ul,li0,t6,li1,t0_value=ctx[2]("noDocuments.welcome")+"",raw1_value=ctx[2]("noDocuments.verify1")+"",t4_value=ctx[2]("noDocuments.verify2")+"",raw2_value=ctx[2]("noDocuments.verify3")+"",raw3_value=ctx[2]("noDocuments.verify4")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t3=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t4=(0,internal.fLW)(t4_value),t5=(0,internal.DhX)(),ul=(0,internal.bGB)("ul"),li0=(0,internal.bGB)("li"),t6=(0,internal.DhX)(),li1=(0,internal.bGB)("li"),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p0,"class","svelte-dlrhmn"),(0,internal.Ljt)(p1,"class","svelte-dlrhmn"),(0,internal.Ljt)(li0,"class","svelte-dlrhmn"),(0,internal.Ljt)(li1,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=document_silhouetteraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p0),p0.innerHTML=raw1_value,(0,internal.R3I)(div1,t3),(0,internal.R3I)(div1,p1),(0,internal.R3I)(p1,t4),(0,internal.R3I)(div1,t5),(0,internal.R3I)(div1,ul),(0,internal.R3I)(ul,li0),li0.innerHTML=raw2_value,(0,internal.R3I)(ul,t6),(0,internal.R3I)(ul,li1),li1.innerHTML=raw3_value},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.welcome")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&raw1_value!==(raw1_value=ctx[2]("noDocuments.verify1")+"")&&(p0.innerHTML=raw1_value),4&dirty&&t4_value!==(t4_value=ctx[2]("noDocuments.verify2")+"")&&(0,internal.rTO)(t4,t4_value),4&dirty&&raw2_value!==(raw2_value=ctx[2]("noDocuments.verify3")+"")&&(li0.innerHTML=raw2_value),4&dirty&&raw3_value!==(raw3_value=ctx[2]("noDocuments.verify4")+"")&&(li1.innerHTML=raw3_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_if_block(ctx){let h2,t0,t1,div0,t2,div1,p,t3,t0_value=ctx[2]("noDocuments.noSearchResults")+"",t3_value=ctx[2]("noDocuments.queryNoResults")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p=(0,internal.bGB)("p"),t3=(0,internal.fLW)(t3_value),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=empty_resultsraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p),(0,internal.R3I)(p,t3)},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.noSearchResults")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&t3_value!==(t3_value=ctx[2]("noDocuments.queryNoResults")+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_fragment(ctx){let div;function select_block_type(ctx,dirty){return null!=ctx[0].me&&ctx[1].params.oneUserSearch==ctx[0].me.id&&ctx[1].params.noStatus&&ctx[1].params.noAccess?null==ctx[0].me||ctx[0].isVerified?NoDocuments_svelte_create_else_block:NoDocuments_svelte_create_if_block_1:NoDocuments_svelte_create_if_block}let current_block_type=select_block_type(ctx),if_block=current_block_type(ctx);return{c(){div=(0,internal.bGB)("div"),if_block.c(),(0,internal.Ljt)(div,"class","container svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block.m(div,null)},p(ctx,[dirty]){current_block_type===(current_block_type=select_block_type(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div,null)))},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),if_block.d()}}}function NoDocuments_svelte_instance($$self,$$props,$$invalidate){let $orgsAndUsers,$search,$_;return(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(0,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(1,$search=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value))),[$orgsAndUsers,$search,$_]}class NoDocuments extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,NoDocuments_svelte_instance,NoDocuments_svelte_create_fragment,internal.N8,{})}}var NoDocuments_svelte=NoDocuments;function ProcessingBar_svelte_create_if_block(ctx){let div1,div0,current_block_type_index,if_block,t,progress,current;const if_block_creators=[ProcessingBar_svelte_create_if_block_1,ProcessingBar_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[1].doneProcessing?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),progress=new Progress_svelte.Z({props:{progress:ctx[1].processingProgress}}),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),if_block.c(),t=(0,internal.DhX)(),(0,internal.YCL)(progress.$$.fragment),(0,internal.Ljt)(div0,"class","info svelte-mjz2rg"),(0,internal.Ljt)(div1,"class","processingbar svelte-mjz2rg")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),if_blocks[current_block_type_index].m(div0,null),(0,internal.R3I)(div1,t),(0,internal.yef)(progress,div1,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(div0,null));const progress_changes={};2&dirty&&(progress_changes.progress=ctx[1].processingProgress),progress.$set(progress_changes)},i(local){current||((0,internal.Ui)(if_block),(0,internal.Ui)(progress.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block),(0,internal.etI)(progress.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div1),if_blocks[current_block_type_index].d(),(0,internal.vpE)(progress)}}}function ProcessingBar_svelte_create_else_block(ctx){let t,t_value=ctx[2]("processingBar.processingDocuments",{values:{n:ctx[1].numProcessing}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){6&dirty&&t_value!==(t_value=ctx[2]("processingBar.processingDocuments",{values:{n:ctx[1].numProcessing}})+"")&&(0,internal.rTO)(t,t_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProcessingBar_svelte_create_if_block_1(ctx){let span0,t0,t1,span1,button,current,t0_value=ctx[2]("processingBar.doneProcessing")+"";return button=new Button_svelte.Z({props:{small:!0,$$slots:{default:[ProcessingBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[3]),{c(){span0=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span0,"class","valign svelte-mjz2rg"),(0,internal.Ljt)(span1,"class","dismiss svelte-mjz2rg")},m(target,anchor){(0,internal.$Tr)(target,span0,anchor),(0,internal.R3I)(span0,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span1,anchor),(0,internal.yef)(button,span1,null),current=!0},p(ctx,dirty){(!current||4&dirty)&&t0_value!==(t0_value=ctx[2]("processingBar.doneProcessing")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};20&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span1),(0,internal.vpE)(button)}}}function ProcessingBar_svelte_create_default_slot(ctx){let t,t_value=ctx[2]("dialog.dismiss")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("dialog.dismiss")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProcessingBar_svelte_create_fragment(ctx){let if_block_anchor,current,if_block=(!ctx[1].doneProcessing||!ctx[0])&&ProcessingBar_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){ctx[1].doneProcessing&&ctx[0]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),3&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ProcessingBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProcessingBar_svelte_instance($$self,$$props,$$invalidate){let $documents,$_;(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(1,$documents=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value)));let dismissed=!0;documents.De.subscribe((()=>{!documents.De.doneProcessing&&dismissed&&$$invalidate(0,dismissed=!1)}));return[dismissed,$documents,$_,()=>$$invalidate(0,dismissed=!0)]}class ProcessingBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProcessingBar_svelte_instance,ProcessingBar_svelte_create_fragment,internal.N8,{})}}var ProcessingBar_svelte=ProcessingBar,SearchBar_svelte=__webpack_require__(9776),search_iconraw=__webpack_require__(9016),search_iconraw_default=__webpack_require__.n(search_iconraw);function SearchLink_svelte_create_fragment(ctx){let div0,a,html_tag,t0,t1,t2,div1,t1_value=ctx[1]("searchLink.search")+"";return{c(){div0=(0,internal.bGB)("div"),a=(0,internal.bGB)("a"),html_tag=new internal.FWw(!1),t0=(0,internal.DhX)(),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),html_tag.a=t0,(0,internal.Ljt)(a,"href",ctx[0]),(0,internal.Ljt)(a,"target","_blank"),(0,internal.Ljt)(div0,"class","link svelte-17lxzen"),(0,internal.Ljt)(div1,"class","linkcontainer svelte-17lxzen")},m(target,anchor){(0,internal.$Tr)(target,div0,anchor),(0,internal.R3I)(div0,a),html_tag.m(search_iconraw_default(),a),(0,internal.R3I)(a,t0),(0,internal.R3I)(a,t1),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor)},p(ctx,[dirty]){2&dirty&&t1_value!==(t1_value=ctx[1]("searchLink.search")+"")&&(0,internal.rTO)(t1,t1_value),1&dirty&&(0,internal.Ljt)(a,"href",ctx[0])},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function SearchLink_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));let{link:link=""}=$$props;return $$self.$$set=$$props=>{"link"in $$props&&$$invalidate(0,link=$$props.link)},[link,$_]}class SearchLink extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SearchLink_svelte_instance,SearchLink_svelte_create_fragment,internal.N8,{link:0})}}var SearchLink_svelte=SearchLink;function SpecialMessage_svelte_create_if_block(ctx){let div1,div0,promise,info={ctx:ctx,current:null,token:null,hasCatch:!0,pending:create_pending_block,then:create_then_block,catch:create_catch_block,value:8};return(0,internal.CR_)(promise=ctx[0],info),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),info.block.c(),(0,internal.Ljt)(div0,"class","special svelte-swwj5y"),(0,internal.Ljt)(div1,"class","container svelte-swwj5y")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),info.block.m(div0,info.anchor=null),info.mount=()=>div0,info.anchor=null},p(new_ctx,dirty){ctx=new_ctx,info.ctx=ctx,1&dirty&&promise!==(promise=ctx[0])&&(0,internal.CR_)(promise,info)||(0,internal.xfz)(info,ctx,dirty)},d(detaching){detaching&&(0,internal.ogt)(div1),info.block.d(),info.token=null,info=null}}}function create_catch_block(ctx){let t0,t1,if_block_anchor,if_block=ctx[1]&&SpecialMessage_svelte_create_if_block_1(ctx);return{c(){t0=(0,internal.fLW)(ctx[4]),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){ctx[1]?if_block?if_block.p(ctx,dirty):(if_block=SpecialMessage_svelte_create_if_block_1(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function SpecialMessage_svelte_create_if_block_1(ctx){let html_tag,html_anchor,raw_value=ctx[3]("specialMessage.constactUs",{values:{contact:ctx[5]}})+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){8&dirty&&raw_value!==(raw_value=ctx[3]("specialMessage.constactUs",{values:{contact:ctx[5]}})+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_then_block(ctx){let html_tag,html_anchor,raw_value=ctx[8]+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){1&dirty&&raw_value!==(raw_value=ctx[8]+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_pending_block(ctx){return{c:internal.ZTd,m:internal.ZTd,p:internal.ZTd,d:internal.ZTd}}function SpecialMessage_svelte_create_fragment(ctx){let if_block_anchor,if_block=ctx[2]&&SpecialMessage_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,[dirty]){ctx[2]?if_block?if_block.p(ctx,dirty):(if_block=SpecialMessage_svelte_create_if_block(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},i:internal.ZTd,o:internal.ZTd,d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function SpecialMessage_svelte_instance($$self,$$props,$$invalidate){let show,showContact,$_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value)));const version="Thanks for using DocumentCloud!",contact="mailto:info@documentcloud.org?subject=DocumentCloud Feedback",endpoint=new URL("/api/flatpages/tipofday/",base.t);let loading;return(0,svelte.H3)((()=>{$$invalidate(0,loading=async function(){const resp=await fetch(endpoint);if(!resp.ok)return"";const{content:content}=await resp.json();return content}())})),$$invalidate(2,show=version.trim().length>0),$$invalidate(1,showContact=contact.trim().length>0),[loading,showContact,show,$_,version,contact]}class SpecialMessage extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SpecialMessage_svelte_instance,SpecialMessage_svelte_create_fragment,internal.N8,{})}}var SpecialMessage_svelte=SpecialMessage,Title_svelte=__webpack_require__(4725),document_iconraw=__webpack_require__(5563),document_iconraw_default=__webpack_require__.n(document_iconraw);function File_svelte_create_if_block(ctx){let div4,div0,t0,div2,div1,t1,input,input_placeholder_value,t2,div3,t4,mounted,dispose,if_block0=ctx[0]&&File_svelte_create_if_block_2(ctx),if_block1=!ctx[0]&&File_svelte_create_if_block_1(ctx);return{c(){div4=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t1=(0,internal.DhX)(),input=(0,internal.bGB)("input"),t2=(0,internal.DhX)(),div3=(0,internal.bGB)("div"),div3.textContent=`${ctx[6]}`,t4=(0,internal.DhX)(),if_block1&&if_block1.c(),(0,internal.Ljt)(div0,"class","cell doc svelte-1numtjm"),(0,internal.Ljt)(div1,"class","progresscontainer svelte-1numtjm"),(0,internal.Ljt)(input,"placeholder",input_placeholder_value=ctx[4]("uploadDialog.untitled")),input.readOnly=ctx[0],(0,internal.Ljt)(input,"class","svelte-1numtjm"),(0,internal.VHj)(input,"error",ctx[2]),(0,internal.Ljt)(div2,"class","cell name svelte-1numtjm"),(0,internal.VHj)(div2,"readonly",ctx[0]),(0,internal.Ljt)(div3,"class","cell size svelte-1numtjm"),(0,internal.Ljt)(div4,"class","row svelte-1numtjm")},m(target,anchor){(0,internal.$Tr)(target,div4,anchor),(0,internal.R3I)(div4,div0),div0.innerHTML=document_iconraw_default(),(0,internal.R3I)(div4,t0),(0,internal.R3I)(div4,div2),(0,internal.R3I)(div2,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,input),(0,internal.BmG)(input,ctx[3]),(0,internal.R3I)(div4,t2),(0,internal.R3I)(div4,div3),(0,internal.R3I)(div4,t4),if_block1&&if_block1.m(div4,null),mounted||(dispose=(0,internal.oLt)(input,"input",ctx[8]),mounted=!0)},p(ctx,dirty){ctx[0]?if_block0?if_block0.p(ctx,dirty):(if_block0=File_svelte_create_if_block_2(ctx),if_block0.c(),if_block0.m(div1,null)):if_block0&&(if_block0.d(1),if_block0=null),16&dirty&&input_placeholder_value!==(input_placeholder_value=ctx[4]("uploadDialog.untitled"))&&(0,internal.Ljt)(input,"placeholder",input_placeholder_value),1&dirty&&(input.readOnly=ctx[0]),8&dirty&&input.value!==ctx[3]&&(0,internal.BmG)(input,ctx[3]),4&dirty&&(0,internal.VHj)(input,"error",ctx[2]),1&dirty&&(0,internal.VHj)(div2,"readonly",ctx[0]),ctx[0]?if_block1&&(if_block1.d(1),if_block1=null):if_block1?if_block1.p(ctx,dirty):(if_block1=File_svelte_create_if_block_1(ctx),if_block1.c(),if_block1.m(div4,null))},d(detaching){detaching&&(0,internal.ogt)(div4),if_block0&&if_block0.d(),if_block1&&if_block1.d(),mounted=!1,dispose()}}}function File_svelte_create_if_block_2(ctx){let div1,div0,t;return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t=(0,internal.fLW)(ctx[3]),(0,internal.Ljt)(div0,"class","progressinner svelte-1numtjm"),(0,internal.Ljt)(div1,"class","progress svelte-1numtjm"),(0,internal.czc)(div1,"width",100*ctx[1].progress+"%")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,t)},p(ctx,dirty){8&dirty&&(0,internal.rTO)(t,ctx[3]),2&dirty&&(0,internal.czc)(div1,"width",100*ctx[1].progress+"%")},d(detaching){detaching&&(0,internal.ogt)(div1)}}}function File_svelte_create_if_block_1(ctx){let div1,div0,mounted,dispose;return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),(0,internal.Ljt)(div1,"class","cell close svelte-1numtjm")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),div0.innerHTML=close_inlineraw_default(),mounted||(dispose=(0,internal.oLt)(div0,"click",ctx[5].delete),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div1),mounted=!1,dispose()}}}function File_svelte_create_fragment(ctx){let if_block_anchor,if_block=(!ctx[0]||!ctx[1].done)&&File_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,[dirty]){ctx[0]&&ctx[1].done?if_block&&(if_block.d(1),if_block=null):if_block?if_block.p(ctx,dirty):(if_block=File_svelte_create_if_block(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i:internal.ZTd,o:internal.ZTd,d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function File_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(4,$_=$$value)));const emit=(0,src_emit.Z)({name(){},delete(){}});let{file:file}=$$props,{uploadMode:uploadMode}=$$props,{data:data}=$$props,{error:error=!1}=$$props,name=(0,string.f_)(file.name),size=(0,string.td)(file.size);return(0,svelte.H3)((()=>{emit.name(name)})),$$self.$$set=$$props=>{"file"in $$props&&$$invalidate(7,file=$$props.file),"uploadMode"in $$props&&$$invalidate(0,uploadMode=$$props.uploadMode),"data"in $$props&&$$invalidate(1,data=$$props.data),"error"in $$props&&$$invalidate(2,error=$$props.error)},$$self.$$.update=()=>{8&$$self.$$.dirty&&emit.name(name)},[uploadMode,data,error,name,$_,emit,size,file,function(){name=this.value,$$invalidate(3,name)}]}class File extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,File_svelte_instance,File_svelte_create_fragment,internal.N8,{file:7,uploadMode:0,data:1,error:2})}}var File_svelte=File;function DropZone_svelte_create_default_slot(ctx){let div,current;const default_slot_template=ctx[1].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[3],null);return{c(){div=(0,internal.bGB)("div"),default_slot&&default_slot.c(),(0,internal.Ljt)(div,"class","content svelte-1t3ndgc")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0},p(ctx,dirty){default_slot&&default_slot.p&&(!current||8&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[3],current?(0,internal.u2N)(default_slot_template,ctx[3],dirty,null):(0,internal.VOJ)(ctx[3]),null)},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),default_slot&&default_slot.d(detaching)}}}function DropZone_svelte_create_fragment(ctx){let div,draggable,current;return draggable=new Draggable_svelte({props:{$$slots:{default:[DropZone_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),draggable.$on("files",ctx[2]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(draggable.$$.fragment),(0,internal.Ljt)(div,"class","dropzone svelte-1t3ndgc"),(0,internal.VHj)(div,"secondary",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(draggable,div,null),current=!0},p(ctx,[dirty]){const draggable_changes={};8&dirty&&(draggable_changes.$$scope={dirty:dirty,ctx:ctx}),draggable.$set(draggable_changes),(!current||1&dirty)&&(0,internal.VHj)(div,"secondary",ctx[0])},i(local){current||((0,internal.Ui)(draggable.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(draggable.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(draggable)}}}function DropZone_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props,{secondary:secondary=!1}=$$props;return $$self.$$set=$$props=>{"secondary"in $$props&&$$invalidate(0,secondary=$$props.secondary),"$$scope"in $$props&&$$invalidate(3,$$scope=$$props.$$scope)},[secondary,slots,function(event){internal.cKT.call(this,$$self,event)},$$scope]}class DropZone extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,DropZone_svelte_instance,DropZone_svelte_create_fragment,internal.N8,{secondary:0})}}var DropZone_svelte=DropZone;function FilePicker_svelte_create_fragment(ctx){let span1,span0,t,input,current,mounted,dispose;const default_slot_template=ctx[6].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[5],null);return{c(){span1=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),default_slot&&default_slot.c(),t=(0,internal.DhX)(),input=(0,internal.bGB)("input"),(0,internal.Ljt)(span0,"class","content svelte-h96wl2"),input.multiple=ctx[0],(0,internal.Ljt)(input,"class","picker svelte-h96wl2"),(0,internal.Ljt)(input,"type","file"),(0,internal.Ljt)(input,"accept",ctx[2]),(0,internal.Ljt)(span1,"class","container svelte-h96wl2")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,span0),default_slot&&default_slot.m(span0,null),(0,internal.R3I)(span1,t),(0,internal.R3I)(span1,input),ctx[7](input),current=!0,mounted||(dispose=[(0,internal.oLt)(span0,"click",ctx[3]),(0,internal.oLt)(input,"change",ctx[4])],mounted=!0)},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||32&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[5],current?(0,internal.u2N)(default_slot_template,ctx[5],dirty,null):(0,internal.VOJ)(ctx[5]),null),(!current||1&dirty)&&(input.multiple=ctx[0])},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span1),default_slot&&default_slot.d(detaching),ctx[7](null),mounted=!1,(0,internal.j7q)(dispose)}}}function FilePicker_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props;const emit=(0,src_emit.Z)({files(){}});let{multiselect:multiselect=!1}=$$props;const documentTypes="123,602,abw,agd,bmp,cdr,cgm,cmx,csv,cwk,dbf,dif,doc,docx,dot,emf,eps,fb2,fhd,fodg,fodp,fods,fodt,gif,gnm,gnumeric,htm,html,hwp,jpeg,jpg,jtd,jtt,key,kth,mml,numbers,odb,odf,odg,odp,ods,odt,p65,pages,pbm,pcd,pct,pcx,pdf,pgm,plt,pm3,pm4,pm5,pm6,pmd,png,pot,ppm,pps,ppt,pptx,psd,pub,qxp,ras,rlf,rtf,sda,sdc,sdd,sdp,sdw,sgf,sgl,sgv,slk,stc,std,sti,stw,svg,svm,sxc,sxd,sxi,sxm,sxw,tga,tif,tiff,txt,uof,uop,uos,uot,vor,vsd,wb2,wdb,wk1,wk3,wk4,wks,wpd,wps,wq1,wq2,wri,xbm,xls,xlsx,xlt,xlw,xml,xpm,zabw,zmf".split(",").map((x=>`.${x.toLowerCase().trim()}`)).join(",");let picker;return $$self.$$set=$$props=>{"multiselect"in $$props&&$$invalidate(0,multiselect=$$props.multiselect),"$$scope"in $$props&&$$invalidate(5,$$scope=$$props.$$scope)},[multiselect,picker,documentTypes,function(){picker.click()},function(){const fileList=picker.files;if(fileList.length>0){const files=[];for(let i=0;i{picker=$$value,$$invalidate(1,picker)}))}]}class FilePicker extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,FilePicker_svelte_instance,FilePicker_svelte_create_fragment,internal.N8,{multiselect:0})}}var FilePicker_svelte=FilePicker,UploadOptions_svelte=__webpack_require__(8618),AccessToggle_svelte=__webpack_require__(3426),languages=__webpack_require__(9275),api_document=__webpack_require__(2835);function UploadDialog_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[41]=list[i],child_ctx[42]=list,child_ctx[43]=i,child_ctx}function UploadDialog_svelte_create_if_block_9(ctx){let div2,h2,t0,t1,div0,uploadoptions,updating_language,updating_forceOcr,updating_ocrEngine,t2,current_block_type_index,if_block2,t3,t4,div1,accesstoggle,updating_access,current;function select_block_type(ctx,dirty){return null==ctx[11]?UploadDialog_svelte_create_if_block_16:create_else_block_4}let current_block_type=select_block_type(ctx),if_block0=current_block_type(ctx);function select_block_type_1(ctx,dirty){return 0===ctx[0].length?UploadDialog_svelte_create_if_block_12:create_else_block_3}let current_block_type_1=select_block_type_1(ctx),if_block1=current_block_type_1(ctx);function uploadoptions_language_binding(value){ctx[30](value)}function uploadoptions_forceOcr_binding(value){ctx[31](value)}function uploadoptions_ocrEngine_binding(value){ctx[32](value)}let uploadoptions_props={};void 0!==ctx[4]&&(uploadoptions_props.language=ctx[4]),void 0!==ctx[5]&&(uploadoptions_props.forceOcr=ctx[5]),void 0!==ctx[6]&&(uploadoptions_props.ocrEngine=ctx[6]),uploadoptions=new UploadOptions_svelte.Z({props:uploadoptions_props}),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"language",uploadoptions_language_binding))),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"forceOcr",uploadoptions_forceOcr_binding))),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"ocrEngine",uploadoptions_ocrEngine_binding)));const if_block_creators=[UploadDialog_svelte_create_if_block_11,create_else_block_2],if_blocks=[];function select_block_type_2(ctx,dirty){return ctx[0].length>0?0:1}current_block_type_index=select_block_type_2(ctx),if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block3=0==ctx[0].length&&UploadDialog_svelte_create_if_block_10(ctx);function accesstoggle_access_binding(value){ctx[33](value)}let accesstoggle_props={publicMessage:ctx[16]("uploadDialog.publicMsg"),collaboratorMessage:ctx[16]("uploadDialog.collabMsg"),privateMessage:ctx[16]("uploadDialog.privateMsg"),collaboratorName:ctx[16]("uploadDialog.collabName")};return void 0!==ctx[3]&&(accesstoggle_props.access=ctx[3]),accesstoggle=new AccessToggle_svelte.Z({props:accesstoggle_props}),internal.VnY.push((()=>(0,internal.akz)(accesstoggle,"access",accesstoggle_access_binding))),{c(){div2=(0,internal.bGB)("div"),h2=(0,internal.bGB)("h2"),if_block0.c(),t0=(0,internal.DhX)(),if_block1.c(),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),(0,internal.YCL)(uploadoptions.$$.fragment),t2=(0,internal.DhX)(),if_block2.c(),t3=(0,internal.DhX)(),if_block3&&if_block3.c(),t4=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),(0,internal.YCL)(accesstoggle.$$.fragment),(0,internal.Ljt)(div0,"class","actions svelte-2jozsx"),(0,internal.Ljt)(div1,"class","bottompadded svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,h2),if_block0.m(h2,null),(0,internal.R3I)(div2,t0),if_block1.m(div2,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,div0),(0,internal.yef)(uploadoptions,div0,null),(0,internal.R3I)(div0,t2),if_blocks[current_block_type_index].m(div0,null),(0,internal.R3I)(div2,t3),if_block3&&if_block3.m(div2,null),(0,internal.R3I)(div2,t4),(0,internal.R3I)(div2,div1),(0,internal.yef)(accesstoggle,div1,null),current=!0},p(ctx,dirty){current_block_type===(current_block_type=select_block_type(ctx))&&if_block0?if_block0.p(ctx,dirty):(if_block0.d(1),if_block0=current_block_type(ctx),if_block0&&(if_block0.c(),if_block0.m(h2,null))),current_block_type_1===(current_block_type_1=select_block_type_1(ctx))&&if_block1?if_block1.p(ctx,dirty):(if_block1.d(1),if_block1=current_block_type_1(ctx),if_block1&&(if_block1.c(),if_block1.m(div2,t1)));const uploadoptions_changes={};!updating_language&&16&dirty[0]&&(updating_language=!0,uploadoptions_changes.language=ctx[4],(0,internal.hjT)((()=>updating_language=!1))),!updating_forceOcr&&32&dirty[0]&&(updating_forceOcr=!0,uploadoptions_changes.forceOcr=ctx[5],(0,internal.hjT)((()=>updating_forceOcr=!1))),!updating_ocrEngine&&64&dirty[0]&&(updating_ocrEngine=!0,uploadoptions_changes.ocrEngine=ctx[6],(0,internal.hjT)((()=>updating_ocrEngine=!1))),uploadoptions.$set(uploadoptions_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_2(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block2=if_blocks[current_block_type_index],if_block2?if_block2.p(ctx,dirty):(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block2.c()),(0,internal.Ui)(if_block2,1),if_block2.m(div0,null)),0==ctx[0].length?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=UploadDialog_svelte_create_if_block_10(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div2,t4)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)());const accesstoggle_changes={};65536&dirty[0]&&(accesstoggle_changes.publicMessage=ctx[16]("uploadDialog.publicMsg")),65536&dirty[0]&&(accesstoggle_changes.collaboratorMessage=ctx[16]("uploadDialog.collabMsg")),65536&dirty[0]&&(accesstoggle_changes.privateMessage=ctx[16]("uploadDialog.privateMsg")),65536&dirty[0]&&(accesstoggle_changes.collaboratorName=ctx[16]("uploadDialog.collabName")),!updating_access&&8&dirty[0]&&(updating_access=!0,accesstoggle_changes.access=ctx[3],(0,internal.hjT)((()=>updating_access=!1))),accesstoggle.$set(accesstoggle_changes)},i(local){current||((0,internal.Ui)(uploadoptions.$$.fragment,local),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),(0,internal.Ui)(accesstoggle.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(uploadoptions.$$.fragment,local),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),(0,internal.etI)(accesstoggle.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),if_block0.d(),if_block1.d(),(0,internal.vpE)(uploadoptions),if_blocks[current_block_type_index].d(),if_block3&&if_block3.d(),(0,internal.vpE)(accesstoggle)}}}function create_else_block_4(ctx){let t,t_value=ctx[16]("uploadDialog.docUploadProj",{values:{title:ctx[11].title}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){67584&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.docUploadProj",{values:{title:ctx[11].title}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_16(ctx){let t,t_value=ctx[16]("uploadDialog.docUpload")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.docUpload")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_else_block_3(ctx){let p,t0,t1,if_block_anchor,t0_value=ctx[16]("uploadDialog.fileReady",{values:{n:ctx[0].length}})+"",if_block=ctx[7]&&UploadDialog_svelte_create_if_block_15(ctx);return{c(){p=(0,internal.bGB)("p"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t0),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){65537&dirty[0]&&t0_value!==(t0_value=ctx[16]("uploadDialog.fileReady",{values:{n:ctx[0].length}})+"")&&(0,internal.rTO)(t0,t0_value),ctx[7]?if_block?if_block.p(ctx,dirty):(if_block=UploadDialog_svelte_create_if_block_15(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function UploadDialog_svelte_create_if_block_12(ctx){let p,t0,t1,t2,if_block1_anchor,t0_value=ctx[16]("uploadDialog.selectDocument")+"",if_block0=ctx[8][0]&&UploadDialog_svelte_create_if_block_14(ctx),if_block1=ctx[8][1]&&UploadDialog_svelte_create_if_block_13(ctx);return{c(){p=(0,internal.bGB)("p"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block0&&if_block0.c(),t2=(0,internal.DhX)(),if_block1&&if_block1.c(),if_block1_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t0),(0,internal.$Tr)(target,t1,anchor),if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t2,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,if_block1_anchor,anchor)},p(ctx,dirty){65536&dirty[0]&&t0_value!==(t0_value=ctx[16]("uploadDialog.selectDocument")+"")&&(0,internal.rTO)(t0,t0_value),ctx[8][0]?if_block0?if_block0.p(ctx,dirty):(if_block0=UploadDialog_svelte_create_if_block_14(ctx),if_block0.c(),if_block0.m(t2.parentNode,t2)):if_block0&&(if_block0.d(1),if_block0=null),ctx[8][1]?if_block1?if_block1.p(ctx,dirty):(if_block1=UploadDialog_svelte_create_if_block_13(ctx),if_block1.c(),if_block1.m(if_block1_anchor.parentNode,if_block1_anchor)):if_block1&&(if_block1.d(1),if_block1=null)},d(detaching){detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t1),if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t2),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(if_block1_anchor)}}}function UploadDialog_svelte_create_if_block_15(ctx){let p,t,t_value=ctx[16]("uploadDialog.fileLimitWarning",{values:{limit:ctx[18]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.fileLimitWarning",{values:{limit:ctx[18]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_if_block_14(ctx){let p,t,t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[19]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[19]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_if_block_13(ctx){let p,t,t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[20]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[20]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function create_else_block_2(ctx){let filepicker,current;return filepicker=new FilePicker_svelte({props:{multiselect:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),filepicker.$on("files",ctx[21]),{c(){(0,internal.YCL)(filepicker.$$.fragment)},m(target,anchor){(0,internal.yef)(filepicker,target,anchor),current=!0},p(ctx,dirty){const filepicker_changes={};65536&dirty[0]|8192&dirty[1]&&(filepicker_changes.$$scope={dirty:dirty,ctx:ctx}),filepicker.$set(filepicker_changes)},i(local){current||((0,internal.Ui)(filepicker.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(filepicker.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(filepicker,detaching)}}}function UploadDialog_svelte_create_if_block_11(ctx){let button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[23]),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot_8(ctx){let t,t_value=ctx[16]("uploadDialog.selectFiles")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.selectFiles")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_default_slot_7(ctx){let button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot_6(ctx){let t,t_value=ctx[16]("uploadDialog.beginUpload")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.beginUpload")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_10(ctx){let div,dropzone,current;return dropzone=new DropZone_svelte({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_5]},$$scope:{ctx:ctx}}}),dropzone.$on("files",ctx[21]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(dropzone.$$.fragment),(0,internal.Ljt)(div,"class","droparea svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(dropzone,div,null),current=!0},p(ctx,dirty){const dropzone_changes={};65536&dirty[0]|8192&dirty[1]&&(dropzone_changes.$$scope={dirty:dirty,ctx:ctx}),dropzone.$set(dropzone_changes)},i(local){current||((0,internal.Ui)(dropzone.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropzone.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(dropzone)}}}function UploadDialog_svelte_create_default_slot_5(ctx){let span,t,t_value=ctx[16]("uploadDialog.dragDrop")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.dragDrop")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(span)}}}function UploadDialog_svelte_create_if_block_5(ctx){let div,current_block_type_index,if_block,current;const if_block_creators=[UploadDialog_svelte_create_if_block_6,UploadDialog_svelte_create_else_block_1],if_blocks=[];function select_block_type_3(ctx,dirty){return ctx[12]?1:0}return current_block_type_index=select_block_type_3(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){div=(0,internal.bGB)("div"),if_block.c()},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_blocks[current_block_type_index].m(div,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_3(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(div,null))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_blocks[current_block_type_index].d()}}}function UploadDialog_svelte_create_else_block_1(ctx){let h2,t0,t1,p,t2,t3,div,button,current,t0_value=ctx[16]("uploadDialog.errorHeading")+"",t2_value=ctx[16]("uploadDialog.errorMsg",{values:{errorMessage:errorMessage}})+"";return button=new Button_svelte.Z({props:{secondary:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[17].allUploaded),{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),p=(0,internal.bGB)("p"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),div=(0,internal.bGB)("div"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(p,"class","error")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t2),(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){(!current||65536&dirty[0])&&t0_value!==(t0_value=ctx[16]("uploadDialog.errorHeading")+"")&&(0,internal.rTO)(t0,t0_value),(!current||65536&dirty[0])&&t2_value!==(t2_value=ctx[16]("uploadDialog.errorMsg",{values:{errorMessage:errorMessage}})+"")&&(0,internal.rTO)(t2,t2_value);const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t3),detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function UploadDialog_svelte_create_if_block_6(ctx){let h2,t0,p,t1,t1_value=ctx[16]("uploadDialog.pleaseLeaveOpen")+"";function select_block_type_4(ctx,dirty){return ctx[9]==ctx[0].length?UploadDialog_svelte_create_if_block_7:ctx[10]?UploadDialog_svelte_create_if_block_8:UploadDialog_svelte_create_else_block}let current_block_type=select_block_type_4(ctx),if_block=current_block_type(ctx);return{c(){h2=(0,internal.bGB)("h2"),if_block.c(),t0=(0,internal.DhX)(),p=(0,internal.bGB)("p"),t1=(0,internal.fLW)(t1_value)},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),if_block.m(h2,null),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t1)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_4(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(h2,null))),65536&dirty[0]&&t1_value!==(t1_value=ctx[16]("uploadDialog.pleaseLeaveOpen")+"")&&(0,internal.rTO)(t1,t1_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(h2),if_block.d(),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_default_slot_4(ctx){let t,t_value=ctx[16]("dialog.dismiss")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("dialog.dismiss")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_else_block(ctx){let t,t_value=ctx[16]("uploadDialog.gettingInfo",{values:{percent:ctx[14]}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){81920&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.gettingInfo",{values:{percent:ctx[14]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_8(ctx){let t,t_value=ctx[16]("uploadDialog.uploading",{values:{uploaded:ctx[9],length:ctx[0].length}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){66049&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.uploading",{values:{uploaded:ctx[9],length:ctx[0].length}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_7(ctx){let t,t_value=ctx[16]("uploadDialog.submitting",{values:{percent:ctx[13]}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){73728&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.submitting",{values:{percent:ctx[13]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_4(ctx){let div,p,t,t_value=ctx[16]("uploadDialog.editDocInfo")+"";return{c(){div=(0,internal.bGB)("div"),p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","subtitle svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,p),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.editDocInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function UploadDialog_svelte_create_if_block_3(ctx){let div,current,each_blocks=[],each_1_lookup=new Map,each_value=ctx[15];const get_key=ctx=>ctx[41].index;for(let i=0;i0&&!ctx[2]&&UploadDialog_svelte_create_if_block_2(ctx),if_block1=ctx[0].length>0&&ctx[2]&&UploadDialog_svelte_create_if_block_1(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t=(0,internal.DhX)(),if_block1&&if_block1.c()},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t),if_block1&&if_block1.m(div,null),current=!0},p(ctx,dirty){ctx[0].length>0&&!ctx[2]?if_block0?(if_block0.p(ctx,dirty),5&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=UploadDialog_svelte_create_if_block_2(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div,t)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[0].length>0&&ctx[2]?if_block1?(if_block1.p(ctx,dirty),5&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=UploadDialog_svelte_create_if_block_1(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d()}}}function UploadDialog_svelte_create_if_block_2(ctx){let div,button,current;return button=new Button_svelte.Z({props:{nondescript:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[36]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(div,"class","vpadded svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function UploadDialog_svelte_create_default_slot_3(ctx){let t,t_value=ctx[16]("uploadDialog.uploadFiles")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.uploadFiles")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_1(ctx){let div1,div0,t0,filepicker,t1,dropzone,current;return filepicker=new FilePicker_svelte({props:{multiselect:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),filepicker.$on("files",ctx[21]),dropzone=new DropZone_svelte({props:{class:"dropper",secondary:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),dropzone.$on("files",ctx[21]),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),(0,internal.YCL)(filepicker.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(dropzone.$$.fragment),(0,internal.Ljt)(div0,"class","sectionbreak svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div1,t0),(0,internal.yef)(filepicker,div1,null),(0,internal.R3I)(div1,t1),(0,internal.yef)(dropzone,div1,null),current=!0},p(ctx,dirty){const filepicker_changes={};65536&dirty[0]|8192&dirty[1]&&(filepicker_changes.$$scope={dirty:dirty,ctx:ctx}),filepicker.$set(filepicker_changes);const dropzone_changes={};65536&dirty[0]|8192&dirty[1]&&(dropzone_changes.$$scope={dirty:dirty,ctx:ctx}),dropzone.$set(dropzone_changes)},i(local){current||((0,internal.Ui)(filepicker.$$.fragment,local),(0,internal.Ui)(dropzone.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(filepicker.$$.fragment,local),(0,internal.etI)(dropzone.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div1),(0,internal.vpE)(filepicker),(0,internal.vpE)(dropzone)}}}function UploadDialog_svelte_create_default_slot_2(ctx){let t,t_value=ctx[16]("uploadDialog.selectMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.selectMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_default_slot_1(ctx){let button,current;return button=new Button_svelte.Z({props:{secondary:!0,small:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot(ctx){let span,t,t_value=ctx[16]("uploadDialog.dragDropMore")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.dragDropMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(span)}}}function UploadDialog_svelte_create_fragment(ctx){let div,t0,t1,t2,t3,current,if_block0=!ctx[1]&&UploadDialog_svelte_create_if_block_9(ctx),if_block1=ctx[1]&&UploadDialog_svelte_create_if_block_5(ctx),if_block2=!ctx[1]&&ctx[0].length>0&&UploadDialog_svelte_create_if_block_4(ctx),if_block3=ctx[0].length>0&&UploadDialog_svelte_create_if_block_3(ctx),if_block4=!ctx[1]&&UploadDialog_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),if_block3&&if_block3.c(),t3=(0,internal.DhX)(),if_block4&&if_block4.c(),(0,internal.Ljt)(div,"class","mcontent")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,internal.R3I)(div,t1),if_block2&&if_block2.m(div,null),(0,internal.R3I)(div,t2),if_block3&&if_block3.m(div,null),(0,internal.R3I)(div,t3),if_block4&&if_block4.m(div,null),current=!0},p(ctx,dirty){ctx[1]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=UploadDialog_svelte_create_if_block_9(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div,t0)),ctx[1]?if_block1?(if_block1.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=UploadDialog_svelte_create_if_block_5(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,t1)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),!ctx[1]&&ctx[0].length>0?if_block2?if_block2.p(ctx,dirty):(if_block2=UploadDialog_svelte_create_if_block_4(ctx),if_block2.c(),if_block2.m(div,t2)):if_block2&&(if_block2.d(1),if_block2=null),ctx[0].length>0?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=UploadDialog_svelte_create_if_block_3(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div,t3)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()),ctx[1]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?(if_block4.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block4,1)):(if_block4=UploadDialog_svelte_create_if_block(ctx),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d(),if_block3&&if_block3.d(),if_block4&&if_block4.d()}}}let errorMessage=null;function UploadDialog_svelte_instance($$self,$$props,$$invalidate){let uploadProject,displayFiles,createProgressPercent,processProgressPercent,error,$search,$projects,$_;(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(28,$search=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(29,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(16,$_=$$value)));const emit=(0,src_emit.Z)({setDismissable(){}});let{initialFiles:initialFiles=[]}=$$props,files=[],id=0,uploadMode=!1,uploadFiles=[],uploadAdditional=!1,access="private",language=languages.X9,forceOcr=!1,ocrEngine="tess4";const LIMIT=parseInt("1000"),PDF_SIZE_LIMIT=parseInt("525336576"),DOCUMENT_SIZE_LIMIT=parseInt("27262976");let numUploaded,tooManyFiles=!1,tooManyBigFiles=[!1,!1],createProgress=0,processProgress=0,uploadInProgress=!1;function handleFiles({detail:newFiles}){let hasTooBigPdf=!1,hasTooBigDocument=!1;for(let i=0;ifile.index!=index))),$$invalidate(8,tooManyBigFiles=!1),$$invalidate(7,tooManyFiles=!1)}(0,svelte.H3)((()=>{handleFiles({detail:initialFiles})}));return $$self.$$set=$$props=>{"initialFiles"in $$props&&$$invalidate(24,initialFiles=$$props.initialFiles)},$$self.$$.update=()=>{if(805306368&$$self.$$.dirty[0]&&$$invalidate(11,uploadProject=$search.params.oneProjectSearch&&null!=$projects.projectsById[$search.params.oneProjectSearch]?$projects.projectsById[$search.params.oneProjectSearch]:null),33554435&$$self.$$.dirty[0]&&$$invalidate(15,displayFiles=uploadMode?uploadFiles:files),33554434&$$self.$$.dirty[0])if(uploadMode){let total=0;for(let i=0;i({file:file.file,progress:0,done:!1,index:i})))),emit.setDismissable(!1),$$invalidate(1,uploadMode=!0),(0,api_document.GA)(files,access,language,forceOcr,ocrEngine,null==uploadProject?[]:[uploadProject],(progress=>{$$invalidate(26,createProgress=progress)}),((index,progress)=>{$$invalidate(10,uploadInProgress=!0),$$invalidate(25,uploadFiles[index].progress=progress,uploadFiles),progress>=1&&$$invalidate(25,uploadFiles[index].done=!0,uploadFiles)}),(progress=>{$$invalidate(27,processProgress=progress)}),(async goodDocuments=>{$$invalidate(25,uploadFiles=uploadFiles.map((file=>({...file,done:!0})))),layout.bK.uploading=!1,await(0,documents.QC)(goodDocuments)}),(message=>{layout.bK.error=message,layout.bK.uploading=!1,emit.setDismissable(!0)}))},initialFiles,uploadFiles,createProgress,processProgress,$search,$projects,function(value){language=value,$$invalidate(4,language)},function(value){forceOcr=value,$$invalidate(5,forceOcr)},function(value){ocrEngine=value,$$invalidate(6,ocrEngine)},function(value){access=value,$$invalidate(3,access)},(file,each_value,file_index,{detail:newName})=>{let name=newName.trim();0==name.length&&(name=$_("uploadDialog.untitled")),$$invalidate(15,each_value[file_index].name=name,displayFiles)},file=>removeFile(file.index),()=>$$invalidate(2,uploadAdditional=!0)]}class UploadDialog extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,UploadDialog_svelte_instance,UploadDialog_svelte_create_fragment,internal.N8,{initialFiles:24},null,[-1,-1])}}var UploadDialog_svelte=UploadDialog,iframeSizer=__webpack_require__(1428);function Documents_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[18]=list[i],child_ctx}function Documents_svelte_create_if_block_11(ctx){let t0,t1,authsection,current,if_block0=ctx[2].uploading&&!ctx[2].error&&Documents_svelte_create_if_block_13(ctx),if_block1=ctx[5].loggedIn&&Documents_svelte_create_if_block_12(ctx);return authsection=new AuthSection_svelte({}),{c(){if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),(0,internal.YCL)(authsection.$$.fragment)},m(target,anchor){if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(authsection,target,anchor),current=!0},p(ctx,dirty){ctx[2].uploading&&!ctx[2].error?if_block0?(if_block0.p(ctx,dirty),4&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_13(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(t0.parentNode,t0)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[5].loggedIn?if_block1?32&dirty&&(0,internal.Ui)(if_block1,1):(if_block1=Documents_svelte_create_if_block_12(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(authsection.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(authsection.$$.fragment,local),current=!1},d(detaching){if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t0),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(authsection,detaching)}}}function Documents_svelte_create_if_block_13(ctx){let modal,current;return modal=new Modal_svelte.Z({props:{component:UploadDialog_svelte,properties:{initialFiles:ctx[6]}}}),modal.$on("close",ctx[15]),{c(){(0,internal.YCL)(modal.$$.fragment)},m(target,anchor){(0,internal.yef)(modal,target,anchor),current=!0},p(ctx,dirty){const modal_changes={};64&dirty&&(modal_changes.properties={initialFiles:ctx[6]}),modal.$set(modal_changes)},i(local){current||((0,internal.Ui)(modal.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(modal.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(modal,detaching)}}}function Documents_svelte_create_if_block_12(ctx){let specialmessage,current;return specialmessage=new SpecialMessage_svelte({}),{c(){(0,internal.YCL)(specialmessage.$$.fragment)},m(target,anchor){(0,internal.yef)(specialmessage,target,anchor),current=!0},i(local){current||((0,internal.Ui)(specialmessage.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(specialmessage.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(specialmessage,detaching)}}}function Documents_svelte_create_if_block_10(ctx){let div,t,t_value=ctx[2].projectEmbedTitle+"";return{c(){div=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div,"class","projectembedtitle svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2].projectEmbedTitle+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function Documents_svelte_create_if_block_9(ctx){let searchbar,current;return searchbar=new SearchBar_svelte.Z({props:{embed:ctx[0],dialog:ctx[1]}}),{c(){(0,internal.YCL)(searchbar.$$.fragment)},m(target,anchor){(0,internal.yef)(searchbar,target,anchor),current=!0},p(ctx,dirty){const searchbar_changes={};1&dirty&&(searchbar_changes.embed=ctx[0]),2&dirty&&(searchbar_changes.dialog=ctx[1]),searchbar.$set(searchbar_changes)},i(local){current||((0,internal.Ui)(searchbar.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(searchbar.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(searchbar,detaching)}}}function Documents_svelte_create_if_block_8(ctx){let searchlink,current;return searchlink=new SearchLink_svelte({props:{link:(0,search.SR)(ctx[4].params.projectEmbedId)}}),{c(){(0,internal.YCL)(searchlink.$$.fragment)},m(target,anchor){(0,internal.yef)(searchlink,target,anchor),current=!0},p(ctx,dirty){const searchlink_changes={};16&dirty&&(searchlink_changes.link=(0,search.SR)(ctx[4].params.projectEmbedId)),searchlink.$set(searchlink_changes)},i(local){current||((0,internal.Ui)(searchlink.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(searchlink.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(searchlink,detaching)}}}function Documents_svelte_create_if_block_5(ctx){let title_1,t0,t1,if_block1_anchor,current;title_1=new Title_svelte.Z({props:{$$slots:{default:[Documents_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}});let if_block0=ctx[5].loggedIn&&Documents_svelte_create_if_block_7(ctx),if_block1=ctx[5].loggedIn&&!ctx[5].isVerified&&Documents_svelte_create_if_block_6(ctx);return{c(){(0,internal.YCL)(title_1.$$.fragment),t0=(0,internal.DhX)(),if_block0&&if_block0.c(),t1=(0,internal.DhX)(),if_block1&&if_block1.c(),if_block1_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(title_1,target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,if_block1_anchor,anchor),current=!0},p(ctx,dirty){const title_1_changes={};2097408&dirty&&(title_1_changes.$$scope={dirty:dirty,ctx:ctx}),title_1.$set(title_1_changes),ctx[5].loggedIn?if_block0?(if_block0.p(ctx,dirty),32&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_7(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(t1.parentNode,t1)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[5].loggedIn&&!ctx[5].isVerified?if_block1?(if_block1.p(ctx,dirty),32&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=Documents_svelte_create_if_block_6(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(if_block1_anchor.parentNode,if_block1_anchor)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(title_1.$$.fragment,local),(0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(title_1.$$.fragment,local),(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){(0,internal.vpE)(title_1,detaching),detaching&&(0,internal.ogt)(t0),if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t1),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(if_block1_anchor)}}}function Documents_svelte_create_default_slot_4(ctx){let t;return{c(){t=(0,internal.fLW)(ctx[8])},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&(0,internal.rTO)(t,ctx[8])},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Documents_svelte_create_if_block_7(ctx){let button,current;return button=new Button_svelte.Z({props:{disabledReason:ctx[5].isVerified?null:ctx[3]("documents.mustBeVerified"),$$slots:{default:[Documents_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[10]),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};40&dirty&&(button_changes.disabledReason=ctx[5].isVerified?null:ctx[3]("documents.mustBeVerified")),2097160&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function Documents_svelte_create_default_slot_3(ctx){let t0,t1,t1_value=ctx[3]("documents.upload")+"";return{c(){t0=(0,internal.fLW)("+ "),t1=(0,internal.fLW)(t1_value)},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){8&dirty&&t1_value!==(t1_value=ctx[3]("documents.upload")+"")&&(0,internal.rTO)(t1,t1_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Documents_svelte_create_if_block_6(ctx){let a,button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[Documents_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){a=(0,internal.bGB)("a"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(a,"href","https://airtable.com/shrZrgdmuOwW0ZLPM"),(0,internal.Ljt)(a,"target","_new")},m(target,anchor){(0,internal.$Tr)(target,a,anchor),(0,internal.yef)(button,a,null),current=!0},p(ctx,dirty){const button_changes={};2097160&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(a),(0,internal.vpE)(button)}}}function Documents_svelte_create_default_slot_2(ctx){let t,t_value=ctx[3]("noDocuments.requestVerificationAction")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[3]("noDocuments.requestVerificationAction")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Documents_svelte_create_if_block_4(ctx){let actionbar,t0,processingbar,t1,addonstatus,current;return actionbar=new ActionBar_svelte({}),processingbar=new ProcessingBar_svelte({}),addonstatus=new AddonStatus_svelte({}),{c(){(0,internal.YCL)(actionbar.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(processingbar.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(addonstatus.$$.fragment)},m(target,anchor){(0,internal.yef)(actionbar,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.yef)(processingbar,target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(addonstatus,target,anchor),current=!0},i(local){current||((0,internal.Ui)(actionbar.$$.fragment,local),(0,internal.Ui)(processingbar.$$.fragment,local),(0,internal.Ui)(addonstatus.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(actionbar.$$.fragment,local),(0,internal.etI)(processingbar.$$.fragment,local),(0,internal.etI)(addonstatus.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(actionbar,detaching),detaching&&(0,internal.ogt)(t0),(0,internal.vpE)(processingbar,detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(addonstatus,detaching)}}}function Documents_svelte_create_else_block_1(ctx){let each_1_anchor,current,each_blocks=[],each_1_lookup=new Map,each_value=ctx[9].documents;const get_key=ctx=>ctx[18].id;for(let i=0;i(0,internal.akz)(anonymous,"closed",anonymous_closed_binding))),{c(){(0,internal.YCL)(anonymous.$$.fragment)},m(target,anchor){(0,internal.yef)(anonymous,target,anchor),current=!0},p(ctx,dirty){const anonymous_changes={};!updating_closed&&128&dirty&&(updating_closed=!0,anonymous_changes.closed=ctx[7],(0,internal.hjT)((()=>updating_closed=!1))),anonymous.$set(anonymous_changes)},i(local){current||((0,internal.Ui)(anonymous.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(anonymous.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(anonymous,detaching)}}}function Documents_svelte_create_each_block(key_1,ctx){let div,document,t,rect,current,stop_animation=internal.ZTd;return document=new Document_svelte({props:{embed:ctx[0],dialog:ctx[1],document:ctx[18]}}),document.$on("pick",ctx[17]),{key:key_1,first:null,c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(document.$$.fragment),t=(0,internal.DhX)(),(0,internal.Ljt)(div,"class","svelte-1l9cwso"),(0,internal.VHj)(div,"inlinecard",ctx[0]),this.first=div},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(document,div,null),(0,internal.R3I)(div,t),current=!0},p(new_ctx,dirty){ctx=new_ctx;const document_changes={};1&dirty&&(document_changes.embed=ctx[0]),2&dirty&&(document_changes.dialog=ctx[1]),512&dirty&&(document_changes.document=ctx[18]),document.$set(document_changes),(!current||1&dirty)&&(0,internal.VHj)(div,"inlinecard",ctx[0])},r(){rect=div.getBoundingClientRect()},f(){(0,internal.uYD)(div),stop_animation()},a(){stop_animation(),stop_animation=(0,internal.wVP)(div,rect,animate.R,{duration:400})},i(local){current||((0,internal.Ui)(document.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(document.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(document)}}}function Documents_svelte_create_if_block_2(ctx){let nodocuments,current;return nodocuments=new NoDocuments_svelte({}),{c(){(0,internal.YCL)(nodocuments.$$.fragment)},m(target,anchor){(0,internal.yef)(nodocuments,target,anchor),current=!0},i(local){current||((0,internal.Ui)(nodocuments.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(nodocuments.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(nodocuments,detaching)}}}function Documents_svelte_create_if_block_1(ctx){let div1,div0,t,t_value=ctx[3]("documents.dropFile")+"";return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div0,"class","toast svelte-1l9cwso"),(0,internal.Ljt)(div1,"class","toastouter svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,t)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[3]("documents.dropFile")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div1)}}}function Documents_svelte_create_default_slot_1(ctx){let current_block_type_index,if_block0,t0,t1,if_block2_anchor,current;const if_block_creators=[Documents_svelte_create_if_block_3,Documents_svelte_create_else_block_1],if_blocks=[];function select_block_type_1(ctx,dirty){return ctx[5].loggedIn||""!==ctx[4].params.query||ctx[7]?1:0}current_block_type_index=select_block_type_1(ctx),if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block1=0==ctx[9].documents.length&&!ctx[2].loading&&Documents_svelte_create_if_block_2(),if_block2=ctx[5].loggedIn&&Documents_svelte_create_if_block_1(ctx);return{c(){if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),if_block2_anchor=(0,internal.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),if_block2&&if_block2.m(target,anchor),(0,internal.$Tr)(target,if_block2_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(t0.parentNode,t0)),0!=ctx[9].documents.length||ctx[2].loading?if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()):if_block1?516&dirty&&(0,internal.Ui)(if_block1,1):(if_block1=Documents_svelte_create_if_block_2(),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1)),ctx[5].loggedIn?if_block2?if_block2.p(ctx,dirty):(if_block2=Documents_svelte_create_if_block_1(ctx),if_block2.c(),if_block2.m(if_block2_anchor.parentNode,if_block2_anchor)):if_block2&&(if_block2.d(1),if_block2=null)},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(t0),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(t1),if_block2&&if_block2.d(detaching),detaching&&(0,internal.ogt)(if_block2_anchor)}}}function Documents_svelte_create_else_block(ctx){let div,paginator,current;return paginator=new Paginator_svelte({}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(paginator.$$.fragment),(0,internal.Ljt)(div,"class","narrowshow svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(paginator,div,null),current=!0},p:internal.ZTd,i(local){current||((0,internal.Ui)(paginator.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(paginator.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(paginator)}}}function Documents_svelte_create_if_block(ctx){let embedfooter,current;return embedfooter=new EmbedFooter_svelte({props:{dialog:ctx[1]}}),{c(){(0,internal.YCL)(embedfooter.$$.fragment)},m(target,anchor){(0,internal.yef)(embedfooter,target,anchor),current=!0},p(ctx,dirty){const embedfooter_changes={};2&dirty&&(embedfooter_changes.dialog=ctx[1]),embedfooter.$set(embedfooter_changes)},i(local){current||((0,internal.Ui)(embedfooter.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(embedfooter.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(embedfooter,detaching)}}}function Documents_svelte_create_default_slot(ctx){let div3,div1,t0,t1,current_block_type_index,if_block2,t2,div0,t3,t4,div2,draggable,t5,current_block_type_index_1,if_block5,current,if_block0=!ctx[0]&&Documents_svelte_create_if_block_11(ctx),if_block1=ctx[0]&&null!=ctx[2].projectEmbedTitle&&Documents_svelte_create_if_block_10(ctx);const if_block_creators=[Documents_svelte_create_if_block_8,Documents_svelte_create_if_block_9],if_blocks=[];function select_block_type(ctx,dirty){return!ctx[1]&&ctx[0]&&null!=ctx[4].params&&null!=ctx[4].params.projectEmbedId&&ctx[2].projectEmbedSearchBar?0:!ctx[0]||ctx[1]?1:-1}~(current_block_type_index=select_block_type(ctx))&&(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block3=!ctx[0]&&Documents_svelte_create_if_block_5(ctx),if_block4=!ctx[0]&&Documents_svelte_create_if_block_4();draggable=new Draggable_svelte({props:{disabled:ctx[0]||!ctx[5].loggedIn||!ctx[5].isVerified,$$slots:{default:[Documents_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),draggable.$on("files",ctx[10]);const if_block_creators_1=[Documents_svelte_create_if_block,Documents_svelte_create_else_block],if_blocks_1=[];function select_block_type_2(ctx,dirty){return ctx[0]?0:1}return current_block_type_index_1=select_block_type_2(ctx),if_block5=if_blocks_1[current_block_type_index_1]=if_block_creators_1[current_block_type_index_1](ctx),{c(){div3=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),if_block3&&if_block3.c(),t3=(0,internal.DhX)(),if_block4&&if_block4.c(),t4=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),(0,internal.YCL)(draggable.$$.fragment),t5=(0,internal.DhX)(),if_block5.c(),(0,internal.Ljt)(div1,"class","sticky svelte-1l9cwso"),(0,internal.VHj)(div1,"embed",ctx[0]),(0,internal.Ljt)(div2,"class","docscontainer svelte-1l9cwso"),(0,internal.Ljt)(div3,"class","documents")},m(target,anchor){(0,internal.$Tr)(target,div3,anchor),(0,internal.R3I)(div3,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div1,t0),if_block1&&if_block1.m(div1,null),(0,internal.R3I)(div1,t1),~current_block_type_index&&if_blocks[current_block_type_index].m(div1,null),(0,internal.R3I)(div1,t2),(0,internal.R3I)(div1,div0),if_block3&&if_block3.m(div0,null),(0,internal.R3I)(div1,t3),if_block4&&if_block4.m(div1,null),(0,internal.R3I)(div3,t4),(0,internal.R3I)(div3,div2),(0,internal.yef)(draggable,div2,null),(0,internal.R3I)(div3,t5),if_blocks_1[current_block_type_index_1].m(div3,null),current=!0},p(ctx,dirty){ctx[0]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_11(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div1,t0)),ctx[0]&&null!=ctx[2].projectEmbedTitle?if_block1?if_block1.p(ctx,dirty):(if_block1=Documents_svelte_create_if_block_10(ctx),if_block1.c(),if_block1.m(div1,t1)):if_block1&&(if_block1.d(1),if_block1=null);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?~current_block_type_index&&if_blocks[current_block_type_index].p(ctx,dirty):(if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block2=if_blocks[current_block_type_index],if_block2?if_block2.p(ctx,dirty):(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block2.c()),(0,internal.Ui)(if_block2,1),if_block2.m(div1,t2)):if_block2=null),ctx[0]?if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()):if_block3?(if_block3.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block3,1)):(if_block3=Documents_svelte_create_if_block_5(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div0,null)),ctx[0]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?1&dirty&&(0,internal.Ui)(if_block4,1):(if_block4=Documents_svelte_create_if_block_4(),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div1,null)),(!current||1&dirty)&&(0,internal.VHj)(div1,"embed",ctx[0]);const draggable_changes={};33&dirty&&(draggable_changes.disabled=ctx[0]||!ctx[5].loggedIn||!ctx[5].isVerified),2097855&dirty&&(draggable_changes.$$scope={dirty:dirty,ctx:ctx}),draggable.$set(draggable_changes);let previous_block_index_1=current_block_type_index_1;current_block_type_index_1=select_block_type_2(ctx),current_block_type_index_1===previous_block_index_1?if_blocks_1[current_block_type_index_1].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks_1[previous_block_index_1],1,1,(()=>{if_blocks_1[previous_block_index_1]=null})),(0,internal.gbL)(),if_block5=if_blocks_1[current_block_type_index_1],if_block5?if_block5.p(ctx,dirty):(if_block5=if_blocks_1[current_block_type_index_1]=if_block_creators_1[current_block_type_index_1](ctx),if_block5.c()),(0,internal.Ui)(if_block5,1),if_block5.m(div3,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),(0,internal.Ui)(draggable.$$.fragment,local),(0,internal.Ui)(if_block5),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),(0,internal.etI)(draggable.$$.fragment,local),(0,internal.etI)(if_block5),current=!1},d(detaching){detaching&&(0,internal.ogt)(div3),if_block0&&if_block0.d(),if_block1&&if_block1.d(),~current_block_type_index&&if_blocks[current_block_type_index].d(),if_block3&&if_block3.d(),if_block4&&if_block4.d(),(0,internal.vpE)(draggable),if_blocks_1[current_block_type_index_1].d()}}}function Documents_svelte_create_fragment(ctx){let loader,current;return loader=new Loader_svelte.Z({props:{active:ctx[2].loading,$$slots:{default:[Documents_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(loader.$$.fragment)},m(target,anchor){(0,internal.yef)(loader,target,anchor),current=!0},p(ctx,[dirty]){const loader_changes={};4&dirty&&(loader_changes.active=ctx[2].loading),2098175&dirty&&(loader_changes.$$scope={dirty:dirty,ctx:ctx}),loader.$set(loader_changes)},i(local){current||((0,internal.Ui)(loader.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(loader.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(loader,detaching)}}}function Documents_svelte_instance($$self,$$props,$$invalidate){let $layout,$_,$search,$orgsAndUsers,$projects,$documents;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(2,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(4,$search=$$value))),(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(5,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(14,$projects=$$value))),(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(9,$documents=$$value)));let{embed:embed=!1}=$$props,{containerElem:containerElem=null}=$$props,{containerWidth:containerWidth=null}=$$props,{containerHeight:containerHeight=null}=$$props,{dialog:dialog=!1}=$$props,preUploadFiles=[],anonymousClosed=!1;let title=$_("documents.yourDocuments");return $$self.$$set=$$props=>{"embed"in $$props&&$$invalidate(0,embed=$$props.embed),"containerElem"in $$props&&$$invalidate(11,containerElem=$$props.containerElem),"containerWidth"in $$props&&$$invalidate(12,containerWidth=$$props.containerWidth),"containerHeight"in $$props&&$$invalidate(13,containerHeight=$$props.containerHeight),"dialog"in $$props&&$$invalidate(1,dialog=$$props.dialog)},$$self.$$.update=()=>{if(16440&$$self.$$.dirty){let newTitle=$_("documents.searchResults");if(null!=$search.params&&!$search.params.isSearch&&$search.params.noStatus&&$search.params.oneOrZeroAccesses){let access=$search.params.oneAccessSearch;if(access=null==access?"":`${(0,string.a5)(access)} `,null!=$search.params.oneUserSearch)if($orgsAndUsers.loggedIn&&$search.params.oneUserSearch==$orgsAndUsers.me.id)newTitle=$_("documents.accessDocuments",{values:{access:access}});else{const user=$orgsAndUsers.usersById[$search.params.oneUserSearch];null!=user?newTitle=$_("documents.nameDocuments",{values:{name:user.name,access:access}}):(0,orgsAndUsers.GA)($search.params.oneUserSearch)}else if(null!=$search.params.oneProjectSearch){const projs=$projects.projects.filter((project=>project.id==$search.params.oneProjectSearch));projs.length>0&&(newTitle=projs[0].title)}else if(null!=$search.params.oneOrgSearch){const org=$orgsAndUsers.orgsById[$search.params.oneOrgSearch];null!=org?newTitle=$_("documents.nameDocuments",{values:{name:org.name,access:access}}):(0,orgsAndUsers.h$)($search.params.oneOrgSearch)}else $search.params.isAllSearch&&(newTitle=`All ${access}Documents`,newTitle=$_("documents.allDocuments",{values:{access:access}}))}$$invalidate(8,title=newTitle)}14341&$$self.$$.dirty&&!$layout.loading&&null!=containerElem&&null!=containerWidth&&null!=containerHeight&&embed&&(0,iframeSizer.q)(containerElem,!0,!0)},[embed,dialog,$layout,$_,$search,$orgsAndUsers,preUploadFiles,anonymousClosed,title,$documents,function({detail:files}){$$invalidate(6,preUploadFiles=null!=files?Array.from(files):[]),(0,internal.fxP)(layout.bK,$layout.uploading=!0,$layout)},containerElem,containerWidth,containerHeight,$projects,()=>(0,internal.fxP)(layout.bK,$layout.uploading=!1,$layout),function(value){anonymousClosed=value,$$invalidate(7,anonymousClosed)},function(event){internal.cKT.call(this,$$self,event)}]}class Documents extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Documents_svelte_instance,Documents_svelte_create_fragment,internal.N8,{embed:0,containerElem:11,containerWidth:12,containerHeight:13,dialog:1})}}var Documents_svelte=Documents},9776:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return SearchBar_svelte}});var internal=__webpack_require__(4234),runtime_esm=__webpack_require__(6469),svelte=__webpack_require__(8568),NoWhitespace_svelte=__webpack_require__(489),src_emit=__webpack_require__(1812),parse=__webpack_require__(9740),string=__webpack_require__(3581);const languageOptions="afr|amh|ara|asm|aze|aze_cyrl|bel|ben|bod|bos|bul|cat|ceb|ces|zho|tra|chr|cym|dan|deu|dzo|ell|eng|enm|epo|est|eus|fas|fin|fra|frk|frm|gle|glg|grc|guj|hat|heb|hin|hrv|hun|iku|ind|isl|ita|ita_old|jav|jpn|kan|kat|kat_old|kaz|khm|kir|kor|kur|lao|lat|lav|lit|mal|mar|mkd|mlt|msa|mya|nep|nld|nor|ori|pan|pol|por|pus|ron|rus|san|sin|slk|slv|spa|spa_old|sqi|srp|srp_latn|swa|swe|syr|tam|tel|tgk|tgl|tha|tir|tur|uig|ukr|urd|uzb|uzb_cyrl|vie|yid".split("|"),sortCompletions=[{type:"field",text:"Created At (Descending)",info:"Most Recent First",feed:"created_at"},{type:"field",text:"Created At (Ascending)",info:"Oldest First",feed:"-created_at"},{type:"field",text:"Title (Ascending)",info:"Document Title A-Z",feed:"title"},{type:"field",text:"Title (Descending)",info:"Document Title Z-A",feed:"-title"},{type:"field",text:"Page Count (Descending)",info:"Most Pages First",feed:"page_count"},{type:"field",text:"Page Count (Ascending)",info:"Least Pages First",feed:"-page_count"},{type:"field",text:"Source (Ascending)",info:"Document Source A-Z",feed:"source"},{type:"field",text:"Source (Descending)",info:"Document Source Z-A",feed:"-source"},{type:"field",text:"Score",info:"Default Sort Option by Relevance",feed:"score"}],validSorts=sortCompletions.map((x=>x.feed));function fieldValid(text,example=!1){const fieldMatch=text.match(/^[^a-z]*([a-zA-Z0-9_-]+):(.*)$/);if(null==fieldMatch)return{valid:!1};const field=fieldMatch[1],value=fieldMatch[2],id=(0,string.wp)(value);return"project"==field?null==id?{valid:!1}:example?{valid:!0,transform:`projects:${id}`}:{valid:(0,string.hj)(id)}:"user"==field?null==id?{valid:!1}:example?{valid:!0,transform:`user:${id}`}:{valid:(0,string.hj)(id)}:"organization"==field?null==id?{valid:!1}:example?{valid:!0,transform:`organization:${id}`}:{valid:(0,string.hj)(id)}:"access"==field?{valid:"public"==id||"organization"==id||"private"==id}:"status"==field?{valid:"success"==id||"readable"==id||"pending"==id||"error"==id||"nofile"==id}:"sort"==field?{valid:validSorts.includes(value)}:"tag"==field?{valid:value.trim().length>0}:"language"==field?{valid:null!=id&&languageOptions.includes(id)}:field.startsWith("data_")?{valid:field.length>5&&value.trim().length>0}:{valid:!1}}var orgsAndUsers=__webpack_require__(5340),projects=__webpack_require__(9365),textareaResize=__webpack_require__(6817),languages=__webpack_require__(9275),orgAndUser=__webpack_require__(9643),closure=__webpack_require__(3059),search_iconraw=__webpack_require__(9016),search_iconraw_default=__webpack_require__.n(search_iconraw),close_inlineraw=__webpack_require__(3218),close_inlineraw_default=__webpack_require__.n(close_inlineraw);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[56]=list[i],child_ctx}function get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[59]=list[i],child_ctx[61]=i,child_ctx}function get_each_context_2(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[62]=list[i],child_ctx}function get_each_context_3(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[65]=list[i],child_ctx}function create_else_block_2(ctx){let each_1_anchor,each_value_3=ctx[62].text.split(/( )/g),each_blocks=[];for(let i=0;i{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_if_block_4(ctx){let span1,span0,t;return{c(){span1=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),t=(0,internal.fLW)(ctx[10]),(0,internal.Ljt)(span0,"class","svelte-h1l3kf"),(0,internal.Ljt)(span1,"class","autocomplete svelte-h1l3kf")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,span0),(0,internal.R3I)(span0,t)},p(ctx,dirty){1024&dirty[0]&&(0,internal.rTO)(t,ctx[10])},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function create_if_block_3(ctx){let div,mounted,dispose;return{c(){div=(0,internal.bGB)("div"),(0,internal.Ljt)(div,"class","closeicon svelte-h1l3kf")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),div.innerHTML=close_inlineraw_default(),mounted||(dispose=(0,internal.oLt)(div,"click",ctx[40]),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),mounted=!1,dispose()}}}function create_else_block(ctx){let each_1_anchor,each_value=ctx[9].completions,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));let if_block0=ctx[10].length>0&&create_if_block_4(ctx),if_block1=!ctx[1]&&0!=ctx[0].length&&create_if_block_3(ctx);function select_block_type_1(ctx,dirty){return null==ctx[9]?create_if_block:create_else_block}let current_block_type=select_block_type_1(ctx),if_block2=current_block_type(ctx);return{c(){div3=(0,internal.bGB)("div"),html_tag=new internal.FWw(!1),t0=(0,internal.DhX)(),textarea=(0,internal.bGB)("textarea"),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div");for(let i=0;i0?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_4(ctx),if_block0.c(),if_block0.m(div0,null)):if_block0&&(if_block0.d(1),if_block0=null),(!current||4&dirty[0])&&(0,internal.VHj)(div0,"compact",ctx[2]),(!current||2&dirty[0])&&(0,internal.VHj)(div0,"example",ctx[1]),ctx[1]||0==ctx[0].length?if_block1&&(if_block1.d(1),if_block1=null):if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_3(ctx),if_block1.c(),if_block1.m(div3,t4)),current_block_type===(current_block_type=select_block_type_1(ctx))&&if_block2?if_block2.p(ctx,dirty):(if_block2.d(1),if_block2=current_block_type(ctx),if_block2&&(if_block2.c(),if_block2.m(div1,null))),(!current||256&dirty[0])&&(0,internal.Ljt)(div2,"style",ctx[8]),(!current||4&dirty[0])&&(0,internal.VHj)(div3,"compact",ctx[2])},i(local){if(!current){for(let i=0;ib.score-a.score)),results}function instance($$self,$$props,$$invalidate){let hasSelection,individualSelection,selectionAtEnd,searchPre,searchPost,showCompletions,fieldRaw,fieldPreIndex,fieldPre,fieldPost,processedCompletions,selectedCompletion,noCompletion,autocomplete,highlights,$orgsAndUsers,$projects,$_;(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(35,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(36,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(11,$_=$$value)));const fieldAliases={projects:"project",account:"user",group:"organization",order:"sort"};function alias(field){return null!=fieldAliases[field]?fieldAliases[field]:field}const emit=(0,src_emit.Z)({search(){}});let input,mirror,{value:value=""}=$$props,{example:example=!1}=$$props,{compact:compact=!1}=$$props;function forceInput(){null!=input&&($$invalidate(6,input.value=value,input),input.dispatchEvent(new Event("input",{bubbles:!0,target:input})))}let selectionStart=null,selectionEnd=null,completions=[];const completionCache={},asyncComplete=(0,closure.l8)(((type,fieldPost)=>{const key=`${type}-${fieldPost}`;if(null==completionCache[key])$$invalidate(20,completions=null),"org"==type?(0,orgAndUser.k7)(fieldPost).then((results=>{const mappedOrgs=results.map((org=>({type:"field",text:org.name,feed:(0,string.lV)(org.name,org.id)})));completionCache[key]=[mappedOrgs,fieldPost],$$invalidate(20,completions=completionFilter(mappedOrgs,fieldPost))})):"user"==type&&(0,orgAndUser.w5)(fieldPost).then((results=>{completionCache[key]=results;const mappedUsers=[];for(let i=0;ix.length>0)):[highlight.text])}let pos=0,highlightIdx=allChunks.length-1;for(let i=0;i=pos&&idx=mirror.children.length)return;const completionLeft=mirror.children[highlightIdx].firstChild.getBoundingClientRect().x-mirror.getBoundingClientRect().x,completionRight=mirror.getBoundingClientRect().right-mirror.children[highlightIdx].firstChild.getBoundingClientRect().right;$$invalidate(8,completionX=completionLeft<=completionRight?`left: ${completionLeft}px`:`right: ${completionRight}px`)}let escPressed=!1;let completionIndex=null;let{transformedQuery:transformedQuery}=$$props;(0,svelte.H3)((()=>{window.dispatchEvent(new Event("resize"))}));return $$self.$$set=$$props=>{"value"in $$props&&$$invalidate(0,value=$$props.value),"example"in $$props&&$$invalidate(1,example=$$props.example),"compact"in $$props&&$$invalidate(2,compact=$$props.compact),"transformedQuery"in $$props&&$$invalidate(17,transformedQuery=$$props.transformedQuery)},$$self.$$.update=()=>{1&$$self.$$.dirty[0]&&forceInput(),786432&$$self.$$.dirty[0]&&$$invalidate(34,hasSelection=null!=selectionStart&&null!=selectionEnd),786432&$$self.$$.dirty[0]|8&$$self.$$.dirty[1]&&$$invalidate(33,individualSelection=hasSelection&&selectionStart==selectionEnd),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(26,selectionAtEnd=individualSelection&&selectionStart==value.length),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(28,searchPre=individualSelection?value.substr(0,selectionStart):null),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(27,searchPost=individualSelection?value.substr(selectionStart):null),134217728&$$self.$$.dirty[0]&&$$invalidate(32,showCompletions=null!=searchPost&&/^(\s.*|)$/.test(searchPost)),270532608&$$self.$$.dirty[0]|2&$$self.$$.dirty[1]&&$$invalidate(31,fieldRaw=null!=searchPre&&showCompletions?searchPre.match(preserveSpace?/([a-z]+):([a-zA-Z0-9 -]*)$/:/([a-z]+):([a-zA-Z0-9-]*)$/):null),1&$$self.$$.dirty[1]&&$$invalidate(29,fieldPreIndex=null!=fieldRaw?fieldRaw.index:null),1&$$self.$$.dirty[1]&&$$invalidate(30,fieldPre=null!=fieldRaw?fieldRaw[1]:null),1&$$self.$$.dirty[1]&&$$invalidate(5,fieldPost=null!=fieldRaw?fieldRaw[2]:null),69206016&$$self.$$.dirty[0]&&preserveSpace&&!selectionAtEnd&&setPreserveSpace(!1),543162368&$$self.$$.dirty[0]&&preserveSpace&&fieldPreIndex!=preserveSpaceIndex&&setPreserveSpace(!1),2021654560&$$self.$$.dirty[0]&&(escPressed?($$invalidate(20,completions=[]),setPreserveSpace(!1),$$invalidate(23,escPressed=!1)):null==completions||("project"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter($projects.projects.map((project=>({type:"field",text:project.title,feed:(0,string.lV)(project.title,project.id)}))),fieldPost))):"user"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),asyncComplete("user",fieldPost)):"organization"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),asyncComplete("org",fieldPost)):"access"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter([{type:"field",text:"public",info:"Publicly accessible documents",feed:"public"},{type:"field",text:"private",info:"Privately accessible documents",feed:"private"},{type:"field",text:"organization",info:"Accessible at the organization level",feed:"organization"}],fieldPost))):"status"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter([{type:"field",text:"success",info:"Documents ready for viewing and publishing",feed:"success"},{type:"field",text:"readable",info:"Documents ready for reading but still processing text",feed:"readable"},{type:"field",text:"pending",info:"Documents currently processing",feed:"pending"},{type:"field",text:"error",info:"Documents with errors in preparation",feed:"error"},{type:"field",text:"nofile",info:"Documents that were not successfully uploaded",feed:"nofile"}],fieldPost))):"language"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter(languages.Mj.map((x=>({type:"field",text:x[1],feed:x[0]}))),fieldPost))):"sort"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter(sortCompletions,fieldPost))):$$invalidate(20,completions=[])),null!=completions&&completions.length>0?$$invalidate(3,completionIndex=0):$$invalidate(3,completionIndex=null)),1048576&$$self.$$.dirty[0]&&$$invalidate(9,processedCompletions=null==completions?null:function(){let count=0;for(let i=0;icompletion.index==completionIndex))[0]),84934688&$$self.$$.dirty[0]&&$$invalidate(25,noCompletion=!selectionAtEnd||null==selectedCompletion&&(null==completions||0==completions.length)||null!=fieldPost&&fieldPost.length>0),51380224&$$self.$$.dirty[0]&&$$invalidate(10,autocomplete=noCompletion?"":null==selectedCompletion?completions[0].feed:selectedCompletion.feed),1&$$self.$$.dirty[0]|48&$$self.$$.dirty[1]&&$$invalidate(4,highlights=function(highlights){for(let i=0;inull!=x.transform?x.transform:x.text)).join(""))},[value,example,compact,completionIndex,highlights,fieldPost,input,mirror,completionX,processedCompletions,autocomplete,$_,triggerCompletion,handleCursor,function(){handleCursor(),$$invalidate(3,completionIndex=null)},function(e){if(preserveSpaceOnKeyPress){const char=String.fromCharCode(e.keyCode);/[a-zA-Z0-9-_ ]/.test(char)&&setPreserveSpace(!0),preserveSpaceOnKeyPress=!1}if("Tab"==e.key||13==e.which||13==e.keyCode){if(""!=autocomplete)return triggerCompletion({feed:autocomplete}),void e.preventDefault();if(null!=selectedCompletion)return triggerCompletion(selectedCompletion,null!=fieldPost?fieldPost.length:0),void e.preventDefault()}return"Escape"==e.key&&null!=completions&&completions.length>0?($$invalidate(23,escPressed=!0),void e.preventDefault()):13==e.which||13==e.keyCode?(emit.search(),void e.preventDefault()):(handleCursor(),void(null!=processedCompletions&&processedCompletions.count>0&&("ArrowUp"==e.key?(e.preventDefault(),null==completionIndex?$$invalidate(3,completionIndex=processedCompletions.count-1):completionIndex>0?$$invalidate(3,completionIndex--,completionIndex):$$invalidate(3,completionIndex=null)):"ArrowDown"==e.key&&(e.preventDefault(),null==completionIndex?$$invalidate(3,completionIndex=0):completionIndex{input=$$value,$$invalidate(6,input)}))},function(){value=this.value,$$invalidate(0,value)},function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{mirror=$$value,$$invalidate(7,mirror)}))},()=>$$invalidate(0,value=""),completion=>{null!=completion.index&&$$invalidate(3,completionIndex=completion.index)},completion=>{null!=completion.index&&$$invalidate(3,completionIndex=null)},completion=>triggerCompletion(completion,null!=fieldPost?fieldPost.length:0)]}class SearchInput extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{value:0,example:1,compact:2,transformedQuery:17},null,[-1,-1,-1])}}var SearchInput_svelte=SearchInput,Button_svelte=__webpack_require__(7120),search_search=__webpack_require__(6046),layout=__webpack_require__(3423),router=__webpack_require__(3356);function SearchBar_svelte_create_if_block(ctx){let div,span,t,button,current,raw_value=ctx[5]("searchBar.tips")+"";return button=new Button_svelte.Z({props:{action:!0,small:!0,nomargin:!0,$$slots:{default:[SearchBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",layout.gX),{c(){div=(0,internal.bGB)("div"),span=(0,internal.bGB)("span"),t=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","svelte-elzjsp"),(0,internal.Ljt)(div,"class","info svelte-elzjsp")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,span),span.innerHTML=raw_value,(0,internal.R3I)(div,t),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){(!current||32&dirty)&&raw_value!==(raw_value=ctx[5]("searchBar.tips")+"")&&(span.innerHTML=raw_value);const button_changes={};2080&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function SearchBar_svelte_create_default_slot(ctx){let t,t_value=ctx[5]("searchBar.learnMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("searchBar.learnMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function SearchBar_svelte_create_fragment(ctx){let div,searchinput,updating_value,updating_transformedQuery,t,current;function searchinput_value_binding(value){ctx[8](value)}function searchinput_transformedQuery_binding(value){ctx[9](value)}let searchinput_props={example:ctx[1],compact:ctx[2]};void 0!==ctx[0]&&(searchinput_props.value=ctx[0]),void 0!==ctx[4]&&(searchinput_props.transformedQuery=ctx[4]),searchinput=new SearchInput_svelte({props:searchinput_props}),internal.VnY.push((()=>(0,internal.akz)(searchinput,"value",searchinput_value_binding))),internal.VnY.push((()=>(0,internal.akz)(searchinput,"transformedQuery",searchinput_transformedQuery_binding))),searchinput.$on("search",ctx[6]);let if_block=!ctx[3]&&!ctx[1]&&SearchBar_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(searchinput.$$.fragment),t=(0,internal.DhX)(),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","searchcontainer svelte-elzjsp"),(0,internal.VHj)(div,"example",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(searchinput,div,null),(0,internal.R3I)(div,t),if_block&&if_block.m(div,null),current=!0},p(ctx,[dirty]){const searchinput_changes={};2&dirty&&(searchinput_changes.example=ctx[1]),4&dirty&&(searchinput_changes.compact=ctx[2]),!updating_value&&1&dirty&&(updating_value=!0,searchinput_changes.value=ctx[0],(0,internal.hjT)((()=>updating_value=!1))),!updating_transformedQuery&&16&dirty&&(updating_transformedQuery=!0,searchinput_changes.transformedQuery=ctx[4],(0,internal.hjT)((()=>updating_transformedQuery=!1))),searchinput.$set(searchinput_changes),ctx[3]||ctx[1]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),10&dirty&&(0,internal.Ui)(if_block,1)):(if_block=SearchBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,null)),(!current||2&dirty)&&(0,internal.VHj)(div,"example",ctx[1])},i(local){current||((0,internal.Ui)(searchinput.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(searchinput.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(searchinput),if_block&&if_block.d()}}}function SearchBar_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(5,$_=$$value)));let transformedQuery,{search:search=""}=$$props,{example:example=!1}=$$props,{compact:compact=!1}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props;let unsubscribe=[];return(0,svelte.H3)((()=>{example||(dialog&&null!=search_search.yC.filePickerUser?$$invalidate(0,search=(0,search_search.vO)(search_search.yC.filePickerUser)):unsubscribe=[router.Nd.subscribe((router=>{const route=router.resolvedRoute;null!=route&&"app"==route.name&&(null!=route.props.q&&route.props.q.length>0?$$invalidate(0,search=route.props.q):$$invalidate(0,search=""))}))])})),(0,svelte.ev)((()=>{unsubscribe.forEach((x=>x()))})),$$self.$$set=$$props=>{"search"in $$props&&$$invalidate(0,search=$$props.search),"example"in $$props&&$$invalidate(1,example=$$props.example),"compact"in $$props&&$$invalidate(2,compact=$$props.compact),"embed"in $$props&&$$invalidate(3,embed=$$props.embed),"dialog"in $$props&&$$invalidate(7,dialog=$$props.dialog)},[search,example,compact,embed,transformedQuery,$_,function(){(0,search_search.o1)(search,!dialog)},dialog,function(value){search=value,$$invalidate(0,search)},function(value){transformedQuery=value,$$invalidate(4,transformedQuery)}]}class SearchBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SearchBar_svelte_instance,SearchBar_svelte_create_fragment,internal.N8,{search:0,example:1,compact:2,embed:3,dialog:7})}}var SearchBar_svelte=SearchBar},393:function(module){module.exports=''},5563:function(module){module.exports=''},6842:function(module){module.exports=''},4156:function(module){module.exports=''},8902:function(module){module.exports=''},2728:function(module){module.exports=''},4704:function(module){module.exports=''},5232:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{DT:function(){return SIGN_OUT_URL},Dt:function(){return SIGN_UP_URL},I8:function(){return auth},O0:function(){return SIGN_IN_URL},YG:function(){return SQUARELET_URL}});var svue__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3396);const DOCUMENTCLOUD_TOKEN_STORAGE_KEY="documentcloud_token",SQUARELET_URL="https://accounts.muckrock.com",SIGN_IN_URL="https://api.www.documentcloud.org/accounts/login/squarelet",SIGN_UP_URL="https://accounts.muckrock.com/accounts/signup/?intent=documentcloud&next="+encodeURIComponent(window.location.href),SIGN_OUT_URL="https://api.www.documentcloud.org/accounts/logout/",auth=new svue__WEBPACK_IMPORTED_MODULE_0__.x({data(){return{signingIn:!1,key:null}},computed:{isAuthenticated(key){return null!==key}}});function setToken(key){try{localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY,JSON.stringify(key))}catch(e){}auth.key=key}function removeToken(){try{localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY)}catch(e){}auth.key=null}!function(){try{const storedData=localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);if(null===storedData)return;if(null!==storedData){return void setToken(JSON.parse(storedData))}}catch(e){return void removeToken()}removeToken()}()},9275:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Mj:function(){return languages},X9:function(){return defaultLanguage},g2:function(){return textractLanguages}});const languageCodes="afr|amh|ara|asm|aze|aze_cyrl|bel|ben|bod|bos|bul|cat|ceb|ces|zho|tra|chr|cym|dan|deu|dzo|ell|eng|enm|epo|est|eus|fas|fin|fra|frk|frm|gle|glg|grc|guj|hat|heb|hin|hrv|hun|iku|ind|isl|ita|ita_old|jav|jpn|kan|kat|kat_old|kaz|khm|kir|kor|kur|lao|lat|lav|lit|mal|mar|mkd|mlt|msa|mya|nep|nld|nor|ori|pan|pol|por|pus|ron|rus|san|sin|slk|slv|spa|spa_old|sqi|srp|srp_latn|swa|swe|syr|tam|tel|tgk|tgl|tha|tir|tur|uig|ukr|urd|uzb|uzb_cyrl|vie|yid".split("|"),languageNames="Afrikaans|Amharic|Arabic|Assamese|Azerbaijani|Azerbaijani - Cyrillic|Belarusian|Bengali|Tibetan|Bosnian|Bulgarian|Catalan|Cebuano|Czech|Chinese - Simplified|Chinese - Traditional|Cherokee|Welsh|Danish|German|Dzongkha|Greek|English|Middle English|Esperanto|Estonian|Basque|Persian|Finnish|French|German Fraktur|Middle French|Irish|Galician|Ancient Greek|Gujarati|Haitian; Haitian Creole|Hebrew|Hindi|Croatian|Hungarian|Inuktitut|Indonesian|Icelandic|Italian|Italian - Old|Javanese|Japanese|Kannada|Georgian|Georgian - Old|Kazakh|Central Khmer|Kirghiz; Kyrgyz|Korean|Kurdish|Lao|Latin|Latvian|Lithuanian|Malayalam|Marathi|Macedonian|Maltese|Malay|Burmese|Nepali|Dutch; Flemish|Norwegian|Oriya|Panjabi; Punjabi|Polish|Portuguese|Pushto; Pashto|Romanian; Moldavian; Moldovan|Russian|Sanskrit|Sinhala; Sinhalese|Slovak|Slovenian|Spanish; Castilian|Spanish; Castilian - Old|Albanian|Serbian|Serbian - Latin|Swahili|Swedish|Syriac|Tamil|Telugu|Tajik|Tagalog|Thai|Tigrinya|Turkish|Uighur; Uyghur|Ukrainian|Urdu|Uzbek|Uzbek - Cyrillic|Vietnamese|Yiddish".split("|"),defaultLanguage="eng";const languages=function(codes,names){const results=[];for(let i=0;ia[1]>b[1]?1:a[1]-1!=textractLanguageCodes.indexOf(l[0])))},9216:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{h:function(){return metaDialogs}});const metaDialogs=[{menuTitle:"metaFields.titleFieldTitle",charLimit:"1000",fieldAccessor:x=>x.title,fieldName:"metaFields.titleFieldName",fieldNameUppercase:"metaFields.titleFieldNameUppercase",apiField:"title",headerText:"metaFields.titleFieldHeader",explainerText:"metaFields.titleFieldDescription",buttonText:"metaFields.titleFieldButton",fieldValid:(value,initial)=>value!=initial&&value.trim().length>0,fieldInvalidText:(value,initial)=>value==initial?"metaFields.titleFieldInvalidSameName":0==value.trim().length?"metaFields.titleFieldInvalidEmptyName":"",disabled:numSelected=>1!=numSelected},{menuTitle:"metaFields.sourceFieldTitle",charLimit:"1000",fieldAccessor:x=>x.source,fieldName:"metaFields.sourceFieldName",fieldNameUppercase:"metaFields.sourceFieldNameUppercase",apiField:"source",headerText:"metaFields.sourceFieldHeader",explainerText:"metaFields.sourceFieldDescription",buttonText:"metaFields.sourceFieldButton"},{menuTitle:"metaFields.descriptionFieldTitle",charLimit:"4000",fieldAccessor:x=>x.description,fieldName:"metaFields.descriptionFieldName",fieldNameUppercase:"metaFields.descriptionFieldNameUppercase",apiField:"description",headerText:"metaFields.descriptionFieldHeader",explainerText:"metaFields.descriptionFieldDescription",isTextArea:!0,buttonText:"metaFields.descriptionFieldButton"},{menuTitle:"metaFields.relatedArticleFieldTitle",charLimit:"1024",fieldAccessor:x=>x.relatedArticleUrl,fieldName:"rmetaFields.relatedArticleFieldName",fieldNameUppercase:"metaFields.relatedArticleFieldNameUppercase",apiField:"related_article",headerText:"metaFields.relatedArticleFieldHeader",explainerText:"metaFields.relatedArticleFieldDescription",buttonText:"metaFields.relatedArticleFieldButton"},{menuTitle:"metaFields.publishedUrlFieldTitle",charLimit:"1024",fieldAccessor:x=>x.publishedUrl,fieldName:"metaFields.publishedUrlFieldName",fieldNameUppercase:"metaFields.publishedUrlFieldNameUppercase",apiField:"published_url",headerText:"metaFields.publishedUrlFieldHeader",explainerText:"metaFields.publishedUrlFieldDescription",buttonText:"metaFields.publishedUrlFieldButton"}]},1428:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{q:function(){return informSize}});var _util_closure_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3059);function informSize(element,useScrollDimension=!0,updateStyleProps=!1){const update=()=>{window.parent.postMessage({width:Math.max(useScrollDimension?element.scrollWidth:0,element.offsetWidth),height:Math.max(useScrollDimension?element.scrollHeight:0,element.offsetHeight),updateStyleProps:updateStyleProps},"*")};window.addEventListener("resize",(0,_util_closure_js__WEBPACK_IMPORTED_MODULE_0__.l8)(update)),update()}},3059:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";function timeoutify(fn,timeout=100){let timer=null;return(...args)=>{null!=timer&&(clearTimeout(timer),timer=null),timer=setTimeout((()=>{timer=null,fn(...args)}),timeout)}}__webpack_require__.d(__webpack_exports__,{l8:function(){return timeoutify}})}}]);
-./public/2841.e2b6f31ff9046071273c.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="981249d1-e5e6-485c-b7aa-6346e480c3b0",e._sentryDebugIdIdentifier="sentry-dbid-981249d1-e5e6-485c-b7aa-6346e480c3b0")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[2841],{2841:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"Correo electrónico","loading":"Cargando...","documentCloud":"Documento en la nube","home":"Inicio"},"homeTemplate":{"signedIn":"Registrado como {name}","signOut":"Cerrar sesión","signIn":"Iniciar sesión","signUp":"Registrarse","goToApp":"Ir a la aplicación"},"accessToggle":{"public":"La nota será visible para cualquiera que tenga acceso al documento.","collaborator":"Cualquier persona con la capacidad de editar este documento podrá ver la nota.","private":"La nota solo será visible para usted.","publicName":"Público","collaboratorName":"Colaborador/a","privateName":"Privado"},"accessIcon":{"private":"Acceso privado","organization":"Privado para su organización","public":"Acceso público","privateExplanation":"Solo usted puede ver este documento","organizationExplanation":"Solo los miembros de su organización pueden ver este documento","publicExplanation":"Cualquiera puede buscar y ver este documento"},"appearanceCustomizer":{"customizeAppearance":"Personalizar apariencia","hide":"Ocultar ayuda","show":"Mostrar ayuda"},"appearanceDimension":{"responsive":"Automático (por defecto)","fixed":"Reparado"},"calendar":{"jan":"Enero","feb":"Febrero","mar":"Marzo","apr":"Abril","may":"Mayo","jun":"Junio","jul":"Julio","aug":"Agosto","sep":"Septiembre","oct":"Octubre","nov":"Noviembre","dec":"Diciembre","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Cancelar","delete":"Borrar","done":"Finalizar","edit":"Editar","remove":"Eliminar","save":"Guardar configuración","create":"Crear","ok":"Aceptar","update":"Actualizar","dismiss":"Descartar","continue":"Continuar"},"dialogAccessDialog":{"changeAccess":"Cambia el acceso por {n, plural, one {documento} other { documentos}}","selectAccess":"Seleccione un nivel de acceso para el {n, plural, un {documento seleccionado} other {# documentos seleccionados}}","public":"Acceso público","publicDesc":"Cualquiera en Internet puede buscar y ver el documento.","verifiedHelp":"Solo los usuarios verificados o los miembros de organizaciones verificadas pueden hacer públicos los documentos cargados. Si es periodista o trabaja en la publicación de materiales aprobados para informar al público, obtenga más información y solicite la verificación aquí. ","privateToOrg":"No puede cambiar el nivel de acceso a “Privado para su organización” porque {n, plural,one {este documento está}other {uno o mas documentos están}} asociado a su cuenta personal, y no a una organización. Para {n, plural,one {agregarlo}other {agregarlos}} a una organización, {n, plural,one {selecciónelo}other {selecciónelos}} en la vista de administración y haga clic en \\"Cambiar propietario\\".Puede unirse o crear una organización en esta página.","private":"Acceso privado","privateDesc":"Solo personas con permiso explícito (mediante la colaboración) tienen acceso.","organization":"Privado para su organización","organizationDesc":"Solo las personas de su organización tienen acceso.","schedulePublication":"Programar publicación","scheduleHelp":"Este documento se hará público en la fecha y hora dadas. La hora de publicación es la hora local{timezone}.","unchanged":"El acceso no ha cambiado. Seleccione un nivel de acceso diferente.","future":"Debe seleccionar un horario en el futuro","change":"Modificar"},"dialogCollaboratorDialog":{"confirm":"Confirmar eliminar usuario","confirmMsg":"Al continuar eliminará {name} de {title}. ¿Desea continuar?","addCollaborators":"Añadir colaboradores","invite":"Ingrese el correo electrónico de un usuario existente de DocumentCloud a continuación. Si no tiene una cuenta, pídale que se registre aquí gratis , y después pida que inicie sesión en DocumentCloud por lo menos una vez.","admin":"Administrador","view":"Ver","adminHelp":"Los colaboradores pueden editar este proyecto y sus documentos","editHelp":"Los colaboradores pueden editar los documentos que se encuentran en este proyecto","viewHelp":"Los colaboradores pueden ver los documentos en este proyecto","add":"Agregar","empty":"Usted aún no ha agregado ningún colaborador a este proyecto. Invite a colaboradores a otorgar acceso a otros usuarios a los documentos compartidos en este proyecto. Usted puede controlar si los colaboradores tienen acceso para ver/editar los documentos del proyecto o ser un administrador con permisos para invitar a otros usuarios y editar el proyecto en sí.","manageCollaborators":"Gestionar colaboradores","name":"Nombre","access":"Acceso","you":"(usted)"},"dialogDataDialog":{"confirm":"Confirmar eliminación de puntos de dato","removeMsg":"Proceder eliminará el punto de datos {key}{value} de los documentos especificados. ¿Desea continuar?","addData":"Añadir datos para {n, plural, one {¡Documento} other {¡# Documentos}}","tag":"Etiqueta","value":"Valor","key":"Clave","keyValue":"Clave / Valor","tagInfo":"Agregue etiquetas personalizadas para categorizar sus documentos.","eg":"p. ej.","exampleTagReport":"reportar","exampleTagLawsuit":"demanda judicial","exampleTagEmail":"correo electrónico","keyValueInfo":"Añadir pares de clave / valor personalizados para una clasificación precisa de sus documentos.","exampleKVState":"estado: California","exampleKVYear":"año: 2016","exampleKVType":"tipo: memo","enterTag":"Escribir una etiqueta","enterKey":"Introduzca una clave","keyInvalid":"Las claves solo pueden contener letras, números, guiones bajos (_) y guiones (-)","emptyMsg":"Usted todavía no ha agregado ningún dato a los documentos especificados. Agregue etiquetas y pares de clave / valor para organizar sus documentos. Puede filtrar y buscar datos de documentos para tener un control poderoso sobre la gestión de documentos.","manageDocumentData":"Gestionar datos de los documentos","valueUnchanged":"El valor permanece sin cambios","kvCannotBeEmpty":"La clave o el valor no pueden estar vacíos"},"dialogReprocessDialog":{"title":"Confirmar reproceso","reprocessDocs":"Proceder forzará {n, plural, one {al documento seleccionado} other {# a los documentos seleccionados}} a reprocesar la página y el texto de la imagen. ¿Desea continuar?","reprocessSingleDoc":"Proceder forzará al documento a reprocesar la página y el texto de la imagen. ¿Desea continuar?","confirm":"Volver a procesar"},"dialogDeleteDialog":{"title":"Confirmar reprocesamiento","deleteDocs":"Proceder eliminará permanentemente {n, plural, one {el documento seleccionado} other {# los documentos seleccionados}}. ¿Desea continuar?"},"dialogCancelProcessingDialog":{"title":"Cancelar proceso","deleteDocs":"El procedimiento forzará {n, plural,one {al documento seleccionado}other {# a los documentos seleccionados}} a detener el procesamiento. Una vez detenido el procesamiento, se mostrará un error, después del cual podrá \\"Forzar reprocesamiento\\" o eliminar {n, plural,one {el documento}other {los documentos}} usando el menú Editar. ¿Desea continuar?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Información exclusiva del personal para {n, plural, one {el documento seleccionado} other {# los documentos seleccionados}}","id":"Identificación","title":"Título","actions":"Acciones","debug":"Eliminación de fallos","viewErrors":"Ver errores","viewS3":"Ver en S3"},"dialogDocumentEmbedDialog":{"responsive":"Sensible","respOn":"Encendido (por defecto)","respOnHelp":"Rellenar el ancho del contenedor del artículo (normalmente funciona mejor)","respOff":"Desactivado","respOffHelp":"El documento se ajustará a los tamaños especificados a continuación","width":"Ancho","widthAuto":"Llenará el espacio disponible si el documento está configurado para responder; de lo contrario, el valor predeterminado es de 700px","widthFixed":"Establezca un ancho máximo si el documento responde, o establezca un tamaño fijo si no responde","height":"Altura","heightAuto":"La altura se basa en el tamaño del documento, sin el tamaño máximo. Si responde, se establecerá a la altura de la ventana del navegador menos 100px","heightFixed":"Establezca una altura máxima si el documento responde, o establezca un tamaño fijo si no responde","sidebarBehavior":"Comportamiento de la barra lateral","sbResponsive":"Responsivo (por defecto)","sbResponsiveHelp":"Muestra la barra lateral automáticamente en pantallas grandes y la oculta en dispositivos móviles. En el modo de incrustación, la barra lateral estará oculta","hidden":"Oculta","visible":"Visible","visibleDefault":"Visible (por defecto)","sbHiddenHelp":"Ocultar la barra lateral por defecto","sbVisibleHelp":"Mostrar la barra lateral por defecto","titleBehavior":"Comportamiento del título","tVisibleHelp":"Mostrar el título y la atribución en el encabezado del visor","tHiddenHelp":"Ocultar el título en el encabezado del visor (aún visible en la barra lateral)","pdfLink":"Enlace al PDF","plVisibleHelp":"Mostrar un enlace al documento PDF en la barra lateral","plHiddenHelp":"Ocultar el enlace PDF de la barra lateral (el archivo sigue siendo accesible si se conoce la URL)","fullscreenOption":"Pantalla completa","fsVisibleHelp":"Mostrar un icono de pantalla completa en la esquina inferior derecha","fsHiddenHelp":"Ocultar la opción de pantalla completa","textMode":"Modo texto","tmVisibleHelp":"Mostrar una opción para ver el texto del documento en el menú desplegable","tmHiddenHelp":"Ocultar modo texto","contributedByFormat":"Contribuido por formato","cbfUserAndOrg":"Usuario y organización (por defecto)","cbfUserAndOrgHelp":"Muestra la atribución de un documento como el nombre de usuario seguido por la organización","cbfOrgOnly":"Solo organización","cbfOrgOnlyHelp":"Atribuya el documento solo a la organización","share":"Compartir \\"{title}\\"","embedDesc":"Copie el código HTML para incrustar este documento en un artículo"},"dialogDocumentInformationDialog":{"editInformation":"Editar la información {n, plural,one {del documento}other {# de los documentos}}"},"dialogRedactDialog":{"title":"Confirmar redacciones","description":"¿Está seguro de que desea redactar el documento actual? Si continúa, el visor de documentos será inaccesible temporalmente mientras el documento se vuelve a procesar con las redacciones en su lugar. Este cambio es irreversible."},"dialogModifyDialog":{"title":"Aplicar modificaciones","description":"¿Está seguro de que desea modificar el documento actual? Si continúa, el visor de documentos será inaccesible temporalmente mientras el documento se vuelve a procesar con las modificaciones. Este cambio es irreversible.","closeTitle":"Confirme que desea cerrar","closeWarning":"Perderá todas las modificaciones que no haya aplicado. ¿Está seguro que desea continuar?"},"dialogDeleteNoteDialog":{"title":"Confirmar eliminación","description":"¿Está seguro de que desea eliminar la nota actual?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirmar eliminación","proceedingWillRemove":"Continuar eliminará la sección especificada (p.{page}{title}). \\n¿Desea continuar?","editSections":"Editar secciones","manageSections":"Administre secciones para organizar su documento con una tabla de contenido.","pageAbbrevNo":"p. {n}","pageAbbrev":"p.","empty":"No ha agregado ninguna sección","edit":"Edite la sección seleccionada","add":"Agregar una nueva sección","title":"Título","missingTitle":"Por favor. introduzca un título","updateTitle":"Introduzca un nuevo título o número de página","uniquePageNumber":"Debe introducir un número de página único","invalidPageNumber":"El número de página es inválido"},"dialogEmbedDialog":{"updatingDocument":"Actualizando documento...","makingPublic":"El documento se está haciendo público. Esto puede tardar un minuto o dos.","wouldMakePublic":"¿Le gustaría hacer público este documento antes de compartirlo?","notPublic":"El documento no es actualmente público. Si lo inserta o enlaza, sólo usted y los colaboradores podrán verlo hasta que se haga público. Haga clic a continuación cuando esté listo para publicar este documento al público.","makePublic":"Hacer público el documento","leave":"Dejarlo como está","selectShare":"Seleccionar opción de compartir","selectShareHelp":"Elija si desea compartir el documento completo o solo una página o nota.","shareDoc":"Compartir todo el documento","shareDocHelp":"Vincular o incrustar todo el documento (esta es la opción sobre acciones más utilizada).","sharePage":"Compartir página específica","sharePageHelp":"Vincular o incrustar una sola página del documento. Útil para resaltar un extracto de una página.","shareNote":"Compartir nota específica","shareNoteHelpHasNote":"Vincule o inserte una nota en el documento. Útil para resaltar una región de una página.","shareNoteHelpNoNote":"Una vez que agregue notas al documento, use esta función para vincularlas o incrustarlas."},"dialogErrorDialog":{"errorOccurred":"Se ha producido un error","unexpectedErrorOccurred":"Se ha producido un error inesperado","tryAgain":"Por favor, inténtelo más tarde.","close":"Cerrar","refresh":"Recargar"},"dialogNoteEmbedDialog":{"embedNote":"Insertar una nota de “{title}”","embedDesc":"Copie el código HTML para insertar esta nota dentro de un artículo o publicación:"},"dialogPageEmbedDialog":{"embedPage":"Inserte una página de “{title}”","embedDesc":"Copie el código HTML para incrustar esta página en un artículo o publicación:","selectPage":"Seleccione la página a insertar:","page":"Página {n} (actualmente visible)","otherPage":"Otra página","enterPageNumber":"Introduzca el número de página a insertar:"},"dialogProjectAccessDialog":{"changeAccessFor":"Cambiar el acceso para {name}","selectAccess":"Seleccione un nivel de acceso inferior para {name} en {title}","adminAccess":"Acceso de administrador","editAccess":"Editar acceso","viewAccess":"Ver acceso","adminHelp":"Este colaborador puede editar este proyecto y sus documentos. El colaborador puede invitar a usuarios, eliminar usuarios y eliminar el proyecto.","editHelp":"Este colaborador puede editar los documentos de este proyecto, pero no puede editar el proyecto en sí.","viewHelp":"Este colaborador puede ver los documentos de este proyecto, pero no puede editar los documentos ni el proyecto.","invalidAccess":"El acceso ya está configurado como {access}. Seleccione un nivel de acceso diferente.","changeAccess":"Cambiar el acceso"},"dialogOwnerDialog":{"selectUser":"Debe seleccionar un usuario","selectOrg":"Debe seleccionar una organización","changeOwner":"Cambiar el propietario {n, plural, one {del documento} other {# de los documentos}}","accessWarning":"Advertencia: Puede perder el acceso {n, plural, one {al documento especificado} other {# a los documentos especificados}} como resultado de cambiar el propietario del documento","user":"Usuario:","filterUsers":"Escriba para filtrar usuarios...","filterOrgs":"Escriba para filtrar organizaciones..."},"dialogProjectDialog":{"confirmDelete":"Confirmar eliminación","deleteProject":"¿Está seguro de que desea eliminar este proyecto? ({project})?","editProject":"Editar proyecto","createProject":"Crear nuevo proyecto","title":"Título...","projectDesc":"Descripción del proyecto (opcional)","manageCollabs":"Gestionar colaboradores","share":"Compartir / Incrustar proyecto","enterTitle":"Introducir un título","changeTitle":"Cambiar el título o la descripción"},"dialogProjectEmbedDialog":{"share":"Compartir “{title}”","embedDesc":"Copie el código HTML para incrustar este documento en un artículo o publicación:","invalid":"Proyecto inválido","cannotEmbed":"No se puede incrustar este proyecto, ya que parece que no existe."},"htmlEditor":{"preview":"Vista previa:"},"image":{"error":"Ha ocurrido un error. Pruebe a refrescar la página"},"omniselect":{"filter":"Escriba para filtrar el idioma","noResults":"No se han encontrado resultados. Haga clic para borrar el filtro."},"shareOptions":{"errorText":"Ha ocurrido un error inesperado. Por favor, inténtelo de nuevo más tarde.","copyHtml":"Copiar código HTML","addShortcode":"Agregue este código corto a su contenido de WordPress —","pluginRequired":"se requiere un complemento","copyShortcode":"Copiar código corto","copyUrl":"Copiar URL"},"specialMessage":{"contactUs":"Contáctenos con informes de errores, preguntas y sugerencias."},"uploadOptions":{"documentLang":"Idioma del documento:","forceOcr":"Forzar OCR:"},"actionBar":{"selectDocs":"Seleccione algunos documentos para mostrar las acciones de edición","noPerms":"Lo siento, no tiene permiso para editar todos los documentos seleccionados","editMenu":"Editar","projectsMenu":"Proyectos"},"authSection":{"help":"Ayuda","language":"Idioma","tips":"Consejos y trucos","searchDocs":"Buscar documentación","apiDocs":"Documentación API","emailUs":"Envíenos un correo electrónico","acctSettings":"Ajustes de la cuenta","signOut":"Cerrar sesión","changeOrg":"Cambiar la organización","personalAcct":"Cuenta personal","signIn":"Iniciar sesión"},"documents":{"yourDocuments":"Sus documentos","searchResults":"Resultados de la búsqueda","accessDocuments":"Sus{access}documentos","nameDocuments":"Documentos de {name}{access}","allDocuments":"Todos los {access}documentos","mustBeVerified":"Usted debe ser un periodista verificado para subir documentos","upload":"Subir","dropFile":"Suelte el archivo para subirlo"},"document":{"open":"Abrir","updating":"Actualizando documento...","processing":"Procesando","processingError":"Ocurrió un error tratando de procesar su documento","remove":"Eliminar","improper":"Su documento fue subido incorrectamente","project":"Proyecto","totalMatchingPages":"{n} de {m} páginas coinciden con la búsqueda","showAll":"Mostrar todo","matchingPages":"{n} de páginas coinciden con la búsqueda","pageAbbrev":"p.","pageCount":"{n, plural, one {# página} other {# páginas}}","source":"Fuente"},"documentThumbnail":{"pages":"páginas","loading":"Cargando información de progreso..."},"mainContainer":{"error":"Error","errorMsg":"No hemos podido acceder al servidor de DocumentCloud. Por favor, inténtelo refrescando la página más tarde.","refresh":"Refrescar"},"editMenu":{"editDocInfo":"Editar información del documento","changeAccess":"Cambiar el acceso","editDocData":"Editar datos del documento","cancelProcessing":"Cancelar el procesamiento","forceReprocess":"Forzar reprocesamiento","entities":"Entidades BETA","changeOwner":"Cambiar propietario","delete":"Eliminar","diagnosticInfo":"Información de diagnóstico"},"metaFields":{"defaultFieldInvalidText":"El documento ya tiene este {fieldName}","titleFieldTitle":"Título","titleFieldName":"nombre","titleFieldNameUppercase":"Nombre","titleFieldHeader":"Renombrar {n, plural,one {# documento} other{# documentos}}","titleFieldDescription":"Introduzca un nombre a continuación para {n, plural,one {el documento seleccionado}other {# los documentos seleccionados}}","titleFieldButton":"Renombrar","titleFieldInvalidSameName":"El documento ya tiene este nombre","titleFieldInvalidEmptyName":"Introduzca un nombre válido","sourceFieldTitle":"Fuente","sourceFieldName":"fuente","sourceFieldNameUppercase":"Fuente","sourceFieldHeader":"Editar fuente {n, plural,one {#del documento} other {# de los documentos}}","sourceFieldDescription":"Introduzca una fuente a continuación para {n, plural,one { el documento seleccionado}other {# los documentos seleccionados}}","sourceFieldButton":"Editar","descriptionFieldTitle":"Descripción","descriptionFieldName":"descripción","descriptionFieldNameUppercase":"Descripción","descriptionFieldHeader":"Editar descripción {n, plural, one {# del documento} other {# de los documentos}}","descriptionFieldDescription":"Introduzca la descripción debajo para {n, plural, one {el documento seleccionado} other {# los documentos seleccionados}}","descriptionFieldButton":"Editar","relatedArticleFieldTitle":"URL del artículo relacionado","relatedArticleFieldName":"URL del artículo relacionado","relatedArticleFieldNameUppercase":"URL del artículo relacionado","relatedArticleFieldHeader":"Editar la URL del artículo relacionado {n, plural, one {# del documento} other {# de los documentos}}","relatedArticleFieldDescription":"Introduzca la URL del artículo relacionado para {n, plural, one {el documento seleccionado} other {# los documentos seleccionados}}","relatedArticleFieldButton":"Editar","publishedUrlFieldTitle":"URL publicada","publishedUrlFieldName":"URL publicada","publishedUrlFieldNameUppercase":"URL publicada","publishedUrlFieldHeader":"Editar la URL publicada {n, plural, one {# del documento} other {# de los documentos}}","publishedUrlFieldDescription":"Introduzca la URL publicada a continuación para {n, plural, one {el documento seleccionado} other {# los documentos seleccionados}}","publishedUrlFieldButton":"Editar"},"projectsMenu":{"newProject":"+ Nuevo proyecto","projMembership":"Proyecto de afiliación","selectDocs":"Seleccione documentos para colocarlos en proyectos","createProj":"Cree un proyecto para organizar y compartir documentos"},"noDocuments":{"noSearchResults":"No se obtuvieron resultados de búsqueda","queryNoResults":"Su búsqueda no ha dado resultados. Inténtelo de nuevo con una búsqueda más amplia.","welcome":"¡Bienvenido a DocumentCloud!","verify1":"Tenga en cuenta que actualmente su cuenta no está verificada para subir documentos. Puede buscar en el repositorio público, organizar los documentos que le interesan en proyectos, dejar notas privadas y colaborar en la edición y anotación de documentos a los que te inviten otros usuarios.","verify2":"Si quiere subir o publicar documentos y es periodista en activo u otra organización interesada en publicar materiales de fuentes primarias de interés público, tendrá que tener su cuenta verificada o añadirla a una organización verificada. Se trata de un proceso sencillo:","verify3":"Primero, compruebe si su organización ya existe y, si es así, haga clic en \\"Solicitar unirse\\" en su página.","verify4":"Si su organización aún no se ha verificado, o si es autónomo, solicite la verificación aquí. Las solicitudes suelen tardar dos días laborables en procesarse.","uploadFirst":"Suba su primer documento","upload1":"Suba un archivo para empezar a utilizar DocumentCloud. Puede arrastrar el archivo a esta ventana, o hacer clic en el botón azul \\"Cargar\\" de arriba.","upload2":"Una vez que cargue el archivo, DocumentCloud procesará el documento y extraerá su contenido. Posiblemente esto tarde unos minutos en completarse, pero una vez que lo haya hecho, su documento se optimizará para analizarlo y compartirlo en la web."},"paginator":{"of":"de","document":"{n, plural,one {documento}other {documentos}}"},"processingBar":{"doneProcessing":"Procesamiento terminado","processingDocuments":"Procesando {n, plural,one {documento}other {# documentos}}"},"searchBar":{"tips":"Consejos de búsqueda: agregue filtros escribiendousuario,proyecto:, o organización:, etc. Use clasificar: para ordenar los resultados.","learnMore":"Obtener más información","search":"Buscar"},"searchLink":{"search":"Buscar en esta colección de documentos"},"projects":{"header":"Proyectos","allDocuments":"Todos los documentos","yourDocuments":"Tus documentos","yourPubDocuments":"Sus documentos públicos","orgDocuments":"Documentos de {name}","newProject":"+ Nuevo proyecto","createProject":"Cree su primer proyecto haciendo clic en “Nuevo proyecto” arriba."},"uploadDialog":{"docUpload":"Subida de documento","docUploadProj":"Subir documento a {title}","beginUpload":"Iniciar subida","pdfSizeWarning":"Solo puede subir archivos PDF de menos de {size}.","nonPdfSizeWarning":"Solo puede subir archivos que no sean PDF de menos de {size}.","fileReady":"{n, plural, one {archivo listo} other {archivos listos}} para subir","fileLimitWarning":"Solo puede subir hasta {limit} archivos a la vez.","moreOptions":"Más opciones","selectFiles":"+ Seleccionar archivos","dragDrop":"Arrastre y coloque los archivos aquí","publicMsg":"El documento será visible públicamente.","collabMsg":"El documento será visible para su organización.","privateMsg":"El documento será visible solo para usted.","collabName":"Organización","submitting":"Casi terminado... enviando los archivos subidos para su procesamiento ({percent})","uploading":"Cargando... ({uploaded}/{length})","gettingInfo":"Obteniendo información de subida ({percent})","pleaseLeaveOpen":"Por favor, deje esta página abierta mientras sus documentos se suben. Este cuadro de diálogo se cerrará automáticamente cuando hayan terminado de subirse.","errorHeading":"Se ha producido un error durante la subida","errorMsg":"No se pudo {errorMessage}. Por favor, inténtelo de nuevo más tarde.","editDocInfo":"Editar información del documento:","untitled":"Sin título","uploadFiles":"Subir archivos adicionales","selectMore":"Seleccionar más archivos","dragDropMore":"Arrastre y suelte archivos adicionales aquí"},"embedNote":{"viewTheNote":"Ver la nota \\"{title}\\" en el contexto original de su documento en DocumentCloud en una nueva ventana o pestaña","viewDoc":"Ver todo el documento con DocumentCloud"},"embedPage":{"viewDoc":"Ver todo {title} en DocumentCloud en una nueva ventana o pestaña","pageOf":"Página {page} de {title}","gotoDocCloud":"Ir a DocumentCloud en una nueva ventana o pestaña"},"entities":{"back":"Atrás","page":"Página","of":"de","totalEntityResult":"{n, plural, one {# resultado total de la entidad} other {# resultados totales de la entidad}} ","filter":"Filtro","applyFilters":"Aplicar filtros","kind":"Tipo","clear":"Borrar","person":"Persona","org":"Organización","location":"Ubicación","event":"Evento","workOfArt":"Obras de arte","consumerGood":"Bienes de consumo","address":"Dirección","date":"Fecha","number":"Número","phoneNumber":"Número de teléfono","price":"Precio","unknown":"Desconocido","other":"Otro","occurrences":"Acontecimientos","proper":"Apropiado","common":"Común","advanced":"Configuración avanzada","relevanceThreshold":"Nivel de relevancia:","knowledgeGraph":"Gráfico de conocimiento:","hasKG":"Tiene un ID de gráfico de conocimiento","noKG":"No tiene un ID de gráfico de conocimiento","wikiUrl":"URL de Wikipedia:","hasWiki":"Tiene una URL de Wikipedia","noWiki":"No tiene una URL de Wikipedia","occurrence":"{n, plural,zero {}one {# acontecimiento}other {# acontecimientos}}","wikipedia":"Wikipedia","entityExtraction":"Extracción de entidades para “{title}”","extractingEntities":"Extrayendo entidades...","welcome":"¡Bienvenido a la extracción de entidades! Esta función está en pleno proceso, pero queremos que esté en sus manos antes para agradecer cualquier opinión que nos pueda proporcionar acerca de la misma.","manual":"En este momento el proceso de extracción de entidades es manual. Todavía no se han extraído las entidades de este documento, así que haga clic a continuación para empezar.","error":"Ha ocurrido un error inesperado","extract":"Extraer entidades","noEntities":"No hay entidades. Esto puede ocurrir si el documento no tiene texto, no está en inglés (por ahora solo se admite el inglés) o se ha producido algún error.","starting":"Iniciando extracción..."},"home":{"about":"Document-Cloud es una plataforma todo en uno para documentos: cargar, organizar, analizar, anotar, buscar e insertar.","viewPublicDocs":"Ver documentos públicos"},"annotation":{"title":"Título de la nota","description":"Descripción de la nota (opcional)","unchanged":"La nota permanece sin cambios","noTitle":"Introduzca un título para la nota","org":"Esta nota solo es visible para usted y otras personas con acceso de edición a este documento","private":"Esta nota privada solo es visible para usted","by":"Anotado por {name}","byOrg":"Anotado por {name}, {org}","addPageNote":"Añadir una nota de página"},"viewDropdown":{"document":"Documento","plainText":"Texto sin formato","thumbnail":"Miniatura","notes":"Notas","search":"Resultados de búsqueda"},"zoom":{"fitWidth":"Ajustar ancho","fitHeight":"Ajustar altura"},"titleHeader":{"contributedBy":"Contribuido por {name}"},"annotatePane":{"annotateDocument":"Anotar documento","desc":"Destaque una porción de la página, o haga clic entre páginas para crear una nota."},"modifyPane":{"pagesSelected":"{n, plural, one{# página seleccionada} other{# páginas seleccionadas}}","applyModifications":"Aplicar modificaciones","duplicate":"Duplicar","move":"Mover","unselect":"Anular selección","remove":"Eliminar","insertPages":"Insertar {n, plural, one {# página} other {# páginas}}","pagesPending":"{n, plural, one {# página pendiente} other {# páginas pendientes}} para insertar","insertBegin":"Insertar {n, plural, one {# página} other {# páginas}} al principio.","insertEnd":"Insertar {n, plural, one {# página} other {# páginas}} al final.","insertBetween":"Insertar {n, plural, one {# una página} other {# páginas}} entre la página {p0} y la {p1}.","click":"Haga clic entre las páginas de abajo para marcar dónde pegar {n, plural, una {# una página} other {# páginas}}.","insert":"Insertar","insertAtEnd":"Insertar al final","insertPosition":"Insertar páginas en la posición","insertOtherDoc":"Insertar desde otro documento","modifyPages":"Modificar páginas","select":"Seleccione las páginas de abajo para aplicar modificaciones (rotación de páginas, reordenación y eliminación). Haga clic entre las páginas para insertar.","undo":"Deshacer","redo":"Rehacer"},"redactPane":{"redactDoc":"Redactar documento","desc":"Haga clic y arrastre para dibujar un rectángulo negro sobre cada parte del documento que desea redactar. El texto asociado se eliminará al guardar las redacciones.","confirm":"Confirmar redacciones","undo":"Deshacer"},"searchPane":{"yourQuery":"Su consulta {search} se encontró en {n, plural, one {# la página} other {# las páginas}}"},"selectNotePane":{"selectNote":"Seleccione una nota","desc":"Seleccione la nota que desea compartir."},"searchResults":{"resultPages":"{results, plural, one {# resultado} other {# resultados}} a través de {pages, plural, one {# la página} other {# las páginas}}","noSearchResults":"No hay resultados de búsqueda. Inténtelo de nuevo con una consulta más amplia.","occurrences":"{n, plural, one {# comentario} other {# comentarios}}"},"sidebar":{"updating":"Actualizando documento...","original":"Documento original (PDF) »","related":"Artículo relacionado »","contributed":"Contribuido por {name}","source":"Fuente: {source}","actions":"Acciones del documento","share":"Compartir","shareDesc":"Cree una vínculo o compártalo en las redes sociales.","annotate":"Anotar","annotateDesc":"Haga anotaciones para mantener notas en el documento.","redact":"Redactar","redactDesc":"Cree redacciones en el documento para ocultar el texto. El documento se volverá a procesar después.","modify":"Modificar páginas","modifyDesc":"Reorganice, rote, elimine, inserte y divida las páginas.","info":"Editar la información del documento","infoDesc":"Modificar la información del documento como la descripción y la URL relacionada.","data":"Editar etiquetas y datos","dataDesc":"Añadir etiquetas y pares de clave/valor para clasificar su documento.","sections":"Editar secciones","sectionsDesc":"Añadir secciones para organizar su documento con una tabla de contenidos.","privateNote":"Añadir nota privada","privateNoteDesc":"Haga anotaciones para mantener notas en el documento."},"viewer":{"notFound":"Documento no encontrado","notFoundDesc":"El documento que ha solicitado no existe o no tiene permiso para acceder a él","processing":"El documento se está procesando","processingDesc":"El documento que ha solicitado se está procesando y se actualizará automáticamente cuando esté listo","error":"El documento presenta un error","errorDesc":"Se ha encontrado un error de procesamiento en el documento solicitado","accessible":"El documento no está accesible","accessibleDesc":"El documento que ha solicitado está todavía en trámite o no tiene permiso para acceder a él"}}')}}]);
-./public/4468.3ee0d524cc2e19986564.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e04cea6b-6b2a-4f02-abce-a099eb7d83cc",e._sentryDebugIdIdentifier="sentry-dbid-e04cea6b-6b2a-4f02-abce-a099eb7d83cc")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[4468],{4468:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"🄔⒨⒜⒤⒧ ⒜⒟⒟⒭⒠⒮⒮","loading":"🄛⒪⒜⒟⒤⒩⒢...","documentCloud":"🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟","home":"🄗⒪⒨⒠"},"homeTemplate":{"signedIn":"🄢⒤⒢⒩⒠⒟ ⒤⒩ ⒜⒮ {name}","signOut":"🄢⒤⒢⒩ ⒪⒰⒯","signIn":"🄢⒤⒢⒩ ⒤⒩","signUp":"🄢⒤⒢⒩ ⒰⒫","goToApp":"🄖⒪ ⒯⒪ ⒜⒫⒫"},"accessToggle":{"public":"🄝⒪⒯⒠ ⒲⒤⒧⒧ ⒝⒠ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒜⒩⒴⒪⒩⒠ ⒲⒤⒯⒣ ⒜⒞⒞⒠⒮⒮ ⒯⒪ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯.","collaborator":"🄝⒪⒯⒠ ⒲⒤⒧⒧ ⒝⒠ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒜⒩⒴⒪⒩⒠ ⒲⒣⒪ ⒞⒜⒩ ⒠⒟⒤⒯ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯.","private":"🄝⒪⒯⒠ ⒲⒤⒧⒧ ⒝⒠ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒴⒪⒰ ⒜⒧⒪⒩⒠.","publicName":"🄟⒰⒝⒧⒤⒞","collaboratorName":"🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭","privateName":"🄟⒭⒤⒱⒜⒯⒠"},"accessIcon":{"private":"🄟⒭⒤⒱⒜⒯⒠ 🄐⒞⒞⒠⒮⒮","organization":"🄟⒭⒤⒱⒜⒯⒠ ⒯⒪ 🄨⒪⒰⒭ 🄞⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","public":"🄟⒰⒝⒧⒤⒞ 🄐⒞⒞⒠⒮⒮","privateExplanation":"🄞⒩⒧⒴ ⒴⒪⒰ ⒞⒜⒩ ⒱⒤⒠⒲ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯","organizationExplanation":"🄞⒩⒧⒴ ⒨⒠⒨⒝⒠⒭⒮ ⒪⒡ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒞⒜⒩ ⒱⒤⒠⒲ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯","publicExplanation":"🄐⒩⒴⒪⒩⒠ ⒞⒜⒩ ⒮⒠⒜⒭⒞⒣ ⒜⒩⒟ ⒱⒤⒠⒲ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯"},"appearanceCustomizer":{"customizeAppearance":"🄒⒰⒮⒯⒪⒨⒤⒵⒠ 🄐⒫⒫⒠⒜⒭⒜⒩⒞⒠","hide":"🄗⒤⒟⒠ ⒣⒠⒧⒫ ⒯⒠⒳⒯","show":"🄢⒣⒪⒲ ⒣⒠⒧⒫ ⒯⒠⒳⒯"},"appearanceDimension":{"responsive":"🄐⒰⒯⒪⒨⒜⒯⒤⒞ (⒟⒠⒡⒜⒰⒧⒯)","fixed":"🄕⒤⒳⒠⒟"},"calendar":{"jan":"🄙⒜⒩⒰⒜⒭⒴","feb":"🄕⒠⒝⒭⒰⒜⒭⒴","mar":"🄜⒜⒭⒞⒣","apr":"🄐⒫⒭⒤⒧","may":"🄜⒜⒴","jun":"🄙⒰⒩⒠","jul":"🄙⒰⒧⒴","aug":"🄐⒰⒢⒰⒮⒯","sep":"🄢⒠⒫⒯⒠⒨⒝⒠⒭","oct":"🄞⒞⒯⒪⒝⒠⒭","nov":"🄝⒪⒱⒠⒨⒝⒠⒭","dec":"🄓⒠⒞⒠⒨⒝⒠⒭","hourShortcode":"🄗🄗","minuteShortcode":"🄜🄜"},"dialog":{"cancel":"🄒⒜⒩⒞⒠⒧","delete":"🄓⒠⒧⒠⒯⒠","done":"🄓⒪⒩⒠","edit":"🄔⒟⒤⒯","remove":"🄡⒠⒨⒪⒱⒠","save":"🄢⒜⒱⒠","create":"🄒⒭⒠⒜⒯⒠","ok":"🄞⒦","update":"🄤⒫⒟⒜⒯⒠","dismiss":"🄓⒤⒮⒨⒤⒮⒮","continue":"🄒⒪⒩⒯⒤⒩⒰⒠"},"dialogAccessDialog":{"changeAccess":"🄒⒣⒜⒩⒢⒠ ⒜⒞⒞⒠⒮⒮ ⒡⒪⒭ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","selectAccess":"🄢⒠⒧⒠⒞⒯ ⒜⒩ ⒜⒞⒞⒠⒮⒮ ⒧⒠⒱⒠⒧ ⒡⒪⒭ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","public":"🄟⒰⒝⒧⒤⒞ ⒜⒞⒞⒠⒮⒮","publicDesc":"🄐⒩⒴⒪⒩⒠ ⒪⒩ ⒯⒣⒠ ⒤⒩⒯⒠⒭⒩⒠⒯ ⒞⒜⒩ ⒮⒠⒜⒭⒞⒣ ⒡⒪⒭ ⒜⒩⒟ ⒱⒤⒠⒲ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯.","verifiedHelp":"🄞⒩⒧⒴ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒰⒮⒠⒭⒮ ⒪⒭ ⒨⒠⒨⒝⒠⒭⒮ ⒪⒡ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩⒮ ⒞⒜⒩ ⒨⒜⒦⒠ ⒰⒫⒧⒪⒜⒟⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒫⒰⒝⒧⒤⒞. 🄘⒡ ⒴⒪⒰\'⒭⒠ ⒜ ⒥⒪⒰⒭⒩⒜⒧⒤⒮⒯ ⒪⒭ ⒪⒯⒣⒠⒭⒲⒤⒮⒠ ⒲⒪⒭⒦ ⒤⒩ ⒫⒰⒝⒧⒤⒮⒣⒤⒩⒢ ⒱⒠⒯⒯⒠⒟ ⒨⒜⒯⒠⒭⒤⒜⒧⒮ ⒯⒪ ⒤⒩⒡⒪⒭⒨ ⒯⒣⒠ ⒫⒰⒝⒧⒤⒞, ⒧⒠⒜⒭⒩ ⒨⒪⒭⒠ ⒜⒩⒟ ⒭⒠⒬⒰⒠⒮⒯ ⒱⒠⒭⒤⒡⒤⒞⒜⒯⒤⒪⒩ ⒣⒠⒭⒠.","privateToOrg":"🄨⒪⒰ ⒞⒜⒩’⒯ ⒞⒣⒜⒩⒢⒠ ⒯⒣⒠ ⒜⒞⒞⒠⒮⒮ ⒧⒠⒱⒠⒧ ⒯⒪ “🄟⒭⒤⒱⒜⒯⒠ ⒯⒪ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩” ⒝⒠⒞⒜⒰⒮⒠ {n, plural, one {⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒮} other {⒪⒩⒠ ⒪⒭ ⒨⒪⒭⒠ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒜⒭⒠}} ⒜⒮⒮⒪⒞⒤⒜⒯⒠⒟ ⒲⒤⒯⒣ ⒴⒪⒰⒭ ⒤⒩⒟⒤⒱⒤⒟⒰⒜⒧ ⒜⒞⒞⒪⒰⒩⒯, ⒩⒪⒯ ⒜⒩ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩. 🄣⒪ ⒜⒟⒟ {n, plural, one {⒤⒯} other {⒯⒣⒠⒨}} ⒯⒪ ⒜⒩ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩, ⒮⒠⒧⒠⒞⒯ {n, plural, one {⒤⒯} other {⒯⒣⒠⒨}} ⒡⒭⒪⒨ ⒯⒣⒠ ⒨⒜⒩⒜⒢⒠⒨⒠⒩⒯ ⒱⒤⒠⒲ ⒜⒩⒟ ⒞⒧⒤⒞⒦ “🄒⒣⒜⒩⒢⒠ 🄞⒲⒩⒠⒭.” 🄨⒪⒰ ⒞⒜⒩ ⒥⒪⒤⒩ ⒪⒭ ⒞⒭⒠⒜⒯⒠ ⒜⒩ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒪⒩ ⒯⒣⒤⒮ ⒫⒜⒢⒠.","private":"🄟⒭⒤⒱⒜⒯⒠ ⒜⒞⒞⒠⒮⒮","privateDesc":"🄞⒩⒧⒴ ⒫⒠⒪⒫⒧⒠ ⒲⒤⒯⒣ ⒠⒳⒫⒧⒤⒞⒤⒯ ⒫⒠⒭⒨⒤⒮⒮⒤⒪⒩ (⒱⒤⒜ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒤⒪⒩) ⒣⒜⒱⒠ ⒜⒞⒞⒠⒮⒮.","organization":"🄟⒭⒤⒱⒜⒯⒠ ⒯⒪ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","organizationDesc":"🄞⒩⒧⒴ ⒯⒣⒠ ⒫⒠⒪⒫⒧⒠ ⒤⒩ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒣⒜⒱⒠ ⒜⒞⒞⒠⒮⒮.","schedulePublication":"🄢⒞⒣⒠⒟⒰⒧⒠ ⒫⒰⒝⒧⒤⒞⒜⒯⒤⒪⒩","scheduleHelp":"🄣⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒝⒠ ⒨⒜⒟⒠ ⒫⒰⒝⒧⒤⒞ ⒜⒯ ⒯⒣⒠ ⒢⒤⒱⒠⒩ ⒟⒜⒯⒠ ⒜⒩⒟ ⒯⒤⒨⒠. 🄟⒰⒝⒧⒤⒞⒜⒯⒤⒪⒩ ⒯⒤⒨⒠ ⒤⒮ ⒧⒪⒞⒜⒧{timezone}.","unchanged":"🄐⒞⒞⒠⒮⒮ ⒤⒮ ⒰⒩⒞⒣⒜⒩⒢⒠⒟. 🄢⒠⒧⒠⒞⒯ ⒜ ⒟⒤⒡⒡⒠⒭⒠⒩⒯ ⒜⒞⒞⒠⒮⒮ ⒧⒠⒱⒠⒧.","future":"🄜⒰⒮⒯ ⒮⒠⒧⒠⒞⒯ ⒜ ⒯⒤⒨⒠ ⒤⒩ ⒯⒣⒠ ⒡⒰⒯⒰⒭⒠","change":"🄒⒣⒜⒩⒢⒠"},"dialogCollaboratorDialog":{"confirm":"🄒⒪⒩⒡⒤⒭⒨ ⒭⒠⒨⒪⒱⒠ ⒰⒮⒠⒭","confirmMsg":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒭⒠⒨⒪⒱⒠ {name} ⒡⒭⒪⒨ {title}. 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?","addCollaborators":"🄐⒟⒟ 🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮","invite":"🄟⒰⒯ ⒤⒩ ⒯⒣⒠ ⒠⒨⒜⒤⒧ ⒪⒡ ⒜⒩ ⒠⒳⒤⒮⒯⒤⒩⒢ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒰⒮⒠⒭ ⒝⒠⒧⒪⒲. 🄘⒡ ⒯⒣⒠⒴ ⒟⒪⒩\'⒯ ⒣⒜⒱⒠ ⒜⒩ ⒜⒞⒞⒪⒰⒩⒯, ⒣⒜⒱⒠ ⒯⒣⒠⒨ ⒭⒠⒢⒤⒮⒯⒠⒭ ⒣⒠⒭⒠ ⒡⒪⒭ ⒡⒭⒠⒠, ⒜⒩⒟ ⒯⒣⒠⒩ ⒜⒮⒦ ⒯⒣⒠⒨ ⒯⒪ ⒧⒪⒢ ⒤⒩ ⒯⒪ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒜⒯ ⒧⒠⒜⒮⒯ ⒪⒩⒞⒠.","admin":"🄐⒟⒨⒤⒩","view":"🄥⒤⒠⒲","adminHelp":"🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒞⒜⒩ ⒠⒟⒤⒯ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯ ⒜⒩⒟ ⒤⒯⒮ ⒟⒪⒞⒰⒨⒠⒩⒯⒮","editHelp":"🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒞⒜⒩ ⒠⒟⒤⒯ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒤⒩ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯","viewHelp":"🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒞⒜⒩ ⒱⒤⒠⒲ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒤⒩ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯","add":"🄐⒟⒟","empty":"🄨⒪⒰ ⒣⒜⒱⒠ ⒩⒪⒯ ⒴⒠⒯ ⒜⒟⒟⒠⒟ ⒜⒩⒴ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒯⒪ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯. 🄘⒩⒱⒤⒯⒠ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒯⒪ ⒢⒭⒜⒩⒯ ⒪⒯⒣⒠⒭ ⒰⒮⒠⒭⒮ ⒜⒞⒞⒠⒮⒮ ⒯⒪ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒮⒣⒜⒭⒠⒟ ⒤⒩ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯. 🄨⒪⒰ ⒞⒜⒩ ⒞⒪⒩⒯⒭⒪⒧ ⒲⒣⒠⒯⒣⒠⒭ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒣⒜⒱⒠ ⒜⒞⒞⒠⒮⒮ ⒯⒪ ⒱⒤⒠⒲/⒠⒟⒤⒯ ⒯⒣⒠ ⒫⒭⒪⒥⒠⒞⒯’⒮ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒪⒭ ⒝⒠ ⒜⒩ ⒜⒟⒨⒤⒩ ⒲⒤⒯⒣ ⒫⒠⒭⒨⒤⒮⒮⒤⒪⒩⒮ ⒯⒪ ⒤⒩⒱⒤⒯⒠ ⒪⒯⒣⒠⒭ ⒰⒮⒠⒭⒮ ⒜⒩⒟ ⒠⒟⒤⒯ ⒯⒣⒠ ⒫⒭⒪⒥⒠⒞⒯ ⒤⒯⒮⒠⒧⒡.","manageCollaborators":"🄜⒜⒩⒜⒢⒠ 🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮","name":"🄝⒜⒨⒠","access":"🄐⒞⒞⒠⒮⒮","you":"(⒴⒪⒰)"},"dialogDataDialog":{"confirm":"🄒⒪⒩⒡⒤⒭⒨ ⒭⒠⒨⒪⒱⒠ ⒟⒜⒯⒜ ⒫⒪⒤⒩⒯","removeMsg":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒭⒠⒨⒪⒱⒠ ⒯⒣⒠ {key}{value} ⒟⒜⒯⒜ ⒫⒪⒤⒩⒯ ⒡⒭⒪⒨ ⒯⒣⒠ ⒮⒫⒠⒞⒤⒡⒤⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮. 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?","addData":"🄐⒟⒟ 🄓⒜⒯⒜ ⒡⒪⒭ {n, plural, one {🄓⒪⒞⒰⒨⒠⒩⒯} other {# 🄓⒪⒞⒰⒨⒠⒩⒯⒮}}","tag":"🄣⒜⒢","value":"🄥⒜⒧⒰⒠","key":"🄚⒠⒴","keyValue":"🄚⒠⒴ / 🄥⒜⒧⒰⒠","tagInfo":"🄐⒟⒟ ⒞⒰⒮⒯⒪⒨ ⒯⒜⒢⒮ ⒯⒪ ⒞⒜⒯⒠⒢⒪⒭⒤⒵⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯⒮.","eg":"⒠.⒢.","exampleTagReport":"⒭⒠⒫⒪⒭⒯","exampleTagLawsuit":"⒧⒜⒲⒮⒰⒤⒯","exampleTagEmail":"⒠⒨⒜⒤⒧","keyValueInfo":"🄐⒟⒟ ⒞⒰⒮⒯⒪⒨ ⒦⒠⒴ / ⒱⒜⒧⒰⒠ ⒫⒜⒤⒭⒮ ⒡⒪⒭ ⒫⒭⒠⒞⒤⒮⒠ ⒞⒜⒯⒠⒢⒪⒭⒤⒵⒜⒯⒤⒪⒩ ⒪⒡ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯⒮.","exampleKVState":"⒮⒯⒜⒯⒠:&⒩⒝⒮⒫;🄒⒜⒧⒤⒡⒪⒭⒩⒤⒜","exampleKVYear":"⒴⒠⒜⒭:&⒩⒝⒮⒫;⑵⓿⑴⑹","exampleKVType":"⒯⒴⒫⒠:&⒩⒝⒮⒫;⒨⒠⒨⒪","enterTag":"🄔⒩⒯⒠⒭ ⒜ ⒯⒜⒢","enterKey":"🄔⒩⒯⒠⒭ ⒜ ⒦⒠⒴","keyInvalid":"🄚⒠⒴⒮ ⒞⒜⒩ ⒪⒩⒧⒴ ⒞⒪⒩⒯⒜⒤⒩ ⒧⒠⒯⒯⒠⒭⒮, ⒩⒰⒨⒝⒠⒭⒮, ⒰⒩⒟⒠⒭⒮⒞⒪⒭⒠⒮ (_), ⒜⒩⒟ ⒟⒜⒮⒣⒠⒮ (-)","emptyMsg":"🄨⒪⒰ ⒣⒜⒱⒠ ⒩⒪⒯ ⒴⒠⒯ ⒜⒟⒟⒠⒟ ⒜⒩⒴ ⒟⒜⒯⒜ ⒯⒪ ⒯⒣⒠ ⒮⒫⒠⒞⒤⒡⒤⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮. 🄐⒟⒟ ⒯⒜⒢⒮ ⒜⒩⒟ ⒦⒠⒴/⒱⒜⒧⒰⒠ ⒫⒜⒤⒭⒮ ⒯⒪ ⒞⒜⒯⒠⒢⒪⒭⒤⒵⒠ ⒜⒩⒟ ⒪⒭⒢⒜⒩⒤⒵⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯⒮. 🄨⒪⒰ ⒞⒜⒩ ⒡⒤⒧⒯⒠⒭ ⒜⒩⒟ ⒮⒠⒜⒭⒞⒣ ⒪⒩ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒟⒜⒯⒜ ⒯⒪ ⒢⒤⒱⒠ ⒴⒪⒰ ⒫⒪⒲⒠⒭⒡⒰⒧ ⒞⒪⒩⒯⒭⒪⒧ ⒪⒱⒠⒭ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒨⒜⒩⒜⒢⒠⒨⒠⒩⒯.","manageDocumentData":"🄜⒜⒩⒜⒢⒠ 🄓⒪⒞⒰⒨⒠⒩⒯ 🄓⒜⒯⒜","valueUnchanged":"🄥⒜⒧⒰⒠ ⒭⒠⒨⒜⒤⒩⒮ ⒰⒩⒞⒣⒜⒩⒢⒠⒟","kvCannotBeEmpty":"🄚⒠⒴/⒱⒜⒧⒰⒠ ⒞⒜⒩⒩⒪⒯ ⒝⒠ ⒠⒨⒫⒯⒴"},"dialogReprocessDialog":{"title":"🄒⒪⒩⒡⒤⒭⒨ ⒭⒠⒫⒭⒪⒞⒠⒮⒮","reprocessDocs":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒡⒪⒭⒞⒠ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}} ⒯⒪ ⒭⒠⒫⒭⒪⒞⒠⒮⒮ ⒫⒜⒢⒠ ⒜⒩⒟ ⒤⒨⒜⒢⒠ ⒯⒠⒳⒯. 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?","reprocessSingleDoc":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒡⒪⒭⒞⒠ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒯⒪ ⒭⒠⒫⒭⒪⒞⒠⒮⒮ ⒫⒜⒢⒠ ⒜⒩⒟ ⒤⒨⒜⒢⒠ ⒯⒠⒳⒯. 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?","confirm":"🄡⒠⒫⒭⒪⒞⒠⒮⒮"},"dialogDeleteDialog":{"title":"🄒⒪⒩⒡⒤⒭⒨ ⒭⒠⒫⒭⒪⒞⒠⒮⒮","deleteDocs":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒫⒠⒭⒨⒜⒩⒠⒩⒯⒧⒴ ⒟⒠⒧⒠⒯⒠ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}. 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?"},"dialogCancelProcessingDialog":{"title":"🄒⒜⒩⒞⒠⒧ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢","deleteDocs":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒡⒪⒭⒞⒠ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}} ⒯⒪ ⒮⒯⒪⒫ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢. 🄐⒡⒯⒠⒭ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢ ⒣⒜⒮ ⒝⒠⒠⒩ ⒮⒯⒪⒫⒫⒠⒟, ⒜⒩ ⒠⒭⒭⒪⒭ ⒲⒤⒧⒧ ⒮⒣⒪⒲ ⒜⒡⒯⒠⒭ ⒲⒣⒤⒞⒣ ⒴⒪⒰ ⒞⒜⒩ “🄕⒪⒭⒞⒠ 🄡⒠⒫⒭⒪⒞⒠⒮⒮” ⒪⒭ ⒟⒠⒧⒠⒯⒠ ⒯⒣⒠ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {⒟⒪⒞⒰⒨⒠⒩⒯⒮}} ⒰⒮⒤⒩⒢ ⒯⒣⒠ 🄔⒟⒤⒯ ⒨⒠⒩⒰. 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"🄢⒯⒜⒡⒡-⒪⒩⒧⒴ ⒤⒩⒡⒪ ⒡⒪⒭ ⒮⒠⒧⒠⒞⒯⒠⒟ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","id":"🄘🄓","title":"🄣⒤⒯⒧⒠","actions":"🄐⒞⒯⒤⒪⒩⒮","debug":"🄓⒠⒝⒰⒢","viewErrors":"🄥⒤⒠⒲ ⒠⒭⒭⒪⒭⒮","viewS3":"🄥⒤⒠⒲ ⒤⒩ 🄢⑶"},"dialogDocumentEmbedDialog":{"responsive":"🄡⒠⒮⒫⒪⒩⒮⒤⒱⒠","respOn":"🄞⒩ (⒟⒠⒡⒜⒰⒧⒯)","respOnHelp":"🄕⒤⒧⒧ ⒯⒣⒠ ⒲⒤⒟⒯⒣ ⒪⒡ ⒯⒣⒠ ⒜⒭⒯⒤⒞⒧⒠ ⒞⒪⒩⒯⒜⒤⒩⒠⒭ (⒰⒮⒰⒜⒧⒧⒴ ⒲⒪⒭⒦⒮ ⒝⒠⒮⒯)","respOff":"🄞⒡⒡","respOffHelp":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒡⒤⒯ ⒯⒣⒠ ⒮⒤⒵⒠⒮ ⒮⒫⒠⒞⒤⒡⒤⒠⒟ ⒝⒠⒧⒪⒲","width":"🄦⒤⒟⒯⒣","widthAuto":"🄦⒤⒧⒧ ⒡⒤⒧⒧ ⒯⒣⒠ ⒜⒱⒜⒤⒧⒜⒝⒧⒠ ⒮⒫⒜⒞⒠ ⒤⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒮ ⒮⒠⒯ ⒯⒪ ⒭⒠⒮⒫⒪⒩⒮⒤⒱⒠, ⒪⒯⒣⒠⒭⒲⒤⒮⒠ ⒟⒠⒡⒜⒰⒧⒯⒮ ⒯⒪ ⑺⓿⓿⒫⒳","widthFixed":"🄢⒠⒯ ⒜ ⒨⒜⒳⒤⒨⒰⒨ ⒲⒤⒟⒯⒣ ⒤⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒮ ⒭⒠⒮⒫⒪⒩⒮⒤⒱⒠, ⒪⒭ ⒮⒠⒯ ⒜ ⒡⒤⒳⒠⒟ ⒮⒤⒵⒠ ⒤⒡ ⒩⒪⒯ ⒭⒠⒮⒫⒪⒩⒮⒤⒱⒠","height":"🄗⒠⒤⒢⒣⒯","heightAuto":"🄣⒣⒠ ⒣⒠⒤⒢⒣⒯ ⒤⒮ ⒝⒜⒮⒠⒟ ⒪⒩ ⒯⒣⒠ ⒮⒤⒵⒠ ⒪⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯, ⒲⒤⒯⒣ ⒩⒪ ⒨⒜⒳⒤⒨⒰⒨ ⒮⒤⒵⒠. 🄘⒡ ⒭⒠⒮⒫⒪⒩⒮⒤⒱⒠, ⒲⒤⒧⒧ ⒝⒠ ⒮⒠⒯ ⒯⒪ ⒯⒣⒠ ⒣⒠⒤⒢⒣⒯ ⒪⒡ ⒯⒣⒠ ⒝⒭⒪⒲⒮⒠⒭ ⒲⒤⒩⒟⒪⒲ ⒨⒤⒩⒰⒮ ⑴⓿⓿⒫⒳","heightFixed":"🄢⒠⒯ ⒜ ⒨⒜⒳⒤⒨⒰⒨ ⒣⒠⒤⒢⒣⒯ ⒤⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒮ ⒭⒠⒮⒫⒪⒩⒮⒤⒱⒠, ⒪⒭ ⒮⒠⒯ ⒜ ⒡⒤⒳⒠⒟ ⒮⒤⒵⒠ ⒤⒡ ⒩⒪⒯ ⒭⒠⒮⒫⒪⒩⒮⒤⒱⒠","sidebarBehavior":"🄢⒤⒟⒠⒝⒜⒭ ⒝⒠⒣⒜⒱⒤⒪⒭","sbResponsive":"🄡⒠⒮⒫⒪⒩⒮⒤⒱⒠ (⒟⒠⒡⒜⒰⒧⒯)","sbResponsiveHelp":"🄢⒣⒪⒲ ⒮⒤⒟⒠⒝⒜⒭ ⒜⒰⒯⒪⒨⒜⒯⒤⒞⒜⒧⒧⒴ ⒪⒩ ⒧⒜⒭⒢⒠ ⒮⒞⒭⒠⒠⒩⒮ ⒜⒩⒟ ⒣⒤⒟⒠ ⒪⒩ ⒨⒪⒝⒤⒧⒠ ⒟⒠⒱⒤⒞⒠⒮. 🄘⒩ ⒠⒨⒝⒠⒟ ⒨⒪⒟⒠, ⒯⒣⒠ ⒮⒤⒟⒠⒝⒜⒭ ⒲⒤⒧⒧ ⒝⒠ ⒣⒤⒟⒟⒠⒩","hidden":"🄗⒤⒟⒟⒠⒩","visible":"🄥⒤⒮⒤⒝⒧⒠","visibleDefault":"🄥⒤⒮⒤⒝⒧⒠ (⒟⒠⒡⒜⒰⒧⒯)","sbHiddenHelp":"🄗⒤⒟⒠ ⒯⒣⒠ ⒮⒤⒟⒠⒝⒜⒭ ⒝⒴ ⒟⒠⒡⒜⒰⒧⒯","sbVisibleHelp":"🄢⒣⒪⒲ ⒯⒣⒠ ⒮⒤⒟⒠⒝⒜⒭ ⒝⒴ ⒟⒠⒡⒜⒰⒧⒯","titleBehavior":"🄣⒤⒯⒧⒠ ⒝⒠⒣⒜⒱⒤⒪⒭","tVisibleHelp":"🄓⒤⒮⒫⒧⒜⒴ ⒯⒣⒠ ⒯⒤⒯⒧⒠ ⒜⒩⒟ ⒜⒯⒯⒭⒤⒝⒰⒯⒤⒪⒩ ⒤⒩ ⒯⒣⒠ ⒣⒠⒜⒟⒠⒭ ⒪⒡ ⒯⒣⒠ ⒱⒤⒠⒲⒠⒭","tHiddenHelp":"🄗⒤⒟⒠ ⒯⒣⒠ ⒯⒤⒯⒧⒠ ⒤⒩ ⒯⒣⒠ ⒣⒠⒜⒟⒠⒭ ⒪⒡ ⒯⒣⒠ ⒱⒤⒠⒲⒠⒭ (⒮⒯⒤⒧⒧ ⒱⒤⒮⒤⒝⒧⒠ ⒤⒩ ⒯⒣⒠ ⒮⒤⒟⒠⒝⒜⒭)","pdfLink":"🄟🄓🄕 ⒧⒤⒩⒦","plVisibleHelp":"🄢⒣⒪⒲ ⒜ ⒧⒤⒩⒦ ⒯⒪ ⒯⒣⒠ ⒭⒜⒲ 🄟🄓🄕 ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒩ ⒯⒣⒠ ⒮⒤⒟⒠⒝⒜⒭","plHiddenHelp":"🄗⒤⒟⒠ ⒯⒣⒠ ⒮⒤⒟⒠⒝⒜⒭ 🄟🄓🄕 ⒧⒤⒩⒦ (⒡⒤⒧⒠ ⒤⒮ ⒮⒯⒤⒧⒧ ⒜⒞⒞⒠⒮⒮⒤⒝⒧⒠ ⒤⒡ ⒯⒣⒠ 🄤🄡🄛 ⒤⒮ ⒦⒩⒪⒲⒩)","fullscreenOption":"🄕⒰⒧⒧⒮⒞⒭⒠⒠⒩ ⒪⒫⒯⒤⒪⒩","fsVisibleHelp":"🄢⒣⒪⒲ ⒜ ⒡⒰⒧⒧⒮⒞⒭⒠⒠⒩ ⒤⒞⒪⒩ ⒤⒩ ⒯⒣⒠ ⒝⒪⒯⒯⒪⒨-⒭⒤⒢⒣⒯ ⒞⒪⒭⒩⒠⒭","fsHiddenHelp":"🄗⒤⒟⒠ ⒯⒣⒠ ⒡⒰⒧⒧⒮⒞⒭⒠⒠⒩ ⒪⒫⒯⒤⒪⒩","textMode":"🄣⒠⒳⒯ ⒨⒪⒟⒠","tmVisibleHelp":"🄢⒣⒪⒲ ⒜⒩ ⒪⒫⒯⒤⒪⒩ ⒯⒪ ⒱⒤⒠⒲ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯’⒮ ⒯⒠⒳⒯ ⒤⒩ ⒯⒣⒠ ⒱⒤⒠⒲ ⒟⒭⒪⒫⒟⒪⒲⒩","tmHiddenHelp":"🄗⒤⒟⒠ ⒯⒠⒳⒯ ⒨⒪⒟⒠","contributedByFormat":"🄒⒪⒩⒯⒭⒤⒝⒰⒯⒠⒟ ⒝⒴ ⒡⒪⒭⒨⒜⒯","cbfUserAndOrg":"🄤⒮⒠⒭ ⒜⒩⒟ ⒪⒭⒢ (⒟⒠⒡⒜⒰⒧⒯)","cbfUserAndOrgHelp":"🄢⒣⒪⒲ ⒜ ⒟⒪⒞⒰⒨⒠⒩⒯’⒮ ⒜⒯⒯⒭⒤⒝⒰⒯⒤⒪⒩ ⒜⒮ ⒯⒣⒠ ⒰⒮⒠⒭ ⒩⒜⒨⒠ ⒡⒪⒧⒧⒪⒲⒠⒟ ⒝⒴ ⒯⒣⒠ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","cbfOrgOnly":"🄞⒭⒢ ⒪⒩⒧⒴","cbfOrgOnlyHelp":"🄐⒯⒯⒭⒤⒝⒰⒯⒠ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒯⒪ ⒥⒰⒮⒯ ⒯⒣⒠ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","share":"🄢⒣⒜⒭⒠ “{title}”","embedDesc":"🄒⒪⒫⒴ ⒯⒣⒠ 🄗🄣🄜🄛 ⒞⒪⒟⒠ ⒯⒪ ⒠⒨⒝⒠⒟ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒯⒣⒤⒩ ⒜⒩ ⒜⒭⒯⒤⒞⒧⒠"},"dialogDocumentInformationDialog":{"editInformation":"🄔⒟⒤⒯ 🄘⒩⒡⒪⒭⒨⒜⒯⒤⒪⒩ ⒡⒪⒭ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}"},"dialogRedactDialog":{"title":"🄒⒪⒩⒡⒤⒭⒨ ⒭⒠⒟⒜⒞⒯⒤⒪⒩⒮","description":"🄐⒭⒠ ⒴⒪⒰ ⒮⒰⒭⒠ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒭⒠⒟⒜⒞⒯ ⒯⒣⒠ ⒞⒰⒭⒭⒠⒩⒯ ⒟⒪⒞⒰⒨⒠⒩⒯? 🄘⒡ ⒴⒪⒰ ⒞⒪⒩⒯⒤⒩⒰⒠, ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒱⒤⒠⒲⒠⒭ ⒲⒤⒧⒧ ⒝⒠ ⒤⒩⒜⒞⒞⒠⒮⒮⒤⒝⒧⒠ ⒯⒠⒨⒫⒪⒭⒜⒭⒤⒧⒴ ⒲⒣⒤⒧⒠ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒭⒠⒫⒭⒪⒞⒠⒮⒮⒠⒮ ⒲⒤⒯⒣ ⒯⒣⒠ ⒭⒠⒟⒜⒞⒯⒤⒪⒩⒮ ⒤⒩ ⒫⒧⒜⒞⒠. 🄣⒣⒤⒮ ⒞⒣⒜⒩⒢⒠ ⒤⒮ ⒤⒭⒭⒠⒱⒠⒭⒮⒤⒝⒧⒠."},"dialogModifyDialog":{"title":"🄐⒫⒫⒧⒴ ⒨⒪⒟⒤⒡⒤⒞⒜⒯⒤⒪⒩⒮","description":"🄐⒭⒠ ⒴⒪⒰ ⒮⒰⒭⒠ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒨⒪⒟⒤⒡⒴ ⒯⒣⒠ ⒞⒰⒭⒭⒠⒩⒯ ⒟⒪⒞⒰⒨⒠⒩⒯? 🄘⒡ ⒴⒪⒰ ⒞⒪⒩⒯⒤⒩⒰⒠, ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒱⒤⒠⒲⒠⒭ ⒲⒤⒧⒧ ⒝⒠ ⒤⒩⒜⒞⒞⒠⒮⒮⒤⒝⒧⒠ ⒯⒠⒨⒫⒪⒭⒜⒭⒤⒧⒴ ⒲⒣⒤⒧⒠ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒭⒠⒫⒭⒪⒞⒠⒮⒮⒠⒮ ⒲⒤⒯⒣ ⒯⒣⒠ ⒨⒪⒟⒤⒡⒤⒞⒜⒯⒤⒪⒩⒮. 🄣⒣⒤⒮ ⒞⒣⒜⒩⒢⒠ ⒤⒮ ⒤⒭⒭⒠⒱⒠⒭⒮⒤⒝⒧⒠.","closeTitle":"🄒⒪⒩⒡⒤⒭⒨ ⒞⒧⒪⒮⒠","closeWarning":"🄨⒪⒰ ⒲⒤⒧⒧ ⒧⒪⒮⒠ ⒜⒧⒧ ⒴⒪⒰⒭ ⒰⒩⒜⒫⒫⒧⒤⒠⒟ ⒨⒪⒟⒤⒡⒤⒞⒜⒯⒤⒪⒩⒮. 🄐⒭⒠ ⒴⒪⒰ ⒮⒰⒭⒠ ⒴⒪⒰ ⒲⒜⒩⒯ ⒯⒪ ⒫⒭⒪⒞⒠⒠⒟?"},"dialogDeleteNoteDialog":{"title":"🄒⒪⒩⒡⒤⒭⒨ ⒟⒠⒧⒠⒯⒠","description":"🄐⒭⒠ ⒴⒪⒰ ⒮⒰⒭⒠ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒟⒠⒧⒠⒯⒠ ⒯⒣⒠ ⒞⒰⒭⒭⒠⒩⒯ ⒩⒪⒯⒠?"},"dialogEditSectionsDialog":{"confirmDelete":"🄒⒪⒩⒡⒤⒭⒨ ⒟⒠⒧⒠⒯⒠","proceedingWillRemove":"🄟⒭⒪⒞⒠⒠⒟⒤⒩⒢ ⒲⒤⒧⒧ ⒭⒠⒨⒪⒱⒠ ⒯⒣⒠ ⒮⒫⒠⒞⒤⒡⒤⒠⒟ ⒮⒠⒞⒯⒤⒪⒩ (⒫. {page} {title}). 🄓⒪ ⒴⒪⒰ ⒲⒤⒮⒣ ⒯⒪ ⒞⒪⒩⒯⒤⒩⒰⒠?","editSections":"🄔⒟⒤⒯ 🄢⒠⒞⒯⒤⒪⒩⒮","manageSections":"🄜⒜⒩⒜⒢⒠ ⒮⒠⒞⒯⒤⒪⒩⒮ ⒯⒪ ⒪⒭⒢⒜⒩⒤⒵⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒯⒣ ⒜ ⒯⒜⒝⒧⒠ ⒪⒡ ⒞⒪⒩⒯⒠⒩⒯⒮.","pageAbbrevNo":"⒫. {n}","pageAbbrev":"⒫.","empty":"🄨⒪⒰ ⒣⒜⒱⒠ ⒩⒪⒯ ⒜⒟⒟⒠⒟ ⒜⒩⒴ ⒮⒠⒞⒯⒤⒪⒩⒮","edit":"🄔⒟⒤⒯ ⒯⒣⒠ ⒮⒠⒧⒠⒞⒯⒠⒟ ⒮⒠⒞⒯⒤⒪⒩","add":"🄐⒟⒟ ⒜ ⒩⒠⒲ ⒮⒠⒞⒯⒤⒪⒩","title":"🄣⒤⒯⒧⒠","missingTitle":"🄟⒧⒠⒜⒮⒠ ⒠⒩⒯⒠⒭ ⒜ ⒯⒤⒯⒧⒠","updateTitle":"🄔⒩⒯⒠⒭ ⒜ ⒩⒠⒲ ⒯⒤⒯⒧⒠ ⒪⒭ ⒫⒜⒢⒠ ⒩⒰⒨⒝⒠⒭","uniquePageNumber":"🄨⒪⒰ ⒨⒰⒮⒯ ⒠⒩⒯⒠⒭ ⒜ ⒰⒩⒤⒬⒰⒠ ⒫⒜⒢⒠ ⒩⒰⒨⒝⒠⒭","invalidPageNumber":"🄟⒜⒢⒠ ⒩⒰⒨⒝⒠⒭ ⒤⒮ ⒤⒩⒱⒜⒧⒤⒟"},"dialogEmbedDialog":{"updatingDocument":"🄤⒫⒟⒜⒯⒤⒩⒢ ⒟⒪⒞⒰⒨⒠⒩⒯...","makingPublic":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒮ ⒞⒰⒭⒭⒠⒩⒯⒧⒴ ⒝⒠⒤⒩⒢ ⒨⒜⒟⒠ ⒫⒰⒝⒧⒤⒞. 🄣⒣⒤⒮ ⒨⒜⒴ ⒯⒜⒦⒠ ⒜ ⒨⒤⒩⒰⒯⒠ ⒪⒭ ⒯⒲⒪.","wouldMakePublic":"🄦⒪⒰⒧⒟ ⒴⒪⒰ ⒧⒤⒦⒠ ⒯⒪ ⒨⒜⒦⒠ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒫⒰⒝⒧⒤⒞ ⒝⒠⒡⒪⒭⒠ ⒮⒣⒜⒭⒤⒩⒢?","notPublic":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒮ ⒩⒪⒯ ⒞⒰⒭⒭⒠⒩⒯⒧⒴ ⒫⒰⒝⒧⒤⒞. 🄘⒡ ⒴⒪⒰ ⒠⒨⒝⒠⒟ ⒪⒭ ⒧⒤⒩⒦ ⒤⒯, ⒪⒩⒧⒴ ⒴⒪⒰ ⒜⒩⒟ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮ ⒲⒤⒧⒧ ⒝⒠ ⒜⒝⒧⒠ ⒯⒪ ⒱⒤⒠⒲ ⒤⒯ ⒰⒩⒯⒤⒧ ⒤⒯ ⒤⒮ ⒨⒜⒟⒠ ⒫⒰⒝⒧⒤⒞. 🄒⒧⒤⒞⒦ ⒝⒠⒧⒪⒲ ⒲⒣⒠⒩ ⒴⒪⒰’⒭⒠ ⒭⒠⒜⒟⒴ ⒯⒪ ⒫⒰⒝⒧⒤⒮⒣ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒯⒪ ⒯⒣⒠ ⒫⒰⒝⒧⒤⒞.","makePublic":"🄜⒜⒦⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒫⒰⒝⒧⒤⒞","leave":"🄛⒠⒜⒱⒠ ⒜⒮ ⒤⒮","selectShare":"🄢⒠⒧⒠⒞⒯ ⒮⒣⒜⒭⒠ ⒪⒫⒯⒤⒪⒩","selectShareHelp":"🄒⒣⒪⒪⒮⒠ ⒲⒣⒠⒯⒣⒠⒭ ⒯⒪ ⒮⒣⒜⒭⒠ ⒯⒣⒠ ⒠⒩⒯⒤⒭⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒪⒭ ⒥⒰⒮⒯ ⒜ ⒫⒜⒢⒠ ⒪⒭ ⒩⒪⒯⒠.","shareDoc":"🄢⒣⒜⒭⒠ ⒠⒩⒯⒤⒭⒠ ⒟⒪⒞⒰⒨⒠⒩⒯","shareDocHelp":"🄛⒤⒩⒦ ⒪⒭ ⒠⒨⒝⒠⒟ ⒯⒣⒠ ⒠⒩⒯⒤⒭⒠ ⒟⒪⒞⒰⒨⒠⒩⒯. (🄣⒣⒤⒮ ⒤⒮ ⒯⒣⒠ ⒨⒪⒮⒯ ⒞⒪⒨⒨⒪⒩⒧⒴ ⒰⒮⒠⒟ ⒮⒣⒜⒭⒠ ⒪⒫⒯⒤⒪⒩.)","sharePage":"🄢⒣⒜⒭⒠ ⒮⒫⒠⒞⒤⒡⒤⒞ ⒫⒜⒢⒠","sharePageHelp":"🄛⒤⒩⒦ ⒪⒭ ⒠⒨⒝⒠⒟ ⒜ ⒮⒤⒩⒢⒧⒠ ⒫⒜⒢⒠ ⒪⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯. 🄤⒮⒠⒡⒰⒧ ⒡⒪⒭ ⒣⒤⒢⒣⒧⒤⒢⒣⒯⒤⒩⒢ ⒜ ⒫⒜⒢⒠ ⒠⒳⒞⒠⒭⒫⒯.","shareNote":"🄢⒣⒜⒭⒠ ⒮⒫⒠⒞⒤⒡⒤⒞ ⒩⒪⒯⒠","shareNoteHelpHasNote":"🄛⒤⒩⒦ ⒪⒭ ⒠⒨⒝⒠⒟ ⒜ ⒩⒪⒯⒠ ⒲⒤⒯⒣⒤⒩ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯. 🄤⒮⒠⒡⒰⒧ ⒡⒪⒭ ⒣⒤⒢⒣⒧⒤⒢⒣⒯⒤⒩⒢ ⒜ ⒭⒠⒢⒤⒪⒩ ⒪⒡ ⒜ ⒫⒜⒢⒠.","shareNoteHelpNoNote":"🄞⒩⒞⒠ ⒴⒪⒰ ⒜⒟⒟ ⒩⒪⒯⒠⒮ ⒯⒪ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯, ⒰⒮⒠ ⒯⒣⒤⒮ ⒡⒠⒜⒯⒰⒭⒠ ⒯⒪ ⒧⒤⒩⒦ ⒪⒭ ⒠⒨⒝⒠⒟ ⒯⒣⒠⒨."},"dialogErrorDialog":{"errorOccurred":"🄐⒩ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟","unexpectedErrorOccurred":"🄐⒩ ⒰⒩⒠⒳⒫⒠⒞⒯⒠⒟ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟","tryAgain":"🄟⒧⒠⒜⒮⒠ ⒯⒭⒴ ⒜⒢⒜⒤⒩ ⒧⒜⒯⒠⒭.","close":"🄒⒧⒪⒮⒠","refresh":"🄡⒠⒡⒭⒠⒮⒣"},"dialogNoteEmbedDialog":{"embedNote":"🄔⒨⒝⒠⒟ ⒜ ⒩⒪⒯⒠ ⒪⒡ “{title}”","embedDesc":"🄒⒪⒫⒴ ⒯⒣⒠ 🄗🄣🄜🄛 ⒞⒪⒟⒠ ⒯⒪ ⒠⒨⒝⒠⒟ ⒯⒣⒤⒮ ⒩⒪⒯⒠ ⒲⒤⒯⒣⒤⒩ ⒜⒩ ⒜⒭⒯⒤⒞⒧⒠ ⒪⒭ ⒫⒪⒮⒯:"},"dialogPageEmbedDialog":{"embedPage":"🄔⒨⒝⒠⒟ ⒜ ⒫⒜⒢⒠ ⒪⒡ “{title}”","embedDesc":"🄒⒪⒫⒴ ⒯⒣⒠ 🄗🄣🄜🄛 ⒞⒪⒟⒠ ⒯⒪ ⒠⒨⒝⒠⒟ ⒯⒣⒤⒮ ⒫⒜⒢⒠ ⒲⒤⒯⒣⒤⒩ ⒜⒩ ⒜⒭⒯⒤⒞⒧⒠ ⒪⒭ ⒫⒪⒮⒯:","selectPage":"🄢⒠⒧⒠⒞⒯ ⒯⒣⒠ ⒫⒜⒢⒠ ⒯⒪ ⒠⒨⒝⒠⒟:","page":"🄟⒜⒢⒠ {n} (⒞⒰⒭⒭⒠⒩⒯⒧⒴ ⒱⒤⒮⒤⒝⒧⒠)","otherPage":"🄞⒯⒣⒠⒭ ⒫⒜⒢⒠","enterPageNumber":"🄔⒩⒯⒠⒭ ⒯⒣⒠ ⒫⒜⒢⒠ ⒩⒰⒨⒝⒠⒭ ⒯⒪ ⒠⒨⒝⒠⒟:"},"dialogProjectAccessDialog":{"changeAccessFor":"🄒⒣⒜⒩⒢⒠ ⒜⒞⒞⒠⒮⒮ ⒡⒪⒭ {name}","selectAccess":"🄢⒠⒧⒠⒞⒯ ⒜⒩ ⒜⒞⒞⒠⒮⒮ ⒧⒠⒱⒠⒧ ⒝⒠⒧⒪⒲ ⒡⒪⒭ {name} ⒤⒩ {title}","adminAccess":"🄐⒟⒨⒤⒩ 🄐⒞⒞⒠⒮⒮","editAccess":"🄔⒟⒤⒯ 🄐⒞⒞⒠⒮⒮","viewAccess":"🄥⒤⒠⒲ 🄐⒞⒞⒠⒮⒮","adminHelp":"🄣⒣⒤⒮ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭ ⒞⒜⒩ ⒠⒟⒤⒯ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯ ⒜⒩⒟ ⒤⒯⒮ ⒟⒪⒞⒰⒨⒠⒩⒯⒮. 🄣⒣⒠ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭ ⒞⒜⒩ ⒤⒩⒱⒤⒯⒠ ⒰⒮⒠⒭⒮, ⒟⒠⒧⒠⒯⒠ ⒰⒮⒠⒭⒮, ⒜⒩⒟ ⒭⒠⒨⒪⒱⒠ ⒯⒣⒠ ⒫⒭⒪⒥⒠⒞⒯.","editHelp":"🄣⒣⒤⒮ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭ ⒞⒜⒩ ⒠⒟⒤⒯ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒤⒩ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯ ⒝⒰⒯ ⒞⒜⒩⒩⒪⒯ ⒠⒟⒤⒯ ⒯⒣⒠ ⒫⒭⒪⒥⒠⒞⒯ ⒤⒯⒮⒠⒧⒡.","viewHelp":"🄣⒣⒤⒮ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭ ⒞⒜⒩ ⒱⒤⒠⒲ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒤⒩ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯ ⒝⒰⒯ ⒞⒜⒩⒩⒪⒯ ⒠⒟⒤⒯ ⒯⒣⒠⒨ ⒪⒭ ⒯⒣⒠ ⒫⒭⒪⒥⒠⒞⒯.","invalidAccess":"🄐⒞⒞⒠⒮⒮ ⒤⒮ ⒜⒧⒭⒠⒜⒟⒴ ⒮⒠⒯ ⒯⒪ {access}. 🄢⒠⒧⒠⒞⒯ ⒜ ⒟⒤⒡⒡⒠⒭⒠⒩⒯ ⒜⒞⒞⒠⒮⒮ ⒧⒠⒱⒠⒧.","changeAccess":"🄒⒣⒜⒩⒢⒠ ⒜⒞⒞⒠⒮⒮"},"dialogOwnerDialog":{"selectUser":"🄤⒮⒠⒭ ⒨⒰⒮⒯ ⒝⒠ ⒮⒠⒧⒠⒞⒯⒠⒟","selectOrg":"🄞⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒨⒰⒮⒯ ⒝⒠ ⒮⒠⒧⒠⒞⒯⒠⒟","changeOwner":"🄒⒣⒜⒩⒢⒠ ⒪⒲⒩⒠⒭ ⒡⒪⒭ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","accessWarning":"🄦⒜⒭⒩⒤⒩⒢: 🄨⒪⒰ ⒨⒜⒴ ⒧⒪⒮⒯ ⒜⒞⒞⒠⒮⒮ ⒯⒪ ⒯⒣⒠ ⒮⒫⒠⒞⒤⒡⒤⒠⒟ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}} ⒜⒮ ⒜ ⒭⒠⒮⒰⒧⒯ ⒪⒡ ⒞⒣⒜⒩⒢⒤⒩⒢ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒪⒲⒩⒠⒭","user":"🄤⒮⒠⒭:","filterUsers":"🄣⒴⒫⒠ ⒯⒪ ⒡⒤⒧⒯⒠⒭ ⒰⒮⒠⒭⒮...","filterOrgs":"🄣⒴⒫⒠ ⒯⒪ ⒡⒤⒧⒯⒠⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩⒮..."},"dialogProjectDialog":{"confirmDelete":"🄒⒪⒩⒡⒤⒭⒨ ⒟⒠⒧⒠⒯⒠","deleteProject":"🄐⒭⒠ ⒴⒪⒰ ⒮⒰⒭⒠ ⒴⒪⒰ ⒲⒜⒩⒯ ⒯⒪ ⒟⒠⒧⒠⒯⒠ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯ ({project})?","editProject":"🄔⒟⒤⒯ 🄟⒭⒪⒥⒠⒞⒯","createProject":"🄒⒭⒠⒜⒯⒠ 🄝⒠⒲ 🄟⒭⒪⒥⒠⒞⒯","title":"🄣⒤⒯⒧⒠...","projectDesc":"🄟⒭⒪⒥⒠⒞⒯ 🄓⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩ (⒪⒫⒯⒤⒪⒩⒜⒧)","manageCollabs":"🄜⒜⒩⒜⒢⒠ 🄒⒪⒧⒧⒜⒝⒪⒭⒜⒯⒪⒭⒮","share":"🄢⒣⒜⒭⒠ / 🄔⒨⒝⒠⒟ 🄟⒭⒪⒥⒠⒞⒯","enterTitle":"🄔⒩⒯⒠⒭ ⒜ ⒯⒤⒯⒧⒠","changeTitle":"🄒⒣⒜⒩⒢⒠ ⒯⒣⒠ ⒯⒤⒯⒧⒠ ⒪⒭ ⒟⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩"},"dialogProjectEmbedDialog":{"share":"🄢⒣⒜⒭⒠ “{title}”","embedDesc":"🄒⒪⒫⒴ ⒯⒣⒠ 🄗🄣🄜🄛 ⒞⒪⒟⒠ ⒯⒪ ⒠⒨⒝⒠⒟ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒯⒣⒤⒩ ⒜⒩ ⒜⒭⒯⒤⒞⒧⒠ ⒪⒭ ⒫⒪⒮⒯:","invalid":"🄘⒩⒱⒜⒧⒤⒟ ⒫⒭⒪⒥⒠⒞⒯","cannotEmbed":"🄒⒜⒩⒩⒪⒯ ⒠⒨⒝⒠⒟ ⒯⒣⒤⒮ ⒫⒭⒪⒥⒠⒞⒯, ⒜⒮ ⒤⒯ ⒟⒪⒠⒮ ⒩⒪⒯ ⒜⒫⒫⒠⒜⒭ ⒯⒪ ⒠⒳⒤⒮⒯."},"htmlEditor":{"preview":"🄟⒭⒠⒱⒤⒠⒲:"},"image":{"error":"🄐⒩ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟. 🄣⒭⒴ ⒭⒠⒡⒭⒠⒮⒣⒤⒩⒢ ⒯⒣⒠ ⒫⒜⒢⒠"},"omniselect":{"filter":"🄣⒴⒫⒠ ⒯⒪ ⒡⒤⒧⒯⒠⒭ ⒧⒜⒩⒢⒰⒜⒢⒠","noResults":"🄝⒪ ⒭⒠⒮⒰⒧⒯⒮. 🄒⒧⒤⒞⒦ ⒯⒪ ⒞⒧⒠⒜⒭ ⒡⒤⒧⒯⒠⒭."},"shareOptions":{"errorText":"🄐⒩ ⒰⒩⒠⒳⒫⒠⒞⒯⒠⒟ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟. 🄟⒧⒠⒜⒮⒠ ⒯⒭⒴ ⒜⒢⒜⒤⒩ ⒧⒜⒯⒠⒭.","copyHtml":"🄒⒪⒫⒴ 🄗🄣🄜🄛 ⒞⒪⒟⒠","addShortcode":"🄐⒟⒟ ⒯⒣⒤⒮ ⒮⒣⒪⒭⒯⒞⒪⒟⒠ ⒯⒪ ⒴⒪⒰⒭ 🄦⒪⒭⒟🄟⒭⒠⒮⒮ ⒞⒪⒩⒯⒠⒩⒯ —","pluginRequired":"⒫⒧⒰⒢⒤⒩ ⒭⒠⒬⒰⒤⒭⒠⒟","copyShortcode":"🄒⒪⒫⒴ ⒮⒣⒪⒭⒯⒞⒪⒟⒠","copyUrl":"🄒⒪⒫⒴ 🄤🄡🄛"},"specialMessage":{"contactUs":"🄒⒪⒩⒯⒜⒞⒯ ⒰⒮ ⒲⒤⒯⒣ ⒝⒰⒢ ⒭⒠⒫⒪⒭⒯⒮, ⒬⒰⒠⒮⒯⒤⒪⒩⒮, ⒜⒩⒟ ⒮⒰⒢⒢⒠⒮⒯⒤⒪⒩⒮."},"uploadOptions":{"documentLang":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒧⒜⒩⒢⒰⒜⒢⒠:","forceOcr":"🄕⒪⒭⒞⒠ 🄞🄒🄡:"},"actionBar":{"selectDocs":"🄢⒠⒧⒠⒞⒯ ⒮⒪⒨⒠ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒯⒪ ⒭⒠⒱⒠⒜⒧ ⒠⒟⒤⒯ ⒜⒞⒯⒤⒪⒩⒮","noPerms":"🄨⒪⒰ ⒟⒪ ⒩⒪⒯ ⒣⒜⒱⒠ ⒫⒠⒭⒨⒤⒮⒮⒤⒪⒩ ⒯⒪ ⒠⒟⒤⒯ ⒜⒧⒧ ⒪⒡ ⒯⒣⒠ ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮","editMenu":"🄔⒟⒤⒯","projectsMenu":"🄟⒭⒪⒥⒠⒞⒯⒮"},"authSection":{"help":"🄗⒠⒧⒫","language":"🄛⒜⒩⒢⒰⒜⒢⒠","tips":"🄣⒤⒫⒮ ⒜⒩⒟ 🄣⒭⒤⒞⒦⒮","searchDocs":"🄢⒠⒜⒭⒞⒣ 🄓⒪⒞⒰⒨⒠⒩⒯⒜⒯⒤⒪⒩","apiDocs":"🄐🄟🄘 🄓⒪⒞⒰⒨⒠⒩⒯⒜⒯⒤⒪⒩","emailUs":"🄔⒨⒜⒤⒧ 🄤⒮","acctSettings":"🄐⒞⒞⒪⒰⒩⒯ 🄢⒠⒯⒯⒤⒩⒢⒮","signOut":"🄢⒤⒢⒩ ⒪⒰⒯","changeOrg":"🄒⒣⒜⒩⒢⒠ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","personalAcct":"🄟⒠⒭⒮⒪⒩⒜⒧ 🄐⒞⒞⒪⒰⒩⒯","signIn":"🄢⒤⒢⒩ ⒤⒩"},"documents":{"yourDocuments":"🄨⒪⒰⒭ 🄓⒪⒞⒰⒨⒠⒩⒯⒮","searchResults":"🄢⒠⒜⒭⒞⒣ 🄡⒠⒮⒰⒧⒯⒮","accessDocuments":"🄨⒪⒰⒭ {access}🄓⒪⒞⒰⒨⒠⒩⒯⒮","nameDocuments":"{name}\'⒮ {access}🄓⒪⒞⒰⒨⒠⒩⒯⒮","allDocuments":"🄐⒧⒧ {access}🄓⒪⒞⒰⒨⒠⒩⒯⒮","mustBeVerified":"🄨⒪⒰ ⒨⒰⒮⒯ ⒝⒠ ⒜ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒥⒪⒰⒭⒩⒜⒧⒤⒮⒯ ⒯⒪ ⒰⒫⒧⒪⒜⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮","upload":"🄤⒫⒧⒪⒜⒟","dropFile":"🄓⒭⒪⒫ ⒡⒤⒧⒠ ⒯⒪ ⒰⒫⒧⒪⒜⒟"},"document":{"open":"🄞⒫⒠⒩","updating":"🄤⒫⒟⒜⒯⒤⒩⒢ ⒟⒪⒞⒰⒨⒠⒩⒯...","processing":"🄟⒭⒪⒞⒠⒮⒮⒤⒩⒢","processingError":"🄐⒩ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟ ⒯⒭⒴⒤⒩⒢ ⒯⒪ ⒫⒭⒪⒞⒠⒮⒮ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯","remove":"🄡⒠⒨⒪⒱⒠","improper":"🄨⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒜⒮ ⒰⒫⒧⒪⒜⒟⒠⒟ ⒤⒨⒫⒭⒪⒫⒠⒭⒧⒴","project":"🄟⒭⒪⒥⒠⒞⒯","totalMatchingPages":"{n} ⒪⒡ {m} ⒫⒜⒢⒠⒮ ⒨⒜⒯⒞⒣⒤⒩⒢ ⒯⒣⒠ ⒬⒰⒠⒭⒴","showAll":"🄢⒣⒪⒲ ⒜⒧⒧","matchingPages":"{n} ⒫⒜⒢⒠⒮ ⒨⒜⒯⒞⒣⒤⒩⒢ ⒯⒣⒠ ⒬⒰⒠⒭⒴","pageAbbrev":"⒫.","pageCount":"{n, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}}","source":"🄢⒪⒰⒭⒞⒠"},"documentThumbnail":{"pages":"⒫⒜⒢⒠⒮","loading":"🄛⒪⒜⒟⒤⒩⒢ ⒫⒭⒪⒢⒭⒠⒮⒮ ⒤⒩⒡⒪⒭⒨⒜⒯⒤⒪⒩..."},"mainContainer":{"error":"🄔⒭⒭⒪⒭","errorMsg":"🄦⒠ ⒞⒪⒰⒧⒟ ⒩⒪⒯ ⒭⒠⒜⒞⒣ ⒯⒣⒠ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒮⒠⒭⒱⒠⒭. 🄟⒧⒠⒜⒮⒠ ⒯⒭⒴ ⒭⒠⒡⒭⒠⒮⒣⒤⒩⒢ ⒯⒣⒠ ⒫⒜⒢⒠ ⒧⒜⒯⒠⒭.","refresh":"🄡⒠⒡⒭⒠⒮⒣"},"editMenu":{"editDocInfo":"🄔⒟⒤⒯ 🄓⒪⒞⒰⒨⒠⒩⒯ 🄘⒩⒡⒪⒭⒨⒜⒯⒤⒪⒩","changeAccess":"🄒⒣⒜⒩⒢⒠ 🄐⒞⒞⒠⒮⒮","editDocData":"🄔⒟⒤⒯ 🄓⒪⒞⒰⒨⒠⒩⒯ 🄓⒜⒯⒜","cancelProcessing":"🄒⒜⒩⒞⒠⒧ 🄟⒭⒪⒞⒠⒮⒮⒤⒩⒢","forceReprocess":"🄕⒪⒭⒞⒠ 🄡⒠⒫⒭⒪⒞⒠⒮⒮","entities":"🄔⒩⒯⒤⒯⒤⒠⒮ 🄑🄔🄣🄐","changeOwner":"🄒⒣⒜⒩⒢⒠ 🄞⒲⒩⒠⒭","delete":"🄓⒠⒧⒠⒯⒠","diagnosticInfo":"🄓⒤⒜⒢⒩⒪⒮⒯⒤⒞ 🄘⒩⒡⒪"},"metaFields":{"defaultFieldInvalidText":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒜⒧⒭⒠⒜⒟⒴ ⒣⒜⒮ ⒯⒣⒤⒮ {fieldName}","titleFieldTitle":"🄣⒤⒯⒧⒠","titleFieldName":"⒩⒜⒨⒠","titleFieldNameUppercase":"🄝⒜⒨⒠","titleFieldHeader":"🄡⒠⒩⒜⒨⒠ {n, plural, one {# ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","titleFieldDescription":"🄔⒩⒯⒠⒭ ⒜ ⒩⒜⒨⒠ ⒝⒠⒧⒪⒲ ⒡⒪⒭ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","titleFieldButton":"🄡⒠⒩⒜⒨⒠","titleFieldInvalidSameName":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒜⒧⒭⒠⒜⒟⒴ ⒣⒜⒮ ⒯⒣⒤⒮ ⒩⒜⒨⒠","titleFieldInvalidEmptyName":"🄔⒩⒯⒠⒭ ⒜ ⒱⒜⒧⒤⒟ ⒩⒜⒨⒠","sourceFieldTitle":"🄢⒪⒰⒭⒞⒠","sourceFieldName":"⒮⒪⒰⒭⒞⒠","sourceFieldNameUppercase":"🄢⒪⒰⒭⒞⒠","sourceFieldHeader":"🄔⒟⒤⒯ ⒮⒪⒰⒭⒞⒠ ⒡⒪⒭ {n, plural, one {# ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","sourceFieldDescription":"🄔⒩⒯⒠⒭ ⒜ ⒮⒪⒰⒭⒞⒠ ⒝⒠⒧⒪⒲ ⒡⒪⒭ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","sourceFieldButton":"🄔⒟⒤⒯","descriptionFieldTitle":"🄓⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩","descriptionFieldName":"⒟⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩","descriptionFieldNameUppercase":"🄓⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩","descriptionFieldHeader":"🄔⒟⒤⒯ ⒟⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩ ⒡⒪⒭ {n, plural, one {# ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","descriptionFieldDescription":"🄔⒩⒯⒠⒭ ⒯⒣⒠ ⒟⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩ ⒝⒠⒧⒪⒲ ⒡⒪⒭ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","descriptionFieldButton":"🄔⒟⒤⒯","relatedArticleFieldTitle":"🄡⒠⒧⒜⒯⒠⒟ 🄐⒭⒯⒤⒞⒧⒠ 🄤🄡🄛","relatedArticleFieldName":"⒭⒠⒧⒜⒯⒠⒟ ⒜⒭⒯⒤⒞⒧⒠ 🄤🄡🄛","relatedArticleFieldNameUppercase":"🄡⒠⒧⒜⒯⒠⒟ 🄐⒭⒯⒤⒞⒧⒠ 🄤🄡🄛","relatedArticleFieldHeader":"🄔⒟⒤⒯ ⒯⒣⒠ ⒭⒠⒧⒜⒯⒠⒟ ⒜⒭⒯⒤⒞⒧⒠ 🄤🄡🄛 ⒡⒪⒭ {n, plural, one {# ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","relatedArticleFieldDescription":"🄔⒩⒯⒠⒭ ⒯⒣⒠ ⒭⒠⒧⒜⒯⒠⒟ ⒜⒭⒯⒤⒞⒧⒠ 🄤🄡🄛 ⒝⒠⒧⒪⒲ ⒡⒪⒭ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","relatedArticleFieldButton":"🄔⒟⒤⒯","publishedUrlFieldTitle":"🄟⒰⒝⒧⒤⒮⒣⒠⒟ 🄤🄡🄛","publishedUrlFieldName":"⒫⒰⒝⒧⒤⒮⒣⒠⒟ 🄤🄡🄛","publishedUrlFieldNameUppercase":"🄟⒰⒝⒧⒤⒮⒣⒠⒟ 🄤🄡🄛","publishedUrlFieldHeader":"🄔⒟⒤⒯ ⒯⒣⒠ ⒫⒰⒝⒧⒤⒮⒣⒠⒟ 🄤🄡🄛 ⒡⒪⒭ {n, plural, one {# ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","publishedUrlFieldDescription":"🄔⒩⒯⒠⒭ ⒯⒣⒠ ⒫⒰⒝⒧⒤⒮⒣⒠⒟ 🄤🄡🄛 ⒝⒠⒧⒪⒲ ⒡⒪⒭ ⒯⒣⒠ {n, plural, one {⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒮⒠⒧⒠⒞⒯⒠⒟ ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}","publishedUrlFieldButton":"🄔⒟⒤⒯"},"projectsMenu":{"newProject":"+ 🄝⒠⒲ 🄟⒭⒪⒥⒠⒞⒯","projMembership":"🄟⒭⒪⒥⒠⒞⒯ 🄜⒠⒨⒝⒠⒭⒮⒣⒤⒫","selectDocs":"🄢⒠⒧⒠⒞⒯ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒯⒪ ⒫⒧⒜⒞⒠ ⒯⒣⒠⒨ ⒤⒩ ⒫⒭⒪⒥⒠⒞⒯⒮","createProj":"🄒⒭⒠⒜⒯⒠ ⒜ ⒫⒭⒪⒥⒠⒞⒯ ⒯⒪ ⒪⒭⒢⒜⒩⒤⒵⒠ ⒜⒩⒟ ⒮⒣⒜⒭⒠ ⒟⒪⒞⒰⒨⒠⒩⒯⒮"},"noDocuments":{"noSearchResults":"🄝⒪ ⒮⒠⒜⒭⒞⒣ ⒭⒠⒮⒰⒧⒯⒮","queryNoResults":"🄨⒪⒰⒭ ⒮⒠⒜⒭⒞⒣ ⒬⒰⒠⒭⒴ ⒭⒠⒯⒰⒭⒩⒠⒟ ⒩⒪ ⒭⒠⒮⒰⒧⒯⒮. 🄣⒭⒴ ⒜⒢⒜⒤⒩ ⒲⒤⒯⒣ ⒜ ⒝⒭⒪⒜⒟⒠⒭ ⒮⒠⒜⒭⒞⒣ ⒬⒰⒠⒭⒴.","welcome":"🄦⒠⒧⒞⒪⒨⒠ ⒯⒪ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟!","verify1":"🄝⒪⒯⒠ ⒯⒣⒜⒯ ⒞⒰⒭⒭⒠⒩⒯⒧⒴ ⒴⒪⒰⒭ ⒜⒞⒞⒪⒰⒩⒯ ⒤⒮ ⒩⒪⒯ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒯⒪ ⒰⒫⒧⒪⒜⒟. 🄨⒪⒰ ⒞⒜⒩ ⒮⒠⒜⒭⒞⒣ ⒯⒣⒭⒪⒰⒢⒣ ⒯⒣⒠ ⒫⒰⒝⒧⒤⒞ ⒭⒠⒫⒪⒮⒤⒯⒪⒭⒴, ⒪⒭⒢⒜⒩⒤⒵⒠ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒴⒪⒰\'⒭⒠ ⒤⒩⒯⒠⒭⒠⒮⒯⒠⒟ ⒤⒩ ⒤⒩⒯⒪ ⒫⒭⒪⒥⒠⒞⒯⒮, ⒧⒠⒜⒱⒠ ⒫⒭⒤⒱⒜⒯⒠ ⒩⒪⒯⒠⒮, ⒜⒩⒟ ⒞⒪⒧⒧⒜⒝⒪⒭⒜⒯⒠ ⒪⒩ ⒠⒟⒤⒯⒤⒩⒢ ⒜⒩⒟ ⒜⒩⒩⒪⒯⒜⒯⒤⒩⒢ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒪⒯⒣⒠⒭ ⒰⒮⒠⒭⒮ ⒤⒩⒱⒤⒯⒠ ⒴⒪⒰ ⒯⒪.","verify2":"🄘⒡ ⒴⒪⒰’⒟ ⒧⒤⒦⒠ ⒯⒪ ⒰⒫⒧⒪⒜⒟ ⒪⒭ ⒫⒰⒝⒧⒤⒮⒣ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒜⒩⒟ ⒴⒪⒰\'⒭⒠ ⒜ ⒲⒪⒭⒦⒤⒩⒢ ⒥⒪⒰⒭⒩⒜⒧⒤⒮⒯ ⒪⒭ ⒪⒯⒣⒠⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒤⒩⒯⒠⒭⒠⒮⒯⒠⒟ ⒤⒩ ⒫⒰⒝⒧⒤⒮⒣⒤⒩⒢ ⒫⒭⒤⒨⒜⒭⒴ ⒮⒪⒰⒭⒞⒠ ⒨⒜⒯⒠⒭⒤⒜⒧⒮ ⒤⒩ ⒯⒣⒠ ⒫⒰⒝⒧⒤⒞ ⒤⒩⒯⒠⒭⒠⒮⒯, ⒴⒪⒰\'⒧⒧ ⒩⒠⒠⒟ ⒯⒪ ⒣⒜⒱⒠ ⒴⒪⒰⒭ ⒜⒞⒞⒪⒰⒩⒯ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒪⒭ ⒜⒟⒟⒠⒟ ⒯⒪ ⒜ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩. 🄣⒣⒤⒮ ⒤⒮ ⒜ ⒮⒤⒨⒫⒧⒠ ⒫⒭⒪⒞⒠⒮⒮:","verify3":"🄕⒤⒭⒮⒯, ⒮⒠⒠ ⒤⒡ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒜⒧⒭⒠⒜⒟⒴ ⒠⒳⒤⒮⒯⒮ ⒜⒩⒟, ⒤⒡ ⒴⒪⒰ ⒡⒤⒩⒟ ⒤⒯, ⒞⒧⒤⒞⒦ \\"🄡⒠⒬⒰⒠⒮⒯ ⒯⒪ 🄙⒪⒤⒩\\" ⒪⒩ ⒤⒯⒮ ⒫⒜⒢⒠.","verify4":"🄘⒡ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩ ⒣⒜⒮ ⒩⒪⒯ ⒝⒠⒠⒩ ⒱⒠⒭⒤⒡⒤⒠⒟ ⒴⒠⒯, ⒪⒭ ⒤⒡ ⒴⒪⒰\'⒭⒠ ⒜ ⒡⒭⒠⒠⒧⒜⒩⒞⒠⒭, ⒭⒠⒬⒰⒠⒮⒯ ⒱⒠⒭⒤⒡⒤⒞⒜⒯⒤⒪⒩ ⒣⒠⒭⒠. 🄡⒠⒬⒰⒠⒮⒯⒮ ⒰⒮⒰⒜⒧⒧⒴ ⒯⒜⒦⒠ ⒯⒲⒪ ⒝⒰⒮⒤⒩⒠⒮⒮ ⒟⒜⒴⒮ ⒯⒪ ⒫⒭⒪⒞⒠⒮⒮.","uploadFirst":"🄤⒫⒧⒪⒜⒟ ⒴⒪⒰⒭ ⒡⒤⒭⒮⒯ ⒟⒪⒞⒰⒨⒠⒩⒯","upload1":"🄤⒫⒧⒪⒜⒟ ⒜ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒡⒤⒧⒠ ⒯⒪ ⒢⒠⒯ ⒮⒯⒜⒭⒯⒠⒟ ⒰⒮⒤⒩⒢ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟. 🄨⒪⒰ ⒞⒜⒩ ⒟⒭⒜⒢ ⒯⒣⒠ ⒡⒤⒧⒠ ⒤⒩⒯⒪ ⒯⒣⒤⒮ ⒲⒤⒩⒟⒪⒲, ⒪⒭ ⒞⒧⒤⒞⒦ ⒪⒩ ⒯⒣⒠ ⒝⒧⒰⒠ “🄤⒫⒧⒪⒜⒟” ⒝⒰⒯⒯⒪⒩ ⒜⒝⒪⒱⒠.","upload2":"🄞⒩⒞⒠ ⒴⒪⒰ ⒰⒫⒧⒪⒜⒟ ⒜ ⒡⒤⒧⒠, 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒲⒤⒧⒧ ⒫⒭⒪⒞⒠⒮⒮ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒜⒩⒟ ⒠⒳⒯⒭⒜⒞⒯ ⒤⒯⒮ ⒞⒪⒩⒯⒠⒩⒯⒮. 🄘⒯ ⒨⒜⒴ ⒯⒜⒦⒠ ⒜ ⒡⒠⒲ ⒨⒤⒩⒰⒯⒠⒮ ⒡⒪⒭ ⒯⒣⒤⒮ ⒯⒪ ⒞⒪⒨⒫⒧⒠⒯⒠, ⒝⒰⒯ ⒪⒩⒞⒠ ⒤⒯’⒮ ⒟⒪⒩⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒝⒠ ⒪⒫⒯⒤⒨⒤⒵⒠⒟ ⒡⒪⒭ ⒜⒩⒜⒧⒴⒮⒤⒮ ⒜⒩⒟ ⒮⒣⒜⒭⒤⒩⒢ ⒪⒩ ⒯⒣⒠ ⒲⒠⒝."},"paginator":{"of":"⒪⒡","document":"{n, plural, one {🄓⒪⒞⒰⒨⒠⒩⒯} other {🄓⒪⒞⒰⒨⒠⒩⒯⒮}}"},"processingBar":{"doneProcessing":"🄓⒪⒩⒠ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢","processingDocuments":"🄟⒭⒪⒞⒠⒮⒮⒤⒩⒢ {n, plural, one {⒟⒪⒞⒰⒨⒠⒩⒯} other {# ⒟⒪⒞⒰⒨⒠⒩⒯⒮}}"},"searchBar":{"tips":"🄢⒠⒜⒭⒞⒣ ⒯⒤⒫⒮: ⒜⒟⒟ ⒡⒤⒧⒯⒠⒭⒮ ⒝⒴ ⒯⒴⒫⒤⒩⒢ ⒰⒮⒠⒭:, ⒫⒭⒪⒥⒠⒞⒯:, ⒪⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩:, ⒠⒯⒞. 🄤⒮⒠ ⒮⒪⒭⒯: ⒯⒪ ⒪⒭⒟⒠⒭ ⒭⒠⒮⒰⒧⒯⒮.","learnMore":"🄛⒠⒜⒭⒩ ⒨⒪⒭⒠","search":"🄢⒠⒜⒭⒞⒣"},"searchLink":{"search":"🄢⒠⒜⒭⒞⒣ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒞⒪⒧⒧⒠⒞⒯⒤⒪⒩"},"projects":{"header":"🄟⒭⒪⒥⒠⒞⒯⒮","allDocuments":"🄐⒧⒧ 🄓⒪⒞⒰⒨⒠⒩⒯⒮","yourDocuments":"🄨⒪⒰⒭ 🄓⒪⒞⒰⒨⒠⒩⒯⒮","yourPubDocuments":"🄨⒪⒰⒭ 🄟⒰⒝⒧⒤⒞ 🄓⒪⒞⒰⒨⒠⒩⒯⒮","orgDocuments":"{name}’⒮ 🄓⒪⒞⒰⒨⒠⒩⒯⒮","newProject":"+ 🄝⒠⒲ 🄟⒭⒪⒥⒠⒞⒯","createProject":"🄒⒭⒠⒜⒯⒠ ⒴⒪⒰⒭ ⒡⒤⒭⒮⒯ ⒫⒭⒪⒥⒠⒞⒯ ⒝⒴ ⒞⒧⒤⒞⒦⒤⒩⒢ “🄝⒠⒲ 🄟⒭⒪⒥⒠⒞⒯” ⒜⒝⒪⒱⒠."},"uploadDialog":{"docUpload":"🄓⒪⒞⒰⒨⒠⒩⒯ 🄤⒫⒧⒪⒜⒟","docUploadProj":"🄓⒪⒞⒰⒨⒠⒩⒯ 🄤⒫⒧⒪⒜⒟ ⒯⒪ {title}","beginUpload":"🄑⒠⒢⒤⒩ ⒰⒫⒧⒪⒜⒟","pdfSizeWarning":"🄨⒪⒰ ⒞⒜⒩ ⒪⒩⒧⒴ ⒰⒫⒧⒪⒜⒟ 🄟🄓🄕 ⒡⒤⒧⒠⒮ ⒰⒩⒟⒠⒭ {size}.","nonPdfSizeWarning":"🄨⒪⒰ ⒞⒜⒩ ⒪⒩⒧⒴ ⒰⒫⒧⒪⒜⒟ ⒩⒪⒩-🄟🄓🄕 ⒟⒪⒞⒰⒨⒠⒩⒯ ⒡⒤⒧⒠⒮ ⒰⒩⒟⒠⒭ {size}.","fileReady":"{n, plural, one {⒡⒤⒧⒠} other {⒡⒤⒧⒠⒮}} ⒭⒠⒜⒟⒴ ⒯⒪ ⒰⒫⒧⒪⒜⒟","fileLimitWarning":"🄨⒪⒰ ⒞⒜⒩ ⒪⒩⒧⒴ ⒰⒫⒧⒪⒜⒟ {limit} ⒡⒤⒧⒠⒮ ⒜⒯ ⒪⒩⒞⒠.","moreOptions":"🄜⒪⒭⒠ ⒪⒫⒯⒤⒪⒩⒮","selectFiles":"+ 🄢⒠⒧⒠⒞⒯ ⒡⒤⒧⒠⒮","dragDrop":"🄓⒭⒜⒢ ⒜⒩⒟ ⒟⒭⒪⒫ ⒡⒤⒧⒠⒮ ⒣⒠⒭⒠","publicMsg":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒝⒠ ⒫⒰⒝⒧⒤⒞⒧⒴ ⒱⒤⒮⒤⒝⒧⒠.","collabMsg":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒝⒠ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒴⒪⒰⒭ ⒪⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩.","privateMsg":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒝⒠ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒴⒪⒰ ⒜⒧⒪⒩⒠.","collabName":"🄞⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","submitting":"🄐⒧⒨⒪⒮⒯ ⒟⒪⒩⒠... ⒮⒰⒝⒨⒤⒯⒯⒤⒩⒢ ⒰⒫⒧⒪⒜⒟⒠⒟ ⒡⒤⒧⒠⒮ ⒡⒪⒭ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢ ({percent})","uploading":"🄤⒫⒧⒪⒜⒟⒤⒩⒢ ... ({uploaded}/{length})","gettingInfo":"🄖⒠⒯⒯⒤⒩⒢ ⒰⒫⒧⒪⒜⒟ ⒤⒩⒡⒪⒭⒨⒜⒯⒤⒪⒩ ({percent})","pleaseLeaveOpen":"🄟⒧⒠⒜⒮⒠ ⒧⒠⒜⒱⒠ ⒯⒣⒤⒮ ⒫⒜⒢⒠ ⒪⒫⒠⒩ ⒲⒣⒤⒧⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯⒮ ⒰⒫⒧⒪⒜⒟. 🄣⒣⒤⒮ ⒟⒤⒜⒧⒪⒢ ⒲⒤⒧⒧ ⒜⒰⒯⒪⒨⒜⒯⒤⒞⒜⒧⒧⒴ ⒞⒧⒪⒮⒠ ⒲⒣⒠⒩ ⒯⒣⒠⒴ ⒣⒜⒱⒠ ⒡⒤⒩⒤⒮⒣⒠⒟ ⒰⒫⒧⒪⒜⒟⒤⒩⒢.","errorHeading":"🄔⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟ ⒲⒣⒤⒧⒠ ⒰⒫⒧⒪⒜⒟⒤⒩⒢","errorMsg":"🄦⒠ ⒡⒜⒤⒧⒠⒟ ⒯⒪ {errorMessage}. 🄟⒧⒠⒜⒮⒠ ⒯⒭⒴ ⒜⒢⒜⒤⒩ ⒧⒜⒯⒠⒭.","editDocInfo":"🄔⒟⒤⒯ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒩⒡⒪⒭⒨⒜⒯⒤⒪⒩:","untitled":"🄤⒩⒯⒤⒯⒧⒠⒟","uploadFiles":"🄤⒫⒧⒪⒜⒟ ⒜⒟⒟⒤⒯⒤⒪⒩⒜⒧ ⒡⒤⒧⒠⒮","selectMore":"+ 🄢⒠⒧⒠⒞⒯ ⒨⒪⒭⒠ ⒡⒤⒧⒠⒮","dragDropMore":"🄓⒭⒜⒢ ⒜⒩⒟ ⒟⒭⒪⒫ ⒜⒟⒟⒤⒯⒤⒪⒩⒜⒧ ⒡⒤⒧⒠⒮ ⒣⒠⒭⒠"},"embedNote":{"viewTheNote":"🄥⒤⒠⒲ ⒯⒣⒠ ⒩⒪⒯⒠ ‘{title}‘ ⒤⒩ ⒤⒯⒮ ⒪⒭⒤⒢⒤⒩⒜⒧ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒞⒪⒩⒯⒠⒳⒯ ⒪⒩ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒤⒩ ⒜ ⒩⒠⒲ ⒲⒤⒩⒟⒪⒲ ⒪⒭ ⒯⒜⒝","viewDoc":"🄥⒤⒠⒲ ⒯⒣⒠ ⒠⒩⒯⒤⒭⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒯⒣ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟"},"embedPage":{"viewDoc":"🄥⒤⒠⒲ ⒠⒩⒯⒤⒭⒠ {title} ⒪⒩ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒤⒩ ⒩⒠⒲ ⒲⒤⒩⒟⒪⒲ ⒪⒭ ⒯⒜⒝","pageOf":"🄟⒜⒢⒠ {page} ⒪⒡ {title}","gotoDocCloud":"🄖⒪ ⒯⒪ 🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒤⒩ ⒩⒠⒲ ⒲⒤⒩⒟⒪⒲ ⒪⒭ ⒯⒜⒝"},"entities":{"back":"🄑⒜⒞⒦","page":"🄟⒜⒢⒠","of":"⒪⒡","totalEntityResult":"{n, plural, one {# ⒯⒪⒯⒜⒧ ⒠⒩⒯⒤⒯⒴ ⒭⒠⒮⒰⒧⒯} other {# ⒯⒪⒯⒜⒧ ⒠⒩⒯⒤⒯⒴ ⒭⒠⒮⒰⒧⒯⒮}} ","filter":"🄕⒤⒧⒯⒠⒭","applyFilters":"🄐⒫⒫⒧⒴ ⒡⒤⒧⒯⒠⒭⒮","kind":"🄚⒤⒩⒟","clear":"🄒⒧⒠⒜⒭","person":"🄟⒠⒭⒮⒪⒩","org":"🄞⒭⒢⒜⒩⒤⒵⒜⒯⒤⒪⒩","location":"🄛⒪⒞⒜⒯⒤⒪⒩","event":"🄔⒱⒠⒩⒯","workOfArt":"🄦⒪⒭⒦ ⒪⒡ 🄐⒭⒯","consumerGood":"🄒⒪⒩⒮⒰⒨⒠⒭ 🄖⒪⒪⒟","address":"🄐⒟⒟⒭⒠⒮⒮","date":"🄓⒜⒯⒠","number":"🄝⒰⒨⒝⒠⒭","phoneNumber":"🄟⒣⒪⒩⒠ 🄝⒰⒨⒝⒠⒭","price":"🄟⒭⒤⒞⒠","unknown":"🄤⒩⒦⒩⒪⒲⒩","other":"🄞⒯⒣⒠⒭","occurrences":"🄞⒞⒞⒰⒭⒭⒠⒩⒞⒠⒮","proper":"🄟⒭⒪⒫⒠⒭","common":"🄒⒪⒨⒨⒪⒩","advanced":"🄐⒟⒱⒜⒩⒞⒠⒟","relevanceThreshold":"🄡⒠⒧⒠⒱⒜⒩⒞⒠ ⒯⒣⒭⒠⒮⒣⒪⒧⒟:","knowledgeGraph":"🄚⒩⒪⒲⒧⒠⒟⒢⒠ ⒢⒭⒜⒫⒣:","hasKG":"🄗⒜⒮ ⒜ ⒦⒩⒪⒲⒧⒠⒟⒢⒠ ⒢⒭⒜⒫⒣ 🄘🄓","noKG":"🄓⒪⒠⒮ ⒩⒪⒯ ⒣⒜⒱⒠ ⒜ ⒦⒩⒪⒲⒧⒠⒟⒢⒠ ⒢⒭⒜⒫⒣ 🄘🄓","wikiUrl":"🄦⒤⒦⒤⒫⒠⒟⒤⒜ 🄤🄡🄛:","hasWiki":"🄗⒜⒮ ⒜ 🄦⒤⒦⒤⒫⒠⒟⒤⒜ 🄤🄡🄛","noWiki":"🄓⒪⒠⒮ ⒩⒪⒯ ⒣⒜⒱⒠ ⒜ 🄦⒤⒦⒤⒫⒠⒟⒤⒜ 🄤🄡🄛","occurrence":"{n, plural, zero {} one {# ⒪⒞⒞⒰⒭⒭⒠⒩⒞⒠} other {# ⒪⒞⒞⒰⒭⒭⒠⒩⒞⒠⒮}}","wikipedia":"🄦⒤⒦⒤⒫⒠⒟⒤⒜","entityExtraction":"🄔⒩⒯⒤⒯⒴ ⒠⒳⒯⒭⒜⒞⒯⒤⒪⒩ ⒡⒪⒭ “{title}”","extractingEntities":"🄔⒳⒯⒭⒜⒞⒯⒤⒩⒢ ⒠⒩⒯⒤⒯⒤⒠⒮...","welcome":"🄦⒠⒧⒞⒪⒨⒠ ⒯⒪ ⒠⒩⒯⒤⒯⒴ ⒠⒳⒯⒭⒜⒞⒯⒤⒪⒩! 🄣⒣⒤⒮ ⒡⒠⒜⒯⒰⒭⒠ ⒤⒮ ⒱⒠⒭⒴ ⒨⒰⒞⒣ ⒤⒩ ⒫⒭⒪⒢⒭⒠⒮⒮ ⒝⒰⒯ ⒲⒠ ⒲⒜⒩⒯ ⒤⒯ ⒤⒩ ⒴⒪⒰⒭ ⒣⒜⒩⒟⒮ ⒠⒜⒭⒧⒴ ⒯⒪ ⒲⒠⒧⒞⒪⒨⒠ ⒜⒩⒴ ⒡⒠⒠⒟⒝⒜⒞⒦ ⒴⒪⒰ ⒨⒤⒢⒣⒯ ⒣⒜⒱⒠.","manual":"🄡⒤⒢⒣⒯ ⒩⒪⒲ ⒯⒣⒠ ⒫⒭⒪⒞⒠⒮⒮ ⒡⒪⒭ ⒠⒳⒯⒭⒜⒞⒯⒤⒩⒢ ⒠⒩⒯⒤⒯⒤⒠⒮ ⒤⒮ ⒨⒜⒩⒰⒜⒧. 🄣⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒣⒜⒮ ⒩⒪⒯ ⒣⒜⒟ ⒠⒩⒯⒤⒯⒤⒠⒮ ⒠⒳⒯⒭⒜⒞⒯⒠⒟ ⒴⒠⒯, ⒮⒪ ⒞⒧⒤⒞⒦ ⒝⒠⒧⒪⒲ ⒯⒪ ⒢⒠⒯ ⒮⒯⒜⒭⒯⒠⒟.","error":"🄐⒩ ⒰⒩⒠⒳⒫⒠⒞⒯⒠⒟ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟","extract":"🄔⒳⒯⒭⒜⒞⒯ ⒠⒩⒯⒤⒯⒤⒠⒮","noEntities":"🄣⒣⒠⒭⒠ ⒜⒭⒠ ⒩⒪ ⒠⒩⒯⒤⒯⒤⒠⒮. 🄣⒣⒤⒮ ⒞⒪⒰⒧⒟ ⒣⒜⒫⒫⒠⒩ ⒤⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒟⒪⒠⒮⒩’⒯ ⒣⒜⒱⒠ ⒯⒠⒳⒯, ⒤⒮ ⒩⒪⒩-🄔⒩⒢⒧⒤⒮⒣ (⒪⒩⒧⒴ 🄔⒩⒢⒧⒤⒮⒣ ⒤⒮ ⒮⒰⒫⒫⒪⒭⒯⒠⒟ ⒡⒪⒭ ⒩⒪⒲), ⒪⒭ ⒮⒪⒨⒠ ⒠⒭⒭⒪⒭ ⒪⒞⒞⒰⒭⒭⒠⒟.","starting":"🄢⒯⒜⒭⒯⒤⒩⒢ ⒠⒳⒯⒜⒞⒯⒤⒪⒩..."},"home":{"about":"🄓⒪⒞⒰⒨⒠⒩⒯🄒⒧⒪⒰⒟ ⒤⒮ ⒜⒩ ⒜⒧⒧-⒤⒩-⒪⒩⒠ ⒫⒧⒜⒯⒡⒪⒭⒨ ⒡⒪⒭ ⒟⒪⒞⒰⒨⒠⒩⒯⒮: ⒰⒫⒧⒪⒜⒟, ⒪⒭⒢⒜⒩⒤⒵⒠, ⒜⒩⒜⒧⒴⒵⒠, ⒜⒩⒩⒪⒯⒜⒯⒠, ⒮⒠⒜⒭⒞⒣, ⒜⒩⒟ ⒠⒨⒝⒠⒟.","viewPublicDocs":"🄥⒤⒠⒲ ⒫⒰⒝⒧⒤⒞ ⒟⒪⒞⒰⒨⒠⒩⒯⒮"},"annotation":{"title":"🄐⒩⒩⒪⒯⒜⒯⒤⒪⒩ 🄣⒤⒯⒧⒠","description":"🄐⒩⒩⒪⒯⒜⒯⒤⒪⒩ 🄓⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩ (⒪⒫⒯⒤⒪⒩⒜⒧)","unchanged":"🄝⒪⒯⒠ ⒭⒠⒨⒜⒤⒩⒮ ⒰⒩⒞⒣⒜⒩⒢⒠⒟","noTitle":"🄔⒩⒯⒠⒭ ⒜ ⒯⒤⒯⒧⒠ ⒡⒪⒭ ⒯⒣⒠ ⒜⒩⒩⒪⒯⒜⒯⒤⒪⒩","org":"🄣⒣⒤⒮ ⒩⒪⒯⒠ ⒤⒮ ⒪⒩⒧⒴ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒴⒪⒰ ⒜⒩⒟ ⒪⒯⒣⒠⒭⒮ ⒲⒤⒯⒣ ⒠⒟⒤⒯ ⒜⒞⒞⒠⒮⒮ ⒯⒪ ⒯⒣⒤⒮ ⒟⒪⒞⒰⒨⒠⒩⒯","private":"🄣⒣⒤⒮ ⒫⒭⒤⒱⒜⒯⒠ ⒩⒪⒯⒠ ⒤⒮ ⒪⒩⒧⒴ ⒱⒤⒮⒤⒝⒧⒠ ⒯⒪ ⒴⒪⒰","by":"🄐⒩⒩⒪⒯⒜⒯⒠⒟ ⒝⒴ {name}","byOrg":"🄐⒩⒩⒪⒯⒜⒯⒠⒟ ⒝⒴ {name}, {org}","addPageNote":"🄐⒟⒟ ⒫⒜⒢⒠ ⒩⒪⒯⒠"},"viewDropdown":{"document":"🄓⒪⒞⒰⒨⒠⒩⒯","plainText":"🄟⒧⒜⒤⒩ 🄣⒠⒳⒯","thumbnail":"🄣⒣⒰⒨⒝⒩⒜⒤⒧","notes":"🄝⒪⒯⒠⒮","search":"🄢⒠⒜⒭⒞⒣ 🄡⒠⒮⒰⒧⒯⒮"},"zoom":{"fitWidth":"🄕⒤⒯ ⒲⒤⒟⒯⒣","fitHeight":"🄕⒤⒯ ⒣⒠⒤⒢⒣⒯"},"titleHeader":{"contributedBy":"🄒⒪⒩⒯⒭⒤⒝⒰⒯⒠⒟ ⒝⒴ {name}"},"annotatePane":{"annotateDocument":"🄐⒩⒩⒪⒯⒜⒯⒠ 🄓⒪⒞⒰⒨⒠⒩⒯","desc":"🄗⒤⒢⒣⒧⒤⒢⒣⒯ ⒜ ⒫⒪⒭⒯⒤⒪⒩ ⒪⒡ ⒯⒣⒠ ⒫⒜⒢⒠, ⒪⒭ ⒞⒧⒤⒞⒦ ⒝⒠⒯⒲⒠⒠⒩ ⒫⒜⒢⒠⒮ ⒯⒪ ⒞⒭⒠⒜⒯⒠ ⒜ ⒩⒪⒯⒠."},"modifyPane":{"pagesSelected":"{n, plural, one {# 🄟⒜⒢⒠} other {# 🄟⒜⒢⒠⒮}} 🄢⒠⒧⒠⒞⒯⒠⒟","applyModifications":"🄐⒫⒫⒧⒴ 🄜⒪⒟⒤⒡⒤⒞⒜⒯⒤⒪⒩⒮","duplicate":"🄓⒰⒫⒧⒤⒞⒜⒯⒠","move":"🄜⒪⒱⒠","unselect":"🄤⒩⒮⒠⒧⒠⒞⒯","remove":"🄡⒠⒨⒪⒱⒠","insertPages":"🄘⒩⒮⒠⒭⒯ {n, plural, one {# 🄟⒜⒢⒠} other {# 🄟⒜⒢⒠⒮}}","pagesPending":"{n, plural, one {# 🄟⒜⒢⒠} other {# 🄟⒜⒢⒠⒮}} 🄟⒠⒩⒟⒤⒩⒢ 🄘⒩⒮⒠⒭⒯⒤⒪⒩","insertBegin":"🄘⒩⒮⒠⒭⒯ {n, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}} ⒜⒯ ⒝⒠⒢⒤⒩⒩⒤⒩⒢.","insertEnd":"🄘⒩⒮⒠⒭⒯ {n, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}} ⒜⒯ ⒠⒩⒟.","insertBetween":"🄘⒩⒮⒠⒭⒯ {n, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}} ⒤⒩ ⒝⒠⒯⒲⒠⒠⒩ ⒫⒜⒢⒠ {p0} ⒜⒩⒟ {p1}.","click":"🄒⒧⒤⒞⒦ ⒤⒩-⒝⒠⒯⒲⒠⒠⒩ ⒫⒜⒢⒠⒮ ⒝⒠⒧⒪⒲ ⒯⒪ ⒨⒜⒭⒦ ⒲⒣⒠⒭⒠ ⒯⒪ ⒫⒜⒮⒯⒠ {n, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}}.","insert":"🄘⒩⒮⒠⒭⒯","insertAtEnd":"🄘⒩⒮⒠⒭⒯ ⒜⒯ ⒠⒩⒟","insertPosition":"🄘⒩⒮⒠⒭⒯ ⒫⒜⒢⒠⒮ ⒜⒯ ⒫⒪⒮⒤⒯⒤⒪⒩","insertOtherDoc":"🄘⒩⒮⒠⒭⒯ ⒡⒭⒪⒨ ⒪⒯⒣⒠⒭ ⒟⒪⒞⒰⒨⒠⒩⒯","modifyPages":"🄜⒪⒟⒤⒡⒴ 🄟⒜⒢⒠⒮","select":"🄢⒠⒧⒠⒞⒯ ⒫⒜⒢⒠⒮ ⒝⒠⒧⒪⒲ ⒯⒪ ⒜⒫⒫⒧⒴ ⒨⒪⒟⒤⒡⒤⒞⒜⒯⒤⒪⒩⒮ (⒫⒜⒢⒠ ⒭⒪⒯⒜⒯⒤⒪⒩, ⒭⒠⒜⒭⒭⒜⒩⒢⒤⒩⒢, ⒜⒩⒟ ⒟⒠⒧⒠⒯⒤⒪⒩). 🄒⒧⒤⒞⒦ ⒤⒩-⒝⒠⒯⒲⒠⒠⒩ ⒫⒜⒢⒠⒮ ⒯⒪ ⒤⒩⒮⒠⒭⒯.","undo":"🄤⒩⒟⒪","redo":"🄡⒠⒟⒪"},"redactPane":{"redactDoc":"🄡⒠⒟⒜⒞⒯ 🄓⒪⒞⒰⒨⒠⒩⒯","desc":"🄒⒧⒤⒞⒦ ⒜⒩⒟ ⒟⒭⒜⒢ ⒯⒪ ⒟⒭⒜⒲ ⒜ ⒝⒧⒜⒞⒦ ⒭⒠⒞⒯⒜⒩⒢⒧⒠ ⒪⒱⒠⒭ ⒠⒜⒞⒣ ⒫⒪⒭⒯⒤⒪⒩ ⒪⒡ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒴⒪⒰’⒟ ⒧⒤⒦⒠ ⒯⒪ ⒭⒠⒟⒜⒞⒯. 🄐⒮⒮⒪⒞⒤⒜⒯⒠⒟ ⒯⒠⒳⒯ ⒲⒤⒧⒧ ⒝⒠ ⒭⒠⒨⒪⒱⒠⒟ ⒲⒣⒠⒩ ⒴⒪⒰ ⒮⒜⒱⒠ ⒴⒪⒰⒭ ⒭⒠⒟⒜⒞⒯⒤⒪⒩⒮.","confirm":"🄒⒪⒩⒡⒤⒭⒨ 🄡⒠⒟⒜⒞⒯⒤⒪⒩⒮","undo":"🄤⒩⒟⒪"},"searchPane":{"yourQuery":"🄨⒪⒰⒭ ⒬⒰⒠⒭⒴ {search} ⒲⒜⒮ ⒡⒪⒰⒩⒟ ⒪⒩ {n, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}}"},"selectNotePane":{"selectNote":"🄢⒠⒧⒠⒞⒯ ⒜ ⒩⒪⒯⒠","desc":"🄢⒠⒧⒠⒞⒯ ⒯⒣⒠ ⒜⒩⒩⒪⒯⒜⒯⒤⒪⒩ ⒯⒣⒜⒯ ⒴⒪⒰ ⒲⒜⒩⒯ ⒯⒪ ⒮⒣⒜⒭⒠."},"searchResults":{"resultPages":"{results, plural, one {# ⒭⒠⒮⒰⒧⒯} other {# ⒭⒠⒮⒰⒧⒯⒮}} ⒜⒞⒭⒪⒮⒮ {pages, plural, one {# ⒫⒜⒢⒠} other {# ⒫⒜⒢⒠⒮}}","noSearchResults":"🄝⒪ ⒮⒠⒜⒭⒞⒣ ⒭⒠⒮⒰⒧⒯⒮. 🄣⒭⒴ ⒜⒢⒜⒤⒩ ⒲⒤⒯⒣ ⒜ ⒝⒭⒪⒜⒟⒠⒭ ⒬⒰⒠⒭⒴.","occurrences":"{n, plural, one {# ⒪⒞⒞⒰⒭⒭⒠⒩⒞⒠} other {# ⒪⒞⒞⒰⒭⒭⒠⒩⒞⒠⒮}}"},"sidebar":{"updating":"🄤⒫⒟⒜⒯⒤⒩⒢ ⒟⒪⒞⒰⒞⒨⒠⒩⒯...","original":"🄞⒭⒤⒢⒤⒩⒜⒧ 🄓⒪⒞⒰⒨⒠⒩⒯ (🄟🄓🄕) »","related":"🄡⒠⒧⒜⒯⒠⒟ 🄐⒭⒯⒤⒞⒧⒠ »","contributed":"🄒⒪⒩⒯⒭⒤⒝⒰⒯⒠⒟ ⒝⒴ {name}","source":"🄢⒪⒰⒭⒞⒠: {source}","actions":"🄓⒪⒞⒰⒨⒠⒩⒯ 🄐⒞⒯⒤⒪⒩⒮","share":"🄢⒣⒜⒭⒠","shareDesc":"🄒⒭⒠⒜⒯⒠ ⒜⒩ ⒠⒨⒝⒠⒟ ⒪⒭ ⒮⒣⒜⒭⒠ ⒪⒩ ⒮⒪⒞⒤⒜⒧ ⒨⒠⒟⒤⒜.","annotate":"🄐⒩⒩⒪⒯⒜⒯⒠","annotateDesc":"🄜⒜⒦⒠ ⒜⒩⒩⒪⒯⒜⒯⒤⒪⒩⒮ ⒯⒪ ⒦⒠⒠⒫ ⒩⒪⒯⒠⒮ ⒪⒩ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯.","redact":"🄡⒠⒟⒜⒞⒯","redactDesc":"🄒⒭⒠⒜⒯⒠ ⒭⒠⒟⒜⒞⒯⒤⒪⒩⒮ ⒪⒩ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒯⒪ ⒣⒤⒟⒠ ⒯⒠⒳⒯. 🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒧⒧ ⒭⒠⒫⒭⒪⒞⒠⒮⒮ ⒜⒡⒯⒠⒭⒲⒜⒭⒟⒮.","modify":"🄜⒪⒟⒤⒡⒴ 🄟⒜⒢⒠⒮","modifyDesc":"🄡⒠⒜⒭⒭⒜⒩⒢⒠, ⒭⒪⒯⒜⒯⒠, ⒟⒠⒧⒠⒯⒠, ⒤⒩⒮⒠⒭⒯, ⒜⒩⒟ ⒮⒫⒧⒤⒯ ⒫⒜⒢⒠⒮.","info":"🄔⒟⒤⒯ 🄓⒪⒞⒰⒨⒠⒩⒯ 🄘⒩⒡⒪","infoDesc":"🄜⒪⒟⒤⒡⒴ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒤⒩⒡⒪⒭⒨⒜⒯⒤⒪⒩ ⒧⒤⒦⒠ ⒟⒠⒮⒞⒭⒤⒫⒯⒤⒪⒩ ⒜⒩⒟ ⒭⒠⒧⒜⒯⒠⒟ 🄤🄡🄛.","data":"🄔⒟⒤⒯ 🄣⒜⒢⒮ ⒜⒩⒟ 🄓⒜⒯⒜","dataDesc":"🄐⒟⒟ ⒯⒜⒢⒮ ⒜⒩⒟ ⒦⒠⒴/⒱⒜⒧⒰⒠ ⒫⒜⒤⒭⒮ ⒯⒪ ⒞⒜⒯⒠⒢⒪⒭⒤⒵⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯.","sections":"🄔⒟⒤⒯ 🄢⒠⒞⒯⒤⒪⒩⒮","sectionsDesc":"🄐⒟⒟ ⒮⒠⒞⒯⒤⒪⒩⒮ ⒯⒪ ⒪⒭⒢⒜⒩⒤⒵⒠ ⒴⒪⒰⒭ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒲⒤⒯⒣ ⒜ ⒯⒜⒝⒧⒠ ⒪⒡ ⒞⒪⒩⒯⒠⒩⒯⒮.","privateNote":"🄐⒟⒟ 🄟⒭⒤⒱⒜⒯⒠ 🄝⒪⒯⒠","privateNoteDesc":"🄜⒜⒦⒠ ⒜⒩⒩⒪⒯⒜⒯⒤⒪⒩⒮ ⒯⒪ ⒦⒠⒠⒫ ⒩⒪⒯⒠⒮ ⒪⒩ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯."},"viewer":{"notFound":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒩⒪⒯ ⒡⒪⒰⒩⒟","notFoundDesc":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒴⒪⒰ ⒭⒠⒬⒰⒠⒮⒯⒠⒟ ⒠⒤⒯⒣⒠⒭ ⒟⒪⒠⒮ ⒩⒪⒯ ⒠⒳⒤⒮⒯ ⒪⒭ ⒴⒪⒰ ⒧⒜⒞⒦ ⒫⒠⒭⒨⒤⒮⒮⒤⒪⒩ ⒯⒪ ⒜⒞⒞⒠⒮⒮ ⒤⒯","processing":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒤⒮ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢","processingDesc":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒴⒪⒰ ⒭⒠⒬⒰⒠⒮⒯⒠⒟ ⒤⒮ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢ ⒜⒩⒟ ⒲⒤⒧⒧ ⒜⒰⒯⒪⒨⒜⒯⒤⒞⒜⒧⒧⒴ ⒭⒠⒡⒭⒠⒮⒣ ⒲⒣⒠⒩ ⒤⒯ ⒤⒮ ⒭⒠⒜⒟⒴","error":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒣⒜⒮ ⒠⒩⒞⒪⒰⒩⒯⒠⒭⒠⒟ ⒜⒩ ⒠⒭⒭⒪⒭","errorDesc":"🄐 ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢ ⒠⒭⒭⒪⒭ ⒣⒜⒮ ⒝⒠⒠⒩ ⒠⒩⒞⒪⒰⒩⒯⒠⒭⒠⒟ ⒤⒩ ⒯⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒴⒪⒰ ⒭⒠⒬⒰⒠⒮⒯⒠⒟","accessible":"🄓⒪⒞⒰⒨⒠⒩⒯ ⒩⒪⒯ ⒜⒞⒞⒠⒮⒮⒤⒝⒧⒠","accessibleDesc":"🄣⒣⒠ ⒟⒪⒞⒰⒨⒠⒩⒯ ⒴⒪⒰ ⒭⒠⒬⒰⒠⒮⒯⒠⒟ ⒤⒮ ⒮⒯⒤⒧⒧ ⒫⒭⒪⒞⒠⒮⒮⒤⒩⒢ ⒪⒭ ⒴⒪⒰ ⒧⒜⒞⒦ ⒫⒠⒭⒨⒤⒮⒮⒤⒪⒩ ⒯⒪ ⒜⒞⒞⒠⒮⒮ ⒯⒪ ⒤⒯"}}')}}]);
-./public/3627.2c1fcec8985f32d23fe6.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="fd7ca1f1-cef3-45e6-b369-36568f6b60b3",e._sentryDebugIdIdentifier="sentry-dbid-fd7ca1f1-cef3-45e6-b369-36568f6b60b3")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[3627],{2869:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return AddOnListItem_svelte},g:function(){return pinned}});var internal=__webpack_require__(4234),store=__webpack_require__(8261),runtime_esm=__webpack_require__(6469),base=__webpack_require__(5364),session=__webpack_require__(9596),Pin_svelte=__webpack_require__(6666);function create_fragment(ctx){let button,pin,current,mounted,dispose;return pin=new Pin_svelte.Z({props:{title:ctx[4],size:ctx[0]}}),{c(){button=(0,internal.bGB)("button"),(0,internal.YCL)(pin.$$.fragment),(0,internal.Ljt)(button,"class","pin svelte-7k8afm"),(0,internal.Ljt)(button,"style",ctx[3]),(0,internal.VHj)(button,"active",ctx[1]),(0,internal.VHj)(button,"disabled",ctx[2])},m(target,anchor){(0,internal.$Tr)(target,button,anchor),(0,internal.yef)(pin,button,null),current=!0,mounted||(dispose=(0,internal.oLt)(button,"click",ctx[5]),mounted=!0)},p(ctx,[dirty]){const pin_changes={};16&dirty&&(pin_changes.title=ctx[4]),1&dirty&&(pin_changes.size=ctx[0]),pin.$set(pin_changes),(!current||8&dirty)&&(0,internal.Ljt)(button,"style",ctx[3]),(!current||2&dirty)&&(0,internal.VHj)(button,"active",ctx[1]),(!current||4&dirty)&&(0,internal.VHj)(button,"disabled",ctx[2])},i(local){current||((0,internal.Ui)(pin.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(pin.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(button),(0,internal.vpE)(pin),mounted=!1,dispose()}}}function instance($$self,$$props,$$invalidate){let title,cssVarStyles,{size:size=1}=$$props,{active:active=!1}=$$props,{disabled:disabled=!1}=$$props;return $$self.$$set=$$props=>{"size"in $$props&&$$invalidate(0,size=$$props.size),"active"in $$props&&$$invalidate(1,active=$$props.active),"disabled"in $$props&&$$invalidate(2,disabled=$$props.disabled)},$$self.$$.update=()=>{6&$$self.$$.dirty&&$$invalidate(4,title=disabled?"Pinning is disabled":active?"Click to Unpin":"Click to Pin"),1&$$self.$$.dirty&&$$invalidate(3,cssVarStyles=`--padding:${.25*size}em; --border-radius:${4*size}px;`)},[size,active,disabled,cssVarStyles,title,function(event){internal.cKT.call(this,$$self,event)}]}class Pin_1 extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{size:0,active:1,disabled:2})}}var common_Pin_svelte=Pin_1,string=__webpack_require__(3581);function Popularity_svelte_create_fragment(ctx){let div,span0,svg,title,t0,path,t1,span1,t2,div_title_value,t0_value=ctx[1]("addonBrowserDialog.usage")+"",t2_value=(0,string.pF)(ctx[0],1)+"";return{c(){div=(0,internal.bGB)("div"),span0=(0,internal.bGB)("span"),svg=(0,internal.bi5)("svg"),title=(0,internal.bi5)("title"),t0=(0,internal.fLW)(t0_value),path=(0,internal.bi5)("path"),t1=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),t2=(0,internal.fLW)(t2_value),(0,internal.Ljt)(path,"d","M12.0007811,5 C11.4477282,5 11.0009113,4.553125 11.0009113,4 C11.0009113,3.446875 11.4477282,3 12.0007811,3 L17.0001302,3 C17.5531832,3 18,3.446875 18,4 L18,9 C18,9.553125 17.5531832,10 17.0001302,10 C16.4470772,10 16.0002604,9.553125 16.0002604,9 L16.0002604,6.415625 L10.7071996,11.70625 C10.3166254,12.096875 9.68233303,12.096875 9.29175889,11.70625 L6.0015623,8.415625 L1.70837131,12.70625 C1.31779716,13.096875 0.683504752,13.096875 0.292930608,12.70625 C-0.097643536,12.315625 -0.097643536,11.68125 0.292930608,11.290625 L5.29227965,6.290625 C5.6828538,5.9 6.3171462,5.9 6.70772035,6.290625 L10.0010415,9.584375 L14.5848197,5 L12.0007811,5 Z"),(0,internal.Ljt)(path,"fill-rule","nonzero"),(0,internal.Ljt)(svg,"width","18px"),(0,internal.Ljt)(svg,"height","16px"),(0,internal.Ljt)(svg,"viewBox","0 0 18 16"),(0,internal.Ljt)(svg,"class","svelte-rk218i"),(0,internal.Ljt)(span0,"class","icon svelte-rk218i"),(0,internal.Ljt)(span1,"class","count"),(0,internal.Ljt)(div,"class","container svelte-rk218i"),(0,internal.Ljt)(div,"title",div_title_value=ctx[0].toString())},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,span0),(0,internal.R3I)(span0,svg),(0,internal.R3I)(svg,title),(0,internal.R3I)(title,t0),(0,internal.R3I)(svg,path),(0,internal.R3I)(div,t1),(0,internal.R3I)(div,span1),(0,internal.R3I)(span1,t2)},p(ctx,[dirty]){2&dirty&&t0_value!==(t0_value=ctx[1]("addonBrowserDialog.usage")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=(0,string.pF)(ctx[0],1)+"")&&(0,internal.rTO)(t2,t2_value),1&dirty&&div_title_value!==(div_title_value=ctx[0].toString())&&(0,internal.Ljt)(div,"title",div_title_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div)}}}function Popularity_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));let{useCount:useCount}=$$props;return $$self.$$set=$$props=>{"useCount"in $$props&&$$invalidate(0,useCount=$$props.useCount)},[useCount,$_]}class Popularity extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Popularity_svelte_instance,Popularity_svelte_create_fragment,internal.N8,{useCount:0})}}var Popularity_svelte=Popularity;function create_if_block_2(ctx){let p,a,t,a_href_value,a_title_value,t_value=ctx[0].author.name+"";return{c(){p=(0,internal.bGB)("p"),a=(0,internal.bGB)("a"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(a,"href",a_href_value="http://github.com/"+ctx[0].repository),(0,internal.Ljt)(a,"target","_blank"),(0,internal.Ljt)(a,"rel","noopener noreferrer"),(0,internal.Ljt)(a,"title",a_title_value=ctx[3]("addonBrowserDialog.viewsource")),(0,internal.Ljt)(a,"class","svelte-1xqbc4m"),(0,internal.Ljt)(p,"class","author svelte-1xqbc4m")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,a),(0,internal.R3I)(a,t)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].author.name+"")&&(0,internal.rTO)(t,t_value),1&dirty&&a_href_value!==(a_href_value="http://github.com/"+ctx[0].repository)&&(0,internal.Ljt)(a,"href",a_href_value),8&dirty&&a_title_value!==(a_title_value=ctx[3]("addonBrowserDialog.viewsource"))&&(0,internal.Ljt)(a,"title",a_title_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function create_if_block_1(ctx){let addonpopularity,current;return addonpopularity=new Popularity_svelte({props:{useCount:ctx[0].usage}}),{c(){(0,internal.YCL)(addonpopularity.$$.fragment)},m(target,anchor){(0,internal.yef)(addonpopularity,target,anchor),current=!0},p(ctx,dirty){const addonpopularity_changes={};1&dirty&&(addonpopularity_changes.useCount=ctx[0].usage),addonpopularity.$set(addonpopularity_changes)},i(local){current||((0,internal.Ui)(addonpopularity.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(addonpopularity.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(addonpopularity,detaching)}}}function create_if_block(ctx){let div;return{c(){div=(0,internal.bGB)("div"),(0,internal.Ljt)(div,"class","description svelte-1xqbc4m")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),div.innerHTML=ctx[2]},p(ctx,dirty){4&dirty&&(div.innerHTML=ctx[2])},d(detaching){detaching&&(0,internal.ogt)(div)}}}function AddOnListItem_svelte_create_fragment(ctx){let a,div4,div3,div0,pin,t0,div1,h3,t1,t2,div2,t3,t4,div4_id_value,current,t1_value=ctx[0].name+"";pin=new common_Pin_svelte({props:{active:ctx[0].active}}),pin.$on("click",ctx[4]);let if_block0=ctx[0]?.author?.name&&create_if_block_2(ctx),if_block1=ctx[0].usage&&create_if_block_1(ctx),if_block2=ctx[2]&&create_if_block(ctx);return{c(){a=(0,internal.bGB)("a"),div4=(0,internal.bGB)("div"),div3=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),(0,internal.YCL)(pin.$$.fragment),t0=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),h3=(0,internal.bGB)("h3"),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t3=(0,internal.DhX)(),if_block1&&if_block1.c(),t4=(0,internal.DhX)(),if_block2&&if_block2.c(),(0,internal.Ljt)(div0,"class","center-self svelte-1xqbc4m"),(0,internal.Ljt)(h3,"class","addon-name svelte-1xqbc4m"),(0,internal.Ljt)(div1,"class","stretch svelte-1xqbc4m"),(0,internal.Ljt)(div2,"class","metadata svelte-1xqbc4m"),(0,internal.Ljt)(div3,"class","top-row svelte-1xqbc4m"),(0,internal.Ljt)(div4,"class","container svelte-1xqbc4m"),(0,internal.Ljt)(div4,"id",div4_id_value=ctx[0].repository),(0,internal.Ljt)(a,"class","addon-link svelte-1xqbc4m"),(0,internal.Ljt)(a,"href",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,a,anchor),(0,internal.R3I)(a,div4),(0,internal.R3I)(div4,div3),(0,internal.R3I)(div3,div0),(0,internal.yef)(pin,div0,null),(0,internal.R3I)(div3,t0),(0,internal.R3I)(div3,div1),(0,internal.R3I)(div1,h3),(0,internal.R3I)(h3,t1),(0,internal.R3I)(div3,t2),(0,internal.R3I)(div3,div2),if_block0&&if_block0.m(div2,null),(0,internal.R3I)(div2,t3),if_block1&&if_block1.m(div2,null),(0,internal.R3I)(div4,t4),if_block2&&if_block2.m(div4,null),current=!0},p(ctx,[dirty]){const pin_changes={};1&dirty&&(pin_changes.active=ctx[0].active),pin.$set(pin_changes),(!current||1&dirty)&&t1_value!==(t1_value=ctx[0].name+"")&&(0,internal.rTO)(t1,t1_value),ctx[0]?.author?.name?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_2(ctx),if_block0.c(),if_block0.m(div2,t3)):if_block0&&(if_block0.d(1),if_block0=null),ctx[0].usage?if_block1?(if_block1.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=create_if_block_1(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div2,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),ctx[2]?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block(ctx),if_block2.c(),if_block2.m(div4,null)):if_block2&&(if_block2.d(1),if_block2=null),(!current||1&dirty&&div4_id_value!==(div4_id_value=ctx[0].repository))&&(0,internal.Ljt)(div4,"id",div4_id_value),(!current||2&dirty)&&(0,internal.Ljt)(a,"href",ctx[1])},i(local){current||((0,internal.Ui)(pin.$$.fragment,local),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(pin.$$.fragment,local),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(a),(0,internal.vpE)(pin),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}const pinned=(0,store.fZ)([]);function AddOnListItem_svelte_instance($$self,$$props,$$invalidate){let endpoint,description,url,$pinned,$_,$$unsubscribe_pinned=internal.ZTd;(0,internal.FIv)($$self,pinned,($$value=>$$invalidate(6,$pinned=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value))),$$self.$$.on_destroy.push((()=>$$unsubscribe_pinned()));let{addon:addon}=$$props;return $$self.$$set=$$props=>{"addon"in $$props&&$$invalidate(0,addon=$$props.addon)},$$self.$$.update=()=>{1&$$self.$$.dirty&&(addon?.author||$$invalidate(0,addon.author={name:addon?.repository?.split("/")[0]},addon)),1&$$self.$$.dirty&&(endpoint=new URL(`/api/addons/${addon.id}/`,base.t)),1&$$self.$$.dirty&&$$invalidate(2,description=addon.parameters?.description),1&$$self.$$.dirty&&$$invalidate(1,url=`#add-ons/${addon.repository}`)},[addon,url,description,$_,async function(event){event.preventDefault();const options={credentials:"include",method:"PATCH",headers:{"X-CSRFToken":(0,session._V)(),"Content-type":"application/json"}};$$invalidate(0,addon.active=!addon.active,addon);const resp=await fetch(endpoint,{...options,body:JSON.stringify({active:addon.active})}).catch((err=>($$invalidate(0,addon.active=!addon.active,addon),{ok:!1,statusText:String(err)})));resp.ok||($$invalidate(0,addon.active=!addon.active,addon),console.error(`Problem updating add-on: ${resp.statusText}`)),(0,internal.fxP)(pinned,$pinned=addon.active?[...$pinned,addon]:$pinned.filter((a=>a.id!==addon.id)),$pinned)}]}class AddOnListItem extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AddOnListItem_svelte_instance,AddOnListItem_svelte_create_fragment,internal.N8,{addon:0})}}var AddOnListItem_svelte=AddOnListItem},1195:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Or:function(){return runs}});var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),svelte_store__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(8261),svelte_i18n__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(6469),_common_Progress_svelte__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(5242),_common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(7120),_api_base_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(5364),_api_session_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(9596);function create_else_block_3(ctx){let t,t_value=ctx[0].addon.name+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].addon.name+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_9(ctx){let t,t_value=date_format(ctx[0].created_at)+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=date_format(ctx[0].created_at)+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_4(ctx){let progress,t0,span,button,t1,current_block_type_index,if_block,if_block_anchor,current;progress=new _common_Progress_svelte__WEBPACK_IMPORTED_MODULE_3__.Z({props:{progress:ctx[5]?1:ctx[0].progress/100,initializing:0==ctx[0].progress&&!ctx[5],compact:0==ctx[0].progress&&!ctx[5],failure:ctx[6]}}),button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:ctx[6],$$slots:{default:[create_default_slot_5]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[2]);const if_block_creators=[create_if_block_5,create_else_block_1],if_blocks=[];function select_block_type_1(ctx,dirty){return ctx[5]?0:1}return current_block_type_index=select_block_type_1(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(progress.$$.fragment),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","dismiss svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(progress,target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t0,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t1,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const progress_changes={};33&dirty&&(progress_changes.progress=ctx[5]?1:ctx[0].progress/100),33&dirty&&(progress_changes.initializing=0==ctx[0].progress&&!ctx[5]),33&dirty&&(progress_changes.compact=0==ctx[0].progress&&!ctx[5]),64&dirty&&(progress_changes.failure=ctx[6]),progress.$set(progress_changes);const button_changes={};64&dirty&&(button_changes.danger=ctx[6]),131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(progress.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(progress.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(progress,detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t0),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t1),if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_default_slot_5(ctx){let t,t_value=ctx[8]("dialog.dismiss")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.dismiss")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_else_block_1(ctx){let span,show_if,current_block_type_index,if_block,current;const if_block_creators=[create_if_block_8,create_else_block_2],if_blocks=[];function select_block_type_3(ctx,dirty){return 129&dirty&&(show_if=null),null==show_if&&(show_if=!!ctx[7].includes(ctx[0].uuid)),show_if?0:1}return current_block_type_index=select_block_type_3(ctx,-1),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","cancel")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),if_blocks[current_block_type_index].m(span,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_3(ctx,dirty),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),if_blocks[current_block_type_index].d()}}}function create_if_block_5(ctx){let span,button0,t0,button1,t1,current;button0=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,secondary:1!==ctx[0].rating,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),button0.$on("click",ctx[10]),button1=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,secondary:-1!==ctx[0].rating,$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),button1.$on("click",ctx[11]);let if_block=0!==ctx[0].rating&&create_if_block_6(ctx);return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button0.$$.fragment),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button1.$$.fragment),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block&&if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","rate svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button0,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button1,span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t1),if_block&&if_block.m(span,null),current=!0},p(ctx,dirty){const button0_changes={};1&dirty&&(button0_changes.secondary=1!==ctx[0].rating),131072&dirty&&(button0_changes.$$scope={dirty:dirty,ctx:ctx}),button0.$set(button0_changes);const button1_changes={};1&dirty&&(button1_changes.secondary=-1!==ctx[0].rating),131072&dirty&&(button1_changes.$$scope={dirty:dirty,ctx:ctx}),button1.$set(button1_changes),0!==ctx[0].rating?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1)):(if_block=create_if_block_6(ctx),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null)):if_block&&((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block,1,1,(()=>{if_block=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)())},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button0.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button1.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button0.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button1.$$.fragment,local),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button1),if_block&&if_block.d()}}}function create_else_block_2(ctx){let button,current;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:!0,$$slots:{default:[create_default_slot_4]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[3]),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching)}}}function create_if_block_8(ctx){let button,current;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,danger:!0,disabled:!0,$$slots:{default:[create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching)}}}function create_default_slot_4(ctx){let t,t_value=ctx[8]("dialog.cancel")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.cancel")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_3(ctx){let t,t_value=ctx[8]("dialog.cancelling")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.cancelling")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_2(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("👍")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_default_slot_1(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("👎")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_6(ctx){let span,current_block_type_index,if_block,current;const if_block_creators=[create_if_block_7,create_else_block],if_blocks=[];function select_block_type_2(ctx,dirty){return""===ctx[0].comment?0:1}return current_block_type_index=select_block_type_2(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","info processingText message comment svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"compact",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),if_blocks[current_block_type_index].m(span,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_2(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(span,null)),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"compact",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),if_blocks[current_block_type_index].d()}}}function create_else_block(ctx){let span,t,t_value=ctx[8]("addonProgress.thanks")+"";return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("addonProgress.thanks")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_if_block_7(ctx){let input,input_placeholder_value,t,button,current,mounted,dispose;return button=new _common_Button_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{small:!0,$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[12]),{c(){input=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("input"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(button.$$.fragment),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"placeholder",input_placeholder_value=ctx[8]("addonProgress.feedback")),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"maxlength","255")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,input,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.BmG)(input,ctx[4]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(button,target,anchor),current=!0,mounted||(dispose=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.oLt)(input,"input",ctx[13]),mounted=!0)},p(ctx,dirty){(!current||256&dirty&&input_placeholder_value!==(input_placeholder_value=ctx[8]("addonProgress.feedback")))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(input,"placeholder",input_placeholder_value),16&dirty&&input.value!==ctx[4]&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.BmG)(input,ctx[4]);const button_changes={};131328&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(input),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(button,detaching),mounted=!1,dispose()}}}function create_default_slot(ctx){let t,t_value=ctx[8]("dialog.submit")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("dialog.submit")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block(ctx){let div,t0,t1,if_block0=ctx[0].message&&create_if_block_3(ctx),if_block1=ctx[0].message&&ctx[0].file_url&&create_if_block_2(ctx),if_block2=ctx[0].file_url&&create_if_block_1(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0&&if_block0.c(),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","info message processingText svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"compact",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t1),if_block2&&if_block2.m(div,null)},p(ctx,dirty){ctx[0].message?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_3(ctx),if_block0.c(),if_block0.m(div,t0)):if_block0&&(if_block0.d(1),if_block0=null),ctx[0].message&&ctx[0].file_url?if_block1||(if_block1=create_if_block_2(ctx),if_block1.c(),if_block1.m(div,t1)):if_block1&&(if_block1.d(1),if_block1=null),ctx[0].file_url?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_1(ctx),if_block2.c(),if_block2.m(div,null)):if_block2&&(if_block2.d(1),if_block2=null),2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"compact",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_3(ctx){let t,t_value=ctx[0].message+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].message+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_2(ctx){let t;return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("-")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_1(ctx){let a,t,a_href_value,t_value=ctx[8]("addonProgress.download")+"";return{c(){a=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("a"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value=ctx[0].file_url),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"class","svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,a,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(a,t)},p(ctx,dirty){256&dirty&&t_value!==(t_value=ctx[8]("addonProgress.download")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value),1&dirty&&a_href_value!==(a_href_value=ctx[0].file_url)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(a)}}}function create_fragment(ctx){let div1,div0,t0,t1,t2,t3,div1_class_value,current,t1_value=ctx[9](ctx[0].status)+"";function select_block_type(ctx,dirty){return ctx[1]?create_if_block_9:create_else_block_3}let current_block_type=select_block_type(ctx),if_block0=current_block_type(ctx),if_block1=!ctx[1]&&create_if_block_4(ctx),if_block2=(ctx[0].message||ctx[0].file_url)&&create_if_block(ctx);return{c(){div1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),div0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0.c(),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("\n - "),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t1_value),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div0,"class","info processingText svelte-56sm9o"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div0,"compact",ctx[1]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div1,"class",div1_class_value="addonRun "+ctx[0].status+" svelte-56sm9o")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div1,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,div0),if_block0.m(div0,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div0,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div0,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,t2),if_block1&&if_block1.m(div1,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div1,t3),if_block2&&if_block2.m(div1,null),current=!0},p(ctx,[dirty]){current_block_type===(current_block_type=select_block_type(ctx))&&if_block0?if_block0.p(ctx,dirty):(if_block0.d(1),if_block0=current_block_type(ctx),if_block0&&(if_block0.c(),if_block0.m(div0,t0))),(!current||1&dirty)&&t1_value!==(t1_value=ctx[9](ctx[0].status)+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t1,t1_value),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div0,"compact",ctx[1]),ctx[1]?if_block1&&((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)()):if_block1?(if_block1.p(ctx,dirty),2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1,1)):(if_block1=create_if_block_4(ctx),if_block1.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1,1),if_block1.m(div1,t3)),ctx[0].message||ctx[0].file_url?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block(ctx),if_block2.c(),if_block2.m(div1,null)):if_block2&&(if_block2.d(1),if_block2=null),(!current||1&dirty&&div1_class_value!==(div1_class_value="addonRun "+ctx[0].status+" svelte-56sm9o"))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div1,"class",div1_class_value)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block1),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block1),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div1),if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}const runs=(0,svelte_store__WEBPACK_IMPORTED_MODULE_1__.fZ)([]),cancelled=(0,svelte_store__WEBPACK_IMPORTED_MODULE_1__.fZ)([]);function date_format(s){return new Date(s).toLocaleString()}function instance($$self,$$props,$$invalidate){let failure,done,$cancelled,$runs,$_,$$unsubscribe_cancelled=svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,$$unsubscribe_runs=svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,cancelled,($$value=>$$invalidate(7,$cancelled=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,runs,($$value=>$$invalidate(14,$runs=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,svelte_i18n__WEBPACK_IMPORTED_MODULE_2__._,($$value=>$$invalidate(8,$_=$$value))),$$self.$$.on_destroy.push((()=>$$unsubscribe_cancelled())),$$self.$$.on_destroy.push((()=>$$unsubscribe_runs()));let{run:run}=$$props,{compact:compact=!1}=$$props,comment="";async function update(params,method="PATCH"){const endpoint=new URL(`/api/addon_runs/${run.uuid}/`,_api_base_js__WEBPACK_IMPORTED_MODULE_6__.t);"DELETE"!==method&&endpoint.searchParams.set("expand","addon");const options={credentials:"include",headers:{"X-CSRFToken":(0,_api_session_js__WEBPACK_IMPORTED_MODULE_5__._V)()},method:method};"DELETE"!==method&&(options.body=JSON.stringify(params),options.headers["Content-type"]="application/json");const resp=await fetch(endpoint,options);if(!resp.ok)throw new Error(resp.statusText);if("DELETE"!==method)return resp.json()}async function rate(val){const newVal=run.rating===val?0:val;$$invalidate(0,run=await update({rating:newVal}))}return $$self.$$set=$$props=>{"run"in $$props&&$$invalidate(0,run=$$props.run),"compact"in $$props&&$$invalidate(1,compact=$$props.compact)},$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(6,failure="failure"===run.status),1&$$self.$$.dirty&&$$invalidate(5,done="queued"!==run.status&&"in_progress"!==run.status)},[run,compact,async function(){$$invalidate(0,run=await update({dismissed:!0})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fxP)(runs,$runs=$runs.filter((r=>r.uuid!==run.uuid)),$runs)},async function(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fxP)(cancelled,$cancelled=[...$cancelled,run.uuid],$cancelled),await update({},"DELETE")},comment,done,failure,$cancelled,$_,function(status){return"cancelled"===status?$_("addonProgress.timedOut"):status.split("_").map((s=>s.charAt(0).toUpperCase()+s.slice(1))).join(" ")},function(){rate(1)},function(){rate(-1)},async function(){$$invalidate(0,run=await update({comment:comment}))},function(){comment=this.value,$$invalidate(4,comment)}]}class AddonRun extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{run:0,compact:1,dismiss:2,cancel:3})}get dismiss(){return this.$$.ctx[2]}get cancel(){return this.$$.ctx[3]}}__webpack_exports__.ZP=AddonRun},4386:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),_router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(3566),_manager_orgsAndUsers_js__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5340),_search_search_js__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(6046),_router_router_js__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(3356),_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(393),_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5__);function create_else_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[0],inlineBlock:!0,toUrl:ctx[3],$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty&&(link_changes.newPage=ctx[0]),8&dirty&&(link_changes.toUrl=ctx[3]),34&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_if_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[0],inlineBlock:!0,toUrl:ctx[3],$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty&&(link_changes.newPage=ctx[0]),8&dirty&&(link_changes.toUrl=ctx[3]),34&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_default_slot_1(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","svelte-35bemg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default()},p(ctx,dirty){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_default_slot(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","svelte-35bemg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_dc_logo_svg_raw__WEBPACK_IMPORTED_MODULE_5___default()},p(ctx,dirty){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(span,"nopadding",ctx[1])},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_fragment(ctx){let current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block,create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return null!==ctx[2].me?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function instance($$self,$$props,$$invalidate){let toUrl,$orgsAndUsers;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,_manager_orgsAndUsers_js__WEBPACK_IMPORTED_MODULE_2__.pn,($$value=>$$invalidate(2,$orgsAndUsers=$$value)));let{newPage:newPage=!1}=$$props,{nopadding:nopadding=!1}=$$props,{homeLink:homeLink=!1}=$$props;return $$self.$$set=$$props=>{"newPage"in $$props&&$$invalidate(0,newPage=$$props.newPage),"nopadding"in $$props&&$$invalidate(1,nopadding=$$props.nopadding),"homeLink"in $$props&&$$invalidate(4,homeLink=$$props.homeLink)},$$self.$$.update=()=>{20&$$self.$$.dirty&&$$invalidate(3,toUrl=homeLink?(0,_router_router_js__WEBPACK_IMPORTED_MODULE_4__.DW)("default"):null!=$orgsAndUsers.me?(0,_search_search_js__WEBPACK_IMPORTED_MODULE_3__.GN)($orgsAndUsers.me):(0,_router_router_js__WEBPACK_IMPORTED_MODULE_4__.DW)("app"))},[newPage,nopadding,$orgsAndUsers,toUrl,homeLink]}class Logo extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{newPage:0,nopadding:1,homeLink:4})}}__webpack_exports__.Z=Logo},4725:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234);function create_fragment(ctx){let div,current;const default_slot_template=ctx[3].default,default_slot=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.nuO)(default_slot_template,ctx,ctx[2],null);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),default_slot&&default_slot.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","primary svelte-1dbe0bg"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"small",ctx[0]),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"inline",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||4&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.kmG)(default_slot,default_slot_template,ctx,ctx[2],current?(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.u2N)(default_slot_template,ctx[2],dirty,null):(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VOJ)(ctx[2]),null),(!current||1&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"small",ctx[0]),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"inline",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(default_slot,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),default_slot&&default_slot.d(detaching)}}}function instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props,{small:small=!1}=$$props,{inline:inline=!1}=$$props;return $$self.$$set=$$props=>{"small"in $$props&&$$invalidate(0,small=$$props.small),"inline"in $$props&&$$invalidate(1,inline=$$props.inline),"$$scope"in $$props&&$$invalidate(2,$$scope=$$props.$$scope)},[small,inline,$$scope,slots]}class Title extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{small:0,inline:1})}}__webpack_exports__.Z=Title},8618:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return UploadOptions_svelte}});var internal=__webpack_require__(4234),api_languages=__webpack_require__(9275),orgsAndUsers=__webpack_require__(5340),svelte=__webpack_require__(8568),runtime_esm=__webpack_require__(6469);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[9]=list[i][0],child_ctx[4]=list[i][1],child_ctx[13]=list[i][2],child_ctx}function create_if_block(ctx){let optgroup,option,t;return{c(){optgroup=(0,internal.bGB)("optgroup"),option=(0,internal.bGB)("option"),t=(0,internal.fLW)(ctx[0]),option.__value=ctx[0],option.value=option.__value},m(target,anchor){(0,internal.$Tr)(target,optgroup,anchor),(0,internal.R3I)(optgroup,option),(0,internal.R3I)(option,t)},p(ctx,dirty){1&dirty&&(0,internal.rTO)(t,ctx[0]),1&dirty&&(option.__value=ctx[0],option.value=option.__value)},d(detaching){detaching&&(0,internal.ogt)(optgroup)}}}function create_each_block(ctx){let option,t,option_disabled_value,option_value_value,t_value=ctx[4]+"";return{c(){option=(0,internal.bGB)("option"),t=(0,internal.fLW)(t_value),option.disabled=option_disabled_value=ctx[13],option.__value=option_value_value=ctx[4],option.value=option.__value},m(target,anchor){(0,internal.$Tr)(target,option,anchor),(0,internal.R3I)(option,t)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[4]+"")&&(0,internal.rTO)(t,t_value),8&dirty&&option_disabled_value!==(option_disabled_value=ctx[13])&&(option.disabled=option_disabled_value),8&dirty&&option_value_value!==(option_value_value=ctx[4])&&(option.__value=option_value_value,option.value=option.__value)},d(detaching){detaching&&(0,internal.ogt)(option)}}}function create_fragment(ctx){let label_1,t0,t1,input_1,t2,datalist,if_block_anchor,mounted,dispose,show_if=ctx[5].has(ctx[0]),if_block=show_if&&create_if_block(ctx),each_value=ctx[3],each_blocks=[];for(let i=0;i{"name"in $$props&&$$invalidate(4,name=$$props.name),"label"in $$props&&$$invalidate(1,label=$$props.label),"placeholder"in $$props&&$$invalidate(2,placeholder=$$props.placeholder),"options"in $$props&&$$invalidate(3,options=$$props.options),"selected"in $$props&&$$invalidate(0,selected=$$props.selected),"value"in $$props&&$$invalidate(9,value=$$props.value)},$$self.$$.update=()=>{8&$$self.$$.dirty&&(valueToName=options.reduce(((m,opt)=>(m.set(opt[0],opt[1]),m)),new Map)),8&$$self.$$.dirty&&$$invalidate(5,nameToValue=options.reduce(((m,opt)=>(m.set(opt[1],opt[0]),m)),new Map)),33&$$self.$$.dirty&&$$invalidate(9,value=nameToValue.get(selected))},[selected,label,placeholder,options,name,nameToValue,input,function(e){$$invalidate(0,selected=input.value),$$invalidate(6,input.value="",input)},function(e){$$invalidate(6,input.value=selected,input)},value,function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{input=$$value,$$invalidate(6,input)}))},function(){selected=this.value,$$invalidate(0,selected)}]}class Select extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{name:4,label:1,placeholder:2,options:3,selected:0,value:9})}}var Select_svelte=Select;function UploadOptions_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[14]=list[i][0],child_ctx[15]=list[i][1],child_ctx[16]=list[i][2],child_ctx}function UploadOptions_svelte_create_each_block(ctx){let option,t,option_value_value,option_disabled_value,t_value=ctx[15]+"";return{c(){option=(0,internal.bGB)("option"),t=(0,internal.fLW)(t_value),option.__value=option_value_value=ctx[14],option.value=option.__value,option.disabled=option_disabled_value=ctx[16]},m(target,anchor){(0,internal.$Tr)(target,option,anchor),(0,internal.R3I)(option,t)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(option)}}}function create_else_block(ctx){let p,t,t_value=ctx[6]("uploadOptions.creditHelpText",{values:{organization:ctx[5].me.organization.name,n:ctx[5].me.organization.monthly_ai_credits}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","svelte-1to6tyt")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){96&dirty&&t_value!==(t_value=ctx[6]("uploadOptions.creditHelpText",{values:{organization:ctx[5].me.organization.name,n:ctx[5].me.organization.monthly_ai_credits}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadOptions_svelte_create_if_block(ctx){let p,raw_value=ctx[6]("uploadOptions.textractPremium")+"";return{c(){p=(0,internal.bGB)("p"),(0,internal.Ljt)(p,"class","svelte-1to6tyt")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),p.innerHTML=raw_value},p(ctx,dirty){64&dirty&&raw_value!==(raw_value=ctx[6]("uploadOptions.textractPremium")+"")&&(p.innerHTML=raw_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadOptions_svelte_create_fragment(ctx){let div0,select0,updating_selected,updating_value,t0,div2,div1,label0,t1,t2,input,t3,div4,label1,t4,t5,select1,t6,div3,p,t7,current,mounted,dispose,t1_value=ctx[6]("uploadOptions.forceOcr")+"",t4_value=ctx[6]("uploadOptions.ocrEngine")+"",raw_value=ctx[6]("uploadOptions.tesseract")+"";function select0_selected_binding(value){ctx[9](value)}function select0_value_binding(value){ctx[10](value)}let select0_props={name:"document-language",label:ctx[6]("uploadOptions.documentLang"),placeholder:ctx[6]("uploadOptions.documentLanguagePlaceholder"),options:ctx[4]};void 0!==ctx[3]&&(select0_props.selected=ctx[3]),void 0!==ctx[1]&&(select0_props.value=ctx[1]),select0=new Select_svelte({props:select0_props}),internal.VnY.push((()=>(0,internal.akz)(select0,"selected",select0_selected_binding))),internal.VnY.push((()=>(0,internal.akz)(select0,"value",select0_value_binding)));let each_value=ctx[8],each_blocks=[];for(let i=0;ictx[12].call(select1))),(0,internal.Ljt)(label1,"class","svelte-1to6tyt"),(0,internal.Ljt)(p,"class","svelte-1to6tyt"),(0,internal.Ljt)(div3,"class","small svelte-1to6tyt"),(0,internal.Ljt)(div4,"class","option")},m(target,anchor){(0,internal.$Tr)(target,div0,anchor),(0,internal.yef)(select0,div0,null),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,label0),(0,internal.R3I)(label0,t1),(0,internal.R3I)(label0,t2),(0,internal.R3I)(label0,input),input.checked=ctx[2],(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,div4,anchor),(0,internal.R3I)(div4,label1),(0,internal.R3I)(label1,t4),(0,internal.R3I)(label1,t5),(0,internal.R3I)(label1,select1);for(let i=0;iupdating_selected=!1))),!updating_value&&2&dirty&&(updating_value=!0,select0_changes.value=ctx[1],(0,internal.hjT)((()=>updating_value=!1))),select0.$set(select0_changes),(!current||64&dirty)&&t1_value!==(t1_value=ctx[6]("uploadOptions.forceOcr")+"")&&(0,internal.rTO)(t1,t1_value),4&dirty&&(input.checked=ctx[2]),(!current||64&dirty)&&t4_value!==(t4_value=ctx[6]("uploadOptions.ocrEngine")+"")&&(0,internal.rTO)(t4,t4_value),256&dirty){let i;for(each_value=ctx[8],i=0;i$$invalidate(5,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));let{language:language=api_languages.X9}=$$props,{forceOcr:forceOcr=!1}=$$props,{ocrEngine:ocrEngine="tess4"}=$$props;const hasTextract=$orgsAndUsers.me.feature_level>0;let languageName=function(languages){const[code,name]=languages.find((([code,name])=>code===api_languages.X9));return name}(api_languages.Mj);const ocrEngines=[["tess4","Tesseract",!1],["textract","Textract",!hasTextract]];return(0,svelte.H3)((async()=>{await(0,orgsAndUsers.q1)()})),$$self.$$set=$$props=>{"language"in $$props&&$$invalidate(1,language=$$props.language),"forceOcr"in $$props&&$$invalidate(2,forceOcr=$$props.forceOcr),"ocrEngine"in $$props&&$$invalidate(0,ocrEngine=$$props.ocrEngine)},$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(4,selectLanguages="textract"===ocrEngine?api_languages.g2:api_languages.Mj)},[ocrEngine,language,forceOcr,languageName,selectLanguages,$orgsAndUsers,$_,hasTextract,ocrEngines,function(value){languageName=value,$$invalidate(3,languageName)},function(value){language=value,$$invalidate(1,language)},function(){forceOcr=this.checked,$$invalidate(2,forceOcr)},function(){ocrEngine=(0,internal.RMU)(this),$$invalidate(0,ocrEngine),$$invalidate(8,ocrEngines)}]}class UploadOptions extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,UploadOptions_svelte_instance,UploadOptions_svelte_create_fragment,internal.N8,{language:1,forceOcr:2,ocrEngine:0})}}var UploadOptions_svelte=UploadOptions},6666:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234);function create_fragment(ctx){let svg,title_1,t,path,svg_width_value,svg_height_value;return{c(){svg=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("svg"),title_1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("title"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[1]),path=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bi5)("path"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(path,"d","M3.00220543,1 C3.00220543,0.446875 3.44891524,0 4.00183577,0 L11.9988785,0 C12.551799,0 12.9985088,0.446875 12.9985088,1 C12.9985088,1.553125 12.551799,2 11.9988785,2 L11.0773442,2 L11.4334625,6.63125 C12.5799136,7.253125 13.4858286,8.29375 13.9169192,9.590625 L13.9481576,9.684375 C14.0512445,9.990625 13.9981391,10.325 13.8107084,10.584375 C13.6232777,10.84375 13.3202648,11 12.9985088,11 L3.00220543,11 C2.68044942,11 2.38056032,10.846875 2.19000578,10.584375 C1.99945125,10.321875 1.94946973,9.9875 2.05255661,9.684375 L2.08379506,9.590625 C2.51488564,8.29375 3.42080063,7.253125 4.56725167,6.63125 L4.92336998,2 L4.00183577,2 C3.44891524,2 3.00220543,1.553125 3.00220543,1 Z M7.00072677,12 L8.99998744,12 L8.99998744,15 C8.99998744,15.553125 8.55327764,16 8.00035711,16 C7.44743658,16 7.00072677,15.553125 7.00072677,15 L7.00072677,12 Z"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(path,"fill-rule","nonzero"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"width",svg_width_value=ctx[0]*REM+"px"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"height",svg_height_value=ctx[0]*REM+"px"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"viewBox","0 0 16 16"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"class","svelte-yezalu")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,svg,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(svg,title_1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(title_1,t),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(svg,path)},p(ctx,[dirty]){2&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,ctx[1]),1&dirty&&svg_width_value!==(svg_width_value=ctx[0]*REM+"px")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"width",svg_width_value),1&dirty&&svg_height_value!==(svg_height_value=ctx[0]*REM+"px")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(svg,"height",svg_height_value)},i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(svg)}}}const REM=16;function instance($$self,$$props,$$invalidate){let{size:size=1}=$$props,{title:title="Pin"}=$$props;return $$self.$$set=$$props=>{"size"in $$props&&$$invalidate(0,size=$$props.size),"title"in $$props&&$$invalidate(1,title=$$props.title)},[size,title]}class Pin extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{size:0,title:1})}}__webpack_exports__.Z=Pin},3213:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";var svelte_internal__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(4234),_router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(3566),_common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(5465),_common_Loader_svelte__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(1172),_common_Tooltip_svelte__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(592),_emit_js__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(1812),_manager_documents_js__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(9914),svelte_i18n__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(6469),_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(8902),_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8___default=__webpack_require__.n(_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8__),_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(2381),_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9___default=__webpack_require__.n(_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9__),_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(9002),_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10___default=__webpack_require__.n(_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10__),_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(4172),_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11___default=__webpack_require__.n(_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11__);function create_else_block_2(ctx){let span;return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","error svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),span.innerHTML=_assets_error_icon_svg_raw__WEBPACK_IMPORTED_MODULE_8___default()},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,i:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,o:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_if_block_7(ctx){let tooltip,current;return tooltip=new _common_Tooltip_svelte__WEBPACK_IMPORTED_MODULE_4__.Z({props:{$$slots:{caption:[create_caption_slot],default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(tooltip.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(tooltip,target,anchor),current=!0},p(ctx,dirty){const tooltip_changes={};18305&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(tooltip,detaching)}}}function create_if_block_4(ctx){let show_if,current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block_5,create_if_block_6,create_else_block],if_blocks=[];function select_block_type_1(ctx,dirty){return 3&dirty&&(show_if=null),ctx[2]?0:(null==show_if&&(show_if=!!(ctx[1]&&null!=ctx[0].publishedUrl&&ctx[0].publishedUrl.trim().length>0)),show_if?1:2)}return current_block_type_index=select_block_type_1(ctx,-1),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx,dirty),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_default_slot_2(ctx){let span,t,t_value=ctx[0].status+"";return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","fullstatus svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].status+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span)}}}function create_default_slot_1(ctx){let loader,current;return loader=new _common_Loader_svelte__WEBPACK_IMPORTED_MODULE_3__.Z({props:{active:!0,center:!0,big:!0,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(loader.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(loader,target,anchor),current=!0},p(ctx,dirty){const loader_changes={};16385&dirty&&(loader_changes.$$scope={dirty:dirty,ctx:ctx}),loader.$set(loader_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(loader.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(loader.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(loader,detaching)}}}function create_else_block_1(ctx){let t,t_value=ctx[10]("documentThumbnail.loading")+"";return{c(){t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t_value)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t,anchor)},p(ctx,dirty){1024&dirty&&t_value!==(t_value=ctx[10]("documentThumbnail.loading")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t,t_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t)}}}function create_if_block_8(ctx){let p,t0,t1,t2,if_block_anchor,t0_value=Math.floor(100*ctx[9])+"",if_block=null!=ctx[8]&&create_if_block_9(ctx);return{c(){p=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("p"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t0_value),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)("%"),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(p,"class","svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,p,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t2,anchor),if_block&&if_block.m(target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){512&dirty&&t0_value!==(t0_value=Math.floor(100*ctx[9])+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,t0_value),null!=ctx[8]?if_block?if_block.p(ctx,dirty):(if_block=create_if_block_9(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(p),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t2),if_block&&if_block.d(detaching),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(if_block_anchor)}}}function create_if_block_9(ctx){let p,t0,t1,t2,t3,t4,t4_value=ctx[10]("documentThumbnail.pages")+"";return{c(){p=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("p"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[8]),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(" / "),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(ctx[7]),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),t4=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t4_value),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(p,"class","svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,p,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t1),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t2),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t3),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(p,t4)},p(ctx,dirty){256&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,ctx[8]),128&dirty&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t2,ctx[7]),1024&dirty&&t4_value!==(t4_value=ctx[10]("documentThumbnail.pages")+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t4,t4_value)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(p)}}}function create_caption_slot(ctx){let div;function select_block_type_2(ctx,dirty){return null!=ctx[9]?create_if_block_8:create_else_block_1}let current_block_type=select_block_type_2(ctx),if_block=current_block_type(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"slot","caption"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","caption svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block.m(div,null)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_2(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div,null)))},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block.d()}}}function create_else_block(ctx){let link,current;return link=new _router_Link_svelte__WEBPACK_IMPORTED_MODULE_1__.Z({props:{newPage:ctx[1],to:"viewer",params:{id:ctx[0].slugId},$$slots:{default:[create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(link.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};2&dirty&&(link_changes.newPage=ctx[1]),1&dirty&&(link_changes.params={id:ctx[0].slugId}),16385&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(link,detaching)}}}function create_if_block_6(ctx){let a,image,a_href_value,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{src:ctx[0].thumbnail}}),{c(){a=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("a"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value=ctx[0].publishedUrl),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"rel","noreferrer"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"target","_blank")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,a,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,a,null),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes),(!current||1&dirty&&a_href_value!==(a_href_value=ctx[0].publishedUrl))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(a,"href",a_href_value)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(a),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image)}}}function create_if_block_5(ctx){let image,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{clickable:!0,src:ctx[0].thumbnail}}),image.$on("click",ctx[13]),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,target,anchor),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image,detaching)}}}function create_default_slot(ctx){let image,current;return image=new _common_Image_svelte__WEBPACK_IMPORTED_MODULE_2__.Z({props:{src:ctx[0].thumbnail}}),{c(){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.YCL)(image.$$.fragment)},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.yef)(image,target,anchor),current=!0},p(ctx,dirty){const image_changes={};1&dirty&&(image_changes.src=ctx[0].thumbnail),image.$set(image_changes)},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(image.$$.fragment,local),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(image.$$.fragment,local),current=!1},d(detaching){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.vpE)(image,detaching)}}}function create_if_block(ctx){let span,t0,t1,div,t2,t3,t0_value=ctx[10]("document.noteCount",{values:{n:ctx[3]}})+"",if_block0=ctx[4]&&create_if_block_3(ctx),if_block1=ctx[5]&&create_if_block_2(ctx),if_block2=ctx[6]&&create_if_block_1(ctx);return{c(){span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),t0=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.fLW)(t0_value),t1=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),if_block0&&if_block0.c(),t2=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),t3=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block2&&if_block2.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","note-count svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","tag svelte-1eljb7x")},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,span,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(span,t0),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,t1,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t2),if_block1&&if_block1.m(div,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t3),if_block2&&if_block2.m(div,null)},p(ctx,dirty){1032&dirty&&t0_value!==(t0_value=ctx[10]("document.noteCount",{values:{n:ctx[3]}})+"")&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.rTO)(t0,t0_value),ctx[4]?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_3(ctx),if_block0.c(),if_block0.m(div,t2)):if_block0&&(if_block0.d(1),if_block0=null),ctx[5]?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_2(ctx),if_block1.c(),if_block1.m(div,t3)):if_block1&&(if_block1.d(1),if_block1=null),ctx[6]?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_1(ctx),if_block2.c(),if_block2.m(div,null)):if_block2&&(if_block2.d(1),if_block2=null)},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(span),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(t1),detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_3(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_public_tag_svg_raw__WEBPACK_IMPORTED_MODULE_9___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_if_block_2(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_organization_tag_svg_raw__WEBPACK_IMPORTED_MODULE_10___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_if_block_1(ctx){let html_tag,html_anchor;return{c(){html_tag=new svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FWw(!1),html_anchor=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(_assets_private_tag_svg_raw__WEBPACK_IMPORTED_MODULE_11___default(),target,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,html_anchor,anchor)},p:svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ZTd,d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_fragment(ctx){let div,span,current_block_type_index,if_block0,t,div_data_id_value,current;const if_block_creators=[create_if_block_4,create_if_block_7,create_else_block_2],if_blocks=[];function select_block_type(ctx,dirty){return ctx[0].viewable?0:ctx[0].pending?1:2}current_block_type_index=select_block_type(ctx),if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block1=ctx[3]>0&&create_if_block(ctx);return{c(){div=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("div"),span=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.bGB)("span"),if_block0.c(),t=(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.DhX)(),if_block1&&if_block1.c(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(span,"class","imgwrap svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"class","img svelte-1eljb7x"),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"data-id",div_data_id_value=ctx[0].id),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"embed",ctx[1])},m(target,anchor){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.$Tr)(target,div,anchor),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,span),if_blocks[current_block_type_index].m(span,null),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.R3I)(div,t),if_block1&&if_block1.m(div,null),current=!0},p(ctx,[dirty]){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.dvw)(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.gbL)(),if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block0,1),if_block0.m(span,null)),ctx[3]>0?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block(ctx),if_block1.c(),if_block1.m(div,null)):if_block1&&(if_block1.d(1),if_block1=null),(!current||1&dirty&&div_data_id_value!==(div_data_id_value=ctx[0].id))&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ljt)(div,"data-id",div_data_id_value),(!current||2&dirty)&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.VHj)(div,"embed",ctx[1])},i(local){current||((0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.Ui)(if_block0),current=!0)},o(local){(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.etI)(if_block0),current=!1},d(detaching){detaching&&(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.ogt)(div),if_blocks[current_block_type_index].d(),if_block1&&if_block1.d()}}}function instance($$self,$$props,$$invalidate){let realProgress,pagesProcessed,pageCount,$documents,$_;(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,_manager_documents_js__WEBPACK_IMPORTED_MODULE_6__.De,($$value=>$$invalidate(12,$documents=$$value))),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.FIv)($$self,svelte_i18n__WEBPACK_IMPORTED_MODULE_7__._,($$value=>$$invalidate(10,$_=$$value)));let{document:document}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props,{noteCount:noteCount=0}=$$props,{publicNote:publicNote=!1}=$$props,{orgNote:orgNote=!1}=$$props,{privateNote:privateNote=!1}=$$props;const emit=(0,_emit_js__WEBPACK_IMPORTED_MODULE_5__.Z)({pick(){}});return $$self.$$set=$$props=>{"document"in $$props&&$$invalidate(0,document=$$props.document),"embed"in $$props&&$$invalidate(1,embed=$$props.embed),"dialog"in $$props&&$$invalidate(2,dialog=$$props.dialog),"noteCount"in $$props&&$$invalidate(3,noteCount=$$props.noteCount),"publicNote"in $$props&&$$invalidate(4,publicNote=$$props.publicNote),"orgNote"in $$props&&$$invalidate(5,orgNote=$$props.orgNote),"privateNote"in $$props&&$$invalidate(6,privateNote=$$props.privateNote)},$$self.$$.update=()=>{4097&$$self.$$.dirty&&$$invalidate(9,realProgress=null==document?null:$documents.realProgressMap[document.id]),4097&$$self.$$.dirty&&$$invalidate(8,pagesProcessed=null==document?null:$documents.pagesProcessedMap[document.id]),4097&$$self.$$.dirty&&$$invalidate(7,pageCount=null==document?null:$documents.pageCountMap[document.id])},[document,embed,dialog,noteCount,publicNote,orgNote,privateNote,pageCount,pagesProcessed,realProgress,$_,emit,$documents,()=>emit.pick(document)]}class DocumentThumbnail extends svelte_internal__WEBPACK_IMPORTED_MODULE_0__.f_C{constructor(options){super(),(0,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.S1n)(this,options,instance,create_fragment,svelte_internal__WEBPACK_IMPORTED_MODULE_0__.N8,{document:0,embed:1,dialog:2,noteCount:3,publicNote:4,orgNote:5,privateNote:6})}}__webpack_exports__.Z=DocumentThumbnail},76:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return Documents_svelte}});var internal=__webpack_require__(4234),runtime_esm=__webpack_require__(6469),animate=__webpack_require__(7431),svelte=__webpack_require__(8568),AddonRun_svelte=__webpack_require__(1195),base=__webpack_require__(5364);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[7]=list[i],child_ctx}function create_if_block(ctx){let div,h3,t0,t1,current,t0_value=ctx[1]("addonProgress.progress")+"",each_blocks=[],each_1_lookup=new Map,each_value=ctx[0];const get_key=ctx=>ctx[7].uuid;for(let i=0;i0&&create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){ctx[0].length>0?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block,1)):(if_block=create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function instance($$self,$$props,$$invalidate){let $runs,$_;(0,internal.FIv)($$self,AddonRun_svelte.Or,($$value=>$$invalidate(0,$runs=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));const POLL_INTERVAL=parseInt("5000",10),endpoint=new URL("/api/addon_runs/?expand=addon&dismissed=false&per_page=20",base.t),options={credentials:"include"};let timeout;async function load(){const resp=await fetch(endpoint,options);if(!resp.ok)throw new Error(resp.statusText);const{results:results}=await resp.json();(0,internal.fxP)(AddonRun_svelte.Or,$runs=results,$runs)}return(0,svelte.H3)((async()=>{await load()})),(0,svelte.gx)((()=>{$runs.length>0&&(timeout=setTimeout(load,POLL_INTERVAL))})),[$runs,$_]}class AddonStatus extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{})}}var AddonStatus_svelte=AddonStatus,lib=__webpack_require__(456);function Checkbox_svelte_create_if_block(ctx){let current_block_type_index,if_block,if_block_anchor,current;const if_block_creators=[create_if_block_1,create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[1]?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index!==previous_block_index&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block||(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_else_block(ctx){let check16,current;return check16=new lib.L7T({}),{c(){(0,internal.YCL)(check16.$$.fragment)},m(target,anchor){(0,internal.yef)(check16,target,anchor),current=!0},i(local){current||((0,internal.Ui)(check16.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(check16.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(check16,detaching)}}}function create_if_block_1(ctx){let dash16,current;return dash16=new lib.cuT({}),{c(){(0,internal.YCL)(dash16.$$.fragment)},m(target,anchor){(0,internal.yef)(dash16,target,anchor),current=!0},i(local){current||((0,internal.Ui)(dash16.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dash16.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dash16,detaching)}}}function Checkbox_svelte_create_fragment(ctx){let label,input,t,span,current,mounted,dispose,if_block=ctx[0]&&Checkbox_svelte_create_if_block(ctx);return{c(){label=(0,internal.bGB)("label"),input=(0,internal.bGB)("input"),t=(0,internal.DhX)(),span=(0,internal.bGB)("span"),if_block&&if_block.c(),(0,internal.Ljt)(input,"type","checkbox"),input.disabled=ctx[2],(0,internal.Ljt)(input,"class","svelte-1ypg73i"),(0,internal.Ljt)(span,"class","svelte-1ypg73i"),(0,internal.Ljt)(label,"class","svelte-1ypg73i")},m(target,anchor){(0,internal.$Tr)(target,label,anchor),(0,internal.R3I)(label,input),ctx[5](input),input.checked=ctx[0],(0,internal.R3I)(label,t),(0,internal.R3I)(label,span),if_block&&if_block.m(span,null),current=!0,mounted||(dispose=[(0,internal.oLt)(input,"change",ctx[6]),(0,internal.oLt)(input,"change",ctx[4])],mounted=!0)},p(ctx,[dirty]){(!current||4&dirty)&&(input.disabled=ctx[2]),1&dirty&&(input.checked=ctx[0]),ctx[0]?if_block?(if_block.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block,1)):(if_block=Checkbox_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(span,null)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(label),ctx[5](null),if_block&&if_block.d(),mounted=!1,(0,internal.j7q)(dispose)}}}function Checkbox_svelte_instance($$self,$$props,$$invalidate){const dispatch=(0,svelte.x)();let checkbox,{checked:checked=!1}=$$props,{indeterminate:indeterminate=!1}=$$props,{disabled:disabled=!1}=$$props;return $$self.$$set=$$props=>{"checked"in $$props&&$$invalidate(0,checked=$$props.checked),"indeterminate"in $$props&&$$invalidate(1,indeterminate=$$props.indeterminate),"disabled"in $$props&&$$invalidate(2,disabled=$$props.disabled)},[checked,indeterminate,disabled,checkbox,function(){checked?dispatch("check",{indeterminate:indeterminate}):dispatch("uncheck")},function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{checkbox=$$value,$$invalidate(3,checkbox)}))},function(){checked=this.checked,$$invalidate(0,checked)}]}class Checkbox extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Checkbox_svelte_instance,Checkbox_svelte_create_fragment,internal.N8,{checked:0,indeterminate:1,disabled:2})}}var Checkbox_svelte=Checkbox,Tooltip_svelte=__webpack_require__(592),Dropdown_svelte=__webpack_require__(2127),search=__webpack_require__(6046),page_arrow_leftraw=__webpack_require__(2728),page_arrow_leftraw_default=__webpack_require__.n(page_arrow_leftraw),page_arrow_rightraw=__webpack_require__(4704),page_arrow_rightraw_default=__webpack_require__.n(page_arrow_rightraw);function Paginator_svelte_create_if_block(ctx){let button0,button0_disabled_value,t0,div2,div0,t1,div1,t2,t3,button1,button1_disabled_value,mounted,dispose,t2_value=ctx[1]("paginator.document",{values:{n:ctx[0].results.count}})+"";function select_block_type(ctx,dirty){return ctx[0].results.onlyPage?Paginator_svelte_create_if_block_1:Paginator_svelte_create_else_block}let current_block_type=select_block_type(ctx),if_block=current_block_type(ctx);return{c(){button0=(0,internal.bGB)("button"),t0=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),if_block.c(),t1=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),button1=(0,internal.bGB)("button"),button0.disabled=button0_disabled_value=!ctx[0].hasPrev,(0,internal.Ljt)(button0,"class","svelte-1b2tp76"),(0,internal.Ljt)(div0,"class","number svelte-1b2tp76"),(0,internal.Ljt)(div1,"class","documents svelte-1b2tp76"),(0,internal.Ljt)(div2,"class","text svelte-1b2tp76"),button1.disabled=button1_disabled_value=!ctx[0].hasNext,(0,internal.Ljt)(button1,"class","svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,button0,anchor),button0.innerHTML=page_arrow_leftraw_default(),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div0),if_block.m(div0,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,t2),(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,button1,anchor),button1.innerHTML=page_arrow_rightraw_default(),mounted||(dispose=[(0,internal.oLt)(button0,"click",search.Dj),(0,internal.oLt)(button1,"click",search.Xp)],mounted=!0)},p(ctx,dirty){1&dirty&&button0_disabled_value!==(button0_disabled_value=!ctx[0].hasPrev)&&(button0.disabled=button0_disabled_value),current_block_type===(current_block_type=select_block_type(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div0,null))),3&dirty&&t2_value!==(t2_value=ctx[1]("paginator.document",{values:{n:ctx[0].results.count}})+"")&&(0,internal.rTO)(t2,t2_value),1&dirty&&button1_disabled_value!==(button1_disabled_value=!ctx[0].hasNext)&&(button1.disabled=button1_disabled_value)},d(detaching){detaching&&(0,internal.ogt)(button0),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(div2),if_block.d(),detaching&&(0,internal.ogt)(t3),detaching&&(0,internal.ogt)(button1),mounted=!1,(0,internal.j7q)(dispose)}}}function Paginator_svelte_create_else_block(ctx){let span,t0,t1,t2,t3,if_block_anchor,t0_value=ctx[0].start+"",t2_value=ctx[0].end+"",if_block=ctx[0].results.count&&create_if_block_2(ctx);return{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)("\n -\n "),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)(),(0,internal.Ljt)(span,"class","range svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.R3I)(span,t1),(0,internal.R3I)(span,t2),(0,internal.$Tr)(target,t3,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){1&dirty&&t0_value!==(t0_value=ctx[0].start+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=ctx[0].end+"")&&(0,internal.rTO)(t2,t2_value),ctx[0].results.count?if_block?if_block.p(ctx,dirty):(if_block=create_if_block_2(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t3),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Paginator_svelte_create_if_block_1(ctx){let t,t_value=ctx[0].results.rawResults.results.length+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[0].results.rawResults.results.length+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_if_block_2(ctx){let t0,t1,t2,t0_value=ctx[1]("paginator.of")+"",t2_value=ctx[0].results.count+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),t2=(0,internal.fLW)(t2_value)},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,t2,anchor)},p(ctx,dirty){2&dirty&&t0_value!==(t0_value=ctx[1]("paginator.of")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty&&t2_value!==(t2_value=ctx[0].results.count+"")&&(0,internal.rTO)(t2,t2_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(t2)}}}function Paginator_svelte_create_fragment(ctx){let div,if_block=ctx[0].hasResults&&Paginator_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","paginator svelte-1b2tp76")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null)},p(ctx,[dirty]){ctx[0].hasResults?if_block?if_block.p(ctx,dirty):(if_block=Paginator_svelte_create_if_block(ctx),if_block.c(),if_block.m(div,null)):if_block&&(if_block.d(1),if_block=null)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d()}}}function Paginator_svelte_instance($$self,$$props,$$invalidate){let $search,$_;return(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(0,$search=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value))),[$search,$_]}class Paginator extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Paginator_svelte_instance,Paginator_svelte_create_fragment,internal.N8,{})}}var Paginator_svelte=Paginator,Menu_svelte=__webpack_require__(7918),MenuItem_svelte=__webpack_require__(9213),layout=__webpack_require__(3423),metaDialogs=__webpack_require__(9216),orgsAndUsers=__webpack_require__(5340),svue=__webpack_require__(3396),documents=__webpack_require__(9914);const manager=new svue.x({data(){return{documents:documents.De,layout:layout.bK}},computed:{hasDocuments(documents){return documents.documents.length>0},allSelected(hasDocuments,documents,layout){return hasDocuments&&documents.documents.every((doc=>null!=layout.selectedMap[doc.id]))},someSelected(hasDocuments,layout,allSelected){return hasDocuments&&layout.hasSelection&&!allSelected},noneSelected(hasDocuments,layout){return!hasDocuments||!layout.hasSelection}}});function removeSelected(){(0,documents.u$)(layout.bK.selected)}function changeAccessSelected(){0!=layout.bK.numSelected&&(layout.bK.accessEditDocuments=layout.bK.selected.slice())}function changeOwnerSelected(){0!=layout.bK.numSelected&&(layout.bK.ownerEditDocuments=layout.bK.selected.slice())}function reprocessSelected(){0!=layout.bK.numSelected&&(layout.bK.reprocessDocuments=layout.bK.selected.slice())}function cancelProcessSelected(){(0,documents.Qy)(layout.bK.selected)}function editDataSelected(){(0,layout.re)(layout.bK.selected)}function showDiagnosticsSelected(){layout.bK.diagnosticsOpen=!0}function showMailkeySelected(){layout.bK.mailkeyOpen=!0}var router=__webpack_require__(3356);function EditMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[10]=list[i],child_ctx}function create_default_slot_10(ctx){let t,t_value=ctx[5]("editMenu.editDocInfo")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.editDocInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_9(ctx){let t,t_value=ctx[5](ctx[10].menuTitle)+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5](ctx[10].menuTitle)+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_each_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{indent:!0,disabled:null!=ctx[10].disabled&&ctx[10].disabled(ctx[1].numSelected),$$slots:{default:[create_default_slot_9]},$$scope:{ctx:ctx}}}),menuitem.$on("click",(function(){return ctx[9](ctx[10])})),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx;const menuitem_changes={};2&dirty&&(menuitem_changes.disabled=null!=ctx[10].disabled&&ctx[10].disabled(ctx[1].numSelected)),8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_8(ctx){let t,t_value=ctx[5]("editMenu.changeAccess")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.changeAccess")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_7(ctx){let t,t_value=ctx[5]("editMenu.editDocData")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.editDocData")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_if_block_4(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_6]},$$scope:{ctx:ctx}}}),menuitem.$on("click",reprocessSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_if_block_3(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_5]},$$scope:{ctx:ctx}}}),menuitem.$on("click",cancelProcessSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_6(ctx){let t,t_value=ctx[5]("editMenu.forceReprocess")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.forceReprocess")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_5(ctx){let t,t_value=ctx[5]("editMenu.cancelProcessing")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.cancelProcessing")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_if_block_2(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_4]},$$scope:{ctx:ctx}}}),menuitem.$on("click",ctx[6]),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_4(ctx){let html_tag,html_anchor,raw_value=ctx[5]("editMenu.entities")+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){32&dirty&&raw_value!==(raw_value=ctx[5]("editMenu.entities")+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function EditMenu_svelte_create_if_block_1(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem.$on("click",changeOwnerSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_3(ctx){let t,t_value=ctx[5]("editMenu.changeOwner")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.changeOwner")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_2(ctx){let t,t_value=ctx[5]("editMenu.delete")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.delete")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function EditMenu_svelte_create_if_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{special:!0,$$slots:{default:[create_default_slot_1]},$$scope:{ctx:ctx}}}),menuitem.$on("click",showDiagnosticsSelected),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};8224&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_1(ctx){let t,t_value=ctx[5]("editMenu.diagnosticInfo")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("editMenu.diagnosticInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot(ctx){let menuitem0,t0,t1,menuitem1,t2,menuitem2,t3,current_block_type_index,if_block0,t4,t5,t6,menuitem3,t7,if_block3_anchor,current;menuitem0=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_10]},$$scope:{ctx:ctx}}}),menuitem0.$on("click",ctx[8]);let each_value=metaDialogs.h,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));menuitem1=new MenuItem_svelte.Z({props:{disabled:ctx[2],$$slots:{default:[create_default_slot_8]},$$scope:{ctx:ctx}}}),menuitem1.$on("click",changeAccessSelected),menuitem2=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_7]},$$scope:{ctx:ctx}}}),menuitem2.$on("click",editDataSelected);const if_block_creators=[create_if_block_3,create_if_block_4],if_blocks=[];function select_block_type(ctx,dirty){return ctx[3]?0:ctx[2]?-1:1}~(current_block_type_index=select_block_type(ctx))&&(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block1=1==ctx[1].numSelected&&EditMenu_svelte_create_if_block_2(ctx),if_block2=ctx[4]&&EditMenu_svelte_create_if_block_1(ctx);menuitem3=new MenuItem_svelte.Z({props:{danger:!0,$$slots:{default:[create_default_slot_2]},$$scope:{ctx:ctx}}}),menuitem3.$on("click",removeSelected);let if_block3=ctx[0].isStaff&&EditMenu_svelte_create_if_block(ctx);return{c(){(0,internal.YCL)(menuitem0.$$.fragment),t0=(0,internal.DhX)();for(let i=0;i{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(t4.parentNode,t4)):if_block0=null),1==ctx[1].numSelected?if_block1?(if_block1.p(ctx,dirty),2&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=EditMenu_svelte_create_if_block_2(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t5.parentNode,t5)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),ctx[4]?if_block2?(if_block2.p(ctx,dirty),16&dirty&&(0,internal.Ui)(if_block2,1)):(if_block2=EditMenu_svelte_create_if_block_1(ctx),if_block2.c(),(0,internal.Ui)(if_block2,1),if_block2.m(t6.parentNode,t6)):if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_block2,1,1,(()=>{if_block2=null})),(0,internal.gbL)());const menuitem3_changes={};8224&dirty&&(menuitem3_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem3.$set(menuitem3_changes),ctx[0].isStaff?if_block3?(if_block3.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block3,1)):(if_block3=EditMenu_svelte_create_if_block(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(if_block3_anchor.parentNode,if_block3_anchor)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)())},i(local){if(!current){(0,internal.Ui)(menuitem0.$$.fragment,local);for(let i=0;i$$invalidate(0,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(1,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(5,$_=$$value)));let processing=!1,allProcessing=!1,canChangeOwner=!1,{visible:visible=!1}=$$props;return $$self.$$set=$$props=>{"visible"in $$props&&$$invalidate(7,visible=$$props.visible)},$$self.$$.update=()=>{128&$$self.$$.dirty&&visible&&$$invalidate(2,[processing,allProcessing]=(0,layout.SW)(),processing,($$invalidate(3,allProcessing),$$invalidate(7,visible))),131&$$self.$$.dirty&&visible&&$orgsAndUsers.me&&$$invalidate(4,canChangeOwner=0==$layout.selected.filter((doc=>!(doc.userId==$orgsAndUsers.me.id&&(!doc.publicAccess||$orgsAndUsers.me.organizations.indexOf(doc.orgId)>=0)))).length)},[$orgsAndUsers,$layout,processing,allProcessing,canChangeOwner,$_,function(){const docs=layout.bK.selected;if(1!=docs.length)return;const doc=docs[0];(0,router.$n)("entity",{id:doc.slugId})},visible,()=>{0!=layout.bK.numSelected&&(layout.bK.documentInfoOpen=!0)},meta=>function(meta){0!=layout.bK.numSelected&&(layout.bK.metaOpen=meta)}(meta)]}class EditMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,EditMenu_svelte_instance,EditMenu_svelte_create_fragment,internal.N8,{visible:7})}}var EditMenu_svelte=EditMenu,projects=__webpack_require__(9365),string=__webpack_require__(3581);function ProjectMenuItem_svelte_create_if_block(ctx){let t;return{c(){t=(0,internal.fLW)("✓")},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProjectMenuItem_svelte_create_default_slot_1(ctx){let t0,t1,span,t0_value=ctx[0].title+"",if_block="fully"==ctx[1]&&ProjectMenuItem_svelte_create_if_block();return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span=(0,internal.bGB)("span"),if_block&&if_block.c(),(0,internal.Ljt)(span,"class","scope svelte-1js79cp")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span,anchor),if_block&&if_block.m(span,null)},p(ctx,dirty){1&dirty&&t0_value!==(t0_value=ctx[0].title+"")&&(0,internal.rTO)(t0,t0_value),"fully"==ctx[1]?if_block||(if_block=ProjectMenuItem_svelte_create_if_block(),if_block.c(),if_block.m(span,null)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span),if_block&&if_block.d()}}}function ProjectMenuItem_svelte_create_default_slot(ctx){let tooltip,current;return tooltip=new Tooltip_svelte.Z({props:{delay:500,caption:ctx[2],$$slots:{default:[ProjectMenuItem_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(tooltip.$$.fragment)},m(target,anchor){(0,internal.yef)(tooltip,target,anchor),current=!0},p(ctx,dirty){const tooltip_changes={};4&dirty&&(tooltip_changes.caption=ctx[2]),35&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,internal.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(tooltip,detaching)}}}function ProjectMenuItem_svelte_create_fragment(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[ProjectMenuItem_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),menuitem.$on("click",ctx[3]),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,[dirty]){const menuitem_changes={};39&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function ProjectMenuItem_svelte_instance($$self,$$props,$$invalidate){let scope,caption,$layout;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(4,$layout=$$value)));let{project:project}=$$props;return $$self.$$set=$$props=>{"project"in $$props&&$$invalidate(0,project=$$props.project)},$$self.$$.update=()=>{17&$$self.$$.dirty&&$$invalidate(1,scope=$layout.selected.length>0?(0,projects.Ip)(project):"none"),18&$$self.$$.dirty&&$$invalidate(2,caption="fully"==scope?`Remove ${(0,string.fu)($layout.selected.length,"document")} from project`:`Add ${(0,string.fu)($layout.selected.length,"document")} to project`)},[project,scope,caption,function(){"fully"==scope?(0,projects.lF)(project):(0,projects.du)(project)},$layout]}class ProjectMenuItem extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProjectMenuItem_svelte_instance,ProjectMenuItem_svelte_create_fragment,internal.N8,{project:0})}}var ProjectMenuItem_svelte=ProjectMenuItem;function ProjectsMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[4]=list[i],child_ctx}function ProjectsMenu_svelte_create_default_slot_3(ctx){let t,t_value=ctx[2]("projectsMenu.newProject")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("projectsMenu.newProject")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProjectsMenu_svelte_create_else_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};133&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function ProjectsMenu_svelte_create_if_block(ctx){let menuitem,t,each_1_anchor,current;menuitem=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}});let each_value=ctx[1],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){(0,internal.YCL)(menuitem.$$.fragment),t=(0,internal.DhX)();for(let i=0;i0?ProjectsMenu_svelte_create_if_block_1:create_else_block_1}let current_block_type=select_block_type_1(ctx),if_block=current_block_type(ctx);return{c(){if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_1(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)))},d(detaching){if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProjectsMenu_svelte_create_default_slot_1(ctx){let div,t,t_value=ctx[2]("projectsMenu.projMembership")+"";return{c(){div=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div,"class","small")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("projectsMenu.projMembership")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function ProjectsMenu_svelte_create_each_block(ctx){let projectmenuitem,current;return projectmenuitem=new ProjectMenuItem_svelte({props:{project:ctx[4]}}),{c(){(0,internal.YCL)(projectmenuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(projectmenuitem,target,anchor),current=!0},p(ctx,dirty){const projectmenuitem_changes={};2&dirty&&(projectmenuitem_changes.project=ctx[4]),projectmenuitem.$set(projectmenuitem_changes)},i(local){current||((0,internal.Ui)(projectmenuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(projectmenuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(projectmenuitem,detaching)}}}function ProjectsMenu_svelte_create_default_slot(ctx){let menuitem,t,current_block_type_index,if_block,if_block_anchor,current;menuitem=new MenuItem_svelte.Z({props:{primary:!0,$$slots:{default:[ProjectsMenu_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem.$on("click",layout.o9);const if_block_creators=[ProjectsMenu_svelte_create_if_block,ProjectsMenu_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[3].hasSelection&&ctx[0].addRemoveableProjects.length>0?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){(0,internal.YCL)(menuitem.$$.fragment),t=(0,internal.DhX)(),if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),(0,internal.$Tr)(target,t,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};132&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching),detaching&&(0,internal.ogt)(t),if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProjectsMenu_svelte_create_fragment(ctx){let menu,current;return menu=new Menu_svelte.Z({props:{$$slots:{default:[ProjectsMenu_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menu.$$.fragment)},m(target,anchor){(0,internal.yef)(menu,target,anchor),current=!0},p(ctx,[dirty]){const menu_changes={};143&dirty&&(menu_changes.$$scope={dirty:dirty,ctx:ctx}),menu.$set(menu_changes)},i(local){current||((0,internal.Ui)(menu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menu,detaching)}}}function ProjectsMenu_svelte_instance($$self,$$props,$$invalidate){let alphabetizedProjects,$projects,$_,$layout;return(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(0,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(3,$layout=$$value))),$$self.$$.update=()=>{1&$$self.$$.dirty&&$$invalidate(1,alphabetizedProjects=function(projects){if(null==projects)return[];try{projects.sort(((a,b)=>a.title.localeCompare(b.title)))}catch(e){}return projects}($projects.addRemoveableProjects))},[$projects,alphabetizedProjects,$_,$layout]}class ProjectsMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProjectsMenu_svelte_instance,ProjectsMenu_svelte_create_fragment,internal.N8,{})}}var ProjectsMenu_svelte=ProjectsMenu,AddOnListItem_svelte=__webpack_require__(2869);function AddonsMenu_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[3]=list[i],child_ctx}function AddonsMenu_svelte_create_default_slot_4(ctx){let t,t_value=ctx[3].name+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){1&dirty&&t_value!==(t_value=ctx[3].name+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_each_block(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{href:addonURL(ctx[3]),$$slots:{default:[AddonsMenu_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1&dirty&&(menuitem_changes.href=addonURL(ctx[3])),65&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function AddonsMenu_svelte_create_default_slot_3(ctx){let t,t_value=ctx[1]("addonsMenu.browseAll")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.browseAll")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot_2(ctx){let t,t_value=ctx[1]("addonsMenu.addonRuns")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.addonRuns")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot_1(ctx){let t,t_value=ctx[1]("addonsMenu.learnMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){2&dirty&&t_value!==(t_value=ctx[1]("addonsMenu.learnMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function AddonsMenu_svelte_create_default_slot(ctx){let t0,hr,t1,menuitem0,t2,menuitem1,t3,menuitem2,current,each_value=ctx[0],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return menuitem0=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=browser",href:"#add-ons",$$slots:{default:[AddonsMenu_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),menuitem1=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=runs",href:"#add-ons/runs",$$slots:{default:[AddonsMenu_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),menuitem2=new MenuItem_svelte.Z({props:{class:"promo plausible-event-name=app-add-ons plausible-event-target=help",target:"_blank",href:"https://www.documentcloud.org/help/add-ons/",$$slots:{default:[AddonsMenu_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),{c(){for(let i=0;i$$invalidate(2,$pinned=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value))),(0,svelte.H3)((()=>{window.plausible=window.plausible||function(){(window.plausible.q=window.plausible.q||[]).push(arguments)}})),$$self.$$.update=()=>{4&$$self.$$.dirty&&$$invalidate(0,alphabetizedAddons=$pinned.sort(((a,b)=>a.name.localeCompare(b.name))))},[alphabetizedAddons,$_,$pinned]}class AddonsMenu extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AddonsMenu_svelte_instance,AddonsMenu_svelte_create_fragment,internal.N8,{})}}var AddonsMenu_svelte=AddonsMenu;function ActionBar_svelte_create_if_block(ctx){let div,t,span,paginator,current,if_block=ctx[3].loggedIn&&ActionBar_svelte_create_if_block_1(ctx);return paginator=new Paginator_svelte({}),{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),t=(0,internal.DhX)(),span=(0,internal.bGB)("span"),(0,internal.YCL)(paginator.$$.fragment),(0,internal.Ljt)(span,"class","narrowhide svelte-5udg7h"),(0,internal.Ljt)(div,"class","bar svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null),(0,internal.R3I)(div,t),(0,internal.R3I)(div,span),(0,internal.yef)(paginator,span,null),current=!0},p(ctx,dirty){ctx[3].loggedIn?if_block?(if_block.p(ctx,dirty),8&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ActionBar_svelte_create_if_block_1(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,t)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),(0,internal.Ui)(paginator.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block),(0,internal.etI)(paginator.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d(),(0,internal.vpE)(paginator)}}}function ActionBar_svelte_create_if_block_1(ctx){let span,t0,current_block_type_index,if_block1,t1,dropdown0,t2,dropdown1,current,if_block0=ctx[4].documents.length>0&&ActionBar_svelte_create_if_block_3(ctx);const if_block_creators=[ActionBar_svelte_create_if_block_2,ActionBar_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[2].hasSelection&&ctx[2].selectionEditable?0:1}return current_block_type_index=select_block_type(ctx),if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),dropdown0=new Dropdown_svelte.Z({props:{name:"projects-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot_1],default:[ActionBar_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),dropdown1=new Dropdown_svelte.Z({props:{name:"addons-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot],default:[ActionBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){span=(0,internal.bGB)("span"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1.c(),t1=(0,internal.DhX)(),(0,internal.YCL)(dropdown0.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(dropdown1.$$.fragment),(0,internal.Ljt)(span,"class","action check scaledown svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),if_block0&&if_block0.m(span,null),(0,internal.$Tr)(target,t0,anchor),if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(dropdown0,target,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(dropdown1,target,anchor),current=!0},p(ctx,dirty){ctx[4].documents.length>0?if_block0?(if_block0.p(ctx,dirty),16&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=ActionBar_svelte_create_if_block_3(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(span,null)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)());let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block1=if_blocks[current_block_type_index],if_block1?if_block1.p(ctx,dirty):(if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block1.c()),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1));const dropdown0_changes={};1&dirty&&(dropdown0_changes.fixed=ctx[0]>600),1088&dirty&&(dropdown0_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown0.$set(dropdown0_changes);const dropdown1_changes={};1&dirty&&(dropdown1_changes.fixed=ctx[0]>600),1088&dirty&&(dropdown1_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown1.$set(dropdown1_changes)},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(dropdown0.$$.fragment,local),(0,internal.Ui)(dropdown1.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(dropdown0.$$.fragment,local),(0,internal.etI)(dropdown1.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),if_block0&&if_block0.d(),detaching&&(0,internal.ogt)(t0),if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(dropdown0,detaching),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(dropdown1,detaching)}}}function ActionBar_svelte_create_if_block_3(ctx){let checkbox,current;return checkbox=new Checkbox_svelte({props:{indeterminate:ctx[5].someSelected,checked:ctx[2].hasSelection}}),checkbox.$on("check",ctx[7]),checkbox.$on("uncheck",documents.HF),{c(){(0,internal.YCL)(checkbox.$$.fragment)},m(target,anchor){(0,internal.yef)(checkbox,target,anchor),current=!0},p(ctx,dirty){const checkbox_changes={};32&dirty&&(checkbox_changes.indeterminate=ctx[5].someSelected),4&dirty&&(checkbox_changes.checked=ctx[2].hasSelection),checkbox.$set(checkbox_changes)},i(local){current||((0,internal.Ui)(checkbox.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(checkbox.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(checkbox,detaching)}}}function ActionBar_svelte_create_else_block(ctx){let span,tooltip,current;return tooltip=new Tooltip_svelte.Z({props:{caption:ctx[2].selectionEditable?ctx[6]("actionBar.selectDocs"):ctx[6]("actionBar.noPerms"),$$slots:{default:[ActionBar_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){span=(0,internal.bGB)("span"),(0,internal.YCL)(tooltip.$$.fragment),(0,internal.Ljt)(span,"class","action disabled shortpad nowrap svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.yef)(tooltip,span,null),current=!0},p(ctx,dirty){const tooltip_changes={};68&dirty&&(tooltip_changes.caption=ctx[2].selectionEditable?ctx[6]("actionBar.selectDocs"):ctx[6]("actionBar.noPerms")),1088&dirty&&(tooltip_changes.$$scope={dirty:dirty,ctx:ctx}),tooltip.$set(tooltip_changes)},i(local){current||((0,internal.Ui)(tooltip.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(tooltip.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(tooltip)}}}function ActionBar_svelte_create_if_block_2(ctx){let dropdown,current;return dropdown=new Dropdown_svelte.Z({props:{name:"edit-menu",table:!0,fixed:ctx[0]>600,$$slots:{title:[create_title_slot_2],default:[ActionBar_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),dropdown.$on("active",ctx[9]),{c(){(0,internal.YCL)(dropdown.$$.fragment)},m(target,anchor){(0,internal.yef)(dropdown,target,anchor),current=!0},p(ctx,dirty){const dropdown_changes={};1&dirty&&(dropdown_changes.fixed=ctx[0]>600),1090&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes)},i(local){current||((0,internal.Ui)(dropdown.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropdown.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dropdown,detaching)}}}function ActionBar_svelte_create_default_slot_3(ctx){let t0,t1,span,t0_value=ctx[6]("actionBar.editMenu")+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span=(0,internal.bGB)("span"),span.textContent="▼",(0,internal.Ljt)(span,"class","dropper")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span,anchor)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.editMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span)}}}function ActionBar_svelte_create_default_slot_2(ctx){let editmenu,current;return editmenu=new EditMenu_svelte({props:{visible:ctx[1]}}),{c(){(0,internal.YCL)(editmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(editmenu,target,anchor),current=!0},p(ctx,dirty){const editmenu_changes={};2&dirty&&(editmenu_changes.visible=ctx[1]),editmenu.$set(editmenu_changes)},i(local){current||((0,internal.Ui)(editmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(editmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(editmenu,detaching)}}}function create_title_slot_2(ctx){let span1,t0,t1,span0,t0_value=ctx[6]("actionBar.editMenu")+"";return{c(){span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span1,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.editMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function ActionBar_svelte_create_default_slot_1(ctx){let projectsmenu,current;return projectsmenu=new ProjectsMenu_svelte({}),{c(){(0,internal.YCL)(projectsmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(projectsmenu,target,anchor),current=!0},i(local){current||((0,internal.Ui)(projectsmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(projectsmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(projectsmenu,detaching)}}}function create_title_slot_1(ctx){let span1,t0,t1,span0,t0_value=ctx[6]("actionBar.projectsMenu")+"";return{c(){span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span1,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("actionBar.projectsMenu")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function ActionBar_svelte_create_default_slot(ctx){let addonsmenu,current;return addonsmenu=new AddonsMenu_svelte({}),{c(){(0,internal.YCL)(addonsmenu.$$.fragment)},m(target,anchor){(0,internal.yef)(addonsmenu,target,anchor),current=!0},i(local){current||((0,internal.Ui)(addonsmenu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(addonsmenu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(addonsmenu,detaching)}}}function create_title_slot(ctx){let span2,span0,t0,t1,t2,t3,t4,span1,t0_value=ctx[6]("common.new")+"",t3_value=ctx[6]("actionBar.addOnsMenu")+"";return{c(){span2=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)("!"),t2=(0,internal.DhX)(),t3=(0,internal.fLW)(t3_value),t4=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="▼",(0,internal.Ljt)(span0,"class","badge svelte-5udg7h"),(0,internal.Ljt)(span1,"class","dropper"),(0,internal.Ljt)(span2,"class","action nowrap svelte-5udg7h"),(0,internal.Ljt)(span2,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span2,anchor),(0,internal.R3I)(span2,span0),(0,internal.R3I)(span0,t0),(0,internal.R3I)(span0,t1),(0,internal.R3I)(span2,t2),(0,internal.R3I)(span2,t3),(0,internal.R3I)(span2,t4),(0,internal.R3I)(span2,span1)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("common.new")+"")&&(0,internal.rTO)(t0,t0_value),64&dirty&&t3_value!==(t3_value=ctx[6]("actionBar.addOnsMenu")+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(span2)}}}function ActionBar_svelte_create_fragment(ctx){let div,current,mounted,dispose;(0,internal.P$F)(ctx[8]);let if_block=!ctx[2].loading&&ActionBar_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","barcontainer svelte-5udg7h")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block&&if_block.m(div,null),current=!0,mounted||(dispose=(0,internal.oLt)(window,"resize",ctx[8]),mounted=!0)},p(ctx,[dirty]){ctx[2].loading?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),4&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ActionBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,null))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block&&if_block.d(),mounted=!1,dispose()}}}function ActionBar_svelte_instance($$self,$$props,$$invalidate){let $layout,$orgsAndUsers,$documents,$manager,$_;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(2,$layout=$$value))),(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(3,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(4,$documents=$$value))),(0,internal.FIv)($$self,manager,($$value=>$$invalidate(5,$manager=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));let outerHeight=1e3,editVisible=!1;return[outerHeight,editVisible,$layout,$orgsAndUsers,$documents,$manager,$_,function({detail:detail}){detail.indeterminate||function(){const results={};documents.De.documents.forEach((doc=>{results[doc.id]=doc})),layout.bK.selectedMap=results}()},function(){$$invalidate(0,outerHeight=window.outerHeight)},e=>$$invalidate(1,editVisible=e.detail)]}class ActionBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ActionBar_svelte_instance,ActionBar_svelte_create_fragment,internal.N8,{})}}var ActionBar_svelte=ActionBar,Button_svelte=__webpack_require__(7120),transition=__webpack_require__(6318),document_silhouetteraw=__webpack_require__(6842),document_silhouetteraw_default=__webpack_require__.n(document_silhouetteraw);function Anonymous_svelte_create_default_slot(ctx){let t;return{c(){t=(0,internal.fLW)("Subscribe")},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Anonymous_svelte_create_fragment(ctx){let div2,button0,xcircle24,t0,h2,t1,t2,div0,t3,div1,p0,t4,t5,p1,t6,p2,t7,t8,form,input0,input0_placeholder_value,t9,input1,t10,button1,t11,p3,div2_outro,current,mounted,dispose,t1_value=ctx[0]("anonymous.title")+"",t4_value=ctx[0]("anonymous.p1",{values:{n:ctx[1].results.count}})+"",raw1_value=ctx[0]("anonymous.p2")+"",t7_value=ctx[0]("anonymous.p3")+"",raw2_value=ctx[0]("anonymous.p4")+"";return xcircle24=new lib.ZCA({}),button1=new Button_svelte.Z({props:{$$slots:{default:[Anonymous_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){div2=(0,internal.bGB)("div"),button0=(0,internal.bGB)("button"),(0,internal.YCL)(xcircle24.$$.fragment),t0=(0,internal.DhX)(),h2=(0,internal.bGB)("h2"),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t3=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t4=(0,internal.fLW)(t4_value),t5=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t6=(0,internal.DhX)(),p2=(0,internal.bGB)("p"),t7=(0,internal.fLW)(t7_value),t8=(0,internal.DhX)(),form=(0,internal.bGB)("form"),input0=(0,internal.bGB)("input"),t9=(0,internal.DhX)(),input1=(0,internal.bGB)("input"),t10=(0,internal.DhX)(),(0,internal.YCL)(button1.$$.fragment),t11=(0,internal.DhX)(),p3=(0,internal.bGB)("p"),(0,internal.Ljt)(button0,"class","dismiss svelte-16go80m"),(0,internal.Ljt)(h2,"class","svelte-16go80m"),(0,internal.Ljt)(div0,"class","img svelte-16go80m"),(0,internal.Ljt)(p0,"class","svelte-16go80m"),(0,internal.Ljt)(p1,"class","svelte-16go80m"),(0,internal.Ljt)(p2,"class","svelte-16go80m"),(0,internal.Ljt)(input0,"type","email"),(0,internal.Ljt)(input0,"name","EMAIL"),(0,internal.Ljt)(input0,"class","required email"),(0,internal.Ljt)(input0,"id","mce-EMAIL"),input0.required="",input0.value="",(0,internal.Ljt)(input0,"placeholder",input0_placeholder_value=ctx[0]("common.emailAddress")),(0,internal.Ljt)(input1,"type","hidden"),(0,internal.Ljt)(input1,"name","b_74862d74361490eca930f4384_20aa4a931d"),input1.value="",(0,internal.Ljt)(form,"action","https://muckrock.us2.list-manage.com/subscribe/post?u=74862d74361490eca930f4384&id=20aa4a931d&f_id=00f4c0e1f0"),(0,internal.Ljt)(form,"method","post"),(0,internal.Ljt)(form,"id","mc-embedded-subscribe-form"),(0,internal.Ljt)(form,"name","mc-embedded-subscribe-form"),(0,internal.Ljt)(form,"class","validate"),(0,internal.Ljt)(form,"target","_blank"),form.noValidate="",(0,internal.Ljt)(p3,"class","svelte-16go80m"),(0,internal.Ljt)(div1,"class","text svelte-16go80m"),(0,internal.Ljt)(div2,"class","container svelte-16go80m")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,button0),(0,internal.yef)(xcircle24,button0,null),(0,internal.R3I)(div2,t0),(0,internal.R3I)(div2,h2),(0,internal.R3I)(h2,t1),(0,internal.R3I)(div2,t2),(0,internal.R3I)(div2,div0),div0.innerHTML=document_silhouetteraw_default(),(0,internal.R3I)(div2,t3),(0,internal.R3I)(div2,div1),(0,internal.R3I)(div1,p0),(0,internal.R3I)(p0,t4),(0,internal.R3I)(div1,t5),(0,internal.R3I)(div1,p1),p1.innerHTML=raw1_value,(0,internal.R3I)(div1,t6),(0,internal.R3I)(div1,p2),(0,internal.R3I)(p2,t7),(0,internal.R3I)(div1,t8),(0,internal.R3I)(div1,form),(0,internal.R3I)(form,input0),(0,internal.R3I)(form,t9),(0,internal.R3I)(form,input1),(0,internal.R3I)(form,t10),(0,internal.yef)(button1,form,null),(0,internal.R3I)(div1,t11),(0,internal.R3I)(div1,p3),p3.innerHTML=raw2_value,current=!0,mounted||(dispose=(0,internal.oLt)(button0,"click",ctx[2]),mounted=!0)},p(ctx,[dirty]){(!current||1&dirty)&&t1_value!==(t1_value=ctx[0]("anonymous.title")+"")&&(0,internal.rTO)(t1,t1_value),(!current||3&dirty)&&t4_value!==(t4_value=ctx[0]("anonymous.p1",{values:{n:ctx[1].results.count}})+"")&&(0,internal.rTO)(t4,t4_value),(!current||1&dirty)&&raw1_value!==(raw1_value=ctx[0]("anonymous.p2")+"")&&(p1.innerHTML=raw1_value),(!current||1&dirty)&&t7_value!==(t7_value=ctx[0]("anonymous.p3")+"")&&(0,internal.rTO)(t7,t7_value),(!current||1&dirty&&input0_placeholder_value!==(input0_placeholder_value=ctx[0]("common.emailAddress")))&&(0,internal.Ljt)(input0,"placeholder",input0_placeholder_value);const button1_changes={};16&dirty&&(button1_changes.$$scope={dirty:dirty,ctx:ctx}),button1.$set(button1_changes),(!current||1&dirty)&&raw2_value!==(raw2_value=ctx[0]("anonymous.p4")+"")&&(p3.innerHTML=raw2_value)},i(local){current||((0,internal.Ui)(xcircle24.$$.fragment,local),(0,internal.Ui)(button1.$$.fragment,local),div2_outro&&div2_outro.end(1),current=!0)},o(local){(0,internal.etI)(xcircle24.$$.fragment,local),(0,internal.etI)(button1.$$.fragment,local),div2_outro=(0,internal.eZl)(div2,transition.U1,{}),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),(0,internal.vpE)(xcircle24),(0,internal.vpE)(button1),detaching&&div2_outro&&div2_outro.end(),mounted=!1,dispose()}}}function Anonymous_svelte_instance($$self,$$props,$$invalidate){let $_,$search;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(0,$_=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(1,$search=$$value)));let{closed:closed=!1}=$$props;return $$self.$$set=$$props=>{"closed"in $$props&&$$invalidate(3,closed=$$props.closed)},[$_,$search,function(){$$invalidate(3,closed=!0)},closed]}class Anonymous extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Anonymous_svelte_instance,Anonymous_svelte_create_fragment,internal.N8,{closed:3})}}var Anonymous_svelte=Anonymous,Link_svelte=__webpack_require__(3566),auth=__webpack_require__(5232),langs=__webpack_require__(4358);function AuthSection_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[13]=list[i],child_ctx}function get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[16]=list[i][0],child_ctx[17]=list[i][1],child_ctx}function create_default_slot_24(ctx){let t,t_value=ctx[6]("common.home")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("common.home")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_23(ctx){let t,t_value=ctx[6]("authSection.faq")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.faq")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_22(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_23]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_21(ctx){let t,t_value=ctx[6]("authSection.searchDocs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.searchDocs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_20(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_21]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_19(ctx){let t,t_value=ctx[6]("authSection.apiDocs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.apiDocs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_18(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_19]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_17(ctx){let t,t_value=ctx[6]("authSection.addOns")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.addOns")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_16(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_17]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_15(ctx){let t,t_value=ctx[6]("authSection.premium")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.premium")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_14(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_15]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(ctx,dirty){const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function create_default_slot_13(ctx){let t,t_value=ctx[6]("authSection.emailUs")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){64&dirty&&t_value!==(t_value=ctx[6]("authSection.emailUs")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_default_slot_12(ctx){let link0,t0,link1,t1,link2,t2,link3,t3,link4,t4,a,menuitem,current;return link0=new Link_svelte.Z({props:{toUrl:"/help/faq",color:!0,$$slots:{default:[create_default_slot_22]},$$scope:{ctx:ctx}}}),link1=new Link_svelte.Z({props:{toUrl:"/help/search",color:!0,$$slots:{default:[create_default_slot_20]},$$scope:{ctx:ctx}}}),link2=new Link_svelte.Z({props:{toUrl:"/help/api",color:!0,$$slots:{default:[create_default_slot_18]},$$scope:{ctx:ctx}}}),link3=new Link_svelte.Z({props:{toUrl:"/help/add-ons",color:!0,$$slots:{default:[create_default_slot_16]},$$scope:{ctx:ctx}}}),link4=new Link_svelte.Z({props:{toUrl:"/help/premium",color:!0,$$slots:{default:[create_default_slot_14]},$$scope:{ctx:ctx}}}),menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[create_default_slot_13]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(link0.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(link1.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(link2.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(link3.$$.fragment),t3=(0,internal.DhX)(),(0,internal.YCL)(link4.$$.fragment),t4=(0,internal.DhX)(),a=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem.$$.fragment),(0,internal.Ljt)(a,"href","mailto:info@documentcloud.org"),(0,internal.Ljt)(a,"class","color svelte-1cdvx7j"),(0,internal.Ljt)(a,"target","_blank")},m(target,anchor){(0,internal.yef)(link0,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.yef)(link1,target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(link2,target,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(link3,target,anchor),(0,internal.$Tr)(target,t3,anchor),(0,internal.yef)(link4,target,anchor),(0,internal.$Tr)(target,t4,anchor),(0,internal.$Tr)(target,a,anchor),(0,internal.yef)(menuitem,a,null),current=!0},p(ctx,dirty){const link0_changes={};1048640&dirty&&(link0_changes.$$scope={dirty:dirty,ctx:ctx}),link0.$set(link0_changes);const link1_changes={};1048640&dirty&&(link1_changes.$$scope={dirty:dirty,ctx:ctx}),link1.$set(link1_changes);const link2_changes={};1048640&dirty&&(link2_changes.$$scope={dirty:dirty,ctx:ctx}),link2.$set(link2_changes);const link3_changes={};1048640&dirty&&(link3_changes.$$scope={dirty:dirty,ctx:ctx}),link3.$set(link3_changes);const link4_changes={};1048640&dirty&&(link4_changes.$$scope={dirty:dirty,ctx:ctx}),link4.$set(link4_changes);const menuitem_changes={};1048640&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(link0.$$.fragment,local),(0,internal.Ui)(link1.$$.fragment,local),(0,internal.Ui)(link2.$$.fragment,local),(0,internal.Ui)(link3.$$.fragment,local),(0,internal.Ui)(link4.$$.fragment,local),(0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(link0.$$.fragment,local),(0,internal.etI)(link1.$$.fragment,local),(0,internal.etI)(link2.$$.fragment,local),(0,internal.etI)(link3.$$.fragment,local),(0,internal.etI)(link4.$$.fragment,local),(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(link0,detaching),detaching&&(0,internal.ogt)(t0),(0,internal.vpE)(link1,detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(link2,detaching),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(link3,detaching),detaching&&(0,internal.ogt)(t3),(0,internal.vpE)(link4,detaching),detaching&&(0,internal.ogt)(t4),detaching&&(0,internal.ogt)(a),(0,internal.vpE)(menuitem)}}}function create_default_slot_11(ctx){let menu,current;return menu=new Menu_svelte.Z({props:{$$slots:{default:[create_default_slot_12]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(menu.$$.fragment)},m(target,anchor){(0,internal.yef)(menu,target,anchor),current=!0},p(ctx,dirty){const menu_changes={};1048640&dirty&&(menu_changes.$$scope={dirty:dirty,ctx:ctx}),menu.$set(menu_changes)},i(local){current||((0,internal.Ui)(menu.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menu.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menu,detaching)}}}function AuthSection_svelte_create_title_slot_2(ctx){let span2,span1,t0,t1,span0,t0_value=ctx[6]("authSection.help")+"";return{c(){span2=(0,internal.bGB)("span"),span1=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="▼",(0,internal.Ljt)(span0,"class","dropper"),(0,internal.Ljt)(span1,"class","nowrap title svelte-1cdvx7j"),(0,internal.Ljt)(span2,"class","action"),(0,internal.Ljt)(span2,"slot","title")},m(target,anchor){(0,internal.$Tr)(target,span2,anchor),(0,internal.R3I)(span2,span1),(0,internal.R3I)(span1,t0),(0,internal.R3I)(span1,t1),(0,internal.R3I)(span1,span0)},p(ctx,dirty){64&dirty&&t0_value!==(t0_value=ctx[6]("authSection.help")+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(span2)}}}function create_if_block_7(ctx){let span,t1;return{c(){span=(0,internal.bGB)("span"),span.textContent="✓",t1=(0,internal.DhX)(),(0,internal.Ljt)(span,"class","scope svelte-1cdvx7j")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.$Tr)(target,t1,anchor)},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t1)}}}function AuthSection_svelte_create_default_slot_10(ctx){let t0,t1,if_block_anchor,t0_value=ctx[16]+"",if_block=ctx[17]==ctx[5]&&create_if_block_7();return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){ctx[17]==ctx[5]?if_block||(if_block=create_if_block_7(),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_each_block_1(ctx){let menuitem,current;return menuitem=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_10]},$$scope:{ctx:ctx}}}),menuitem.$on("click",(function(){return ctx[10](ctx[17])})),{c(){(0,internal.YCL)(menuitem.$$.fragment)},m(target,anchor){(0,internal.yef)(menuitem,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx;const menuitem_changes={};1048608&dirty&&(menuitem_changes.$$scope={dirty:dirty,ctx:ctx}),menuitem.$set(menuitem_changes)},i(local){current||((0,internal.Ui)(menuitem.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(menuitem.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(menuitem,detaching)}}}function AuthSection_svelte_create_default_slot_9(ctx){let each_1_anchor,current,each_value_1=langs,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){for(let i=0;i{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function AuthSection_svelte_create_default_slot_1(ctx){let a0,menuitem0,t0,menuitem1,t1,a1,menuitem2,t2,menuitem3,t3,t4,each_1_anchor,current;menuitem0=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),menuitem1=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}}),menuitem1.$on("click",showMailkeySelected),menuitem2=new MenuItem_svelte.Z({props:{$$slots:{default:[AuthSection_svelte_create_default_slot_5]},$$scope:{ctx:ctx}}}),menuitem3=new MenuItem_svelte.Z({props:{selectable:!1,$$slots:{default:[AuthSection_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}});let if_block=null!==ctx[2]&&AuthSection_svelte_create_if_block_4(ctx),each_value=ctx[0],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){a0=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem0.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(menuitem1.$$.fragment),t1=(0,internal.DhX)(),a1=(0,internal.bGB)("a"),(0,internal.YCL)(menuitem2.$$.fragment),t2=(0,internal.DhX)(),(0,internal.YCL)(menuitem3.$$.fragment),t3=(0,internal.DhX)(),if_block&&if_block.c(),t4=(0,internal.DhX)();for(let i=0;i{if_block=null})),(0,internal.gbL)()),141&dirty){let i;for(each_value=ctx[0],i=0;i1&&function(ctx){let dropdown,t0,span,current;return dropdown=new Dropdown_svelte.Z({props:{name:"language",fixed:!0,$$slots:{title:[AuthSection_svelte_create_title_slot_1],default:[AuthSection_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(dropdown.$$.fragment),t0=(0,internal.DhX)(),span=(0,internal.bGB)("span"),span.textContent="·",(0,internal.Ljt)(span,"class","dot svelte-1cdvx7j")},m(target,anchor){(0,internal.yef)(dropdown,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,span,anchor),current=!0},p(ctx,dirty){const dropdown_changes={};1048672&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes)},i(local){current||((0,internal.Ui)(dropdown.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropdown.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(dropdown,detaching),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(span)}}}(ctx);const if_block_creators=[AuthSection_svelte_create_if_block,AuthSection_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return null!=ctx[1]?0:1}return current_block_type_index=select_block_type(ctx),if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(link.$$.fragment),t0=(0,internal.DhX)(),span0=(0,internal.bGB)("span"),span0.textContent="·",t2=(0,internal.DhX)(),(0,internal.YCL)(dropdown.$$.fragment),t3=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="·",t5=(0,internal.DhX)(),if_block0&&if_block0.c(),t6=(0,internal.DhX)(),if_block1.c(),(0,internal.Ljt)(span0,"class","dot svelte-1cdvx7j"),(0,internal.Ljt)(span1,"class","dot svelte-1cdvx7j"),(0,internal.Ljt)(div,"class","auth svelte-1cdvx7j")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(link,div,null),(0,internal.R3I)(div,t0),(0,internal.R3I)(div,span0),(0,internal.R3I)(div,t2),(0,internal.yef)(dropdown,div,null),(0,internal.R3I)(div,t3),(0,internal.R3I)(div,span1),(0,internal.R3I)(div,t5),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t6),if_blocks[current_block_type_index].m(div,null),current=!0},p(ctx,[dirty]){const link_changes={};1048640&dirty&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes);const dropdown_changes={};1048640&dirty&&(dropdown_changes.$$scope={dirty:dirty,ctx:ctx}),dropdown.$set(dropdown_changes),langs.length>1&&if_block0.p(ctx,dirty);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block1=if_blocks[current_block_type_index],if_block1?if_block1.p(ctx,dirty):(if_block1=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block1.c()),(0,internal.Ui)(if_block1,1),if_block1.m(div,null))},i(local){current||((0,internal.Ui)(link.$$.fragment,local),(0,internal.Ui)(dropdown.$$.fragment,local),(0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),(0,internal.etI)(dropdown.$$.fragment,local),(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(link),(0,internal.vpE)(dropdown),if_block0&&if_block0.d(),if_blocks[current_block_type_index].d()}}}function triggerWindowResize(){window.dispatchEvent(new Event("resize"))}function AuthSection_svelte_instance($$self,$$props,$$invalidate){let me,individual,currentOrg,orgs,individualOrg,$orgsAndUsers,$locale,$_;async function change(org){await(0,orgsAndUsers.P8)(org),triggerWindowResize()}function updateLanguage(code){(0,internal.fxP)(runtime_esm.SP,$locale=code,$locale);try{localStorage.setItem("dc-locale",code)}catch(e){}triggerWindowResize()}(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(9,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,runtime_esm.SP,($$value=>$$invalidate(5,$locale=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(6,$_=$$value)));return $$self.$$.update=()=>{var list;512&$$self.$$.dirty&&$$invalidate(1,me=$orgsAndUsers.me),2&$$self.$$.dirty&&$$invalidate(4,individual=null!==me&&me.organization.individual),2&$$self.$$.dirty&&$$invalidate(3,currentOrg=null===me?null:me.organization),512&$$self.$$.dirty&&$$invalidate(0,orgs=null===$orgsAndUsers.selfOrgs?[]:$orgsAndUsers.selfOrgs),1&$$self.$$.dirty&&$$invalidate(2,(list=orgs.filter((org=>org.individual)),individualOrg=null==list||1!=list.length?null:list[0]))},[orgs,me,individualOrg,currentOrg,individual,$locale,$_,change,updateLanguage,$orgsAndUsers,code=>updateLanguage(code),()=>change(individualOrg),org=>change(org)]}class AuthSection extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,AuthSection_svelte_instance,AuthSection_svelte_create_fragment,internal.N8,{})}}var AuthSection_svelte=AuthSection,src_emit=__webpack_require__(1812),array=__webpack_require__(4152);const documentTypes="123,602,abw,agd,bmp,cdr,cgm,cmx,csv,cwk,dbf,dif,doc,docx,dot,emf,eps,fb2,fhd,fodg,fodp,fods,fodt,gif,gnm,gnumeric,htm,html,hwp,jpeg,jpg,jtd,jtt,key,kth,mml,numbers,odb,odf,odg,odp,ods,odt,p65,pages,pbm,pcd,pct,pcx,pdf,pgm,plt,pm3,pm4,pm5,pm6,pmd,png,pot,ppm,pps,ppt,pptx,psd,pub,qxp,ras,rlf,rtf,sda,sdc,sdd,sdp,sdw,sgf,sgl,sgv,slk,stc,std,sti,stw,svg,svm,sxc,sxd,sxi,sxm,sxw,tga,tif,tiff,txt,uof,uop,uos,uot,vor,vsd,wb2,wdb,wk1,wk3,wk4,wks,wpd,wps,wq1,wq2,wri,xbm,xls,xlsx,xlt,xlw,xml,xpm,zabw,zmf".split(",").map((x=>`.${x.toLowerCase().trim()}`));function filterFiles(files){return files.filter((file=>(0,array.q9)(documentTypes,file.name.toLowerCase().trim(),((a,b)=>b.endsWith(a)))))}function Draggable_svelte_create_fragment(ctx){let div,current,mounted,dispose;const default_slot_template=ctx[6].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[5],null);return{c(){div=(0,internal.bGB)("div"),default_slot&&default_slot.c(),(0,internal.Ljt)(div,"class","outer svelte-d0ld7j"),(0,internal.VHj)(div,"dragging",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0,mounted||(dispose=[(0,internal.oLt)(div,"dragenter",(0,internal.AT7)(ctx[1])),(0,internal.oLt)(div,"dragover",(0,internal.AT7)(ctx[1])),(0,internal.oLt)(div,"dragleave",(0,internal.AT7)(ctx[2])),(0,internal.oLt)(div,"drop",(0,internal.AT7)(ctx[3]))],mounted=!0)},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||32&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[5],current?(0,internal.u2N)(default_slot_template,ctx[5],dirty,null):(0,internal.VOJ)(ctx[5]),null),(!current||1&dirty)&&(0,internal.VHj)(div,"dragging",ctx[0])},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),default_slot&&default_slot.d(detaching),mounted=!1,(0,internal.j7q)(dispose)}}}function Draggable_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props;const emit=(0,src_emit.Z)({files(){}});let dragging=!1,{disabled:disabled=!1}=$$props;function leave(){disabled||$$invalidate(0,dragging=!1)}return $$self.$$set=$$props=>{"disabled"in $$props&&$$invalidate(4,disabled=$$props.disabled),"$$scope"in $$props&&$$invalidate(5,$$scope=$$props.$$scope)},[dragging,function(e){disabled||$$invalidate(0,dragging=!0)},leave,function(e){disabled||function(files){if(disabled)return;if(leave(),0==(files=filterFiles(Array.from(files))).length)return;emit.files(files)}(e.dataTransfer.files)},disabled,$$scope,slots]}class Draggable extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Draggable_svelte_instance,Draggable_svelte_create_fragment,internal.N8,{disabled:4})}}var Draggable_svelte=Draggable,AccessIcon_svelte=__webpack_require__(2212),Image_svelte=__webpack_require__(5465),Progress_svelte=__webpack_require__(5242),HtmlField_svelte=__webpack_require__(3448),DocumentThumbnail_svelte=__webpack_require__(3213),Annotation_svelte=__webpack_require__(2926),close_inlineraw=__webpack_require__(3218),close_inlineraw_default=__webpack_require__.n(close_inlineraw),pencilraw=__webpack_require__(4713),pencilraw_default=__webpack_require__.n(pencilraw),viewer=__webpack_require__(3248);function Document_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[27]=list[i],child_ctx}function Document_svelte_get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[27]=list[i],child_ctx}function get_each_context_2(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[32]=list[i],child_ctx}function get_each_context_3(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[35]=list[i],child_ctx}function get_each_context_4(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[38]=list[i].key,child_ctx[39]=list[i].value,child_ctx}function get_each_context_5(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[42]=list[i],child_ctx}function create_if_block_20(ctx){let div,checkbox,current;return checkbox=new Checkbox_svelte({props:{checked:null!=ctx[11].selectedMap[ctx[0].id]}}),checkbox.$on("check",ctx[20]),checkbox.$on("uncheck",ctx[21]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(checkbox.$$.fragment),(0,internal.Ljt)(div,"class","check svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(checkbox,div,null),current=!0},p(ctx,dirty){const checkbox_changes={};2049&dirty[0]&&(checkbox_changes.checked=null!=ctx[11].selectedMap[ctx[0].id]),checkbox.$set(checkbox_changes)},i(local){current||((0,internal.Ui)(checkbox.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(checkbox.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(checkbox)}}}function create_if_block_19(ctx){let span,accessicon,current;return accessicon=new AccessIcon_svelte.Z({props:{document:ctx[0]}}),{c(){span=(0,internal.bGB)("span"),(0,internal.YCL)(accessicon.$$.fragment),(0,internal.Ljt)(span,"class","valign marginleft svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.yef)(accessicon,span,null),current=!0},p(ctx,dirty){const accessicon_changes={};1&dirty[0]&&(accessicon_changes.document=ctx[0]),accessicon.$set(accessicon_changes)},i(local){current||((0,internal.Ui)(accessicon.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(accessicon.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(accessicon)}}}function create_if_block_15(ctx){let h3,t0,t1,t2,t3,show_if=null!=ctx[0].source&&ctx[0].source.trim().length>0,t3_value=ctx[13](ctx[0].createdAt,{format:"medium"})+"",if_block0=ctx[0].pageCount>0&&create_if_block_18(ctx),if_block1=show_if&&create_if_block_17(ctx),if_block2=null!==ctx[0].userName&&create_if_block_16(ctx);return{c(){h3=(0,internal.bGB)("h3"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),t3=(0,internal.fLW)(t3_value),(0,internal.Ljt)(h3,"class","svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,h3,anchor),if_block0&&if_block0.m(h3,null),(0,internal.R3I)(h3,t0),if_block1&&if_block1.m(h3,null),(0,internal.R3I)(h3,t1),if_block2&&if_block2.m(h3,null),(0,internal.R3I)(h3,t2),(0,internal.R3I)(h3,t3)},p(ctx,dirty){ctx[0].pageCount>0?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_18(ctx),if_block0.c(),if_block0.m(h3,t0)):if_block0&&(if_block0.d(1),if_block0=null),1&dirty[0]&&(show_if=null!=ctx[0].source&&ctx[0].source.trim().length>0),show_if?if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_17(ctx),if_block1.c(),if_block1.m(h3,t1)):if_block1&&(if_block1.d(1),if_block1=null),null!==ctx[0].userName?if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_16(ctx),if_block2.c(),if_block2.m(h3,t2)):if_block2&&(if_block2.d(1),if_block2=null),8193&dirty[0]&&t3_value!==(t3_value=ctx[13](ctx[0].createdAt,{format:"medium"})+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(h3),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d()}}}function create_if_block_18(ctx){let t0,t1,t0_value=ctx[12]("document.pageCount",{values:{n:ctx[0].pageCount}})+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){4097&dirty[0]&&t0_value!==(t0_value=ctx[12]("document.pageCount",{values:{n:ctx[0].pageCount}})+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function create_if_block_17(ctx){let t0,t1,t2,t3,t0_value=ctx[12]("document.source")+"",t2_value=ctx[0].source+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(": "),t2=(0,internal.fLW)(t2_value),t3=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,t3,anchor)},p(ctx,dirty){4096&dirty[0]&&t0_value!==(t0_value=ctx[12]("document.source")+"")&&(0,internal.rTO)(t0,t0_value),1&dirty[0]&&t2_value!==(t2_value=ctx[0].source+"")&&(0,internal.rTO)(t2,t2_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(t3)}}}function create_if_block_16(ctx){let t0,t1,t0_value=ctx[0].userOrgString+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(" -")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){1&dirty[0]&&t0_value!==(t0_value=ctx[0].userOrgString+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function create_if_block_14(ctx){let div,htmlfield,current;return htmlfield=new HtmlField_svelte.Z({props:{content:ctx[0].description}}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(htmlfield.$$.fragment),(0,internal.Ljt)(div,"class","description svelte-embfgs"),(0,internal.VHj)(div,"embeddescription",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(htmlfield,div,null),current=!0},p(ctx,dirty){const htmlfield_changes={};1&dirty[0]&&(htmlfield_changes.content=ctx[0].description),htmlfield.$set(htmlfield_changes),(!current||2&dirty[0])&&(0,internal.VHj)(div,"embeddescription",ctx[1])},i(local){current||((0,internal.Ui)(htmlfield.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(htmlfield.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(htmlfield)}}}function Document_svelte_create_if_block(ctx){let div,current_block_type_index,if_block0,t0,t1,t2,if_block3_anchor,current;const if_block_creators=[create_if_block_9,create_if_block_11,create_if_block_12,create_if_block_13],if_blocks=[];function select_block_type(ctx,dirty){return ctx[0].viewable?0:ctx[0].pending?1:ctx[0].error?2:ctx[0].nofile?3:-1}~(current_block_type_index=select_block_type(ctx))&&(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block1=null!=ctx[0].projectIds&&Document_svelte_create_if_block_5(ctx),if_block2=null!=ctx[0].highlights&&ctx[0].highlights.length>0&&!ctx[4]&&Document_svelte_create_if_block_2(ctx),if_block3=null!=ctx[0].noteHighlights&&ctx[0].noteHighlights.length>0&&!ctx[5]&&Document_svelte_create_if_block_1(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),if_block3&&if_block3.c(),if_block3_anchor=(0,internal.cSb)(),(0,internal.Ljt)(div,"class","actions svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),~current_block_type_index&&if_blocks[current_block_type_index].m(div,null),(0,internal.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,internal.$Tr)(target,t1,anchor),if_block2&&if_block2.m(target,anchor),(0,internal.$Tr)(target,t2,anchor),if_block3&&if_block3.m(target,anchor),(0,internal.$Tr)(target,if_block3_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?~current_block_type_index&&if_blocks[current_block_type_index].p(ctx,dirty):(if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(div,t0)):if_block0=null),null!=ctx[0].projectIds?if_block1?(if_block1.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=Document_svelte_create_if_block_5(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),null!=ctx[0].highlights&&ctx[0].highlights.length>0&&!ctx[4]?if_block2?(if_block2.p(ctx,dirty),17&dirty[0]&&(0,internal.Ui)(if_block2,1)):(if_block2=Document_svelte_create_if_block_2(ctx),if_block2.c(),(0,internal.Ui)(if_block2,1),if_block2.m(t2.parentNode,t2)):if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_block2,1,1,(()=>{if_block2=null})),(0,internal.gbL)()),null!=ctx[0].noteHighlights&&ctx[0].noteHighlights.length>0&&!ctx[5]?if_block3?(if_block3.p(ctx,dirty),33&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=Document_svelte_create_if_block_1(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(if_block3_anchor.parentNode,if_block3_anchor)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),~current_block_type_index&&if_blocks[current_block_type_index].d(),if_block1&&if_block1.d(),detaching&&(0,internal.ogt)(t1),if_block2&&if_block2.d(detaching),detaching&&(0,internal.ogt)(t2),if_block3&&if_block3.d(detaching),detaching&&(0,internal.ogt)(if_block3_anchor)}}}function create_if_block_13(ctx){let span,t0,t1,br,t2,button,current,t0_value=ctx[12]("document.improper")+"";return button=new Button_svelte.Z({props:{small:!0,secondary:!0,$$slots:{default:[Document_svelte_create_default_slot_9]},$$scope:{ctx:ctx}}}),button.$on("click",(function(){(0,internal.sBU)((0,documents.Cf)(ctx[0]))&&(0,documents.Cf)(ctx[0]).apply(this,arguments)})),{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),br=(0,internal.bGB)("br"),t2=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","error svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,br,anchor),(0,internal.$Tr)(target,t2,anchor),(0,internal.yef)(button,target,anchor),current=!0},p(new_ctx,dirty){ctx=new_ctx,(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.improper")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(br),detaching&&(0,internal.ogt)(t2),(0,internal.vpE)(button,detaching)}}}function create_if_block_12(ctx){let span,t0,t1,br,t2,button,current,t0_value=ctx[12]("document.processingError")+"";return button=new Button_svelte.Z({props:{small:!0,secondary:!0,$$slots:{default:[Document_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),button.$on("click",(function(){(0,internal.sBU)((0,documents.Cf)(ctx[0]))&&(0,documents.Cf)(ctx[0]).apply(this,arguments)})),{c(){span=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),br=(0,internal.bGB)("br"),t2=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","error svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t0),(0,internal.R3I)(span,t1),(0,internal.R3I)(span,br),(0,internal.R3I)(span,t2),(0,internal.yef)(button,span,null),current=!0},p(new_ctx,dirty){ctx=new_ctx,(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.processingError")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span),(0,internal.vpE)(button)}}}function create_if_block_11(ctx){let span,t,t_value=ctx[12]("document.processing")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(span,"class","pending svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.processing")+"")&&(0,internal.rTO)(t,t_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(span)}}}function create_if_block_9(ctx){let link,t,if_block_anchor,current;link=new Link_svelte.Z({props:{to:"viewer",params:{id:ctx[0].slugId},$$slots:{default:[Document_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}});let if_block=ctx[0].readable&&create_if_block_10(ctx);return{c(){(0,internal.YCL)(link.$$.fragment),t=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(link,target,anchor),(0,internal.$Tr)(target,t,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty[0]&&(link_changes.params={id:ctx[0].slugId}),4096&dirty[0]|16384&dirty[1]&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes),ctx[0].readable?if_block?(if_block.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block,1)):(if_block=create_if_block_10(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(link.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){(0,internal.vpE)(link,detaching),detaching&&(0,internal.ogt)(t),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Document_svelte_create_default_slot_9(ctx){let t,t_value=ctx[12]("document.remove")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.remove")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_8(ctx){let t,t_value=ctx[12]("document.remove")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.remove")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_7(ctx){let t,t_value=ctx[12]("document.open")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4096&dirty[0]&&t_value!==(t_value=ctx[12]("document.open")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Document_svelte_create_default_slot_6(ctx){let button,current;return button=new Button_svelte.Z({props:{action:!0,$$slots:{default:[Document_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};4096&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function create_if_block_10(ctx){let div,t0,t1,progress,current,t0_value=ctx[12]("document.updating")+"";return progress=new Progress_svelte.Z({props:{initializing:!0,progress:0,compact:!0}}),{c(){div=(0,internal.bGB)("div"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),(0,internal.YCL)(progress.$$.fragment),(0,internal.Ljt)(div,"class","updating svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t0),(0,internal.R3I)(div,t1),(0,internal.yef)(progress,div,null),current=!0},p(ctx,dirty){(!current||4096&dirty[0])&&t0_value!==(t0_value=ctx[12]("document.updating")+"")&&(0,internal.rTO)(t0,t0_value)},i(local){current||((0,internal.Ui)(progress.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(progress.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(progress)}}}function Document_svelte_create_if_block_5(ctx){let t0,t1,if_block_anchor,current,each_value_5=ctx[0].projectIds,each_blocks_1=[];for(let i=0;i(0,internal.etI)(each_blocks_1[i],1,1,(()=>{each_blocks_1[i]=null}));let each_value_4=ctx[0].dataPoints,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));let if_block=ctx[0].dataPoints.length>0&&ctx[0].editAccess&&Document_svelte_create_if_block_6(ctx);return{c(){for(let i=0;i0&&ctx[0].editAccess?if_block?if_block.p(ctx,dirty):(if_block=Document_svelte_create_if_block_6(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},i(local){if(!current){for(let i=0;i{if_block=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function Document_svelte_create_if_block_7(ctx){let t0,t1,t0_value=ctx[38]+"";return{c(){t0=(0,internal.fLW)(t0_value),t1=(0,internal.fLW)(":")},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){1&dirty[0]&&t0_value!==(t0_value=ctx[38]+"")&&(0,internal.rTO)(t0,t0_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Document_svelte_create_default_slot_3(ctx){let t0,t1,t1_value=ctx[39]+"",if_block=ctx[38]!=ctx[17]&&Document_svelte_create_if_block_7(ctx);return{c(){if_block&&if_block.c(),t0=(0,internal.DhX)(),t1=(0,internal.fLW)(t1_value)},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){ctx[38]!=ctx[17]?if_block?if_block.p(ctx,dirty):(if_block=Document_svelte_create_if_block_7(ctx),if_block.c(),if_block.m(t0.parentNode,t0)):if_block&&(if_block.d(1),if_block=null),1&dirty[0]&&t1_value!==(t1_value=ctx[39]+"")&&(0,internal.rTO)(t1,t1_value)},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Document_svelte_create_default_slot_2(ctx){let button,current;return button=new Button_svelte.Z({props:{plain:!0,$$slots:{default:[Document_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};1&dirty[0]|16384&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function create_each_block_4(ctx){let link,current;return link=new Link_svelte.Z({props:{toUrl:(0,search.c8)(ctx[38],ctx[39]),$$slots:{default:[Document_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(link.$$.fragment)},m(target,anchor){(0,internal.yef)(link,target,anchor),current=!0},p(ctx,dirty){const link_changes={};1&dirty[0]&&(link_changes.toUrl=(0,search.c8)(ctx[38],ctx[39])),1&dirty[0]|16384&dirty[1]&&(link_changes.$$scope={dirty:dirty,ctx:ctx}),link.$set(link_changes)},i(local){current||((0,internal.Ui)(link.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(link.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(link,detaching)}}}function Document_svelte_create_if_block_6(ctx){let span,mounted,dispose;return{c(){span=(0,internal.bGB)("span"),(0,internal.Ljt)(span,"class","pencil svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,span,anchor),span.innerHTML=pencilraw_default(),mounted||(dispose=(0,internal.oLt)(span,"click",ctx[23]),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(span),mounted=!1,dispose()}}}function Document_svelte_create_if_block_2(ctx){let div0,span,t0,t1,div1,current,mounted,dispose;function select_block_type_1(ctx,dirty){return ctx[9]?Document_svelte_create_if_block_4:Document_svelte_create_else_block_1}let current_block_type=select_block_type_1(ctx),if_block=current_block_type(ctx),each_value_1=ctx[8],each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){div0=(0,internal.bGB)("div"),span=(0,internal.bGB)("span"),t0=(0,internal.DhX)(),if_block.c(),t1=(0,internal.DhX)(),div1=(0,internal.bGB)("div");for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));return{c(){div0=(0,internal.bGB)("div"),span0=(0,internal.bGB)("span"),t0=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),span1.textContent="Notes matching the query",t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div");for(let i=0;i0,if_block0=ctx[10].loggedIn&&!ctx[1]&&!ctx[2]&&create_if_block_20(ctx);documentthumbnail=new DocumentThumbnail_svelte.Z({props:{embed:ctx[1],dialog:ctx[2],document:ctx[0],noteCount:ctx[0].notes.length,publicNote:ctx[0].notes.some(func),orgNote:ctx[0].notes.some(func_1),privateNote:ctx[0].notes.some(func_2)}}),documentthumbnail.$on("pick",ctx[22]);let if_block1=!ctx[1]&&create_if_block_19(ctx),if_block2=!ctx[1]&&create_if_block_15(ctx),if_block3=show_if&&create_if_block_14(ctx),if_block4=!ctx[1]&&Document_svelte_create_if_block(ctx);return{c(){div2=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),(0,internal.YCL)(documentthumbnail.$$.fragment),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),h2=(0,internal.bGB)("h2"),span=(0,internal.bGB)("span"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),if_block1&&if_block1.c(),t4=(0,internal.DhX)(),if_block2&&if_block2.c(),t5=(0,internal.DhX)(),if_block3&&if_block3.c(),t6=(0,internal.DhX)(),if_block4&&if_block4.c(),(0,internal.Ljt)(span,"class","valign svelte-embfgs"),(0,internal.Ljt)(h2,"class","svelte-embfgs"),(0,internal.Ljt)(div0,"class","info svelte-embfgs"),(0,internal.Ljt)(div1,"class","row svelte-embfgs"),(0,internal.Ljt)(div2,"class","card svelte-embfgs")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div1,t0),(0,internal.yef)(documentthumbnail,div1,null),(0,internal.R3I)(div1,t1),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,h2),(0,internal.R3I)(h2,span),(0,internal.R3I)(span,t2),(0,internal.R3I)(h2,t3),if_block1&&if_block1.m(h2,null),(0,internal.R3I)(div0,t4),if_block2&&if_block2.m(div0,null),(0,internal.R3I)(div0,t5),if_block3&&if_block3.m(div0,null),(0,internal.R3I)(div0,t6),if_block4&&if_block4.m(div0,null),current=!0,mounted||(dispose=[(0,internal.oLt)(window,"keydown",ctx[15]),(0,internal.oLt)(window,"keyup",ctx[16])],mounted=!0)},p(ctx,dirty){!ctx[10].loggedIn||ctx[1]||ctx[2]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),1030&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=create_if_block_20(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div1,t0));const documentthumbnail_changes={};2&dirty[0]&&(documentthumbnail_changes.embed=ctx[1]),4&dirty[0]&&(documentthumbnail_changes.dialog=ctx[2]),1&dirty[0]&&(documentthumbnail_changes.document=ctx[0]),1&dirty[0]&&(documentthumbnail_changes.noteCount=ctx[0].notes.length),1&dirty[0]&&(documentthumbnail_changes.publicNote=ctx[0].notes.some(func)),1&dirty[0]&&(documentthumbnail_changes.orgNote=ctx[0].notes.some(func_1)),1&dirty[0]&&(documentthumbnail_changes.privateNote=ctx[0].notes.some(func_2)),documentthumbnail.$set(documentthumbnail_changes),(!current||1&dirty[0])&&t2_value!==(t2_value=ctx[0].title+"")&&(0,internal.rTO)(t2,t2_value),ctx[1]?if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()):if_block1?(if_block1.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=create_if_block_19(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(h2,null)),ctx[1]?if_block2&&(if_block2.d(1),if_block2=null):if_block2?if_block2.p(ctx,dirty):(if_block2=create_if_block_15(ctx),if_block2.c(),if_block2.m(div0,t5)),1&dirty[0]&&(show_if=null!=ctx[0].description&&ctx[0].description.trim().length>0),show_if?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=create_if_block_14(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div0,t6)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()),ctx[1]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?(if_block4.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block4,1)):(if_block4=Document_svelte_create_if_block(ctx),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div0,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(documentthumbnail.$$.fragment,local),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(documentthumbnail.$$.fragment,local),(0,internal.etI)(if_block1),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),if_block0&&if_block0.d(),(0,internal.vpE)(documentthumbnail),if_block1&&if_block1.d(),if_block2&&if_block2.d(),if_block3&&if_block3.d(),if_block4&&if_block4.d(),mounted=!1,(0,internal.j7q)(dispose)}}}const func=x=>"public"==x.access,func_1=x=>"organization"==x.access,func_2=x=>"private"==x.access;function Document_svelte_instance($$self,$$props,$$invalidate){let highlightsActive,trimmedHighlights,moreToExpand,highlights,noteHighlights,$orgsAndUsers,$layout,$_,$date,$projects;(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(10,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(11,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(12,$_=$$value))),(0,internal.FIv)($$self,runtime_esm.hT,($$value=>$$invalidate(13,$date=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(14,$projects=$$value)));let{document:document}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props,expandHighlights=!1,closeHighlights=!1,closeNoteHighlights=!1,shiftKey=!1;return $$self.$$set=$$props=>{"document"in $$props&&$$invalidate(0,document=$$props.document),"embed"in $$props&&$$invalidate(1,embed=$$props.embed),"dialog"in $$props&&$$invalidate(2,dialog=$$props.dialog)},$$self.$$.update=()=>{1&$$self.$$.dirty[0]&&$$invalidate(19,highlightsActive=null!=document.highlights&&document.highlights.length>0),524289&$$self.$$.dirty[0]&&$$invalidate(18,trimmedHighlights=highlightsActive?document.highlights.slice(0,3):null),786441&$$self.$$.dirty[0]&&$$invalidate(9,moreToExpand=!!highlightsActive&&(!expandHighlights&&trimmedHighlights.length!=document.highlights.length)),786441&$$self.$$.dirty[0]&&$$invalidate(8,highlights=highlightsActive?expandHighlights?document.highlights:trimmedHighlights:null),1&$$self.$$.dirty[0]&&$$invalidate(7,noteHighlights=document.noteHighlights)},[document,embed,dialog,expandHighlights,closeHighlights,closeNoteHighlights,shiftKey,noteHighlights,highlights,moreToExpand,$orgsAndUsers,$layout,$_,$date,$projects,function(e){"Shift"==e.key&&$$invalidate(6,shiftKey=!0)},function(e){"Shift"==e.key&&$$invalidate(6,shiftKey=!1)},"_tag",trimmedHighlights,highlightsActive,()=>(0,documents.P7)(document,shiftKey),()=>(0,layout.HU)(document),function(event){internal.cKT.call(this,$$self,event)},()=>(0,layout.re)([document]),()=>$$invalidate(4,closeHighlights=!0),()=>$$invalidate(3,expandHighlights=!0),()=>$$invalidate(5,closeNoteHighlights=!0)]}class Document extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Document_svelte_instance,Document_svelte_create_fragment,internal.N8,{document:0,embed:1,dialog:2},null,[-1,-1])}}var Document_svelte=Document,Logo_svelte=__webpack_require__(4386);function EmbedFooter_svelte_create_if_block(ctx){let div,logo,current;return logo=new Logo_svelte.Z({props:{newPage:!0,nopadding:!0,homeLink:!0}}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(logo.$$.fragment),(0,internal.Ljt)(div,"class","logo svelte-1126yno")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(logo,div,null),current=!0},i(local){current||((0,internal.Ui)(logo.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(logo.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(logo)}}}function EmbedFooter_svelte_create_fragment(ctx){let div2,div0,t0,div1,paginator,t1,current;paginator=new Paginator_svelte({});let if_block=!ctx[0]&&EmbedFooter_svelte_create_if_block();return{c(){div2=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),(0,internal.YCL)(paginator.$$.fragment),t1=(0,internal.DhX)(),if_block&&if_block.c(),(0,internal.Ljt)(div0,"class","background svelte-1126yno"),(0,internal.Ljt)(div1,"class","paginator svelte-1126yno"),(0,internal.Ljt)(div2,"class","footer svelte-1126yno"),(0,internal.VHj)(div2,"dialog",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,div0),(0,internal.R3I)(div2,t0),(0,internal.R3I)(div2,div1),(0,internal.yef)(paginator,div1,null),(0,internal.R3I)(div2,t1),if_block&&if_block.m(div2,null),current=!0},p(ctx,[dirty]){ctx[0]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?1&dirty&&(0,internal.Ui)(if_block,1):(if_block=EmbedFooter_svelte_create_if_block(),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div2,null)),(!current||1&dirty)&&(0,internal.VHj)(div2,"dialog",ctx[0])},i(local){current||((0,internal.Ui)(paginator.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(paginator.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),(0,internal.vpE)(paginator),if_block&&if_block.d()}}}function EmbedFooter_svelte_instance($$self,$$props,$$invalidate){let{dialog:dialog=!1}=$$props;return $$self.$$set=$$props=>{"dialog"in $$props&&$$invalidate(0,dialog=$$props.dialog)},[dialog]}class EmbedFooter extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,EmbedFooter_svelte_instance,EmbedFooter_svelte_create_fragment,internal.N8,{dialog:0})}}var EmbedFooter_svelte=EmbedFooter,Loader_svelte=__webpack_require__(1172),Modal_svelte=__webpack_require__(865),empty_resultsraw=__webpack_require__(4156),empty_resultsraw_default=__webpack_require__.n(empty_resultsraw);function NoDocuments_svelte_create_else_block(ctx){let h2,t0,t1,div0,t2,div1,p0,t3,t4,p1,t5,t0_value=ctx[2]("noDocuments.uploadFirst")+"",t3_value=ctx[2]("noDocuments.upload1")+"",t5_value=ctx[2]("noDocuments.upload2")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t3=(0,internal.fLW)(t3_value),t4=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t5=(0,internal.fLW)(t5_value),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p0,"class","svelte-dlrhmn"),(0,internal.Ljt)(p1,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=document_silhouetteraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p0),(0,internal.R3I)(p0,t3),(0,internal.R3I)(div1,t4),(0,internal.R3I)(div1,p1),(0,internal.R3I)(p1,t5)},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.uploadFirst")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&t3_value!==(t3_value=ctx[2]("noDocuments.upload1")+"")&&(0,internal.rTO)(t3,t3_value),4&dirty&&t5_value!==(t5_value=ctx[2]("noDocuments.upload2")+"")&&(0,internal.rTO)(t5,t5_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_if_block_1(ctx){let h2,t0,t1,div0,t2,div1,p0,t3,p1,t4,t5,ul,li0,t6,li1,t0_value=ctx[2]("noDocuments.welcome")+"",raw1_value=ctx[2]("noDocuments.verify1")+"",t4_value=ctx[2]("noDocuments.verify2")+"",raw2_value=ctx[2]("noDocuments.verify3")+"",raw3_value=ctx[2]("noDocuments.verify4")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p0=(0,internal.bGB)("p"),t3=(0,internal.DhX)(),p1=(0,internal.bGB)("p"),t4=(0,internal.fLW)(t4_value),t5=(0,internal.DhX)(),ul=(0,internal.bGB)("ul"),li0=(0,internal.bGB)("li"),t6=(0,internal.DhX)(),li1=(0,internal.bGB)("li"),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p0,"class","svelte-dlrhmn"),(0,internal.Ljt)(p1,"class","svelte-dlrhmn"),(0,internal.Ljt)(li0,"class","svelte-dlrhmn"),(0,internal.Ljt)(li1,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=document_silhouetteraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p0),p0.innerHTML=raw1_value,(0,internal.R3I)(div1,t3),(0,internal.R3I)(div1,p1),(0,internal.R3I)(p1,t4),(0,internal.R3I)(div1,t5),(0,internal.R3I)(div1,ul),(0,internal.R3I)(ul,li0),li0.innerHTML=raw2_value,(0,internal.R3I)(ul,t6),(0,internal.R3I)(ul,li1),li1.innerHTML=raw3_value},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.welcome")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&raw1_value!==(raw1_value=ctx[2]("noDocuments.verify1")+"")&&(p0.innerHTML=raw1_value),4&dirty&&t4_value!==(t4_value=ctx[2]("noDocuments.verify2")+"")&&(0,internal.rTO)(t4,t4_value),4&dirty&&raw2_value!==(raw2_value=ctx[2]("noDocuments.verify3")+"")&&(li0.innerHTML=raw2_value),4&dirty&&raw3_value!==(raw3_value=ctx[2]("noDocuments.verify4")+"")&&(li1.innerHTML=raw3_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_if_block(ctx){let h2,t0,t1,div0,t2,div1,p,t3,t0_value=ctx[2]("noDocuments.noSearchResults")+"",t3_value=ctx[2]("noDocuments.queryNoResults")+"";return{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),p=(0,internal.bGB)("p"),t3=(0,internal.fLW)(t3_value),(0,internal.Ljt)(h2,"class","svelte-dlrhmn"),(0,internal.Ljt)(div0,"class","img svelte-dlrhmn"),(0,internal.Ljt)(p,"class","svelte-dlrhmn"),(0,internal.Ljt)(div1,"class","text svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,div0,anchor),div0.innerHTML=empty_resultsraw_default(),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,p),(0,internal.R3I)(p,t3)},p(ctx,dirty){4&dirty&&t0_value!==(t0_value=ctx[2]("noDocuments.noSearchResults")+"")&&(0,internal.rTO)(t0,t0_value),4&dirty&&t3_value!==(t3_value=ctx[2]("noDocuments.queryNoResults")+"")&&(0,internal.rTO)(t3,t3_value)},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function NoDocuments_svelte_create_fragment(ctx){let div;function select_block_type(ctx,dirty){return null!=ctx[0].me&&ctx[1].params.oneUserSearch==ctx[0].me.id&&ctx[1].params.noStatus&&ctx[1].params.noAccess?null==ctx[0].me||ctx[0].isVerified?NoDocuments_svelte_create_else_block:NoDocuments_svelte_create_if_block_1:NoDocuments_svelte_create_if_block}let current_block_type=select_block_type(ctx),if_block=current_block_type(ctx);return{c(){div=(0,internal.bGB)("div"),if_block.c(),(0,internal.Ljt)(div,"class","container svelte-dlrhmn")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block.m(div,null)},p(ctx,[dirty]){current_block_type===(current_block_type=select_block_type(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(div,null)))},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),if_block.d()}}}function NoDocuments_svelte_instance($$self,$$props,$$invalidate){let $orgsAndUsers,$search,$_;return(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(0,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(1,$search=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value))),[$orgsAndUsers,$search,$_]}class NoDocuments extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,NoDocuments_svelte_instance,NoDocuments_svelte_create_fragment,internal.N8,{})}}var NoDocuments_svelte=NoDocuments;function ProcessingBar_svelte_create_if_block(ctx){let div1,div0,current_block_type_index,if_block,t,progress,current;const if_block_creators=[ProcessingBar_svelte_create_if_block_1,ProcessingBar_svelte_create_else_block],if_blocks=[];function select_block_type(ctx,dirty){return ctx[1].doneProcessing?0:1}return current_block_type_index=select_block_type(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),progress=new Progress_svelte.Z({props:{progress:ctx[1].processingProgress}}),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),if_block.c(),t=(0,internal.DhX)(),(0,internal.YCL)(progress.$$.fragment),(0,internal.Ljt)(div0,"class","info svelte-mjz2rg"),(0,internal.Ljt)(div1,"class","processingbar svelte-mjz2rg")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),if_blocks[current_block_type_index].m(div0,null),(0,internal.R3I)(div1,t),(0,internal.yef)(progress,div1,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(div0,null));const progress_changes={};2&dirty&&(progress_changes.progress=ctx[1].processingProgress),progress.$set(progress_changes)},i(local){current||((0,internal.Ui)(if_block),(0,internal.Ui)(progress.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block),(0,internal.etI)(progress.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div1),if_blocks[current_block_type_index].d(),(0,internal.vpE)(progress)}}}function ProcessingBar_svelte_create_else_block(ctx){let t,t_value=ctx[2]("processingBar.processingDocuments",{values:{n:ctx[1].numProcessing}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){6&dirty&&t_value!==(t_value=ctx[2]("processingBar.processingDocuments",{values:{n:ctx[1].numProcessing}})+"")&&(0,internal.rTO)(t,t_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProcessingBar_svelte_create_if_block_1(ctx){let span0,t0,t1,span1,button,current,t0_value=ctx[2]("processingBar.doneProcessing")+"";return button=new Button_svelte.Z({props:{small:!0,$$slots:{default:[ProcessingBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[3]),{c(){span0=(0,internal.bGB)("span"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),span1=(0,internal.bGB)("span"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span0,"class","valign svelte-mjz2rg"),(0,internal.Ljt)(span1,"class","dismiss svelte-mjz2rg")},m(target,anchor){(0,internal.$Tr)(target,span0,anchor),(0,internal.R3I)(span0,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,span1,anchor),(0,internal.yef)(button,span1,null),current=!0},p(ctx,dirty){(!current||4&dirty)&&t0_value!==(t0_value=ctx[2]("processingBar.doneProcessing")+"")&&(0,internal.rTO)(t0,t0_value);const button_changes={};20&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span0),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(span1),(0,internal.vpE)(button)}}}function ProcessingBar_svelte_create_default_slot(ctx){let t,t_value=ctx[2]("dialog.dismiss")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2]("dialog.dismiss")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function ProcessingBar_svelte_create_fragment(ctx){let if_block_anchor,current,if_block=(!ctx[1].doneProcessing||!ctx[0])&&ProcessingBar_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor),current=!0},p(ctx,[dirty]){ctx[1].doneProcessing&&ctx[0]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),3&dirty&&(0,internal.Ui)(if_block,1)):(if_block=ProcessingBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function ProcessingBar_svelte_instance($$self,$$props,$$invalidate){let $documents,$_;(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(1,$documents=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(2,$_=$$value)));let dismissed=!0;documents.De.subscribe((()=>{!documents.De.doneProcessing&&dismissed&&$$invalidate(0,dismissed=!1)}));return[dismissed,$documents,$_,()=>$$invalidate(0,dismissed=!0)]}class ProcessingBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,ProcessingBar_svelte_instance,ProcessingBar_svelte_create_fragment,internal.N8,{})}}var ProcessingBar_svelte=ProcessingBar,SearchBar_svelte=__webpack_require__(9776),search_iconraw=__webpack_require__(9016),search_iconraw_default=__webpack_require__.n(search_iconraw);function SearchLink_svelte_create_fragment(ctx){let div0,a,html_tag,t0,t1,t2,div1,t1_value=ctx[1]("searchLink.search")+"";return{c(){div0=(0,internal.bGB)("div"),a=(0,internal.bGB)("a"),html_tag=new internal.FWw(!1),t0=(0,internal.DhX)(),t1=(0,internal.fLW)(t1_value),t2=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),html_tag.a=t0,(0,internal.Ljt)(a,"href",ctx[0]),(0,internal.Ljt)(a,"target","_blank"),(0,internal.Ljt)(div0,"class","link svelte-17lxzen"),(0,internal.Ljt)(div1,"class","linkcontainer svelte-17lxzen")},m(target,anchor){(0,internal.$Tr)(target,div0,anchor),(0,internal.R3I)(div0,a),html_tag.m(search_iconraw_default(),a),(0,internal.R3I)(a,t0),(0,internal.R3I)(a,t1),(0,internal.$Tr)(target,t2,anchor),(0,internal.$Tr)(target,div1,anchor)},p(ctx,[dirty]){2&dirty&&t1_value!==(t1_value=ctx[1]("searchLink.search")+"")&&(0,internal.rTO)(t1,t1_value),1&dirty&&(0,internal.Ljt)(a,"href",ctx[0])},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div0),detaching&&(0,internal.ogt)(t2),detaching&&(0,internal.ogt)(div1)}}}function SearchLink_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(1,$_=$$value)));let{link:link=""}=$$props;return $$self.$$set=$$props=>{"link"in $$props&&$$invalidate(0,link=$$props.link)},[link,$_]}class SearchLink extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SearchLink_svelte_instance,SearchLink_svelte_create_fragment,internal.N8,{link:0})}}var SearchLink_svelte=SearchLink;function SpecialMessage_svelte_create_if_block(ctx){let div1,div0,promise,info={ctx:ctx,current:null,token:null,hasCatch:!0,pending:create_pending_block,then:create_then_block,catch:create_catch_block,value:8};return(0,internal.CR_)(promise=ctx[0],info),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),info.block.c(),(0,internal.Ljt)(div0,"class","special svelte-swwj5y"),(0,internal.Ljt)(div1,"class","container svelte-swwj5y")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),info.block.m(div0,info.anchor=null),info.mount=()=>div0,info.anchor=null},p(new_ctx,dirty){ctx=new_ctx,info.ctx=ctx,1&dirty&&promise!==(promise=ctx[0])&&(0,internal.CR_)(promise,info)||(0,internal.xfz)(info,ctx,dirty)},d(detaching){detaching&&(0,internal.ogt)(div1),info.block.d(),info.token=null,info=null}}}function create_catch_block(ctx){let t0,t1,if_block_anchor,if_block=ctx[1]&&SpecialMessage_svelte_create_if_block_1(ctx);return{c(){t0=(0,internal.fLW)(ctx[4]),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){ctx[1]?if_block?if_block.p(ctx,dirty):(if_block=SpecialMessage_svelte_create_if_block_1(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function SpecialMessage_svelte_create_if_block_1(ctx){let html_tag,html_anchor,raw_value=ctx[3]("specialMessage.constactUs",{values:{contact:ctx[5]}})+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){8&dirty&&raw_value!==(raw_value=ctx[3]("specialMessage.constactUs",{values:{contact:ctx[5]}})+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_then_block(ctx){let html_tag,html_anchor,raw_value=ctx[8]+"";return{c(){html_tag=new internal.FWw(!1),html_anchor=(0,internal.cSb)(),html_tag.a=html_anchor},m(target,anchor){html_tag.m(raw_value,target,anchor),(0,internal.$Tr)(target,html_anchor,anchor)},p(ctx,dirty){1&dirty&&raw_value!==(raw_value=ctx[8]+"")&&html_tag.p(raw_value)},d(detaching){detaching&&(0,internal.ogt)(html_anchor),detaching&&html_tag.d()}}}function create_pending_block(ctx){return{c:internal.ZTd,m:internal.ZTd,p:internal.ZTd,d:internal.ZTd}}function SpecialMessage_svelte_create_fragment(ctx){let if_block_anchor,if_block=ctx[2]&&SpecialMessage_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,[dirty]){ctx[2]?if_block?if_block.p(ctx,dirty):(if_block=SpecialMessage_svelte_create_if_block(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},i:internal.ZTd,o:internal.ZTd,d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function SpecialMessage_svelte_instance($$self,$$props,$$invalidate){let show,showContact,$_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value)));const version="Thanks for using DocumentCloud!",contact="mailto:info@documentcloud.org?subject=DocumentCloud Feedback",endpoint=new URL("/api/flatpages/tipofday/",base.t);let loading;return(0,svelte.H3)((()=>{$$invalidate(0,loading=async function(){const resp=await fetch(endpoint);if(!resp.ok)return"";const{content:content}=await resp.json();return content}())})),$$invalidate(2,show=version.trim().length>0),$$invalidate(1,showContact=contact.trim().length>0),[loading,showContact,show,$_,version,contact]}class SpecialMessage extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SpecialMessage_svelte_instance,SpecialMessage_svelte_create_fragment,internal.N8,{})}}var SpecialMessage_svelte=SpecialMessage,Title_svelte=__webpack_require__(4725),document_iconraw=__webpack_require__(5563),document_iconraw_default=__webpack_require__.n(document_iconraw);function File_svelte_create_if_block(ctx){let div4,div0,t0,div2,div1,t1,input,input_placeholder_value,t2,div3,t4,mounted,dispose,if_block0=ctx[0]&&File_svelte_create_if_block_2(ctx),if_block1=!ctx[0]&&File_svelte_create_if_block_1(ctx);return{c(){div4=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t1=(0,internal.DhX)(),input=(0,internal.bGB)("input"),t2=(0,internal.DhX)(),div3=(0,internal.bGB)("div"),div3.textContent=`${ctx[6]}`,t4=(0,internal.DhX)(),if_block1&&if_block1.c(),(0,internal.Ljt)(div0,"class","cell doc svelte-1numtjm"),(0,internal.Ljt)(div1,"class","progresscontainer svelte-1numtjm"),(0,internal.Ljt)(input,"placeholder",input_placeholder_value=ctx[4]("uploadDialog.untitled")),input.readOnly=ctx[0],(0,internal.Ljt)(input,"class","svelte-1numtjm"),(0,internal.VHj)(input,"error",ctx[2]),(0,internal.Ljt)(div2,"class","cell name svelte-1numtjm"),(0,internal.VHj)(div2,"readonly",ctx[0]),(0,internal.Ljt)(div3,"class","cell size svelte-1numtjm"),(0,internal.Ljt)(div4,"class","row svelte-1numtjm")},m(target,anchor){(0,internal.$Tr)(target,div4,anchor),(0,internal.R3I)(div4,div0),div0.innerHTML=document_iconraw_default(),(0,internal.R3I)(div4,t0),(0,internal.R3I)(div4,div2),(0,internal.R3I)(div2,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,input),(0,internal.BmG)(input,ctx[3]),(0,internal.R3I)(div4,t2),(0,internal.R3I)(div4,div3),(0,internal.R3I)(div4,t4),if_block1&&if_block1.m(div4,null),mounted||(dispose=(0,internal.oLt)(input,"input",ctx[8]),mounted=!0)},p(ctx,dirty){ctx[0]?if_block0?if_block0.p(ctx,dirty):(if_block0=File_svelte_create_if_block_2(ctx),if_block0.c(),if_block0.m(div1,null)):if_block0&&(if_block0.d(1),if_block0=null),16&dirty&&input_placeholder_value!==(input_placeholder_value=ctx[4]("uploadDialog.untitled"))&&(0,internal.Ljt)(input,"placeholder",input_placeholder_value),1&dirty&&(input.readOnly=ctx[0]),8&dirty&&input.value!==ctx[3]&&(0,internal.BmG)(input,ctx[3]),4&dirty&&(0,internal.VHj)(input,"error",ctx[2]),1&dirty&&(0,internal.VHj)(div2,"readonly",ctx[0]),ctx[0]?if_block1&&(if_block1.d(1),if_block1=null):if_block1?if_block1.p(ctx,dirty):(if_block1=File_svelte_create_if_block_1(ctx),if_block1.c(),if_block1.m(div4,null))},d(detaching){detaching&&(0,internal.ogt)(div4),if_block0&&if_block0.d(),if_block1&&if_block1.d(),mounted=!1,dispose()}}}function File_svelte_create_if_block_2(ctx){let div1,div0,t;return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t=(0,internal.fLW)(ctx[3]),(0,internal.Ljt)(div0,"class","progressinner svelte-1numtjm"),(0,internal.Ljt)(div1,"class","progress svelte-1numtjm"),(0,internal.czc)(div1,"width",100*ctx[1].progress+"%")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,t)},p(ctx,dirty){8&dirty&&(0,internal.rTO)(t,ctx[3]),2&dirty&&(0,internal.czc)(div1,"width",100*ctx[1].progress+"%")},d(detaching){detaching&&(0,internal.ogt)(div1)}}}function File_svelte_create_if_block_1(ctx){let div1,div0,mounted,dispose;return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),(0,internal.Ljt)(div1,"class","cell close svelte-1numtjm")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),div0.innerHTML=close_inlineraw_default(),mounted||(dispose=(0,internal.oLt)(div0,"click",ctx[5].delete),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div1),mounted=!1,dispose()}}}function File_svelte_create_fragment(ctx){let if_block_anchor,if_block=(!ctx[0]||!ctx[1].done)&&File_svelte_create_if_block(ctx);return{c(){if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,[dirty]){ctx[0]&&ctx[1].done?if_block&&(if_block.d(1),if_block=null):if_block?if_block.p(ctx,dirty):(if_block=File_svelte_create_if_block(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i:internal.ZTd,o:internal.ZTd,d(detaching){if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function File_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(4,$_=$$value)));const emit=(0,src_emit.Z)({name(){},delete(){}});let{file:file}=$$props,{uploadMode:uploadMode}=$$props,{data:data}=$$props,{error:error=!1}=$$props,name=(0,string.f_)(file.name),size=(0,string.td)(file.size);return(0,svelte.H3)((()=>{emit.name(name)})),$$self.$$set=$$props=>{"file"in $$props&&$$invalidate(7,file=$$props.file),"uploadMode"in $$props&&$$invalidate(0,uploadMode=$$props.uploadMode),"data"in $$props&&$$invalidate(1,data=$$props.data),"error"in $$props&&$$invalidate(2,error=$$props.error)},$$self.$$.update=()=>{8&$$self.$$.dirty&&emit.name(name)},[uploadMode,data,error,name,$_,emit,size,file,function(){name=this.value,$$invalidate(3,name)}]}class File extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,File_svelte_instance,File_svelte_create_fragment,internal.N8,{file:7,uploadMode:0,data:1,error:2})}}var File_svelte=File;function DropZone_svelte_create_default_slot(ctx){let div,current;const default_slot_template=ctx[1].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[3],null);return{c(){div=(0,internal.bGB)("div"),default_slot&&default_slot.c(),(0,internal.Ljt)(div,"class","content svelte-1t3ndgc")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),default_slot&&default_slot.m(div,null),current=!0},p(ctx,dirty){default_slot&&default_slot.p&&(!current||8&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[3],current?(0,internal.u2N)(default_slot_template,ctx[3],dirty,null):(0,internal.VOJ)(ctx[3]),null)},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),default_slot&&default_slot.d(detaching)}}}function DropZone_svelte_create_fragment(ctx){let div,draggable,current;return draggable=new Draggable_svelte({props:{$$slots:{default:[DropZone_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),draggable.$on("files",ctx[2]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(draggable.$$.fragment),(0,internal.Ljt)(div,"class","dropzone svelte-1t3ndgc"),(0,internal.VHj)(div,"secondary",ctx[0])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(draggable,div,null),current=!0},p(ctx,[dirty]){const draggable_changes={};8&dirty&&(draggable_changes.$$scope={dirty:dirty,ctx:ctx}),draggable.$set(draggable_changes),(!current||1&dirty)&&(0,internal.VHj)(div,"secondary",ctx[0])},i(local){current||((0,internal.Ui)(draggable.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(draggable.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(draggable)}}}function DropZone_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props,{secondary:secondary=!1}=$$props;return $$self.$$set=$$props=>{"secondary"in $$props&&$$invalidate(0,secondary=$$props.secondary),"$$scope"in $$props&&$$invalidate(3,$$scope=$$props.$$scope)},[secondary,slots,function(event){internal.cKT.call(this,$$self,event)},$$scope]}class DropZone extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,DropZone_svelte_instance,DropZone_svelte_create_fragment,internal.N8,{secondary:0})}}var DropZone_svelte=DropZone;function FilePicker_svelte_create_fragment(ctx){let span1,span0,t,input,current,mounted,dispose;const default_slot_template=ctx[6].default,default_slot=(0,internal.nuO)(default_slot_template,ctx,ctx[5],null);return{c(){span1=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),default_slot&&default_slot.c(),t=(0,internal.DhX)(),input=(0,internal.bGB)("input"),(0,internal.Ljt)(span0,"class","content svelte-h96wl2"),input.multiple=ctx[0],(0,internal.Ljt)(input,"class","picker svelte-h96wl2"),(0,internal.Ljt)(input,"type","file"),(0,internal.Ljt)(input,"accept",ctx[2]),(0,internal.Ljt)(span1,"class","container svelte-h96wl2")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,span0),default_slot&&default_slot.m(span0,null),(0,internal.R3I)(span1,t),(0,internal.R3I)(span1,input),ctx[7](input),current=!0,mounted||(dispose=[(0,internal.oLt)(span0,"click",ctx[3]),(0,internal.oLt)(input,"change",ctx[4])],mounted=!0)},p(ctx,[dirty]){default_slot&&default_slot.p&&(!current||32&dirty)&&(0,internal.kmG)(default_slot,default_slot_template,ctx,ctx[5],current?(0,internal.u2N)(default_slot_template,ctx[5],dirty,null):(0,internal.VOJ)(ctx[5]),null),(!current||1&dirty)&&(input.multiple=ctx[0])},i(local){current||((0,internal.Ui)(default_slot,local),current=!0)},o(local){(0,internal.etI)(default_slot,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(span1),default_slot&&default_slot.d(detaching),ctx[7](null),mounted=!1,(0,internal.j7q)(dispose)}}}function FilePicker_svelte_instance($$self,$$props,$$invalidate){let{$$slots:slots={},$$scope:$$scope}=$$props;const emit=(0,src_emit.Z)({files(){}});let{multiselect:multiselect=!1}=$$props;const documentTypes="123,602,abw,agd,bmp,cdr,cgm,cmx,csv,cwk,dbf,dif,doc,docx,dot,emf,eps,fb2,fhd,fodg,fodp,fods,fodt,gif,gnm,gnumeric,htm,html,hwp,jpeg,jpg,jtd,jtt,key,kth,mml,numbers,odb,odf,odg,odp,ods,odt,p65,pages,pbm,pcd,pct,pcx,pdf,pgm,plt,pm3,pm4,pm5,pm6,pmd,png,pot,ppm,pps,ppt,pptx,psd,pub,qxp,ras,rlf,rtf,sda,sdc,sdd,sdp,sdw,sgf,sgl,sgv,slk,stc,std,sti,stw,svg,svm,sxc,sxd,sxi,sxm,sxw,tga,tif,tiff,txt,uof,uop,uos,uot,vor,vsd,wb2,wdb,wk1,wk3,wk4,wks,wpd,wps,wq1,wq2,wri,xbm,xls,xlsx,xlt,xlw,xml,xpm,zabw,zmf".split(",").map((x=>`.${x.toLowerCase().trim()}`)).join(",");let picker;return $$self.$$set=$$props=>{"multiselect"in $$props&&$$invalidate(0,multiselect=$$props.multiselect),"$$scope"in $$props&&$$invalidate(5,$$scope=$$props.$$scope)},[multiselect,picker,documentTypes,function(){picker.click()},function(){const fileList=picker.files;if(fileList.length>0){const files=[];for(let i=0;i{picker=$$value,$$invalidate(1,picker)}))}]}class FilePicker extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,FilePicker_svelte_instance,FilePicker_svelte_create_fragment,internal.N8,{multiselect:0})}}var FilePicker_svelte=FilePicker,UploadOptions_svelte=__webpack_require__(8618),AccessToggle_svelte=__webpack_require__(3426),languages=__webpack_require__(9275),api_document=__webpack_require__(2835);function UploadDialog_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[41]=list[i],child_ctx[42]=list,child_ctx[43]=i,child_ctx}function UploadDialog_svelte_create_if_block_9(ctx){let div2,h2,t0,t1,div0,uploadoptions,updating_language,updating_forceOcr,updating_ocrEngine,t2,current_block_type_index,if_block2,t3,t4,div1,accesstoggle,updating_access,current;function select_block_type(ctx,dirty){return null==ctx[11]?UploadDialog_svelte_create_if_block_16:create_else_block_4}let current_block_type=select_block_type(ctx),if_block0=current_block_type(ctx);function select_block_type_1(ctx,dirty){return 0===ctx[0].length?UploadDialog_svelte_create_if_block_12:create_else_block_3}let current_block_type_1=select_block_type_1(ctx),if_block1=current_block_type_1(ctx);function uploadoptions_language_binding(value){ctx[30](value)}function uploadoptions_forceOcr_binding(value){ctx[31](value)}function uploadoptions_ocrEngine_binding(value){ctx[32](value)}let uploadoptions_props={};void 0!==ctx[4]&&(uploadoptions_props.language=ctx[4]),void 0!==ctx[5]&&(uploadoptions_props.forceOcr=ctx[5]),void 0!==ctx[6]&&(uploadoptions_props.ocrEngine=ctx[6]),uploadoptions=new UploadOptions_svelte.Z({props:uploadoptions_props}),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"language",uploadoptions_language_binding))),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"forceOcr",uploadoptions_forceOcr_binding))),internal.VnY.push((()=>(0,internal.akz)(uploadoptions,"ocrEngine",uploadoptions_ocrEngine_binding)));const if_block_creators=[UploadDialog_svelte_create_if_block_11,create_else_block_2],if_blocks=[];function select_block_type_2(ctx,dirty){return ctx[0].length>0?0:1}current_block_type_index=select_block_type_2(ctx),if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block3=0==ctx[0].length&&UploadDialog_svelte_create_if_block_10(ctx);function accesstoggle_access_binding(value){ctx[33](value)}let accesstoggle_props={publicMessage:ctx[16]("uploadDialog.publicMsg"),collaboratorMessage:ctx[16]("uploadDialog.collabMsg"),privateMessage:ctx[16]("uploadDialog.privateMsg"),collaboratorName:ctx[16]("uploadDialog.collabName")};return void 0!==ctx[3]&&(accesstoggle_props.access=ctx[3]),accesstoggle=new AccessToggle_svelte.Z({props:accesstoggle_props}),internal.VnY.push((()=>(0,internal.akz)(accesstoggle,"access",accesstoggle_access_binding))),{c(){div2=(0,internal.bGB)("div"),h2=(0,internal.bGB)("h2"),if_block0.c(),t0=(0,internal.DhX)(),if_block1.c(),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),(0,internal.YCL)(uploadoptions.$$.fragment),t2=(0,internal.DhX)(),if_block2.c(),t3=(0,internal.DhX)(),if_block3&&if_block3.c(),t4=(0,internal.DhX)(),div1=(0,internal.bGB)("div"),(0,internal.YCL)(accesstoggle.$$.fragment),(0,internal.Ljt)(div0,"class","actions svelte-2jozsx"),(0,internal.Ljt)(div1,"class","bottompadded svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div2,anchor),(0,internal.R3I)(div2,h2),if_block0.m(h2,null),(0,internal.R3I)(div2,t0),if_block1.m(div2,null),(0,internal.R3I)(div2,t1),(0,internal.R3I)(div2,div0),(0,internal.yef)(uploadoptions,div0,null),(0,internal.R3I)(div0,t2),if_blocks[current_block_type_index].m(div0,null),(0,internal.R3I)(div2,t3),if_block3&&if_block3.m(div2,null),(0,internal.R3I)(div2,t4),(0,internal.R3I)(div2,div1),(0,internal.yef)(accesstoggle,div1,null),current=!0},p(ctx,dirty){current_block_type===(current_block_type=select_block_type(ctx))&&if_block0?if_block0.p(ctx,dirty):(if_block0.d(1),if_block0=current_block_type(ctx),if_block0&&(if_block0.c(),if_block0.m(h2,null))),current_block_type_1===(current_block_type_1=select_block_type_1(ctx))&&if_block1?if_block1.p(ctx,dirty):(if_block1.d(1),if_block1=current_block_type_1(ctx),if_block1&&(if_block1.c(),if_block1.m(div2,t1)));const uploadoptions_changes={};!updating_language&&16&dirty[0]&&(updating_language=!0,uploadoptions_changes.language=ctx[4],(0,internal.hjT)((()=>updating_language=!1))),!updating_forceOcr&&32&dirty[0]&&(updating_forceOcr=!0,uploadoptions_changes.forceOcr=ctx[5],(0,internal.hjT)((()=>updating_forceOcr=!1))),!updating_ocrEngine&&64&dirty[0]&&(updating_ocrEngine=!0,uploadoptions_changes.ocrEngine=ctx[6],(0,internal.hjT)((()=>updating_ocrEngine=!1))),uploadoptions.$set(uploadoptions_changes);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_2(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block2=if_blocks[current_block_type_index],if_block2?if_block2.p(ctx,dirty):(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block2.c()),(0,internal.Ui)(if_block2,1),if_block2.m(div0,null)),0==ctx[0].length?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=UploadDialog_svelte_create_if_block_10(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div2,t4)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)());const accesstoggle_changes={};65536&dirty[0]&&(accesstoggle_changes.publicMessage=ctx[16]("uploadDialog.publicMsg")),65536&dirty[0]&&(accesstoggle_changes.collaboratorMessage=ctx[16]("uploadDialog.collabMsg")),65536&dirty[0]&&(accesstoggle_changes.privateMessage=ctx[16]("uploadDialog.privateMsg")),65536&dirty[0]&&(accesstoggle_changes.collaboratorName=ctx[16]("uploadDialog.collabName")),!updating_access&&8&dirty[0]&&(updating_access=!0,accesstoggle_changes.access=ctx[3],(0,internal.hjT)((()=>updating_access=!1))),accesstoggle.$set(accesstoggle_changes)},i(local){current||((0,internal.Ui)(uploadoptions.$$.fragment,local),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),(0,internal.Ui)(accesstoggle.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(uploadoptions.$$.fragment,local),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),(0,internal.etI)(accesstoggle.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div2),if_block0.d(),if_block1.d(),(0,internal.vpE)(uploadoptions),if_blocks[current_block_type_index].d(),if_block3&&if_block3.d(),(0,internal.vpE)(accesstoggle)}}}function create_else_block_4(ctx){let t,t_value=ctx[16]("uploadDialog.docUploadProj",{values:{title:ctx[11].title}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){67584&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.docUploadProj",{values:{title:ctx[11].title}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_16(ctx){let t,t_value=ctx[16]("uploadDialog.docUpload")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.docUpload")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function create_else_block_3(ctx){let p,t0,t1,if_block_anchor,t0_value=ctx[16]("uploadDialog.fileReady",{values:{n:ctx[0].length}})+"",if_block=ctx[7]&&UploadDialog_svelte_create_if_block_15(ctx);return{c(){p=(0,internal.bGB)("p"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block&&if_block.c(),if_block_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t0),(0,internal.$Tr)(target,t1,anchor),if_block&&if_block.m(target,anchor),(0,internal.$Tr)(target,if_block_anchor,anchor)},p(ctx,dirty){65537&dirty[0]&&t0_value!==(t0_value=ctx[16]("uploadDialog.fileReady",{values:{n:ctx[0].length}})+"")&&(0,internal.rTO)(t0,t0_value),ctx[7]?if_block?if_block.p(ctx,dirty):(if_block=UploadDialog_svelte_create_if_block_15(ctx),if_block.c(),if_block.m(if_block_anchor.parentNode,if_block_anchor)):if_block&&(if_block.d(1),if_block=null)},d(detaching){detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t1),if_block&&if_block.d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function UploadDialog_svelte_create_if_block_12(ctx){let p,t0,t1,t2,if_block1_anchor,t0_value=ctx[16]("uploadDialog.selectDocument")+"",if_block0=ctx[8][0]&&UploadDialog_svelte_create_if_block_14(ctx),if_block1=ctx[8][1]&&UploadDialog_svelte_create_if_block_13(ctx);return{c(){p=(0,internal.bGB)("p"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),if_block0&&if_block0.c(),t2=(0,internal.DhX)(),if_block1&&if_block1.c(),if_block1_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t0),(0,internal.$Tr)(target,t1,anchor),if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t2,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,if_block1_anchor,anchor)},p(ctx,dirty){65536&dirty[0]&&t0_value!==(t0_value=ctx[16]("uploadDialog.selectDocument")+"")&&(0,internal.rTO)(t0,t0_value),ctx[8][0]?if_block0?if_block0.p(ctx,dirty):(if_block0=UploadDialog_svelte_create_if_block_14(ctx),if_block0.c(),if_block0.m(t2.parentNode,t2)):if_block0&&(if_block0.d(1),if_block0=null),ctx[8][1]?if_block1?if_block1.p(ctx,dirty):(if_block1=UploadDialog_svelte_create_if_block_13(ctx),if_block1.c(),if_block1.m(if_block1_anchor.parentNode,if_block1_anchor)):if_block1&&(if_block1.d(1),if_block1=null)},d(detaching){detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t1),if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t2),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(if_block1_anchor)}}}function UploadDialog_svelte_create_if_block_15(ctx){let p,t,t_value=ctx[16]("uploadDialog.fileLimitWarning",{values:{limit:ctx[18]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.fileLimitWarning",{values:{limit:ctx[18]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_if_block_14(ctx){let p,t,t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[19]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[19]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_if_block_13(ctx){let p,t,t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[20]}})+"";return{c(){p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","danger svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.pdfSizeWarning",{values:{size:ctx[20]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(p)}}}function create_else_block_2(ctx){let filepicker,current;return filepicker=new FilePicker_svelte({props:{multiselect:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_7]},$$scope:{ctx:ctx}}}),filepicker.$on("files",ctx[21]),{c(){(0,internal.YCL)(filepicker.$$.fragment)},m(target,anchor){(0,internal.yef)(filepicker,target,anchor),current=!0},p(ctx,dirty){const filepicker_changes={};65536&dirty[0]|8192&dirty[1]&&(filepicker_changes.$$scope={dirty:dirty,ctx:ctx}),filepicker.$set(filepicker_changes)},i(local){current||((0,internal.Ui)(filepicker.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(filepicker.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(filepicker,detaching)}}}function UploadDialog_svelte_create_if_block_11(ctx){let button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_6]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[23]),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot_8(ctx){let t,t_value=ctx[16]("uploadDialog.selectFiles")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.selectFiles")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_default_slot_7(ctx){let button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_8]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot_6(ctx){let t,t_value=ctx[16]("uploadDialog.beginUpload")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.beginUpload")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_10(ctx){let div,dropzone,current;return dropzone=new DropZone_svelte({props:{$$slots:{default:[UploadDialog_svelte_create_default_slot_5]},$$scope:{ctx:ctx}}}),dropzone.$on("files",ctx[21]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(dropzone.$$.fragment),(0,internal.Ljt)(div,"class","droparea svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(dropzone,div,null),current=!0},p(ctx,dirty){const dropzone_changes={};65536&dirty[0]|8192&dirty[1]&&(dropzone_changes.$$scope={dirty:dirty,ctx:ctx}),dropzone.$set(dropzone_changes)},i(local){current||((0,internal.Ui)(dropzone.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(dropzone.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(dropzone)}}}function UploadDialog_svelte_create_default_slot_5(ctx){let span,t,t_value=ctx[16]("uploadDialog.dragDrop")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.dragDrop")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(span)}}}function UploadDialog_svelte_create_if_block_5(ctx){let div,current_block_type_index,if_block,current;const if_block_creators=[UploadDialog_svelte_create_if_block_6,UploadDialog_svelte_create_else_block_1],if_blocks=[];function select_block_type_3(ctx,dirty){return ctx[12]?1:0}return current_block_type_index=select_block_type_3(ctx),if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),{c(){div=(0,internal.bGB)("div"),if_block.c()},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_blocks[current_block_type_index].m(div,null),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_3(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(div,null))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_blocks[current_block_type_index].d()}}}function UploadDialog_svelte_create_else_block_1(ctx){let h2,t0,t1,p,t2,t3,div,button,current,t0_value=ctx[16]("uploadDialog.errorHeading")+"",t2_value=ctx[16]("uploadDialog.errorMsg",{values:{errorMessage:errorMessage}})+"";return button=new Button_svelte.Z({props:{secondary:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[17].allUploaded),{c(){h2=(0,internal.bGB)("h2"),t0=(0,internal.fLW)(t0_value),t1=(0,internal.DhX)(),p=(0,internal.bGB)("p"),t2=(0,internal.fLW)(t2_value),t3=(0,internal.DhX)(),div=(0,internal.bGB)("div"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(p,"class","error")},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),(0,internal.R3I)(h2,t0),(0,internal.$Tr)(target,t1,anchor),(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t2),(0,internal.$Tr)(target,t3,anchor),(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){(!current||65536&dirty[0])&&t0_value!==(t0_value=ctx[16]("uploadDialog.errorHeading")+"")&&(0,internal.rTO)(t0,t0_value),(!current||65536&dirty[0])&&t2_value!==(t2_value=ctx[16]("uploadDialog.errorMsg",{values:{errorMessage:errorMessage}})+"")&&(0,internal.rTO)(t2,t2_value);const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(h2),detaching&&(0,internal.ogt)(t1),detaching&&(0,internal.ogt)(p),detaching&&(0,internal.ogt)(t3),detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function UploadDialog_svelte_create_if_block_6(ctx){let h2,t0,p,t1,t1_value=ctx[16]("uploadDialog.pleaseLeaveOpen")+"";function select_block_type_4(ctx,dirty){return ctx[9]==ctx[0].length?UploadDialog_svelte_create_if_block_7:ctx[10]?UploadDialog_svelte_create_if_block_8:UploadDialog_svelte_create_else_block}let current_block_type=select_block_type_4(ctx),if_block=current_block_type(ctx);return{c(){h2=(0,internal.bGB)("h2"),if_block.c(),t0=(0,internal.DhX)(),p=(0,internal.bGB)("p"),t1=(0,internal.fLW)(t1_value)},m(target,anchor){(0,internal.$Tr)(target,h2,anchor),if_block.m(h2,null),(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,p,anchor),(0,internal.R3I)(p,t1)},p(ctx,dirty){current_block_type===(current_block_type=select_block_type_4(ctx))&&if_block?if_block.p(ctx,dirty):(if_block.d(1),if_block=current_block_type(ctx),if_block&&(if_block.c(),if_block.m(h2,null))),65536&dirty[0]&&t1_value!==(t1_value=ctx[16]("uploadDialog.pleaseLeaveOpen")+"")&&(0,internal.rTO)(t1,t1_value)},i:internal.ZTd,o:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(h2),if_block.d(),detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(p)}}}function UploadDialog_svelte_create_default_slot_4(ctx){let t,t_value=ctx[16]("dialog.dismiss")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("dialog.dismiss")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_else_block(ctx){let t,t_value=ctx[16]("uploadDialog.gettingInfo",{values:{percent:ctx[14]}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){81920&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.gettingInfo",{values:{percent:ctx[14]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_8(ctx){let t,t_value=ctx[16]("uploadDialog.uploading",{values:{uploaded:ctx[9],length:ctx[0].length}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){66049&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.uploading",{values:{uploaded:ctx[9],length:ctx[0].length}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_7(ctx){let t,t_value=ctx[16]("uploadDialog.submitting",{values:{percent:ctx[13]}})+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){73728&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.submitting",{values:{percent:ctx[13]}})+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_4(ctx){let div,p,t,t_value=ctx[16]("uploadDialog.editDocInfo")+"";return{c(){div=(0,internal.bGB)("div"),p=(0,internal.bGB)("p"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(p,"class","subtitle svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,p),(0,internal.R3I)(p,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.editDocInfo")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function UploadDialog_svelte_create_if_block_3(ctx){let div,current,each_blocks=[],each_1_lookup=new Map,each_value=ctx[15];const get_key=ctx=>ctx[41].index;for(let i=0;i0&&!ctx[2]&&UploadDialog_svelte_create_if_block_2(ctx),if_block1=ctx[0].length>0&&ctx[2]&&UploadDialog_svelte_create_if_block_1(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t=(0,internal.DhX)(),if_block1&&if_block1.c()},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t),if_block1&&if_block1.m(div,null),current=!0},p(ctx,dirty){ctx[0].length>0&&!ctx[2]?if_block0?(if_block0.p(ctx,dirty),5&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=UploadDialog_svelte_create_if_block_2(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div,t)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[0].length>0&&ctx[2]?if_block1?(if_block1.p(ctx,dirty),5&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=UploadDialog_svelte_create_if_block_1(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,null)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d()}}}function UploadDialog_svelte_create_if_block_2(ctx){let div,button,current;return button=new Button_svelte.Z({props:{nondescript:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[36]),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(div,"class","vpadded svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function UploadDialog_svelte_create_default_slot_3(ctx){let t,t_value=ctx[16]("uploadDialog.uploadFiles")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.uploadFiles")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_if_block_1(ctx){let div1,div0,t0,filepicker,t1,dropzone,current;return filepicker=new FilePicker_svelte({props:{multiselect:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),filepicker.$on("files",ctx[21]),dropzone=new DropZone_svelte({props:{class:"dropper",secondary:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),dropzone.$on("files",ctx[21]),{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t0=(0,internal.DhX)(),(0,internal.YCL)(filepicker.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(dropzone.$$.fragment),(0,internal.Ljt)(div0,"class","sectionbreak svelte-2jozsx")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div1,t0),(0,internal.yef)(filepicker,div1,null),(0,internal.R3I)(div1,t1),(0,internal.yef)(dropzone,div1,null),current=!0},p(ctx,dirty){const filepicker_changes={};65536&dirty[0]|8192&dirty[1]&&(filepicker_changes.$$scope={dirty:dirty,ctx:ctx}),filepicker.$set(filepicker_changes);const dropzone_changes={};65536&dirty[0]|8192&dirty[1]&&(dropzone_changes.$$scope={dirty:dirty,ctx:ctx}),dropzone.$set(dropzone_changes)},i(local){current||((0,internal.Ui)(filepicker.$$.fragment,local),(0,internal.Ui)(dropzone.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(filepicker.$$.fragment,local),(0,internal.etI)(dropzone.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div1),(0,internal.vpE)(filepicker),(0,internal.vpE)(dropzone)}}}function UploadDialog_svelte_create_default_slot_2(ctx){let t,t_value=ctx[16]("uploadDialog.selectMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.selectMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function UploadDialog_svelte_create_default_slot_1(ctx){let button,current;return button=new Button_svelte.Z({props:{secondary:!0,small:!0,$$slots:{default:[UploadDialog_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};65536&dirty[0]|8192&dirty[1]&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function UploadDialog_svelte_create_default_slot(ctx){let span,t,t_value=ctx[16]("uploadDialog.dragDropMore")+"";return{c(){span=(0,internal.bGB)("span"),t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,span,anchor),(0,internal.R3I)(span,t)},p(ctx,dirty){65536&dirty[0]&&t_value!==(t_value=ctx[16]("uploadDialog.dragDropMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(span)}}}function UploadDialog_svelte_create_fragment(ctx){let div,t0,t1,t2,t3,current,if_block0=!ctx[1]&&UploadDialog_svelte_create_if_block_9(ctx),if_block1=ctx[1]&&UploadDialog_svelte_create_if_block_5(ctx),if_block2=!ctx[1]&&ctx[0].length>0&&UploadDialog_svelte_create_if_block_4(ctx),if_block3=ctx[0].length>0&&UploadDialog_svelte_create_if_block_3(ctx),if_block4=!ctx[1]&&UploadDialog_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),if_block3&&if_block3.c(),t3=(0,internal.DhX)(),if_block4&&if_block4.c(),(0,internal.Ljt)(div,"class","mcontent")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),if_block0&&if_block0.m(div,null),(0,internal.R3I)(div,t0),if_block1&&if_block1.m(div,null),(0,internal.R3I)(div,t1),if_block2&&if_block2.m(div,null),(0,internal.R3I)(div,t2),if_block3&&if_block3.m(div,null),(0,internal.R3I)(div,t3),if_block4&&if_block4.m(div,null),current=!0},p(ctx,dirty){ctx[1]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block0,1)):(if_block0=UploadDialog_svelte_create_if_block_9(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div,t0)),ctx[1]?if_block1?(if_block1.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block1,1)):(if_block1=UploadDialog_svelte_create_if_block_5(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(div,t1)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()),!ctx[1]&&ctx[0].length>0?if_block2?if_block2.p(ctx,dirty):(if_block2=UploadDialog_svelte_create_if_block_4(ctx),if_block2.c(),if_block2.m(div,t2)):if_block2&&(if_block2.d(1),if_block2=null),ctx[0].length>0?if_block3?(if_block3.p(ctx,dirty),1&dirty[0]&&(0,internal.Ui)(if_block3,1)):(if_block3=UploadDialog_svelte_create_if_block_3(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div,t3)):if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()),ctx[1]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?(if_block4.p(ctx,dirty),2&dirty[0]&&(0,internal.Ui)(if_block4,1)):(if_block4=UploadDialog_svelte_create_if_block(ctx),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),if_block0&&if_block0.d(),if_block1&&if_block1.d(),if_block2&&if_block2.d(),if_block3&&if_block3.d(),if_block4&&if_block4.d()}}}let errorMessage=null;function UploadDialog_svelte_instance($$self,$$props,$$invalidate){let uploadProject,displayFiles,createProgressPercent,processProgressPercent,error,$search,$projects,$_;(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(28,$search=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(29,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(16,$_=$$value)));const emit=(0,src_emit.Z)({setDismissable(){}});let{initialFiles:initialFiles=[]}=$$props,files=[],id=0,uploadMode=!1,uploadFiles=[],uploadAdditional=!1,access="private",language=languages.X9,forceOcr=!1,ocrEngine="tess4";const LIMIT=parseInt("1000"),PDF_SIZE_LIMIT=parseInt("525336576"),DOCUMENT_SIZE_LIMIT=parseInt("27262976");let numUploaded,tooManyFiles=!1,tooManyBigFiles=[!1,!1],createProgress=0,processProgress=0,uploadInProgress=!1;function handleFiles({detail:newFiles}){let hasTooBigPdf=!1,hasTooBigDocument=!1;for(let i=0;ifile.index!=index))),$$invalidate(8,tooManyBigFiles=!1),$$invalidate(7,tooManyFiles=!1)}(0,svelte.H3)((()=>{handleFiles({detail:initialFiles})}));return $$self.$$set=$$props=>{"initialFiles"in $$props&&$$invalidate(24,initialFiles=$$props.initialFiles)},$$self.$$.update=()=>{if(805306368&$$self.$$.dirty[0]&&$$invalidate(11,uploadProject=$search.params.oneProjectSearch&&null!=$projects.projectsById[$search.params.oneProjectSearch]?$projects.projectsById[$search.params.oneProjectSearch]:null),33554435&$$self.$$.dirty[0]&&$$invalidate(15,displayFiles=uploadMode?uploadFiles:files),33554434&$$self.$$.dirty[0])if(uploadMode){let total=0;for(let i=0;i({file:file.file,progress:0,done:!1,index:i})))),emit.setDismissable(!1),$$invalidate(1,uploadMode=!0),(0,api_document.GA)(files,access,language,forceOcr,ocrEngine,null==uploadProject?[]:[uploadProject],(progress=>{$$invalidate(26,createProgress=progress)}),((index,progress)=>{$$invalidate(10,uploadInProgress=!0),$$invalidate(25,uploadFiles[index].progress=progress,uploadFiles),progress>=1&&$$invalidate(25,uploadFiles[index].done=!0,uploadFiles)}),(progress=>{$$invalidate(27,processProgress=progress)}),(async goodDocuments=>{$$invalidate(25,uploadFiles=uploadFiles.map((file=>({...file,done:!0})))),layout.bK.uploading=!1,await(0,documents.QC)(goodDocuments)}),(message=>{layout.bK.error=message,layout.bK.uploading=!1,emit.setDismissable(!0)}))},initialFiles,uploadFiles,createProgress,processProgress,$search,$projects,function(value){language=value,$$invalidate(4,language)},function(value){forceOcr=value,$$invalidate(5,forceOcr)},function(value){ocrEngine=value,$$invalidate(6,ocrEngine)},function(value){access=value,$$invalidate(3,access)},(file,each_value,file_index,{detail:newName})=>{let name=newName.trim();0==name.length&&(name=$_("uploadDialog.untitled")),$$invalidate(15,each_value[file_index].name=name,displayFiles)},file=>removeFile(file.index),()=>$$invalidate(2,uploadAdditional=!0)]}class UploadDialog extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,UploadDialog_svelte_instance,UploadDialog_svelte_create_fragment,internal.N8,{initialFiles:24},null,[-1,-1])}}var UploadDialog_svelte=UploadDialog,iframeSizer=__webpack_require__(1428);function Documents_svelte_get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[18]=list[i],child_ctx}function Documents_svelte_create_if_block_11(ctx){let t0,t1,authsection,current,if_block0=ctx[2].uploading&&!ctx[2].error&&Documents_svelte_create_if_block_13(ctx),if_block1=ctx[5].loggedIn&&Documents_svelte_create_if_block_12(ctx);return authsection=new AuthSection_svelte({}),{c(){if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),(0,internal.YCL)(authsection.$$.fragment)},m(target,anchor){if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(authsection,target,anchor),current=!0},p(ctx,dirty){ctx[2].uploading&&!ctx[2].error?if_block0?(if_block0.p(ctx,dirty),4&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_13(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(t0.parentNode,t0)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[5].loggedIn?if_block1?32&dirty&&(0,internal.Ui)(if_block1,1):(if_block1=Documents_svelte_create_if_block_12(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),(0,internal.Ui)(authsection.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),(0,internal.etI)(authsection.$$.fragment,local),current=!1},d(detaching){if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t0),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(authsection,detaching)}}}function Documents_svelte_create_if_block_13(ctx){let modal,current;return modal=new Modal_svelte.Z({props:{component:UploadDialog_svelte,properties:{initialFiles:ctx[6]}}}),modal.$on("close",ctx[15]),{c(){(0,internal.YCL)(modal.$$.fragment)},m(target,anchor){(0,internal.yef)(modal,target,anchor),current=!0},p(ctx,dirty){const modal_changes={};64&dirty&&(modal_changes.properties={initialFiles:ctx[6]}),modal.$set(modal_changes)},i(local){current||((0,internal.Ui)(modal.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(modal.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(modal,detaching)}}}function Documents_svelte_create_if_block_12(ctx){let specialmessage,current;return specialmessage=new SpecialMessage_svelte({}),{c(){(0,internal.YCL)(specialmessage.$$.fragment)},m(target,anchor){(0,internal.yef)(specialmessage,target,anchor),current=!0},i(local){current||((0,internal.Ui)(specialmessage.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(specialmessage.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(specialmessage,detaching)}}}function Documents_svelte_create_if_block_10(ctx){let div,t,t_value=ctx[2].projectEmbedTitle+"";return{c(){div=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div,"class","projectembedtitle svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,t)},p(ctx,dirty){4&dirty&&t_value!==(t_value=ctx[2].projectEmbedTitle+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div)}}}function Documents_svelte_create_if_block_9(ctx){let searchbar,current;return searchbar=new SearchBar_svelte.Z({props:{embed:ctx[0],dialog:ctx[1]}}),{c(){(0,internal.YCL)(searchbar.$$.fragment)},m(target,anchor){(0,internal.yef)(searchbar,target,anchor),current=!0},p(ctx,dirty){const searchbar_changes={};1&dirty&&(searchbar_changes.embed=ctx[0]),2&dirty&&(searchbar_changes.dialog=ctx[1]),searchbar.$set(searchbar_changes)},i(local){current||((0,internal.Ui)(searchbar.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(searchbar.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(searchbar,detaching)}}}function Documents_svelte_create_if_block_8(ctx){let searchlink,current;return searchlink=new SearchLink_svelte({props:{link:(0,search.SR)(ctx[4].params.projectEmbedId)}}),{c(){(0,internal.YCL)(searchlink.$$.fragment)},m(target,anchor){(0,internal.yef)(searchlink,target,anchor),current=!0},p(ctx,dirty){const searchlink_changes={};16&dirty&&(searchlink_changes.link=(0,search.SR)(ctx[4].params.projectEmbedId)),searchlink.$set(searchlink_changes)},i(local){current||((0,internal.Ui)(searchlink.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(searchlink.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(searchlink,detaching)}}}function Documents_svelte_create_if_block_5(ctx){let title_1,t0,t1,if_block1_anchor,current;title_1=new Title_svelte.Z({props:{$$slots:{default:[Documents_svelte_create_default_slot_4]},$$scope:{ctx:ctx}}});let if_block0=ctx[5].loggedIn&&Documents_svelte_create_if_block_7(ctx),if_block1=ctx[5].loggedIn&&!ctx[5].isVerified&&Documents_svelte_create_if_block_6(ctx);return{c(){(0,internal.YCL)(title_1.$$.fragment),t0=(0,internal.DhX)(),if_block0&&if_block0.c(),t1=(0,internal.DhX)(),if_block1&&if_block1.c(),if_block1_anchor=(0,internal.cSb)()},m(target,anchor){(0,internal.yef)(title_1,target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block0&&if_block0.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,if_block1_anchor,anchor),current=!0},p(ctx,dirty){const title_1_changes={};2097408&dirty&&(title_1_changes.$$scope={dirty:dirty,ctx:ctx}),title_1.$set(title_1_changes),ctx[5].loggedIn?if_block0?(if_block0.p(ctx,dirty),32&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_7(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(t1.parentNode,t1)):if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()),ctx[5].loggedIn&&!ctx[5].isVerified?if_block1?(if_block1.p(ctx,dirty),32&dirty&&(0,internal.Ui)(if_block1,1)):(if_block1=Documents_svelte_create_if_block_6(ctx),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(if_block1_anchor.parentNode,if_block1_anchor)):if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)())},i(local){current||((0,internal.Ui)(title_1.$$.fragment,local),(0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(title_1.$$.fragment,local),(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){(0,internal.vpE)(title_1,detaching),detaching&&(0,internal.ogt)(t0),if_block0&&if_block0.d(detaching),detaching&&(0,internal.ogt)(t1),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(if_block1_anchor)}}}function Documents_svelte_create_default_slot_4(ctx){let t;return{c(){t=(0,internal.fLW)(ctx[8])},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){256&dirty&&(0,internal.rTO)(t,ctx[8])},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Documents_svelte_create_if_block_7(ctx){let button,current;return button=new Button_svelte.Z({props:{disabledReason:ctx[5].isVerified?null:ctx[3]("documents.mustBeVerified"),$$slots:{default:[Documents_svelte_create_default_slot_3]},$$scope:{ctx:ctx}}}),button.$on("click",ctx[10]),{c(){(0,internal.YCL)(button.$$.fragment)},m(target,anchor){(0,internal.yef)(button,target,anchor),current=!0},p(ctx,dirty){const button_changes={};40&dirty&&(button_changes.disabledReason=ctx[5].isVerified?null:ctx[3]("documents.mustBeVerified")),2097160&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(button,detaching)}}}function Documents_svelte_create_default_slot_3(ctx){let t0,t1,t1_value=ctx[3]("documents.upload")+"";return{c(){t0=(0,internal.fLW)("+ "),t1=(0,internal.fLW)(t1_value)},m(target,anchor){(0,internal.$Tr)(target,t0,anchor),(0,internal.$Tr)(target,t1,anchor)},p(ctx,dirty){8&dirty&&t1_value!==(t1_value=ctx[3]("documents.upload")+"")&&(0,internal.rTO)(t1,t1_value)},d(detaching){detaching&&(0,internal.ogt)(t0),detaching&&(0,internal.ogt)(t1)}}}function Documents_svelte_create_if_block_6(ctx){let a,button,current;return button=new Button_svelte.Z({props:{$$slots:{default:[Documents_svelte_create_default_slot_2]},$$scope:{ctx:ctx}}}),{c(){a=(0,internal.bGB)("a"),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(a,"href","https://airtable.com/shrZrgdmuOwW0ZLPM"),(0,internal.Ljt)(a,"target","_new")},m(target,anchor){(0,internal.$Tr)(target,a,anchor),(0,internal.yef)(button,a,null),current=!0},p(ctx,dirty){const button_changes={};2097160&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(a),(0,internal.vpE)(button)}}}function Documents_svelte_create_default_slot_2(ctx){let t,t_value=ctx[3]("noDocuments.requestVerificationAction")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[3]("noDocuments.requestVerificationAction")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function Documents_svelte_create_if_block_4(ctx){let actionbar,t0,processingbar,t1,addonstatus,current;return actionbar=new ActionBar_svelte({}),processingbar=new ProcessingBar_svelte({}),addonstatus=new AddonStatus_svelte({}),{c(){(0,internal.YCL)(actionbar.$$.fragment),t0=(0,internal.DhX)(),(0,internal.YCL)(processingbar.$$.fragment),t1=(0,internal.DhX)(),(0,internal.YCL)(addonstatus.$$.fragment)},m(target,anchor){(0,internal.yef)(actionbar,target,anchor),(0,internal.$Tr)(target,t0,anchor),(0,internal.yef)(processingbar,target,anchor),(0,internal.$Tr)(target,t1,anchor),(0,internal.yef)(addonstatus,target,anchor),current=!0},i(local){current||((0,internal.Ui)(actionbar.$$.fragment,local),(0,internal.Ui)(processingbar.$$.fragment,local),(0,internal.Ui)(addonstatus.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(actionbar.$$.fragment,local),(0,internal.etI)(processingbar.$$.fragment,local),(0,internal.etI)(addonstatus.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(actionbar,detaching),detaching&&(0,internal.ogt)(t0),(0,internal.vpE)(processingbar,detaching),detaching&&(0,internal.ogt)(t1),(0,internal.vpE)(addonstatus,detaching)}}}function Documents_svelte_create_else_block_1(ctx){let each_1_anchor,current,each_blocks=[],each_1_lookup=new Map,each_value=ctx[9].documents;const get_key=ctx=>ctx[18].id;for(let i=0;i(0,internal.akz)(anonymous,"closed",anonymous_closed_binding))),{c(){(0,internal.YCL)(anonymous.$$.fragment)},m(target,anchor){(0,internal.yef)(anonymous,target,anchor),current=!0},p(ctx,dirty){const anonymous_changes={};!updating_closed&&128&dirty&&(updating_closed=!0,anonymous_changes.closed=ctx[7],(0,internal.hjT)((()=>updating_closed=!1))),anonymous.$set(anonymous_changes)},i(local){current||((0,internal.Ui)(anonymous.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(anonymous.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(anonymous,detaching)}}}function Documents_svelte_create_each_block(key_1,ctx){let div,document,t,rect,current,stop_animation=internal.ZTd;return document=new Document_svelte({props:{embed:ctx[0],dialog:ctx[1],document:ctx[18]}}),document.$on("pick",ctx[17]),{key:key_1,first:null,c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(document.$$.fragment),t=(0,internal.DhX)(),(0,internal.Ljt)(div,"class","svelte-1l9cwso"),(0,internal.VHj)(div,"inlinecard",ctx[0]),this.first=div},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(document,div,null),(0,internal.R3I)(div,t),current=!0},p(new_ctx,dirty){ctx=new_ctx;const document_changes={};1&dirty&&(document_changes.embed=ctx[0]),2&dirty&&(document_changes.dialog=ctx[1]),512&dirty&&(document_changes.document=ctx[18]),document.$set(document_changes),(!current||1&dirty)&&(0,internal.VHj)(div,"inlinecard",ctx[0])},r(){rect=div.getBoundingClientRect()},f(){(0,internal.uYD)(div),stop_animation()},a(){stop_animation(),stop_animation=(0,internal.wVP)(div,rect,animate.R,{duration:400})},i(local){current||((0,internal.Ui)(document.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(document.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(document)}}}function Documents_svelte_create_if_block_2(ctx){let nodocuments,current;return nodocuments=new NoDocuments_svelte({}),{c(){(0,internal.YCL)(nodocuments.$$.fragment)},m(target,anchor){(0,internal.yef)(nodocuments,target,anchor),current=!0},i(local){current||((0,internal.Ui)(nodocuments.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(nodocuments.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(nodocuments,detaching)}}}function Documents_svelte_create_if_block_1(ctx){let div1,div0,t,t_value=ctx[3]("documents.dropFile")+"";return{c(){div1=(0,internal.bGB)("div"),div0=(0,internal.bGB)("div"),t=(0,internal.fLW)(t_value),(0,internal.Ljt)(div0,"class","toast svelte-1l9cwso"),(0,internal.Ljt)(div1,"class","toastouter svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div1,anchor),(0,internal.R3I)(div1,div0),(0,internal.R3I)(div0,t)},p(ctx,dirty){8&dirty&&t_value!==(t_value=ctx[3]("documents.dropFile")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(div1)}}}function Documents_svelte_create_default_slot_1(ctx){let current_block_type_index,if_block0,t0,t1,if_block2_anchor,current;const if_block_creators=[Documents_svelte_create_if_block_3,Documents_svelte_create_else_block_1],if_blocks=[];function select_block_type_1(ctx,dirty){return ctx[5].loggedIn||""!==ctx[4].params.query||ctx[7]?1:0}current_block_type_index=select_block_type_1(ctx),if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx);let if_block1=0==ctx[9].documents.length&&!ctx[2].loading&&Documents_svelte_create_if_block_2(),if_block2=ctx[5].loggedIn&&Documents_svelte_create_if_block_1(ctx);return{c(){if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),if_block2_anchor=(0,internal.cSb)()},m(target,anchor){if_blocks[current_block_type_index].m(target,anchor),(0,internal.$Tr)(target,t0,anchor),if_block1&&if_block1.m(target,anchor),(0,internal.$Tr)(target,t1,anchor),if_block2&&if_block2.m(target,anchor),(0,internal.$Tr)(target,if_block2_anchor,anchor),current=!0},p(ctx,dirty){let previous_block_index=current_block_type_index;current_block_type_index=select_block_type_1(ctx),current_block_type_index===previous_block_index?if_blocks[current_block_type_index].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block0=if_blocks[current_block_type_index],if_block0?if_block0.p(ctx,dirty):(if_block0=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block0.c()),(0,internal.Ui)(if_block0,1),if_block0.m(t0.parentNode,t0)),0!=ctx[9].documents.length||ctx[2].loading?if_block1&&((0,internal.dvw)(),(0,internal.etI)(if_block1,1,1,(()=>{if_block1=null})),(0,internal.gbL)()):if_block1?516&dirty&&(0,internal.Ui)(if_block1,1):(if_block1=Documents_svelte_create_if_block_2(),if_block1.c(),(0,internal.Ui)(if_block1,1),if_block1.m(t1.parentNode,t1)),ctx[5].loggedIn?if_block2?if_block2.p(ctx,dirty):(if_block2=Documents_svelte_create_if_block_1(ctx),if_block2.c(),if_block2.m(if_block2_anchor.parentNode,if_block2_anchor)):if_block2&&(if_block2.d(1),if_block2=null)},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block1),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block1),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(t0),if_block1&&if_block1.d(detaching),detaching&&(0,internal.ogt)(t1),if_block2&&if_block2.d(detaching),detaching&&(0,internal.ogt)(if_block2_anchor)}}}function Documents_svelte_create_else_block(ctx){let div,paginator,current;return paginator=new Paginator_svelte({}),{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(paginator.$$.fragment),(0,internal.Ljt)(div,"class","narrowshow svelte-1l9cwso")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(paginator,div,null),current=!0},p:internal.ZTd,i(local){current||((0,internal.Ui)(paginator.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(paginator.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(paginator)}}}function Documents_svelte_create_if_block(ctx){let embedfooter,current;return embedfooter=new EmbedFooter_svelte({props:{dialog:ctx[1]}}),{c(){(0,internal.YCL)(embedfooter.$$.fragment)},m(target,anchor){(0,internal.yef)(embedfooter,target,anchor),current=!0},p(ctx,dirty){const embedfooter_changes={};2&dirty&&(embedfooter_changes.dialog=ctx[1]),embedfooter.$set(embedfooter_changes)},i(local){current||((0,internal.Ui)(embedfooter.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(embedfooter.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(embedfooter,detaching)}}}function Documents_svelte_create_default_slot(ctx){let div3,div1,t0,t1,current_block_type_index,if_block2,t2,div0,t3,t4,div2,draggable,t5,current_block_type_index_1,if_block5,current,if_block0=!ctx[0]&&Documents_svelte_create_if_block_11(ctx),if_block1=ctx[0]&&null!=ctx[2].projectEmbedTitle&&Documents_svelte_create_if_block_10(ctx);const if_block_creators=[Documents_svelte_create_if_block_8,Documents_svelte_create_if_block_9],if_blocks=[];function select_block_type(ctx,dirty){return!ctx[1]&&ctx[0]&&null!=ctx[4].params&&null!=ctx[4].params.projectEmbedId&&ctx[2].projectEmbedSearchBar?0:!ctx[0]||ctx[1]?1:-1}~(current_block_type_index=select_block_type(ctx))&&(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx));let if_block3=!ctx[0]&&Documents_svelte_create_if_block_5(ctx),if_block4=!ctx[0]&&Documents_svelte_create_if_block_4();draggable=new Draggable_svelte({props:{disabled:ctx[0]||!ctx[5].loggedIn||!ctx[5].isVerified,$$slots:{default:[Documents_svelte_create_default_slot_1]},$$scope:{ctx:ctx}}}),draggable.$on("files",ctx[10]);const if_block_creators_1=[Documents_svelte_create_if_block,Documents_svelte_create_else_block],if_blocks_1=[];function select_block_type_2(ctx,dirty){return ctx[0]?0:1}return current_block_type_index_1=select_block_type_2(ctx),if_block5=if_blocks_1[current_block_type_index_1]=if_block_creators_1[current_block_type_index_1](ctx),{c(){div3=(0,internal.bGB)("div"),div1=(0,internal.bGB)("div"),if_block0&&if_block0.c(),t0=(0,internal.DhX)(),if_block1&&if_block1.c(),t1=(0,internal.DhX)(),if_block2&&if_block2.c(),t2=(0,internal.DhX)(),div0=(0,internal.bGB)("div"),if_block3&&if_block3.c(),t3=(0,internal.DhX)(),if_block4&&if_block4.c(),t4=(0,internal.DhX)(),div2=(0,internal.bGB)("div"),(0,internal.YCL)(draggable.$$.fragment),t5=(0,internal.DhX)(),if_block5.c(),(0,internal.Ljt)(div1,"class","sticky svelte-1l9cwso"),(0,internal.VHj)(div1,"embed",ctx[0]),(0,internal.Ljt)(div2,"class","docscontainer svelte-1l9cwso"),(0,internal.Ljt)(div3,"class","documents")},m(target,anchor){(0,internal.$Tr)(target,div3,anchor),(0,internal.R3I)(div3,div1),if_block0&&if_block0.m(div1,null),(0,internal.R3I)(div1,t0),if_block1&&if_block1.m(div1,null),(0,internal.R3I)(div1,t1),~current_block_type_index&&if_blocks[current_block_type_index].m(div1,null),(0,internal.R3I)(div1,t2),(0,internal.R3I)(div1,div0),if_block3&&if_block3.m(div0,null),(0,internal.R3I)(div1,t3),if_block4&&if_block4.m(div1,null),(0,internal.R3I)(div3,t4),(0,internal.R3I)(div3,div2),(0,internal.yef)(draggable,div2,null),(0,internal.R3I)(div3,t5),if_blocks_1[current_block_type_index_1].m(div3,null),current=!0},p(ctx,dirty){ctx[0]?if_block0&&((0,internal.dvw)(),(0,internal.etI)(if_block0,1,1,(()=>{if_block0=null})),(0,internal.gbL)()):if_block0?(if_block0.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block0,1)):(if_block0=Documents_svelte_create_if_block_11(ctx),if_block0.c(),(0,internal.Ui)(if_block0,1),if_block0.m(div1,t0)),ctx[0]&&null!=ctx[2].projectEmbedTitle?if_block1?if_block1.p(ctx,dirty):(if_block1=Documents_svelte_create_if_block_10(ctx),if_block1.c(),if_block1.m(div1,t1)):if_block1&&(if_block1.d(1),if_block1=null);let previous_block_index=current_block_type_index;current_block_type_index=select_block_type(ctx),current_block_type_index===previous_block_index?~current_block_type_index&&if_blocks[current_block_type_index].p(ctx,dirty):(if_block2&&((0,internal.dvw)(),(0,internal.etI)(if_blocks[previous_block_index],1,1,(()=>{if_blocks[previous_block_index]=null})),(0,internal.gbL)()),~current_block_type_index?(if_block2=if_blocks[current_block_type_index],if_block2?if_block2.p(ctx,dirty):(if_block2=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block2.c()),(0,internal.Ui)(if_block2,1),if_block2.m(div1,t2)):if_block2=null),ctx[0]?if_block3&&((0,internal.dvw)(),(0,internal.etI)(if_block3,1,1,(()=>{if_block3=null})),(0,internal.gbL)()):if_block3?(if_block3.p(ctx,dirty),1&dirty&&(0,internal.Ui)(if_block3,1)):(if_block3=Documents_svelte_create_if_block_5(ctx),if_block3.c(),(0,internal.Ui)(if_block3,1),if_block3.m(div0,null)),ctx[0]?if_block4&&((0,internal.dvw)(),(0,internal.etI)(if_block4,1,1,(()=>{if_block4=null})),(0,internal.gbL)()):if_block4?1&dirty&&(0,internal.Ui)(if_block4,1):(if_block4=Documents_svelte_create_if_block_4(),if_block4.c(),(0,internal.Ui)(if_block4,1),if_block4.m(div1,null)),(!current||1&dirty)&&(0,internal.VHj)(div1,"embed",ctx[0]);const draggable_changes={};33&dirty&&(draggable_changes.disabled=ctx[0]||!ctx[5].loggedIn||!ctx[5].isVerified),2097855&dirty&&(draggable_changes.$$scope={dirty:dirty,ctx:ctx}),draggable.$set(draggable_changes);let previous_block_index_1=current_block_type_index_1;current_block_type_index_1=select_block_type_2(ctx),current_block_type_index_1===previous_block_index_1?if_blocks_1[current_block_type_index_1].p(ctx,dirty):((0,internal.dvw)(),(0,internal.etI)(if_blocks_1[previous_block_index_1],1,1,(()=>{if_blocks_1[previous_block_index_1]=null})),(0,internal.gbL)(),if_block5=if_blocks_1[current_block_type_index_1],if_block5?if_block5.p(ctx,dirty):(if_block5=if_blocks_1[current_block_type_index_1]=if_block_creators_1[current_block_type_index_1](ctx),if_block5.c()),(0,internal.Ui)(if_block5,1),if_block5.m(div3,null))},i(local){current||((0,internal.Ui)(if_block0),(0,internal.Ui)(if_block2),(0,internal.Ui)(if_block3),(0,internal.Ui)(if_block4),(0,internal.Ui)(draggable.$$.fragment,local),(0,internal.Ui)(if_block5),current=!0)},o(local){(0,internal.etI)(if_block0),(0,internal.etI)(if_block2),(0,internal.etI)(if_block3),(0,internal.etI)(if_block4),(0,internal.etI)(draggable.$$.fragment,local),(0,internal.etI)(if_block5),current=!1},d(detaching){detaching&&(0,internal.ogt)(div3),if_block0&&if_block0.d(),if_block1&&if_block1.d(),~current_block_type_index&&if_blocks[current_block_type_index].d(),if_block3&&if_block3.d(),if_block4&&if_block4.d(),(0,internal.vpE)(draggable),if_blocks_1[current_block_type_index_1].d()}}}function Documents_svelte_create_fragment(ctx){let loader,current;return loader=new Loader_svelte.Z({props:{active:ctx[2].loading,$$slots:{default:[Documents_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),{c(){(0,internal.YCL)(loader.$$.fragment)},m(target,anchor){(0,internal.yef)(loader,target,anchor),current=!0},p(ctx,[dirty]){const loader_changes={};4&dirty&&(loader_changes.active=ctx[2].loading),2098175&dirty&&(loader_changes.$$scope={dirty:dirty,ctx:ctx}),loader.$set(loader_changes)},i(local){current||((0,internal.Ui)(loader.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(loader.$$.fragment,local),current=!1},d(detaching){(0,internal.vpE)(loader,detaching)}}}function Documents_svelte_instance($$self,$$props,$$invalidate){let $layout,$_,$search,$orgsAndUsers,$projects,$documents;(0,internal.FIv)($$self,layout.bK,($$value=>$$invalidate(2,$layout=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(3,$_=$$value))),(0,internal.FIv)($$self,search.yC,($$value=>$$invalidate(4,$search=$$value))),(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(5,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(14,$projects=$$value))),(0,internal.FIv)($$self,documents.De,($$value=>$$invalidate(9,$documents=$$value)));let{embed:embed=!1}=$$props,{containerElem:containerElem=null}=$$props,{containerWidth:containerWidth=null}=$$props,{containerHeight:containerHeight=null}=$$props,{dialog:dialog=!1}=$$props,preUploadFiles=[],anonymousClosed=!1;let title=$_("documents.yourDocuments");return $$self.$$set=$$props=>{"embed"in $$props&&$$invalidate(0,embed=$$props.embed),"containerElem"in $$props&&$$invalidate(11,containerElem=$$props.containerElem),"containerWidth"in $$props&&$$invalidate(12,containerWidth=$$props.containerWidth),"containerHeight"in $$props&&$$invalidate(13,containerHeight=$$props.containerHeight),"dialog"in $$props&&$$invalidate(1,dialog=$$props.dialog)},$$self.$$.update=()=>{if(16440&$$self.$$.dirty){let newTitle=$_("documents.searchResults");if(null!=$search.params&&!$search.params.isSearch&&$search.params.noStatus&&$search.params.oneOrZeroAccesses){let access=$search.params.oneAccessSearch;if(access=null==access?"":`${(0,string.a5)(access)} `,null!=$search.params.oneUserSearch)if($orgsAndUsers.loggedIn&&$search.params.oneUserSearch==$orgsAndUsers.me.id)newTitle=$_("documents.accessDocuments",{values:{access:access}});else{const user=$orgsAndUsers.usersById[$search.params.oneUserSearch];null!=user?newTitle=$_("documents.nameDocuments",{values:{name:user.name,access:access}}):(0,orgsAndUsers.GA)($search.params.oneUserSearch)}else if(null!=$search.params.oneProjectSearch){const projs=$projects.projects.filter((project=>project.id==$search.params.oneProjectSearch));projs.length>0&&(newTitle=projs[0].title)}else if(null!=$search.params.oneOrgSearch){const org=$orgsAndUsers.orgsById[$search.params.oneOrgSearch];null!=org?newTitle=$_("documents.nameDocuments",{values:{name:org.name,access:access}}):(0,orgsAndUsers.h$)($search.params.oneOrgSearch)}else $search.params.isAllSearch&&(newTitle=`All ${access}Documents`,newTitle=$_("documents.allDocuments",{values:{access:access}}))}$$invalidate(8,title=newTitle)}14341&$$self.$$.dirty&&!$layout.loading&&null!=containerElem&&null!=containerWidth&&null!=containerHeight&&embed&&(0,iframeSizer.q)(containerElem,!0,!0)},[embed,dialog,$layout,$_,$search,$orgsAndUsers,preUploadFiles,anonymousClosed,title,$documents,function({detail:files}){$$invalidate(6,preUploadFiles=null!=files?Array.from(files):[]),(0,internal.fxP)(layout.bK,$layout.uploading=!0,$layout)},containerElem,containerWidth,containerHeight,$projects,()=>(0,internal.fxP)(layout.bK,$layout.uploading=!1,$layout),function(value){anonymousClosed=value,$$invalidate(7,anonymousClosed)},function(event){internal.cKT.call(this,$$self,event)}]}class Documents extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,Documents_svelte_instance,Documents_svelte_create_fragment,internal.N8,{embed:0,containerElem:11,containerWidth:12,containerHeight:13,dialog:1})}}var Documents_svelte=Documents},9776:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Z:function(){return SearchBar_svelte}});var internal=__webpack_require__(4234),runtime_esm=__webpack_require__(6469),svelte=__webpack_require__(8568),NoWhitespace_svelte=__webpack_require__(489),src_emit=__webpack_require__(1812),parse=__webpack_require__(9740),string=__webpack_require__(3581);const languageOptions="afr|amh|ara|asm|aze|aze_cyrl|bel|ben|bod|bos|bul|cat|ceb|ces|zho|tra|chr|cym|dan|deu|dzo|ell|eng|enm|epo|est|eus|fas|fin|fra|frk|frm|gle|glg|grc|guj|hat|heb|hin|hrv|hun|iku|ind|isl|ita|ita_old|jav|jpn|kan|kat|kat_old|kaz|khm|kir|kor|kur|lao|lat|lav|lit|mal|mar|mkd|mlt|msa|mya|nep|nld|nor|ori|pan|pol|por|pus|ron|rus|san|sin|slk|slv|spa|spa_old|sqi|srp|srp_latn|swa|swe|syr|tam|tel|tgk|tgl|tha|tir|tur|uig|ukr|urd|uzb|uzb_cyrl|vie|yid".split("|"),sortCompletions=[{type:"field",text:"Created At (Descending)",info:"Most Recent First",feed:"created_at"},{type:"field",text:"Created At (Ascending)",info:"Oldest First",feed:"-created_at"},{type:"field",text:"Title (Ascending)",info:"Document Title A-Z",feed:"title"},{type:"field",text:"Title (Descending)",info:"Document Title Z-A",feed:"-title"},{type:"field",text:"Page Count (Descending)",info:"Most Pages First",feed:"page_count"},{type:"field",text:"Page Count (Ascending)",info:"Least Pages First",feed:"-page_count"},{type:"field",text:"Source (Ascending)",info:"Document Source A-Z",feed:"source"},{type:"field",text:"Source (Descending)",info:"Document Source Z-A",feed:"-source"},{type:"field",text:"Score",info:"Default Sort Option by Relevance",feed:"score"}],validSorts=sortCompletions.map((x=>x.feed));function fieldValid(text,example=!1){const fieldMatch=text.match(/^[^a-z]*([a-zA-Z0-9_-]+):(.*)$/);if(null==fieldMatch)return{valid:!1};const field=fieldMatch[1],value=fieldMatch[2],id=(0,string.wp)(value);return"project"==field?null==id?{valid:!1}:example?{valid:!0,transform:`projects:${id}`}:{valid:(0,string.hj)(id)}:"user"==field?null==id?{valid:!1}:example?{valid:!0,transform:`user:${id}`}:{valid:(0,string.hj)(id)}:"organization"==field?null==id?{valid:!1}:example?{valid:!0,transform:`organization:${id}`}:{valid:(0,string.hj)(id)}:"access"==field?{valid:"public"==id||"organization"==id||"private"==id}:"status"==field?{valid:"success"==id||"readable"==id||"pending"==id||"error"==id||"nofile"==id}:"sort"==field?{valid:validSorts.includes(value)}:"tag"==field?{valid:value.trim().length>0}:"language"==field?{valid:null!=id&&languageOptions.includes(id)}:field.startsWith("data_")?{valid:field.length>5&&value.trim().length>0}:{valid:!1}}var orgsAndUsers=__webpack_require__(5340),projects=__webpack_require__(9365),textareaResize=__webpack_require__(6817),languages=__webpack_require__(9275),orgAndUser=__webpack_require__(9643),closure=__webpack_require__(3059),search_iconraw=__webpack_require__(9016),search_iconraw_default=__webpack_require__.n(search_iconraw),close_inlineraw=__webpack_require__(3218),close_inlineraw_default=__webpack_require__.n(close_inlineraw);function get_each_context(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[56]=list[i],child_ctx}function get_each_context_1(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[59]=list[i],child_ctx[61]=i,child_ctx}function get_each_context_2(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[62]=list[i],child_ctx}function get_each_context_3(ctx,list,i){const child_ctx=ctx.slice();return child_ctx[65]=list[i],child_ctx}function create_else_block_2(ctx){let each_1_anchor,each_value_3=ctx[62].text.split(/( )/g),each_blocks=[];for(let i=0;i{if_blocks[previous_block_index]=null})),(0,internal.gbL)(),if_block=if_blocks[current_block_type_index],if_block?if_block.p(ctx,dirty):(if_block=if_blocks[current_block_type_index]=if_block_creators[current_block_type_index](ctx),if_block.c()),(0,internal.Ui)(if_block,1),if_block.m(if_block_anchor.parentNode,if_block_anchor))},i(local){current||((0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(if_block),current=!1},d(detaching){if_blocks[current_block_type_index].d(detaching),detaching&&(0,internal.ogt)(if_block_anchor)}}}function create_if_block_4(ctx){let span1,span0,t;return{c(){span1=(0,internal.bGB)("span"),span0=(0,internal.bGB)("span"),t=(0,internal.fLW)(ctx[10]),(0,internal.Ljt)(span0,"class","svelte-h1l3kf"),(0,internal.Ljt)(span1,"class","autocomplete svelte-h1l3kf")},m(target,anchor){(0,internal.$Tr)(target,span1,anchor),(0,internal.R3I)(span1,span0),(0,internal.R3I)(span0,t)},p(ctx,dirty){1024&dirty[0]&&(0,internal.rTO)(t,ctx[10])},d(detaching){detaching&&(0,internal.ogt)(span1)}}}function create_if_block_3(ctx){let div,mounted,dispose;return{c(){div=(0,internal.bGB)("div"),(0,internal.Ljt)(div,"class","closeicon svelte-h1l3kf")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),div.innerHTML=close_inlineraw_default(),mounted||(dispose=(0,internal.oLt)(div,"click",ctx[40]),mounted=!0)},p:internal.ZTd,d(detaching){detaching&&(0,internal.ogt)(div),mounted=!1,dispose()}}}function create_else_block(ctx){let each_1_anchor,each_value=ctx[9].completions,each_blocks=[];for(let i=0;i(0,internal.etI)(each_blocks[i],1,1,(()=>{each_blocks[i]=null}));let if_block0=ctx[10].length>0&&create_if_block_4(ctx),if_block1=!ctx[1]&&0!=ctx[0].length&&create_if_block_3(ctx);function select_block_type_1(ctx,dirty){return null==ctx[9]?create_if_block:create_else_block}let current_block_type=select_block_type_1(ctx),if_block2=current_block_type(ctx);return{c(){div3=(0,internal.bGB)("div"),html_tag=new internal.FWw(!1),t0=(0,internal.DhX)(),textarea=(0,internal.bGB)("textarea"),t1=(0,internal.DhX)(),div0=(0,internal.bGB)("div");for(let i=0;i0?if_block0?if_block0.p(ctx,dirty):(if_block0=create_if_block_4(ctx),if_block0.c(),if_block0.m(div0,null)):if_block0&&(if_block0.d(1),if_block0=null),(!current||4&dirty[0])&&(0,internal.VHj)(div0,"compact",ctx[2]),(!current||2&dirty[0])&&(0,internal.VHj)(div0,"example",ctx[1]),ctx[1]||0==ctx[0].length?if_block1&&(if_block1.d(1),if_block1=null):if_block1?if_block1.p(ctx,dirty):(if_block1=create_if_block_3(ctx),if_block1.c(),if_block1.m(div3,t4)),current_block_type===(current_block_type=select_block_type_1(ctx))&&if_block2?if_block2.p(ctx,dirty):(if_block2.d(1),if_block2=current_block_type(ctx),if_block2&&(if_block2.c(),if_block2.m(div1,null))),(!current||256&dirty[0])&&(0,internal.Ljt)(div2,"style",ctx[8]),(!current||4&dirty[0])&&(0,internal.VHj)(div3,"compact",ctx[2])},i(local){if(!current){for(let i=0;ib.score-a.score)),results}function instance($$self,$$props,$$invalidate){let hasSelection,individualSelection,selectionAtEnd,searchPre,searchPost,showCompletions,fieldRaw,fieldPreIndex,fieldPre,fieldPost,processedCompletions,selectedCompletion,noCompletion,autocomplete,highlights,$orgsAndUsers,$projects,$_;(0,internal.FIv)($$self,orgsAndUsers.pn,($$value=>$$invalidate(35,$orgsAndUsers=$$value))),(0,internal.FIv)($$self,projects.q,($$value=>$$invalidate(36,$projects=$$value))),(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(11,$_=$$value)));const fieldAliases={projects:"project",account:"user",group:"organization",order:"sort"};function alias(field){return null!=fieldAliases[field]?fieldAliases[field]:field}const emit=(0,src_emit.Z)({search(){}});let input,mirror,{value:value=""}=$$props,{example:example=!1}=$$props,{compact:compact=!1}=$$props;function forceInput(){null!=input&&($$invalidate(6,input.value=value,input),input.dispatchEvent(new Event("input",{bubbles:!0,target:input})))}let selectionStart=null,selectionEnd=null,completions=[];const completionCache={},asyncComplete=(0,closure.l8)(((type,fieldPost)=>{const key=`${type}-${fieldPost}`;if(null==completionCache[key])$$invalidate(20,completions=null),"org"==type?(0,orgAndUser.k7)(fieldPost).then((results=>{const mappedOrgs=results.map((org=>({type:"field",text:org.name,feed:(0,string.lV)(org.name,org.id)})));completionCache[key]=[mappedOrgs,fieldPost],$$invalidate(20,completions=completionFilter(mappedOrgs,fieldPost))})):"user"==type&&(0,orgAndUser.w5)(fieldPost).then((results=>{completionCache[key]=results;const mappedUsers=[];for(let i=0;ix.length>0)):[highlight.text])}let pos=0,highlightIdx=allChunks.length-1;for(let i=0;i=pos&&idx=mirror.children.length)return;const completionLeft=mirror.children[highlightIdx].firstChild.getBoundingClientRect().x-mirror.getBoundingClientRect().x,completionRight=mirror.getBoundingClientRect().right-mirror.children[highlightIdx].firstChild.getBoundingClientRect().right;$$invalidate(8,completionX=completionLeft<=completionRight?`left: ${completionLeft}px`:`right: ${completionRight}px`)}let escPressed=!1;let completionIndex=null;let{transformedQuery:transformedQuery}=$$props;(0,svelte.H3)((()=>{window.dispatchEvent(new Event("resize"))}));return $$self.$$set=$$props=>{"value"in $$props&&$$invalidate(0,value=$$props.value),"example"in $$props&&$$invalidate(1,example=$$props.example),"compact"in $$props&&$$invalidate(2,compact=$$props.compact),"transformedQuery"in $$props&&$$invalidate(17,transformedQuery=$$props.transformedQuery)},$$self.$$.update=()=>{1&$$self.$$.dirty[0]&&forceInput(),786432&$$self.$$.dirty[0]&&$$invalidate(34,hasSelection=null!=selectionStart&&null!=selectionEnd),786432&$$self.$$.dirty[0]|8&$$self.$$.dirty[1]&&$$invalidate(33,individualSelection=hasSelection&&selectionStart==selectionEnd),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(26,selectionAtEnd=individualSelection&&selectionStart==value.length),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(28,searchPre=individualSelection?value.substr(0,selectionStart):null),262145&$$self.$$.dirty[0]|4&$$self.$$.dirty[1]&&$$invalidate(27,searchPost=individualSelection?value.substr(selectionStart):null),134217728&$$self.$$.dirty[0]&&$$invalidate(32,showCompletions=null!=searchPost&&/^(\s.*|)$/.test(searchPost)),270532608&$$self.$$.dirty[0]|2&$$self.$$.dirty[1]&&$$invalidate(31,fieldRaw=null!=searchPre&&showCompletions?searchPre.match(preserveSpace?/([a-z]+):([a-zA-Z0-9 -]*)$/:/([a-z]+):([a-zA-Z0-9-]*)$/):null),1&$$self.$$.dirty[1]&&$$invalidate(29,fieldPreIndex=null!=fieldRaw?fieldRaw.index:null),1&$$self.$$.dirty[1]&&$$invalidate(30,fieldPre=null!=fieldRaw?fieldRaw[1]:null),1&$$self.$$.dirty[1]&&$$invalidate(5,fieldPost=null!=fieldRaw?fieldRaw[2]:null),69206016&$$self.$$.dirty[0]&&preserveSpace&&!selectionAtEnd&&setPreserveSpace(!1),543162368&$$self.$$.dirty[0]&&preserveSpace&&fieldPreIndex!=preserveSpaceIndex&&setPreserveSpace(!1),2021654560&$$self.$$.dirty[0]&&(escPressed?($$invalidate(20,completions=[]),setPreserveSpace(!1),$$invalidate(23,escPressed=!1)):null==completions||("project"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter($projects.projects.map((project=>({type:"field",text:project.title,feed:(0,string.lV)(project.title,project.id)}))),fieldPost))):"user"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),asyncComplete("user",fieldPost)):"organization"==alias(fieldPre)?(preserveSpace||""!=fieldPost||(preserveSpaceOnKeyPress=!0),setCompletionX(fieldPreIndex),asyncComplete("org",fieldPost)):"access"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter([{type:"field",text:"public",info:"Publicly accessible documents",feed:"public"},{type:"field",text:"private",info:"Privately accessible documents",feed:"private"},{type:"field",text:"organization",info:"Accessible at the organization level",feed:"organization"}],fieldPost))):"status"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter([{type:"field",text:"success",info:"Documents ready for viewing and publishing",feed:"success"},{type:"field",text:"readable",info:"Documents ready for reading but still processing text",feed:"readable"},{type:"field",text:"pending",info:"Documents currently processing",feed:"pending"},{type:"field",text:"error",info:"Documents with errors in preparation",feed:"error"},{type:"field",text:"nofile",info:"Documents that were not successfully uploaded",feed:"nofile"}],fieldPost))):"language"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter(languages.Mj.map((x=>({type:"field",text:x[1],feed:x[0]}))),fieldPost))):"sort"==alias(fieldPre)?(setCompletionX(fieldPreIndex),$$invalidate(20,completions=completionFilter(sortCompletions,fieldPost))):$$invalidate(20,completions=[])),null!=completions&&completions.length>0?$$invalidate(3,completionIndex=0):$$invalidate(3,completionIndex=null)),1048576&$$self.$$.dirty[0]&&$$invalidate(9,processedCompletions=null==completions?null:function(){let count=0;for(let i=0;icompletion.index==completionIndex))[0]),84934688&$$self.$$.dirty[0]&&$$invalidate(25,noCompletion=!selectionAtEnd||null==selectedCompletion&&(null==completions||0==completions.length)||null!=fieldPost&&fieldPost.length>0),51380224&$$self.$$.dirty[0]&&$$invalidate(10,autocomplete=noCompletion?"":null==selectedCompletion?completions[0].feed:selectedCompletion.feed),1&$$self.$$.dirty[0]|48&$$self.$$.dirty[1]&&$$invalidate(4,highlights=function(highlights){for(let i=0;inull!=x.transform?x.transform:x.text)).join(""))},[value,example,compact,completionIndex,highlights,fieldPost,input,mirror,completionX,processedCompletions,autocomplete,$_,triggerCompletion,handleCursor,function(){handleCursor(),$$invalidate(3,completionIndex=null)},function(e){if(preserveSpaceOnKeyPress){const char=String.fromCharCode(e.keyCode);/[a-zA-Z0-9-_ ]/.test(char)&&setPreserveSpace(!0),preserveSpaceOnKeyPress=!1}if("Tab"==e.key||13==e.which||13==e.keyCode){if(""!=autocomplete)return triggerCompletion({feed:autocomplete}),void e.preventDefault();if(null!=selectedCompletion)return triggerCompletion(selectedCompletion,null!=fieldPost?fieldPost.length:0),void e.preventDefault()}return"Escape"==e.key&&null!=completions&&completions.length>0?($$invalidate(23,escPressed=!0),void e.preventDefault()):13==e.which||13==e.keyCode?(emit.search(),void e.preventDefault()):(handleCursor(),void(null!=processedCompletions&&processedCompletions.count>0&&("ArrowUp"==e.key?(e.preventDefault(),null==completionIndex?$$invalidate(3,completionIndex=processedCompletions.count-1):completionIndex>0?$$invalidate(3,completionIndex--,completionIndex):$$invalidate(3,completionIndex=null)):"ArrowDown"==e.key&&(e.preventDefault(),null==completionIndex?$$invalidate(3,completionIndex=0):completionIndex{input=$$value,$$invalidate(6,input)}))},function(){value=this.value,$$invalidate(0,value)},function($$value){internal.VnY[$$value?"unshift":"push"]((()=>{mirror=$$value,$$invalidate(7,mirror)}))},()=>$$invalidate(0,value=""),completion=>{null!=completion.index&&$$invalidate(3,completionIndex=completion.index)},completion=>{null!=completion.index&&$$invalidate(3,completionIndex=null)},completion=>triggerCompletion(completion,null!=fieldPost?fieldPost.length:0)]}class SearchInput extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,instance,create_fragment,internal.N8,{value:0,example:1,compact:2,transformedQuery:17},null,[-1,-1,-1])}}var SearchInput_svelte=SearchInput,Button_svelte=__webpack_require__(7120),search_search=__webpack_require__(6046),layout=__webpack_require__(3423),router=__webpack_require__(3356);function SearchBar_svelte_create_if_block(ctx){let div,span,t,button,current,raw_value=ctx[5]("searchBar.tips")+"";return button=new Button_svelte.Z({props:{action:!0,small:!0,nomargin:!0,$$slots:{default:[SearchBar_svelte_create_default_slot]},$$scope:{ctx:ctx}}}),button.$on("click",layout.gX),{c(){div=(0,internal.bGB)("div"),span=(0,internal.bGB)("span"),t=(0,internal.DhX)(),(0,internal.YCL)(button.$$.fragment),(0,internal.Ljt)(span,"class","svelte-elzjsp"),(0,internal.Ljt)(div,"class","info svelte-elzjsp")},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.R3I)(div,span),span.innerHTML=raw_value,(0,internal.R3I)(div,t),(0,internal.yef)(button,div,null),current=!0},p(ctx,dirty){(!current||32&dirty)&&raw_value!==(raw_value=ctx[5]("searchBar.tips")+"")&&(span.innerHTML=raw_value);const button_changes={};2080&dirty&&(button_changes.$$scope={dirty:dirty,ctx:ctx}),button.$set(button_changes)},i(local){current||((0,internal.Ui)(button.$$.fragment,local),current=!0)},o(local){(0,internal.etI)(button.$$.fragment,local),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(button)}}}function SearchBar_svelte_create_default_slot(ctx){let t,t_value=ctx[5]("searchBar.learnMore")+"";return{c(){t=(0,internal.fLW)(t_value)},m(target,anchor){(0,internal.$Tr)(target,t,anchor)},p(ctx,dirty){32&dirty&&t_value!==(t_value=ctx[5]("searchBar.learnMore")+"")&&(0,internal.rTO)(t,t_value)},d(detaching){detaching&&(0,internal.ogt)(t)}}}function SearchBar_svelte_create_fragment(ctx){let div,searchinput,updating_value,updating_transformedQuery,t,current;function searchinput_value_binding(value){ctx[8](value)}function searchinput_transformedQuery_binding(value){ctx[9](value)}let searchinput_props={example:ctx[1],compact:ctx[2]};void 0!==ctx[0]&&(searchinput_props.value=ctx[0]),void 0!==ctx[4]&&(searchinput_props.transformedQuery=ctx[4]),searchinput=new SearchInput_svelte({props:searchinput_props}),internal.VnY.push((()=>(0,internal.akz)(searchinput,"value",searchinput_value_binding))),internal.VnY.push((()=>(0,internal.akz)(searchinput,"transformedQuery",searchinput_transformedQuery_binding))),searchinput.$on("search",ctx[6]);let if_block=!ctx[3]&&!ctx[1]&&SearchBar_svelte_create_if_block(ctx);return{c(){div=(0,internal.bGB)("div"),(0,internal.YCL)(searchinput.$$.fragment),t=(0,internal.DhX)(),if_block&&if_block.c(),(0,internal.Ljt)(div,"class","searchcontainer svelte-elzjsp"),(0,internal.VHj)(div,"example",ctx[1])},m(target,anchor){(0,internal.$Tr)(target,div,anchor),(0,internal.yef)(searchinput,div,null),(0,internal.R3I)(div,t),if_block&&if_block.m(div,null),current=!0},p(ctx,[dirty]){const searchinput_changes={};2&dirty&&(searchinput_changes.example=ctx[1]),4&dirty&&(searchinput_changes.compact=ctx[2]),!updating_value&&1&dirty&&(updating_value=!0,searchinput_changes.value=ctx[0],(0,internal.hjT)((()=>updating_value=!1))),!updating_transformedQuery&&16&dirty&&(updating_transformedQuery=!0,searchinput_changes.transformedQuery=ctx[4],(0,internal.hjT)((()=>updating_transformedQuery=!1))),searchinput.$set(searchinput_changes),ctx[3]||ctx[1]?if_block&&((0,internal.dvw)(),(0,internal.etI)(if_block,1,1,(()=>{if_block=null})),(0,internal.gbL)()):if_block?(if_block.p(ctx,dirty),10&dirty&&(0,internal.Ui)(if_block,1)):(if_block=SearchBar_svelte_create_if_block(ctx),if_block.c(),(0,internal.Ui)(if_block,1),if_block.m(div,null)),(!current||2&dirty)&&(0,internal.VHj)(div,"example",ctx[1])},i(local){current||((0,internal.Ui)(searchinput.$$.fragment,local),(0,internal.Ui)(if_block),current=!0)},o(local){(0,internal.etI)(searchinput.$$.fragment,local),(0,internal.etI)(if_block),current=!1},d(detaching){detaching&&(0,internal.ogt)(div),(0,internal.vpE)(searchinput),if_block&&if_block.d()}}}function SearchBar_svelte_instance($$self,$$props,$$invalidate){let $_;(0,internal.FIv)($$self,runtime_esm._,($$value=>$$invalidate(5,$_=$$value)));let transformedQuery,{search:search=""}=$$props,{example:example=!1}=$$props,{compact:compact=!1}=$$props,{embed:embed=!1}=$$props,{dialog:dialog=!1}=$$props;let unsubscribe=[];return(0,svelte.H3)((()=>{example||(dialog&&null!=search_search.yC.filePickerUser?$$invalidate(0,search=(0,search_search.vO)(search_search.yC.filePickerUser)):unsubscribe=[router.Nd.subscribe((router=>{const route=router.resolvedRoute;null!=route&&"app"==route.name&&(null!=route.props.q&&route.props.q.length>0?$$invalidate(0,search=route.props.q):$$invalidate(0,search=""))}))])})),(0,svelte.ev)((()=>{unsubscribe.forEach((x=>x()))})),$$self.$$set=$$props=>{"search"in $$props&&$$invalidate(0,search=$$props.search),"example"in $$props&&$$invalidate(1,example=$$props.example),"compact"in $$props&&$$invalidate(2,compact=$$props.compact),"embed"in $$props&&$$invalidate(3,embed=$$props.embed),"dialog"in $$props&&$$invalidate(7,dialog=$$props.dialog)},[search,example,compact,embed,transformedQuery,$_,function(){(0,search_search.o1)(search,!dialog)},dialog,function(value){search=value,$$invalidate(0,search)},function(value){transformedQuery=value,$$invalidate(4,transformedQuery)}]}class SearchBar extends internal.f_C{constructor(options){super(),(0,internal.S1n)(this,options,SearchBar_svelte_instance,SearchBar_svelte_create_fragment,internal.N8,{search:0,example:1,compact:2,embed:3,dialog:7})}}var SearchBar_svelte=SearchBar},393:function(module){module.exports=''},5563:function(module){module.exports=''},6842:function(module){module.exports=''},4156:function(module){module.exports=''},8902:function(module){module.exports=''},2728:function(module){module.exports=''},4704:function(module){module.exports=''},5232:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{DT:function(){return SIGN_OUT_URL},Dt:function(){return SIGN_UP_URL},I8:function(){return auth},O0:function(){return SIGN_IN_URL},YG:function(){return SQUARELET_URL}});var svue__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3396);const DOCUMENTCLOUD_TOKEN_STORAGE_KEY="documentcloud_token",SQUARELET_URL="https://accounts.muckrock.com",SIGN_IN_URL="https://api.www.documentcloud.org/accounts/login/squarelet",SIGN_UP_URL="https://accounts.muckrock.com/accounts/signup/?intent=documentcloud&next="+encodeURIComponent(window.location.href),SIGN_OUT_URL="https://api.www.documentcloud.org/accounts/logout/",auth=new svue__WEBPACK_IMPORTED_MODULE_0__.x({data(){return{signingIn:!1,key:null}},computed:{isAuthenticated(key){return null!==key}}});function setToken(key){try{localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY,JSON.stringify(key))}catch(e){}auth.key=key}function removeToken(){try{localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY)}catch(e){}auth.key=null}!function(){try{const storedData=localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);if(null===storedData)return;if(null!==storedData){return void setToken(JSON.parse(storedData))}}catch(e){return void removeToken()}removeToken()}()},9275:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{Mj:function(){return languages},X9:function(){return defaultLanguage},g2:function(){return textractLanguages}});const languageCodes="afr|amh|ara|asm|aze|aze_cyrl|bel|ben|bod|bos|bul|cat|ceb|ces|zho|tra|chr|cym|dan|deu|dzo|ell|eng|enm|epo|est|eus|fas|fin|fra|frk|frm|gle|glg|grc|guj|hat|heb|hin|hrv|hun|iku|ind|isl|ita|ita_old|jav|jpn|kan|kat|kat_old|kaz|khm|kir|kor|kur|lao|lat|lav|lit|mal|mar|mkd|mlt|msa|mya|nep|nld|nor|ori|pan|pol|por|pus|ron|rus|san|sin|slk|slv|spa|spa_old|sqi|srp|srp_latn|swa|swe|syr|tam|tel|tgk|tgl|tha|tir|tur|uig|ukr|urd|uzb|uzb_cyrl|vie|yid".split("|"),languageNames="Afrikaans|Amharic|Arabic|Assamese|Azerbaijani|Azerbaijani - Cyrillic|Belarusian|Bengali|Tibetan|Bosnian|Bulgarian|Catalan|Cebuano|Czech|Chinese - Simplified|Chinese - Traditional|Cherokee|Welsh|Danish|German|Dzongkha|Greek|English|Middle English|Esperanto|Estonian|Basque|Persian|Finnish|French|German Fraktur|Middle French|Irish|Galician|Ancient Greek|Gujarati|Haitian; Haitian Creole|Hebrew|Hindi|Croatian|Hungarian|Inuktitut|Indonesian|Icelandic|Italian|Italian - Old|Javanese|Japanese|Kannada|Georgian|Georgian - Old|Kazakh|Central Khmer|Kirghiz; Kyrgyz|Korean|Kurdish|Lao|Latin|Latvian|Lithuanian|Malayalam|Marathi|Macedonian|Maltese|Malay|Burmese|Nepali|Dutch; Flemish|Norwegian|Oriya|Panjabi; Punjabi|Polish|Portuguese|Pushto; Pashto|Romanian; Moldavian; Moldovan|Russian|Sanskrit|Sinhala; Sinhalese|Slovak|Slovenian|Spanish; Castilian|Spanish; Castilian - Old|Albanian|Serbian|Serbian - Latin|Swahili|Swedish|Syriac|Tamil|Telugu|Tajik|Tagalog|Thai|Tigrinya|Turkish|Uighur; Uyghur|Ukrainian|Urdu|Uzbek|Uzbek - Cyrillic|Vietnamese|Yiddish".split("|"),defaultLanguage="eng";const languages=function(codes,names){const results=[];for(let i=0;ia[1]>b[1]?1:a[1]-1!=textractLanguageCodes.indexOf(l[0])))},9216:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{h:function(){return metaDialogs}});const metaDialogs=[{menuTitle:"metaFields.titleFieldTitle",charLimit:"1000",fieldAccessor:x=>x.title,fieldName:"metaFields.titleFieldName",fieldNameUppercase:"metaFields.titleFieldNameUppercase",apiField:"title",headerText:"metaFields.titleFieldHeader",explainerText:"metaFields.titleFieldDescription",buttonText:"metaFields.titleFieldButton",fieldValid:(value,initial)=>value!=initial&&value.trim().length>0,fieldInvalidText:(value,initial)=>value==initial?"metaFields.titleFieldInvalidSameName":0==value.trim().length?"metaFields.titleFieldInvalidEmptyName":"",disabled:numSelected=>1!=numSelected},{menuTitle:"metaFields.sourceFieldTitle",charLimit:"1000",fieldAccessor:x=>x.source,fieldName:"metaFields.sourceFieldName",fieldNameUppercase:"metaFields.sourceFieldNameUppercase",apiField:"source",headerText:"metaFields.sourceFieldHeader",explainerText:"metaFields.sourceFieldDescription",buttonText:"metaFields.sourceFieldButton"},{menuTitle:"metaFields.descriptionFieldTitle",charLimit:"4000",fieldAccessor:x=>x.description,fieldName:"metaFields.descriptionFieldName",fieldNameUppercase:"metaFields.descriptionFieldNameUppercase",apiField:"description",headerText:"metaFields.descriptionFieldHeader",explainerText:"metaFields.descriptionFieldDescription",isTextArea:!0,buttonText:"metaFields.descriptionFieldButton"},{menuTitle:"metaFields.relatedArticleFieldTitle",charLimit:"1024",fieldAccessor:x=>x.relatedArticleUrl,fieldName:"rmetaFields.relatedArticleFieldName",fieldNameUppercase:"metaFields.relatedArticleFieldNameUppercase",apiField:"related_article",headerText:"metaFields.relatedArticleFieldHeader",explainerText:"metaFields.relatedArticleFieldDescription",buttonText:"metaFields.relatedArticleFieldButton"},{menuTitle:"metaFields.publishedUrlFieldTitle",charLimit:"1024",fieldAccessor:x=>x.publishedUrl,fieldName:"metaFields.publishedUrlFieldName",fieldNameUppercase:"metaFields.publishedUrlFieldNameUppercase",apiField:"published_url",headerText:"metaFields.publishedUrlFieldHeader",explainerText:"metaFields.publishedUrlFieldDescription",buttonText:"metaFields.publishedUrlFieldButton"}]},1428:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,{q:function(){return informSize}});var _util_closure_js__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(3059);function informSize(element,useScrollDimension=!0,updateStyleProps=!1){const update=()=>{window.parent.postMessage({width:Math.max(useScrollDimension?element.scrollWidth:0,element.offsetWidth),height:Math.max(useScrollDimension?element.scrollHeight:0,element.offsetHeight),updateStyleProps:updateStyleProps},"*")};window.addEventListener("resize",(0,_util_closure_js__WEBPACK_IMPORTED_MODULE_0__.l8)(update)),update()}},3059:function(__unused_webpack_module,__webpack_exports__,__webpack_require__){"use strict";function timeoutify(fn,timeout=100){let timer=null;return(...args)=>{null!=timer&&(clearTimeout(timer),timer=null),timer=setTimeout((()=>{timer=null,fn(...args)}),timeout)}}__webpack_require__.d(__webpack_exports__,{l8:function(){return timeoutify}})}}]);
-./public/3746.93af0dcab47d54ac6bc6.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e7ed02f3-124a-4773-a488-ea5587cd5ce0",e._sentryDebugIdIdentifier="sentry-dbid-e7ed02f3-124a-4773-a488-ea5587cd5ce0")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[3746],{3746:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"𝔈𝔪𝔞𝔦𝔩 𝔞𝔡𝔡𝔯𝔢𝔰𝔰","loading":"𝔏𝔬𝔞𝔡𝔦𝔫𝔤...","documentCloud":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡","home":"ℌ𝔬𝔪𝔢"},"homeTemplate":{"signedIn":"𝔖𝔦𝔤𝔫𝔢𝔡 𝔦𝔫 𝔞𝔰 {name}","signOut":"𝔖𝔦𝔤𝔫 𝔬𝔲𝔱","signIn":"𝔖𝔦𝔤𝔫 𝔦𝔫","signUp":"𝔖𝔦𝔤𝔫 𝔲𝔭","goToApp":"𝔊𝔬 𝔱𝔬 𝔞𝔭𝔭"},"accessToggle":{"public":"𝔑𝔬𝔱𝔢 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔞𝔫𝔶𝔬𝔫𝔢 𝔴𝔦𝔱𝔥 𝔞𝔠𝔠𝔢𝔰𝔰 𝔱𝔬 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱.","collaborator":"𝔑𝔬𝔱𝔢 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔞𝔫𝔶𝔬𝔫𝔢 𝔴𝔥𝔬 𝔠𝔞𝔫 𝔢𝔡𝔦𝔱 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱.","private":"𝔑𝔬𝔱𝔢 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔶𝔬𝔲 𝔞𝔩𝔬𝔫𝔢.","publicName":"𝔓𝔲𝔟𝔩𝔦𝔠","collaboratorName":"ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯","privateName":"𝔓𝔯𝔦𝔳𝔞𝔱𝔢"},"accessIcon":{"private":"𝔓𝔯𝔦𝔳𝔞𝔱𝔢 𝔄𝔠𝔠𝔢𝔰𝔰","organization":"𝔓𝔯𝔦𝔳𝔞𝔱𝔢 𝔱𝔬 𝔜𝔬𝔲𝔯 𝔒𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","public":"𝔓𝔲𝔟𝔩𝔦𝔠 𝔄𝔠𝔠𝔢𝔰𝔰","privateExplanation":"𝔒𝔫𝔩𝔶 𝔶𝔬𝔲 𝔠𝔞𝔫 𝔳𝔦𝔢𝔴 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","organizationExplanation":"𝔒𝔫𝔩𝔶 𝔪𝔢𝔪𝔟𝔢𝔯𝔰 𝔬𝔣 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔠𝔞𝔫 𝔳𝔦𝔢𝔴 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","publicExplanation":"𝔄𝔫𝔶𝔬𝔫𝔢 𝔠𝔞𝔫 𝔰𝔢𝔞𝔯𝔠𝔥 𝔞𝔫𝔡 𝔳𝔦𝔢𝔴 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱"},"appearanceCustomizer":{"customizeAppearance":"ℭ𝔲𝔰𝔱𝔬𝔪𝔦𝔷𝔢 𝔄𝔭𝔭𝔢𝔞𝔯𝔞𝔫𝔠𝔢","hide":"ℌ𝔦𝔡𝔢 𝔥𝔢𝔩𝔭 𝔱𝔢𝔵𝔱","show":"𝔖𝔥𝔬𝔴 𝔥𝔢𝔩𝔭 𝔱𝔢𝔵𝔱"},"appearanceDimension":{"responsive":"𝔄𝔲𝔱𝔬𝔪𝔞𝔱𝔦𝔠 (𝔡𝔢𝔣𝔞𝔲𝔩𝔱)","fixed":"𝔉𝔦𝔵𝔢𝔡"},"calendar":{"jan":"𝔍𝔞𝔫𝔲𝔞𝔯𝔶","feb":"𝔉𝔢𝔟𝔯𝔲𝔞𝔯𝔶","mar":"𝔐𝔞𝔯𝔠𝔥","apr":"𝔄𝔭𝔯𝔦𝔩","may":"𝔐𝔞𝔶","jun":"𝔍𝔲𝔫𝔢","jul":"𝔍𝔲𝔩𝔶","aug":"𝔄𝔲𝔤𝔲𝔰𝔱","sep":"𝔖𝔢𝔭𝔱𝔢𝔪𝔟𝔢𝔯","oct":"𝔒𝔠𝔱𝔬𝔟𝔢𝔯","nov":"𝔑𝔬𝔳𝔢𝔪𝔟𝔢𝔯","dec":"𝔇𝔢𝔠𝔢𝔪𝔟𝔢𝔯","hourShortcode":"ℌℌ","minuteShortcode":"𝔐𝔐"},"dialog":{"cancel":"ℭ𝔞𝔫𝔠𝔢𝔩","delete":"𝔇𝔢𝔩𝔢𝔱𝔢","done":"𝔇𝔬𝔫𝔢","edit":"𝔈𝔡𝔦𝔱","remove":"ℜ𝔢𝔪𝔬𝔳𝔢","save":"𝔖𝔞𝔳𝔢","create":"ℭ𝔯𝔢𝔞𝔱𝔢","ok":"𝔒𝔨","update":"𝔘𝔭𝔡𝔞𝔱𝔢","dismiss":"𝔇𝔦𝔰𝔪𝔦𝔰𝔰","continue":"ℭ𝔬𝔫𝔱𝔦𝔫𝔲𝔢"},"dialogAccessDialog":{"changeAccess":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔞𝔠𝔠𝔢𝔰𝔰 𝔣𝔬𝔯 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","selectAccess":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔞𝔫 𝔞𝔠𝔠𝔢𝔰𝔰 𝔩𝔢𝔳𝔢𝔩 𝔣𝔬𝔯 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","public":"𝔓𝔲𝔟𝔩𝔦𝔠 𝔞𝔠𝔠𝔢𝔰𝔰","publicDesc":"𝔄𝔫𝔶𝔬𝔫𝔢 𝔬𝔫 𝔱𝔥𝔢 𝔦𝔫𝔱𝔢𝔯𝔫𝔢𝔱 𝔠𝔞𝔫 𝔰𝔢𝔞𝔯𝔠𝔥 𝔣𝔬𝔯 𝔞𝔫𝔡 𝔳𝔦𝔢𝔴 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱.","verifiedHelp":"𝔒𝔫𝔩𝔶 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔲𝔰𝔢𝔯𝔰 𝔬𝔯 𝔪𝔢𝔪𝔟𝔢𝔯𝔰 𝔬𝔣 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫𝔰 𝔠𝔞𝔫 𝔪𝔞𝔨𝔢 𝔲𝔭𝔩𝔬𝔞𝔡𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔭𝔲𝔟𝔩𝔦𝔠. ℑ𝔣 𝔶𝔬𝔲\'𝔯𝔢 𝔞 𝔧𝔬𝔲𝔯𝔫𝔞𝔩𝔦𝔰𝔱 𝔬𝔯 𝔬𝔱𝔥𝔢𝔯𝔴𝔦𝔰𝔢 𝔴𝔬𝔯𝔨 𝔦𝔫 𝔭𝔲𝔟𝔩𝔦𝔰𝔥𝔦𝔫𝔤 𝔳𝔢𝔱𝔱𝔢𝔡 𝔪𝔞𝔱𝔢𝔯𝔦𝔞𝔩𝔰 𝔱𝔬 𝔦𝔫𝔣𝔬𝔯𝔪 𝔱𝔥𝔢 𝔭𝔲𝔟𝔩𝔦𝔠, 𝔩𝔢𝔞𝔯𝔫 𝔪𝔬𝔯𝔢 𝔞𝔫𝔡 𝔯𝔢𝔮𝔲𝔢𝔰𝔱 𝔳𝔢𝔯𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫 𝔥𝔢𝔯𝔢.","privateToOrg":"𝔜𝔬𝔲 𝔠𝔞𝔫’𝔱 𝔠𝔥𝔞𝔫𝔤𝔢 𝔱𝔥𝔢 𝔞𝔠𝔠𝔢𝔰𝔰 𝔩𝔢𝔳𝔢𝔩 𝔱𝔬 “𝔓𝔯𝔦𝔳𝔞𝔱𝔢 𝔱𝔬 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫” 𝔟𝔢𝔠𝔞𝔲𝔰𝔢 {n, plural, one {𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰} other {𝔬𝔫𝔢 𝔬𝔯 𝔪𝔬𝔯𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔞𝔯𝔢}} 𝔞𝔰𝔰𝔬𝔠𝔦𝔞𝔱𝔢𝔡 𝔴𝔦𝔱𝔥 𝔶𝔬𝔲𝔯 𝔦𝔫𝔡𝔦𝔳𝔦𝔡𝔲𝔞𝔩 𝔞𝔠𝔠𝔬𝔲𝔫𝔱, 𝔫𝔬𝔱 𝔞𝔫 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫. 𝔗𝔬 𝔞𝔡𝔡 {n, plural, one {𝔦𝔱} other {𝔱𝔥𝔢𝔪}} 𝔱𝔬 𝔞𝔫 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫, 𝔰𝔢𝔩𝔢𝔠𝔱 {n, plural, one {𝔦𝔱} other {𝔱𝔥𝔢𝔪}} 𝔣𝔯𝔬𝔪 𝔱𝔥𝔢 𝔪𝔞𝔫𝔞𝔤𝔢𝔪𝔢𝔫𝔱 𝔳𝔦𝔢𝔴 𝔞𝔫𝔡 𝔠𝔩𝔦𝔠𝔨 “ℭ𝔥𝔞𝔫𝔤𝔢 𝔒𝔴𝔫𝔢𝔯.” 𝔜𝔬𝔲 𝔠𝔞𝔫 𝔧𝔬𝔦𝔫 𝔬𝔯 𝔠𝔯𝔢𝔞𝔱𝔢 𝔞𝔫 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔬𝔫 𝔱𝔥𝔦𝔰 𝔭𝔞𝔤𝔢.","private":"𝔓𝔯𝔦𝔳𝔞𝔱𝔢 𝔞𝔠𝔠𝔢𝔰𝔰","privateDesc":"𝔒𝔫𝔩𝔶 𝔭𝔢𝔬𝔭𝔩𝔢 𝔴𝔦𝔱𝔥 𝔢𝔵𝔭𝔩𝔦𝔠𝔦𝔱 𝔭𝔢𝔯𝔪𝔦𝔰𝔰𝔦𝔬𝔫 (𝔳𝔦𝔞 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔦𝔬𝔫) 𝔥𝔞𝔳𝔢 𝔞𝔠𝔠𝔢𝔰𝔰.","organization":"𝔓𝔯𝔦𝔳𝔞𝔱𝔢 𝔱𝔬 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","organizationDesc":"𝔒𝔫𝔩𝔶 𝔱𝔥𝔢 𝔭𝔢𝔬𝔭𝔩𝔢 𝔦𝔫 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔥𝔞𝔳𝔢 𝔞𝔠𝔠𝔢𝔰𝔰.","schedulePublication":"𝔖𝔠𝔥𝔢𝔡𝔲𝔩𝔢 𝔭𝔲𝔟𝔩𝔦𝔠𝔞𝔱𝔦𝔬𝔫","scheduleHelp":"𝔗𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔪𝔞𝔡𝔢 𝔭𝔲𝔟𝔩𝔦𝔠 𝔞𝔱 𝔱𝔥𝔢 𝔤𝔦𝔳𝔢𝔫 𝔡𝔞𝔱𝔢 𝔞𝔫𝔡 𝔱𝔦𝔪𝔢. 𝔓𝔲𝔟𝔩𝔦𝔠𝔞𝔱𝔦𝔬𝔫 𝔱𝔦𝔪𝔢 𝔦𝔰 𝔩𝔬𝔠𝔞𝔩{timezone}.","unchanged":"𝔄𝔠𝔠𝔢𝔰𝔰 𝔦𝔰 𝔲𝔫𝔠𝔥𝔞𝔫𝔤𝔢𝔡. 𝔖𝔢𝔩𝔢𝔠𝔱 𝔞 𝔡𝔦𝔣𝔣𝔢𝔯𝔢𝔫𝔱 𝔞𝔠𝔠𝔢𝔰𝔰 𝔩𝔢𝔳𝔢𝔩.","future":"𝔐𝔲𝔰𝔱 𝔰𝔢𝔩𝔢𝔠𝔱 𝔞 𝔱𝔦𝔪𝔢 𝔦𝔫 𝔱𝔥𝔢 𝔣𝔲𝔱𝔲𝔯𝔢","change":"ℭ𝔥𝔞𝔫𝔤𝔢"},"dialogCollaboratorDialog":{"confirm":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔯𝔢𝔪𝔬𝔳𝔢 𝔲𝔰𝔢𝔯","confirmMsg":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔯𝔢𝔪𝔬𝔳𝔢 {name} 𝔣𝔯𝔬𝔪 {title}. 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?","addCollaborators":"𝔄𝔡𝔡 ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰","invite":"𝔓𝔲𝔱 𝔦𝔫 𝔱𝔥𝔢 𝔢𝔪𝔞𝔦𝔩 𝔬𝔣 𝔞𝔫 𝔢𝔵𝔦𝔰𝔱𝔦𝔫𝔤 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔲𝔰𝔢𝔯 𝔟𝔢𝔩𝔬𝔴. ℑ𝔣 𝔱𝔥𝔢𝔶 𝔡𝔬𝔫\'𝔱 𝔥𝔞𝔳𝔢 𝔞𝔫 𝔞𝔠𝔠𝔬𝔲𝔫𝔱, 𝔥𝔞𝔳𝔢 𝔱𝔥𝔢𝔪 𝔯𝔢𝔤𝔦𝔰𝔱𝔢𝔯 𝔥𝔢𝔯𝔢 𝔣𝔬𝔯 𝔣𝔯𝔢𝔢, 𝔞𝔫𝔡 𝔱𝔥𝔢𝔫 𝔞𝔰𝔨 𝔱𝔥𝔢𝔪 𝔱𝔬 𝔩𝔬𝔤 𝔦𝔫 𝔱𝔬 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔞𝔱 𝔩𝔢𝔞𝔰𝔱 𝔬𝔫𝔠𝔢.","admin":"𝔄𝔡𝔪𝔦𝔫","view":"𝔙𝔦𝔢𝔴","adminHelp":"ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔠𝔞𝔫 𝔢𝔡𝔦𝔱 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔞𝔫𝔡 𝔦𝔱𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","editHelp":"ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔠𝔞𝔫 𝔢𝔡𝔦𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔦𝔫 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱","viewHelp":"ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔠𝔞𝔫 𝔳𝔦𝔢𝔴 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔦𝔫 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱","add":"𝔄𝔡𝔡","empty":"𝔜𝔬𝔲 𝔥𝔞𝔳𝔢 𝔫𝔬𝔱 𝔶𝔢𝔱 𝔞𝔡𝔡𝔢𝔡 𝔞𝔫𝔶 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔱𝔬 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱. ℑ𝔫𝔳𝔦𝔱𝔢 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔱𝔬 𝔤𝔯𝔞𝔫𝔱 𝔬𝔱𝔥𝔢𝔯 𝔲𝔰𝔢𝔯𝔰 𝔞𝔠𝔠𝔢𝔰𝔰 𝔱𝔬 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔰𝔥𝔞𝔯𝔢𝔡 𝔦𝔫 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱. 𝔜𝔬𝔲 𝔠𝔞𝔫 𝔠𝔬𝔫𝔱𝔯𝔬𝔩 𝔴𝔥𝔢𝔱𝔥𝔢𝔯 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔥𝔞𝔳𝔢 𝔞𝔠𝔠𝔢𝔰𝔰 𝔱𝔬 𝔳𝔦𝔢𝔴/𝔢𝔡𝔦𝔱 𝔱𝔥𝔢 𝔭𝔯𝔬𝔧𝔢𝔠𝔱’𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔬𝔯 𝔟𝔢 𝔞𝔫 𝔞𝔡𝔪𝔦𝔫 𝔴𝔦𝔱𝔥 𝔭𝔢𝔯𝔪𝔦𝔰𝔰𝔦𝔬𝔫𝔰 𝔱𝔬 𝔦𝔫𝔳𝔦𝔱𝔢 𝔬𝔱𝔥𝔢𝔯 𝔲𝔰𝔢𝔯𝔰 𝔞𝔫𝔡 𝔢𝔡𝔦𝔱 𝔱𝔥𝔢 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔦𝔱𝔰𝔢𝔩𝔣.","manageCollaborators":"𝔐𝔞𝔫𝔞𝔤𝔢 ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰","name":"𝔑𝔞𝔪𝔢","access":"𝔄𝔠𝔠𝔢𝔰𝔰","you":"(𝔶𝔬𝔲)"},"dialogDataDialog":{"confirm":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔯𝔢𝔪𝔬𝔳𝔢 𝔡𝔞𝔱𝔞 𝔭𝔬𝔦𝔫𝔱","removeMsg":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔯𝔢𝔪𝔬𝔳𝔢 𝔱𝔥𝔢 {key}{value} 𝔡𝔞𝔱𝔞 𝔭𝔬𝔦𝔫𝔱 𝔣𝔯𝔬𝔪 𝔱𝔥𝔢 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰. 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?","addData":"𝔄𝔡𝔡 𝔇𝔞𝔱𝔞 𝔣𝔬𝔯 {n, plural, one {𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","tag":"𝔗𝔞𝔤","value":"𝔙𝔞𝔩𝔲𝔢","key":"𝔎𝔢𝔶","keyValue":"𝔎𝔢𝔶 / 𝔙𝔞𝔩𝔲𝔢","tagInfo":"𝔄𝔡𝔡 𝔠𝔲𝔰𝔱𝔬𝔪 𝔱𝔞𝔤𝔰 𝔱𝔬 𝔠𝔞𝔱𝔢𝔤𝔬𝔯𝔦𝔷𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰.","eg":"𝔢.𝔤.","exampleTagReport":"𝔯𝔢𝔭𝔬𝔯𝔱","exampleTagLawsuit":"𝔩𝔞𝔴𝔰𝔲𝔦𝔱","exampleTagEmail":"𝔢𝔪𝔞𝔦𝔩","keyValueInfo":"𝔄𝔡𝔡 𝔠𝔲𝔰𝔱𝔬𝔪 𝔨𝔢𝔶 / 𝔳𝔞𝔩𝔲𝔢 𝔭𝔞𝔦𝔯𝔰 𝔣𝔬𝔯 𝔭𝔯𝔢𝔠𝔦𝔰𝔢 𝔠𝔞𝔱𝔢𝔤𝔬𝔯𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔬𝔣 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰.","exampleKVState":"𝔰𝔱𝔞𝔱𝔢:&𝔫𝔟𝔰𝔭;ℭ𝔞𝔩𝔦𝔣𝔬𝔯𝔫𝔦𝔞","exampleKVYear":"𝔶𝔢𝔞𝔯:&𝔫𝔟𝔰𝔭;2016","exampleKVType":"𝔱𝔶𝔭𝔢:&𝔫𝔟𝔰𝔭;𝔪𝔢𝔪𝔬","enterTag":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔱𝔞𝔤","enterKey":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔨𝔢𝔶","keyInvalid":"𝔎𝔢𝔶𝔰 𝔠𝔞𝔫 𝔬𝔫𝔩𝔶 𝔠𝔬𝔫𝔱𝔞𝔦𝔫 𝔩𝔢𝔱𝔱𝔢𝔯𝔰, 𝔫𝔲𝔪𝔟𝔢𝔯𝔰, 𝔲𝔫𝔡𝔢𝔯𝔰𝔠𝔬𝔯𝔢𝔰 (_), 𝔞𝔫𝔡 𝔡𝔞𝔰𝔥𝔢𝔰 (-)","emptyMsg":"𝔜𝔬𝔲 𝔥𝔞𝔳𝔢 𝔫𝔬𝔱 𝔶𝔢𝔱 𝔞𝔡𝔡𝔢𝔡 𝔞𝔫𝔶 𝔡𝔞𝔱𝔞 𝔱𝔬 𝔱𝔥𝔢 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰. 𝔄𝔡𝔡 𝔱𝔞𝔤𝔰 𝔞𝔫𝔡 𝔨𝔢𝔶/𝔳𝔞𝔩𝔲𝔢 𝔭𝔞𝔦𝔯𝔰 𝔱𝔬 𝔠𝔞𝔱𝔢𝔤𝔬𝔯𝔦𝔷𝔢 𝔞𝔫𝔡 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰. 𝔜𝔬𝔲 𝔠𝔞𝔫 𝔣𝔦𝔩𝔱𝔢𝔯 𝔞𝔫𝔡 𝔰𝔢𝔞𝔯𝔠𝔥 𝔬𝔫 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔡𝔞𝔱𝔞 𝔱𝔬 𝔤𝔦𝔳𝔢 𝔶𝔬𝔲 𝔭𝔬𝔴𝔢𝔯𝔣𝔲𝔩 𝔠𝔬𝔫𝔱𝔯𝔬𝔩 𝔬𝔳𝔢𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔪𝔞𝔫𝔞𝔤𝔢𝔪𝔢𝔫𝔱.","manageDocumentData":"𝔐𝔞𝔫𝔞𝔤𝔢 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔇𝔞𝔱𝔞","valueUnchanged":"𝔙𝔞𝔩𝔲𝔢 𝔯𝔢𝔪𝔞𝔦𝔫𝔰 𝔲𝔫𝔠𝔥𝔞𝔫𝔤𝔢𝔡","kvCannotBeEmpty":"𝔎𝔢𝔶/𝔳𝔞𝔩𝔲𝔢 𝔠𝔞𝔫𝔫𝔬𝔱 𝔟𝔢 𝔢𝔪𝔭𝔱𝔶"},"dialogReprocessDialog":{"title":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰","reprocessDocs":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔣𝔬𝔯𝔠𝔢 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}} 𝔱𝔬 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰 𝔭𝔞𝔤𝔢 𝔞𝔫𝔡 𝔦𝔪𝔞𝔤𝔢 𝔱𝔢𝔵𝔱. 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?","reprocessSingleDoc":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔣𝔬𝔯𝔠𝔢 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔱𝔬 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰 𝔭𝔞𝔤𝔢 𝔞𝔫𝔡 𝔦𝔪𝔞𝔤𝔢 𝔱𝔢𝔵𝔱. 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?","confirm":"ℜ𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰"},"dialogDeleteDialog":{"title":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰","deleteDocs":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔭𝔢𝔯𝔪𝔞𝔫𝔢𝔫𝔱𝔩𝔶 𝔡𝔢𝔩𝔢𝔱𝔢 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}. 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?"},"dialogCancelProcessingDialog":{"title":"ℭ𝔞𝔫𝔠𝔢𝔩 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤","deleteDocs":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔣𝔬𝔯𝔠𝔢 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}} 𝔱𝔬 𝔰𝔱𝔬𝔭 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤. 𝔄𝔣𝔱𝔢𝔯 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤 𝔥𝔞𝔰 𝔟𝔢𝔢𝔫 𝔰𝔱𝔬𝔭𝔭𝔢𝔡, 𝔞𝔫 𝔢𝔯𝔯𝔬𝔯 𝔴𝔦𝔩𝔩 𝔰𝔥𝔬𝔴 𝔞𝔣𝔱𝔢𝔯 𝔴𝔥𝔦𝔠𝔥 𝔶𝔬𝔲 𝔠𝔞𝔫 “𝔉𝔬𝔯𝔠𝔢 ℜ𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰” 𝔬𝔯 𝔡𝔢𝔩𝔢𝔱𝔢 𝔱𝔥𝔢 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}} 𝔲𝔰𝔦𝔫𝔤 𝔱𝔥𝔢 𝔈𝔡𝔦𝔱 𝔪𝔢𝔫𝔲. 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝔖𝔱𝔞𝔣𝔣-𝔬𝔫𝔩𝔶 𝔦𝔫𝔣𝔬 𝔣𝔬𝔯 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","id":"ℑ𝔇","title":"𝔗𝔦𝔱𝔩𝔢","actions":"𝔄𝔠𝔱𝔦𝔬𝔫𝔰","debug":"𝔇𝔢𝔟𝔲𝔤","viewErrors":"𝔙𝔦𝔢𝔴 𝔢𝔯𝔯𝔬𝔯𝔰","viewS3":"𝔙𝔦𝔢𝔴 𝔦𝔫 𝔖3"},"dialogDocumentEmbedDialog":{"responsive":"ℜ𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢","respOn":"𝔒𝔫 (𝔡𝔢𝔣𝔞𝔲𝔩𝔱)","respOnHelp":"𝔉𝔦𝔩𝔩 𝔱𝔥𝔢 𝔴𝔦𝔡𝔱𝔥 𝔬𝔣 𝔱𝔥𝔢 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔠𝔬𝔫𝔱𝔞𝔦𝔫𝔢𝔯 (𝔲𝔰𝔲𝔞𝔩𝔩𝔶 𝔴𝔬𝔯𝔨𝔰 𝔟𝔢𝔰𝔱)","respOff":"𝔒𝔣𝔣","respOffHelp":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔣𝔦𝔱 𝔱𝔥𝔢 𝔰𝔦𝔷𝔢𝔰 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔢𝔡 𝔟𝔢𝔩𝔬𝔴","width":"𝔚𝔦𝔡𝔱𝔥","widthAuto":"𝔚𝔦𝔩𝔩 𝔣𝔦𝔩𝔩 𝔱𝔥𝔢 𝔞𝔳𝔞𝔦𝔩𝔞𝔟𝔩𝔢 𝔰𝔭𝔞𝔠𝔢 𝔦𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰 𝔰𝔢𝔱 𝔱𝔬 𝔯𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢, 𝔬𝔱𝔥𝔢𝔯𝔴𝔦𝔰𝔢 𝔡𝔢𝔣𝔞𝔲𝔩𝔱𝔰 𝔱𝔬 700𝔭𝔵","widthFixed":"𝔖𝔢𝔱 𝔞 𝔪𝔞𝔵𝔦𝔪𝔲𝔪 𝔴𝔦𝔡𝔱𝔥 𝔦𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰 𝔯𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢, 𝔬𝔯 𝔰𝔢𝔱 𝔞 𝔣𝔦𝔵𝔢𝔡 𝔰𝔦𝔷𝔢 𝔦𝔣 𝔫𝔬𝔱 𝔯𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢","height":"ℌ𝔢𝔦𝔤𝔥𝔱","heightAuto":"𝔗𝔥𝔢 𝔥𝔢𝔦𝔤𝔥𝔱 𝔦𝔰 𝔟𝔞𝔰𝔢𝔡 𝔬𝔫 𝔱𝔥𝔢 𝔰𝔦𝔷𝔢 𝔬𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱, 𝔴𝔦𝔱𝔥 𝔫𝔬 𝔪𝔞𝔵𝔦𝔪𝔲𝔪 𝔰𝔦𝔷𝔢. ℑ𝔣 𝔯𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢, 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔰𝔢𝔱 𝔱𝔬 𝔱𝔥𝔢 𝔥𝔢𝔦𝔤𝔥𝔱 𝔬𝔣 𝔱𝔥𝔢 𝔟𝔯𝔬𝔴𝔰𝔢𝔯 𝔴𝔦𝔫𝔡𝔬𝔴 𝔪𝔦𝔫𝔲𝔰 100𝔭𝔵","heightFixed":"𝔖𝔢𝔱 𝔞 𝔪𝔞𝔵𝔦𝔪𝔲𝔪 𝔥𝔢𝔦𝔤𝔥𝔱 𝔦𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰 𝔯𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢, 𝔬𝔯 𝔰𝔢𝔱 𝔞 𝔣𝔦𝔵𝔢𝔡 𝔰𝔦𝔷𝔢 𝔦𝔣 𝔫𝔬𝔱 𝔯𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢","sidebarBehavior":"𝔖𝔦𝔡𝔢𝔟𝔞𝔯 𝔟𝔢𝔥𝔞𝔳𝔦𝔬𝔯","sbResponsive":"ℜ𝔢𝔰𝔭𝔬𝔫𝔰𝔦𝔳𝔢 (𝔡𝔢𝔣𝔞𝔲𝔩𝔱)","sbResponsiveHelp":"𝔖𝔥𝔬𝔴 𝔰𝔦𝔡𝔢𝔟𝔞𝔯 𝔞𝔲𝔱𝔬𝔪𝔞𝔱𝔦𝔠𝔞𝔩𝔩𝔶 𝔬𝔫 𝔩𝔞𝔯𝔤𝔢 𝔰𝔠𝔯𝔢𝔢𝔫𝔰 𝔞𝔫𝔡 𝔥𝔦𝔡𝔢 𝔬𝔫 𝔪𝔬𝔟𝔦𝔩𝔢 𝔡𝔢𝔳𝔦𝔠𝔢𝔰. ℑ𝔫 𝔢𝔪𝔟𝔢𝔡 𝔪𝔬𝔡𝔢, 𝔱𝔥𝔢 𝔰𝔦𝔡𝔢𝔟𝔞𝔯 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔥𝔦𝔡𝔡𝔢𝔫","hidden":"ℌ𝔦𝔡𝔡𝔢𝔫","visible":"𝔙𝔦𝔰𝔦𝔟𝔩𝔢","visibleDefault":"𝔙𝔦𝔰𝔦𝔟𝔩𝔢 (𝔡𝔢𝔣𝔞𝔲𝔩𝔱)","sbHiddenHelp":"ℌ𝔦𝔡𝔢 𝔱𝔥𝔢 𝔰𝔦𝔡𝔢𝔟𝔞𝔯 𝔟𝔶 𝔡𝔢𝔣𝔞𝔲𝔩𝔱","sbVisibleHelp":"𝔖𝔥𝔬𝔴 𝔱𝔥𝔢 𝔰𝔦𝔡𝔢𝔟𝔞𝔯 𝔟𝔶 𝔡𝔢𝔣𝔞𝔲𝔩𝔱","titleBehavior":"𝔗𝔦𝔱𝔩𝔢 𝔟𝔢𝔥𝔞𝔳𝔦𝔬𝔯","tVisibleHelp":"𝔇𝔦𝔰𝔭𝔩𝔞𝔶 𝔱𝔥𝔢 𝔱𝔦𝔱𝔩𝔢 𝔞𝔫𝔡 𝔞𝔱𝔱𝔯𝔦𝔟𝔲𝔱𝔦𝔬𝔫 𝔦𝔫 𝔱𝔥𝔢 𝔥𝔢𝔞𝔡𝔢𝔯 𝔬𝔣 𝔱𝔥𝔢 𝔳𝔦𝔢𝔴𝔢𝔯","tHiddenHelp":"ℌ𝔦𝔡𝔢 𝔱𝔥𝔢 𝔱𝔦𝔱𝔩𝔢 𝔦𝔫 𝔱𝔥𝔢 𝔥𝔢𝔞𝔡𝔢𝔯 𝔬𝔣 𝔱𝔥𝔢 𝔳𝔦𝔢𝔴𝔢𝔯 (𝔰𝔱𝔦𝔩𝔩 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔦𝔫 𝔱𝔥𝔢 𝔰𝔦𝔡𝔢𝔟𝔞𝔯)","pdfLink":"𝔓𝔇𝔉 𝔩𝔦𝔫𝔨","plVisibleHelp":"𝔖𝔥𝔬𝔴 𝔞 𝔩𝔦𝔫𝔨 𝔱𝔬 𝔱𝔥𝔢 𝔯𝔞𝔴 𝔓𝔇𝔉 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔫 𝔱𝔥𝔢 𝔰𝔦𝔡𝔢𝔟𝔞𝔯","plHiddenHelp":"ℌ𝔦𝔡𝔢 𝔱𝔥𝔢 𝔰𝔦𝔡𝔢𝔟𝔞𝔯 𝔓𝔇𝔉 𝔩𝔦𝔫𝔨 (𝔣𝔦𝔩𝔢 𝔦𝔰 𝔰𝔱𝔦𝔩𝔩 𝔞𝔠𝔠𝔢𝔰𝔰𝔦𝔟𝔩𝔢 𝔦𝔣 𝔱𝔥𝔢 𝔘ℜ𝔏 𝔦𝔰 𝔨𝔫𝔬𝔴𝔫)","fullscreenOption":"𝔉𝔲𝔩𝔩𝔰𝔠𝔯𝔢𝔢𝔫 𝔬𝔭𝔱𝔦𝔬𝔫","fsVisibleHelp":"𝔖𝔥𝔬𝔴 𝔞 𝔣𝔲𝔩𝔩𝔰𝔠𝔯𝔢𝔢𝔫 𝔦𝔠𝔬𝔫 𝔦𝔫 𝔱𝔥𝔢 𝔟𝔬𝔱𝔱𝔬𝔪-𝔯𝔦𝔤𝔥𝔱 𝔠𝔬𝔯𝔫𝔢𝔯","fsHiddenHelp":"ℌ𝔦𝔡𝔢 𝔱𝔥𝔢 𝔣𝔲𝔩𝔩𝔰𝔠𝔯𝔢𝔢𝔫 𝔬𝔭𝔱𝔦𝔬𝔫","textMode":"𝔗𝔢𝔵𝔱 𝔪𝔬𝔡𝔢","tmVisibleHelp":"𝔖𝔥𝔬𝔴 𝔞𝔫 𝔬𝔭𝔱𝔦𝔬𝔫 𝔱𝔬 𝔳𝔦𝔢𝔴 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱’𝔰 𝔱𝔢𝔵𝔱 𝔦𝔫 𝔱𝔥𝔢 𝔳𝔦𝔢𝔴 𝔡𝔯𝔬𝔭𝔡𝔬𝔴𝔫","tmHiddenHelp":"ℌ𝔦𝔡𝔢 𝔱𝔢𝔵𝔱 𝔪𝔬𝔡𝔢","contributedByFormat":"ℭ𝔬𝔫𝔱𝔯𝔦𝔟𝔲𝔱𝔢𝔡 𝔟𝔶 𝔣𝔬𝔯𝔪𝔞𝔱","cbfUserAndOrg":"𝔘𝔰𝔢𝔯 𝔞𝔫𝔡 𝔬𝔯𝔤 (𝔡𝔢𝔣𝔞𝔲𝔩𝔱)","cbfUserAndOrgHelp":"𝔖𝔥𝔬𝔴 𝔞 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱’𝔰 𝔞𝔱𝔱𝔯𝔦𝔟𝔲𝔱𝔦𝔬𝔫 𝔞𝔰 𝔱𝔥𝔢 𝔲𝔰𝔢𝔯 𝔫𝔞𝔪𝔢 𝔣𝔬𝔩𝔩𝔬𝔴𝔢𝔡 𝔟𝔶 𝔱𝔥𝔢 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","cbfOrgOnly":"𝔒𝔯𝔤 𝔬𝔫𝔩𝔶","cbfOrgOnlyHelp":"𝔄𝔱𝔱𝔯𝔦𝔟𝔲𝔱𝔢 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔱𝔬 𝔧𝔲𝔰𝔱 𝔱𝔥𝔢 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","share":"𝔖𝔥𝔞𝔯𝔢 “{title}”","embedDesc":"ℭ𝔬𝔭𝔶 𝔱𝔥𝔢 ℌ𝔗𝔐𝔏 𝔠𝔬𝔡𝔢 𝔱𝔬 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔱𝔥𝔦𝔫 𝔞𝔫 𝔞𝔯𝔱𝔦𝔠𝔩𝔢"},"dialogDocumentInformationDialog":{"editInformation":"𝔈𝔡𝔦𝔱 ℑ𝔫𝔣𝔬𝔯𝔪𝔞𝔱𝔦𝔬𝔫 𝔣𝔬𝔯 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}"},"dialogRedactDialog":{"title":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔯𝔢𝔡𝔞𝔠𝔱𝔦𝔬𝔫𝔰","description":"𝔄𝔯𝔢 𝔶𝔬𝔲 𝔰𝔲𝔯𝔢 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔯𝔢𝔡𝔞𝔠𝔱 𝔱𝔥𝔢 𝔠𝔲𝔯𝔯𝔢𝔫𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱? ℑ𝔣 𝔶𝔬𝔲 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢, 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔳𝔦𝔢𝔴𝔢𝔯 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔦𝔫𝔞𝔠𝔠𝔢𝔰𝔰𝔦𝔟𝔩𝔢 𝔱𝔢𝔪𝔭𝔬𝔯𝔞𝔯𝔦𝔩𝔶 𝔴𝔥𝔦𝔩𝔢 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔢𝔰 𝔴𝔦𝔱𝔥 𝔱𝔥𝔢 𝔯𝔢𝔡𝔞𝔠𝔱𝔦𝔬𝔫𝔰 𝔦𝔫 𝔭𝔩𝔞𝔠𝔢. 𝔗𝔥𝔦𝔰 𝔠𝔥𝔞𝔫𝔤𝔢 𝔦𝔰 𝔦𝔯𝔯𝔢𝔳𝔢𝔯𝔰𝔦𝔟𝔩𝔢."},"dialogModifyDialog":{"title":"𝔄𝔭𝔭𝔩𝔶 𝔪𝔬𝔡𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫𝔰","description":"𝔄𝔯𝔢 𝔶𝔬𝔲 𝔰𝔲𝔯𝔢 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔪𝔬𝔡𝔦𝔣𝔶 𝔱𝔥𝔢 𝔠𝔲𝔯𝔯𝔢𝔫𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱? ℑ𝔣 𝔶𝔬𝔲 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢, 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔳𝔦𝔢𝔴𝔢𝔯 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔦𝔫𝔞𝔠𝔠𝔢𝔰𝔰𝔦𝔟𝔩𝔢 𝔱𝔢𝔪𝔭𝔬𝔯𝔞𝔯𝔦𝔩𝔶 𝔴𝔥𝔦𝔩𝔢 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔢𝔰 𝔴𝔦𝔱𝔥 𝔱𝔥𝔢 𝔪𝔬𝔡𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫𝔰. 𝔗𝔥𝔦𝔰 𝔠𝔥𝔞𝔫𝔤𝔢 𝔦𝔰 𝔦𝔯𝔯𝔢𝔳𝔢𝔯𝔰𝔦𝔟𝔩𝔢.","closeTitle":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔠𝔩𝔬𝔰𝔢","closeWarning":"𝔜𝔬𝔲 𝔴𝔦𝔩𝔩 𝔩𝔬𝔰𝔢 𝔞𝔩𝔩 𝔶𝔬𝔲𝔯 𝔲𝔫𝔞𝔭𝔭𝔩𝔦𝔢𝔡 𝔪𝔬𝔡𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫𝔰. 𝔄𝔯𝔢 𝔶𝔬𝔲 𝔰𝔲𝔯𝔢 𝔶𝔬𝔲 𝔴𝔞𝔫𝔱 𝔱𝔬 𝔭𝔯𝔬𝔠𝔢𝔢𝔡?"},"dialogDeleteNoteDialog":{"title":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔡𝔢𝔩𝔢𝔱𝔢","description":"𝔄𝔯𝔢 𝔶𝔬𝔲 𝔰𝔲𝔯𝔢 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔡𝔢𝔩𝔢𝔱𝔢 𝔱𝔥𝔢 𝔠𝔲𝔯𝔯𝔢𝔫𝔱 𝔫𝔬𝔱𝔢?"},"dialogEditSectionsDialog":{"confirmDelete":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔡𝔢𝔩𝔢𝔱𝔢","proceedingWillRemove":"𝔓𝔯𝔬𝔠𝔢𝔢𝔡𝔦𝔫𝔤 𝔴𝔦𝔩𝔩 𝔯𝔢𝔪𝔬𝔳𝔢 𝔱𝔥𝔢 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔢𝔡 𝔰𝔢𝔠𝔱𝔦𝔬𝔫 (𝔭. {page} {title}). 𝔇𝔬 𝔶𝔬𝔲 𝔴𝔦𝔰𝔥 𝔱𝔬 𝔠𝔬𝔫𝔱𝔦𝔫𝔲𝔢?","editSections":"𝔈𝔡𝔦𝔱 𝔖𝔢𝔠𝔱𝔦𝔬𝔫𝔰","manageSections":"𝔐𝔞𝔫𝔞𝔤𝔢 𝔰𝔢𝔠𝔱𝔦𝔬𝔫𝔰 𝔱𝔬 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔱𝔥 𝔞 𝔱𝔞𝔟𝔩𝔢 𝔬𝔣 𝔠𝔬𝔫𝔱𝔢𝔫𝔱𝔰.","pageAbbrevNo":"𝔭. {n}","pageAbbrev":"𝔭.","empty":"𝔜𝔬𝔲 𝔥𝔞𝔳𝔢 𝔫𝔬𝔱 𝔞𝔡𝔡𝔢𝔡 𝔞𝔫𝔶 𝔰𝔢𝔠𝔱𝔦𝔬𝔫𝔰","edit":"𝔈𝔡𝔦𝔱 𝔱𝔥𝔢 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔰𝔢𝔠𝔱𝔦𝔬𝔫","add":"𝔄𝔡𝔡 𝔞 𝔫𝔢𝔴 𝔰𝔢𝔠𝔱𝔦𝔬𝔫","title":"𝔗𝔦𝔱𝔩𝔢","missingTitle":"𝔓𝔩𝔢𝔞𝔰𝔢 𝔢𝔫𝔱𝔢𝔯 𝔞 𝔱𝔦𝔱𝔩𝔢","updateTitle":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔫𝔢𝔴 𝔱𝔦𝔱𝔩𝔢 𝔬𝔯 𝔭𝔞𝔤𝔢 𝔫𝔲𝔪𝔟𝔢𝔯","uniquePageNumber":"𝔜𝔬𝔲 𝔪𝔲𝔰𝔱 𝔢𝔫𝔱𝔢𝔯 𝔞 𝔲𝔫𝔦𝔮𝔲𝔢 𝔭𝔞𝔤𝔢 𝔫𝔲𝔪𝔟𝔢𝔯","invalidPageNumber":"𝔓𝔞𝔤𝔢 𝔫𝔲𝔪𝔟𝔢𝔯 𝔦𝔰 𝔦𝔫𝔳𝔞𝔩𝔦𝔡"},"dialogEmbedDialog":{"updatingDocument":"𝔘𝔭𝔡𝔞𝔱𝔦𝔫𝔤 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱...","makingPublic":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰 𝔠𝔲𝔯𝔯𝔢𝔫𝔱𝔩𝔶 𝔟𝔢𝔦𝔫𝔤 𝔪𝔞𝔡𝔢 𝔭𝔲𝔟𝔩𝔦𝔠. 𝔗𝔥𝔦𝔰 𝔪𝔞𝔶 𝔱𝔞𝔨𝔢 𝔞 𝔪𝔦𝔫𝔲𝔱𝔢 𝔬𝔯 𝔱𝔴𝔬.","wouldMakePublic":"𝔚𝔬𝔲𝔩𝔡 𝔶𝔬𝔲 𝔩𝔦𝔨𝔢 𝔱𝔬 𝔪𝔞𝔨𝔢 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔭𝔲𝔟𝔩𝔦𝔠 𝔟𝔢𝔣𝔬𝔯𝔢 𝔰𝔥𝔞𝔯𝔦𝔫𝔤?","notPublic":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰 𝔫𝔬𝔱 𝔠𝔲𝔯𝔯𝔢𝔫𝔱𝔩𝔶 𝔭𝔲𝔟𝔩𝔦𝔠. ℑ𝔣 𝔶𝔬𝔲 𝔢𝔪𝔟𝔢𝔡 𝔬𝔯 𝔩𝔦𝔫𝔨 𝔦𝔱, 𝔬𝔫𝔩𝔶 𝔶𝔬𝔲 𝔞𝔫𝔡 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔞𝔟𝔩𝔢 𝔱𝔬 𝔳𝔦𝔢𝔴 𝔦𝔱 𝔲𝔫𝔱𝔦𝔩 𝔦𝔱 𝔦𝔰 𝔪𝔞𝔡𝔢 𝔭𝔲𝔟𝔩𝔦𝔠. ℭ𝔩𝔦𝔠𝔨 𝔟𝔢𝔩𝔬𝔴 𝔴𝔥𝔢𝔫 𝔶𝔬𝔲’𝔯𝔢 𝔯𝔢𝔞𝔡𝔶 𝔱𝔬 𝔭𝔲𝔟𝔩𝔦𝔰𝔥 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔱𝔬 𝔱𝔥𝔢 𝔭𝔲𝔟𝔩𝔦𝔠.","makePublic":"𝔐𝔞𝔨𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔭𝔲𝔟𝔩𝔦𝔠","leave":"𝔏𝔢𝔞𝔳𝔢 𝔞𝔰 𝔦𝔰","selectShare":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔰𝔥𝔞𝔯𝔢 𝔬𝔭𝔱𝔦𝔬𝔫","selectShareHelp":"ℭ𝔥𝔬𝔬𝔰𝔢 𝔴𝔥𝔢𝔱𝔥𝔢𝔯 𝔱𝔬 𝔰𝔥𝔞𝔯𝔢 𝔱𝔥𝔢 𝔢𝔫𝔱𝔦𝔯𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔬𝔯 𝔧𝔲𝔰𝔱 𝔞 𝔭𝔞𝔤𝔢 𝔬𝔯 𝔫𝔬𝔱𝔢.","shareDoc":"𝔖𝔥𝔞𝔯𝔢 𝔢𝔫𝔱𝔦𝔯𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","shareDocHelp":"𝔏𝔦𝔫𝔨 𝔬𝔯 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔢 𝔢𝔫𝔱𝔦𝔯𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱. (𝔗𝔥𝔦𝔰 𝔦𝔰 𝔱𝔥𝔢 𝔪𝔬𝔰𝔱 𝔠𝔬𝔪𝔪𝔬𝔫𝔩𝔶 𝔲𝔰𝔢𝔡 𝔰𝔥𝔞𝔯𝔢 𝔬𝔭𝔱𝔦𝔬𝔫.)","sharePage":"𝔖𝔥𝔞𝔯𝔢 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔠 𝔭𝔞𝔤𝔢","sharePageHelp":"𝔏𝔦𝔫𝔨 𝔬𝔯 𝔢𝔪𝔟𝔢𝔡 𝔞 𝔰𝔦𝔫𝔤𝔩𝔢 𝔭𝔞𝔤𝔢 𝔬𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱. 𝔘𝔰𝔢𝔣𝔲𝔩 𝔣𝔬𝔯 𝔥𝔦𝔤𝔥𝔩𝔦𝔤𝔥𝔱𝔦𝔫𝔤 𝔞 𝔭𝔞𝔤𝔢 𝔢𝔵𝔠𝔢𝔯𝔭𝔱.","shareNote":"𝔖𝔥𝔞𝔯𝔢 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔠 𝔫𝔬𝔱𝔢","shareNoteHelpHasNote":"𝔏𝔦𝔫𝔨 𝔬𝔯 𝔢𝔪𝔟𝔢𝔡 𝔞 𝔫𝔬𝔱𝔢 𝔴𝔦𝔱𝔥𝔦𝔫 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱. 𝔘𝔰𝔢𝔣𝔲𝔩 𝔣𝔬𝔯 𝔥𝔦𝔤𝔥𝔩𝔦𝔤𝔥𝔱𝔦𝔫𝔤 𝔞 𝔯𝔢𝔤𝔦𝔬𝔫 𝔬𝔣 𝔞 𝔭𝔞𝔤𝔢.","shareNoteHelpNoNote":"𝔒𝔫𝔠𝔢 𝔶𝔬𝔲 𝔞𝔡𝔡 𝔫𝔬𝔱𝔢𝔰 𝔱𝔬 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱, 𝔲𝔰𝔢 𝔱𝔥𝔦𝔰 𝔣𝔢𝔞𝔱𝔲𝔯𝔢 𝔱𝔬 𝔩𝔦𝔫𝔨 𝔬𝔯 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔢𝔪."},"dialogErrorDialog":{"errorOccurred":"𝔄𝔫 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡","unexpectedErrorOccurred":"𝔄𝔫 𝔲𝔫𝔢𝔵𝔭𝔢𝔠𝔱𝔢𝔡 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡","tryAgain":"𝔓𝔩𝔢𝔞𝔰𝔢 𝔱𝔯𝔶 𝔞𝔤𝔞𝔦𝔫 𝔩𝔞𝔱𝔢𝔯.","close":"ℭ𝔩𝔬𝔰𝔢","refresh":"ℜ𝔢𝔣𝔯𝔢𝔰𝔥"},"dialogNoteEmbedDialog":{"embedNote":"𝔈𝔪𝔟𝔢𝔡 𝔞 𝔫𝔬𝔱𝔢 𝔬𝔣 “{title}”","embedDesc":"ℭ𝔬𝔭𝔶 𝔱𝔥𝔢 ℌ𝔗𝔐𝔏 𝔠𝔬𝔡𝔢 𝔱𝔬 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔦𝔰 𝔫𝔬𝔱𝔢 𝔴𝔦𝔱𝔥𝔦𝔫 𝔞𝔫 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔬𝔯 𝔭𝔬𝔰𝔱:"},"dialogPageEmbedDialog":{"embedPage":"𝔈𝔪𝔟𝔢𝔡 𝔞 𝔭𝔞𝔤𝔢 𝔬𝔣 “{title}”","embedDesc":"ℭ𝔬𝔭𝔶 𝔱𝔥𝔢 ℌ𝔗𝔐𝔏 𝔠𝔬𝔡𝔢 𝔱𝔬 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔦𝔰 𝔭𝔞𝔤𝔢 𝔴𝔦𝔱𝔥𝔦𝔫 𝔞𝔫 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔬𝔯 𝔭𝔬𝔰𝔱:","selectPage":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔱𝔥𝔢 𝔭𝔞𝔤𝔢 𝔱𝔬 𝔢𝔪𝔟𝔢𝔡:","page":"𝔓𝔞𝔤𝔢 {n} (𝔠𝔲𝔯𝔯𝔢𝔫𝔱𝔩𝔶 𝔳𝔦𝔰𝔦𝔟𝔩𝔢)","otherPage":"𝔒𝔱𝔥𝔢𝔯 𝔭𝔞𝔤𝔢","enterPageNumber":"𝔈𝔫𝔱𝔢𝔯 𝔱𝔥𝔢 𝔭𝔞𝔤𝔢 𝔫𝔲𝔪𝔟𝔢𝔯 𝔱𝔬 𝔢𝔪𝔟𝔢𝔡:"},"dialogProjectAccessDialog":{"changeAccessFor":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔞𝔠𝔠𝔢𝔰𝔰 𝔣𝔬𝔯 {name}","selectAccess":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔞𝔫 𝔞𝔠𝔠𝔢𝔰𝔰 𝔩𝔢𝔳𝔢𝔩 𝔟𝔢𝔩𝔬𝔴 𝔣𝔬𝔯 {name} 𝔦𝔫 {title}","adminAccess":"𝔄𝔡𝔪𝔦𝔫 𝔄𝔠𝔠𝔢𝔰𝔰","editAccess":"𝔈𝔡𝔦𝔱 𝔄𝔠𝔠𝔢𝔰𝔰","viewAccess":"𝔙𝔦𝔢𝔴 𝔄𝔠𝔠𝔢𝔰𝔰","adminHelp":"𝔗𝔥𝔦𝔰 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯 𝔠𝔞𝔫 𝔢𝔡𝔦𝔱 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔞𝔫𝔡 𝔦𝔱𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰. 𝔗𝔥𝔢 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯 𝔠𝔞𝔫 𝔦𝔫𝔳𝔦𝔱𝔢 𝔲𝔰𝔢𝔯𝔰, 𝔡𝔢𝔩𝔢𝔱𝔢 𝔲𝔰𝔢𝔯𝔰, 𝔞𝔫𝔡 𝔯𝔢𝔪𝔬𝔳𝔢 𝔱𝔥𝔢 𝔭𝔯𝔬𝔧𝔢𝔠𝔱.","editHelp":"𝔗𝔥𝔦𝔰 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯 𝔠𝔞𝔫 𝔢𝔡𝔦𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔦𝔫 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔟𝔲𝔱 𝔠𝔞𝔫𝔫𝔬𝔱 𝔢𝔡𝔦𝔱 𝔱𝔥𝔢 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔦𝔱𝔰𝔢𝔩𝔣.","viewHelp":"𝔗𝔥𝔦𝔰 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯 𝔠𝔞𝔫 𝔳𝔦𝔢𝔴 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔦𝔫 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔟𝔲𝔱 𝔠𝔞𝔫𝔫𝔬𝔱 𝔢𝔡𝔦𝔱 𝔱𝔥𝔢𝔪 𝔬𝔯 𝔱𝔥𝔢 𝔭𝔯𝔬𝔧𝔢𝔠𝔱.","invalidAccess":"𝔄𝔠𝔠𝔢𝔰𝔰 𝔦𝔰 𝔞𝔩𝔯𝔢𝔞𝔡𝔶 𝔰𝔢𝔱 𝔱𝔬 {access}. 𝔖𝔢𝔩𝔢𝔠𝔱 𝔞 𝔡𝔦𝔣𝔣𝔢𝔯𝔢𝔫𝔱 𝔞𝔠𝔠𝔢𝔰𝔰 𝔩𝔢𝔳𝔢𝔩.","changeAccess":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔞𝔠𝔠𝔢𝔰𝔰"},"dialogOwnerDialog":{"selectUser":"𝔘𝔰𝔢𝔯 𝔪𝔲𝔰𝔱 𝔟𝔢 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡","selectOrg":"𝔒𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔪𝔲𝔰𝔱 𝔟𝔢 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡","changeOwner":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔬𝔴𝔫𝔢𝔯 𝔣𝔬𝔯 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","accessWarning":"𝔚𝔞𝔯𝔫𝔦𝔫𝔤: 𝔜𝔬𝔲 𝔪𝔞𝔶 𝔩𝔬𝔰𝔱 𝔞𝔠𝔠𝔢𝔰𝔰 𝔱𝔬 𝔱𝔥𝔢 𝔰𝔭𝔢𝔠𝔦𝔣𝔦𝔢𝔡 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}} 𝔞𝔰 𝔞 𝔯𝔢𝔰𝔲𝔩𝔱 𝔬𝔣 𝔠𝔥𝔞𝔫𝔤𝔦𝔫𝔤 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔬𝔴𝔫𝔢𝔯","user":"𝔘𝔰𝔢𝔯:","filterUsers":"𝔗𝔶𝔭𝔢 𝔱𝔬 𝔣𝔦𝔩𝔱𝔢𝔯 𝔲𝔰𝔢𝔯𝔰...","filterOrgs":"𝔗𝔶𝔭𝔢 𝔱𝔬 𝔣𝔦𝔩𝔱𝔢𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫𝔰..."},"dialogProjectDialog":{"confirmDelete":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 𝔡𝔢𝔩𝔢𝔱𝔢","deleteProject":"𝔄𝔯𝔢 𝔶𝔬𝔲 𝔰𝔲𝔯𝔢 𝔶𝔬𝔲 𝔴𝔞𝔫𝔱 𝔱𝔬 𝔡𝔢𝔩𝔢𝔱𝔢 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 ({project})?","editProject":"𝔈𝔡𝔦𝔱 𝔓𝔯𝔬𝔧𝔢𝔠𝔱","createProject":"ℭ𝔯𝔢𝔞𝔱𝔢 𝔑𝔢𝔴 𝔓𝔯𝔬𝔧𝔢𝔠𝔱","title":"𝔗𝔦𝔱𝔩𝔢...","projectDesc":"𝔓𝔯𝔬𝔧𝔢𝔠𝔱 𝔇𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫 (𝔬𝔭𝔱𝔦𝔬𝔫𝔞𝔩)","manageCollabs":"𝔐𝔞𝔫𝔞𝔤𝔢 ℭ𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔬𝔯𝔰","share":"𝔖𝔥𝔞𝔯𝔢 / 𝔈𝔪𝔟𝔢𝔡 𝔓𝔯𝔬𝔧𝔢𝔠𝔱","enterTitle":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔱𝔦𝔱𝔩𝔢","changeTitle":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔱𝔥𝔢 𝔱𝔦𝔱𝔩𝔢 𝔬𝔯 𝔡𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫"},"dialogProjectEmbedDialog":{"share":"𝔖𝔥𝔞𝔯𝔢 “{title}”","embedDesc":"ℭ𝔬𝔭𝔶 𝔱𝔥𝔢 ℌ𝔗𝔐𝔏 𝔠𝔬𝔡𝔢 𝔱𝔬 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔱𝔥𝔦𝔫 𝔞𝔫 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔬𝔯 𝔭𝔬𝔰𝔱:","invalid":"ℑ𝔫𝔳𝔞𝔩𝔦𝔡 𝔭𝔯𝔬𝔧𝔢𝔠𝔱","cannotEmbed":"ℭ𝔞𝔫𝔫𝔬𝔱 𝔢𝔪𝔟𝔢𝔡 𝔱𝔥𝔦𝔰 𝔭𝔯𝔬𝔧𝔢𝔠𝔱, 𝔞𝔰 𝔦𝔱 𝔡𝔬𝔢𝔰 𝔫𝔬𝔱 𝔞𝔭𝔭𝔢𝔞𝔯 𝔱𝔬 𝔢𝔵𝔦𝔰𝔱."},"htmlEditor":{"preview":"𝔓𝔯𝔢𝔳𝔦𝔢𝔴:"},"image":{"error":"𝔄𝔫 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡. 𝔗𝔯𝔶 𝔯𝔢𝔣𝔯𝔢𝔰𝔥𝔦𝔫𝔤 𝔱𝔥𝔢 𝔭𝔞𝔤𝔢"},"omniselect":{"filter":"𝔗𝔶𝔭𝔢 𝔱𝔬 𝔣𝔦𝔩𝔱𝔢𝔯 𝔩𝔞𝔫𝔤𝔲𝔞𝔤𝔢","noResults":"𝔑𝔬 𝔯𝔢𝔰𝔲𝔩𝔱𝔰. ℭ𝔩𝔦𝔠𝔨 𝔱𝔬 𝔠𝔩𝔢𝔞𝔯 𝔣𝔦𝔩𝔱𝔢𝔯."},"shareOptions":{"errorText":"𝔄𝔫 𝔲𝔫𝔢𝔵𝔭𝔢𝔠𝔱𝔢𝔡 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡. 𝔓𝔩𝔢𝔞𝔰𝔢 𝔱𝔯𝔶 𝔞𝔤𝔞𝔦𝔫 𝔩𝔞𝔱𝔢𝔯.","copyHtml":"ℭ𝔬𝔭𝔶 ℌ𝔗𝔐𝔏 𝔠𝔬𝔡𝔢","addShortcode":"𝔄𝔡𝔡 𝔱𝔥𝔦𝔰 𝔰𝔥𝔬𝔯𝔱𝔠𝔬𝔡𝔢 𝔱𝔬 𝔶𝔬𝔲𝔯 𝔚𝔬𝔯𝔡𝔓𝔯𝔢𝔰𝔰 𝔠𝔬𝔫𝔱𝔢𝔫𝔱 —","pluginRequired":"𝔭𝔩𝔲𝔤𝔦𝔫 𝔯𝔢𝔮𝔲𝔦𝔯𝔢𝔡","copyShortcode":"ℭ𝔬𝔭𝔶 𝔰𝔥𝔬𝔯𝔱𝔠𝔬𝔡𝔢","copyUrl":"ℭ𝔬𝔭𝔶 𝔘ℜ𝔏"},"specialMessage":{"contactUs":"ℭ𝔬𝔫𝔱𝔞𝔠𝔱 𝔲𝔰 𝔴𝔦𝔱𝔥 𝔟𝔲𝔤 𝔯𝔢𝔭𝔬𝔯𝔱𝔰, 𝔮𝔲𝔢𝔰𝔱𝔦𝔬𝔫𝔰, 𝔞𝔫𝔡 𝔰𝔲𝔤𝔤𝔢𝔰𝔱𝔦𝔬𝔫𝔰."},"uploadOptions":{"documentLang":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔩𝔞𝔫𝔤𝔲𝔞𝔤𝔢:","forceOcr":"𝔉𝔬𝔯𝔠𝔢 𝔒ℭℜ:"},"actionBar":{"selectDocs":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔰𝔬𝔪𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔱𝔬 𝔯𝔢𝔳𝔢𝔞𝔩 𝔢𝔡𝔦𝔱 𝔞𝔠𝔱𝔦𝔬𝔫𝔰","noPerms":"𝔜𝔬𝔲 𝔡𝔬 𝔫𝔬𝔱 𝔥𝔞𝔳𝔢 𝔭𝔢𝔯𝔪𝔦𝔰𝔰𝔦𝔬𝔫 𝔱𝔬 𝔢𝔡𝔦𝔱 𝔞𝔩𝔩 𝔬𝔣 𝔱𝔥𝔢 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","editMenu":"𝔈𝔡𝔦𝔱","projectsMenu":"𝔓𝔯𝔬𝔧𝔢𝔠𝔱𝔰"},"authSection":{"help":"ℌ𝔢𝔩𝔭","language":"𝔏𝔞𝔫𝔤𝔲𝔞𝔤𝔢","tips":"𝔗𝔦𝔭𝔰 𝔞𝔫𝔡 𝔗𝔯𝔦𝔠𝔨𝔰","searchDocs":"𝔖𝔢𝔞𝔯𝔠𝔥 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔞𝔱𝔦𝔬𝔫","apiDocs":"𝔄𝔓ℑ 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔞𝔱𝔦𝔬𝔫","emailUs":"𝔈𝔪𝔞𝔦𝔩 𝔘𝔰","acctSettings":"𝔄𝔠𝔠𝔬𝔲𝔫𝔱 𝔖𝔢𝔱𝔱𝔦𝔫𝔤𝔰","signOut":"𝔖𝔦𝔤𝔫 𝔬𝔲𝔱","changeOrg":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","personalAcct":"𝔓𝔢𝔯𝔰𝔬𝔫𝔞𝔩 𝔄𝔠𝔠𝔬𝔲𝔫𝔱","signIn":"𝔖𝔦𝔤𝔫 𝔦𝔫"},"documents":{"yourDocuments":"𝔜𝔬𝔲𝔯 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","searchResults":"𝔖𝔢𝔞𝔯𝔠𝔥 ℜ𝔢𝔰𝔲𝔩𝔱𝔰","accessDocuments":"𝔜𝔬𝔲𝔯 {access}𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","nameDocuments":"{name}\'𝔰 {access}𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","allDocuments":"𝔄𝔩𝔩 {access}𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","mustBeVerified":"𝔜𝔬𝔲 𝔪𝔲𝔰𝔱 𝔟𝔢 𝔞 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔧𝔬𝔲𝔯𝔫𝔞𝔩𝔦𝔰𝔱 𝔱𝔬 𝔲𝔭𝔩𝔬𝔞𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","upload":"𝔘𝔭𝔩𝔬𝔞𝔡","dropFile":"𝔇𝔯𝔬𝔭 𝔣𝔦𝔩𝔢 𝔱𝔬 𝔲𝔭𝔩𝔬𝔞𝔡"},"document":{"open":"𝔒𝔭𝔢𝔫","updating":"𝔘𝔭𝔡𝔞𝔱𝔦𝔫𝔤 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱...","processing":"𝔓𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤","processingError":"𝔄𝔫 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡 𝔱𝔯𝔶𝔦𝔫𝔤 𝔱𝔬 𝔭𝔯𝔬𝔠𝔢𝔰𝔰 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","remove":"ℜ𝔢𝔪𝔬𝔳𝔢","improper":"𝔜𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔞𝔰 𝔲𝔭𝔩𝔬𝔞𝔡𝔢𝔡 𝔦𝔪𝔭𝔯𝔬𝔭𝔢𝔯𝔩𝔶","project":"𝔓𝔯𝔬𝔧𝔢𝔠𝔱","totalMatchingPages":"{n} 𝔬𝔣 {m} 𝔭𝔞𝔤𝔢𝔰 𝔪𝔞𝔱𝔠𝔥𝔦𝔫𝔤 𝔱𝔥𝔢 𝔮𝔲𝔢𝔯𝔶","showAll":"𝔖𝔥𝔬𝔴 𝔞𝔩𝔩","matchingPages":"{n} 𝔭𝔞𝔤𝔢𝔰 𝔪𝔞𝔱𝔠𝔥𝔦𝔫𝔤 𝔱𝔥𝔢 𝔮𝔲𝔢𝔯𝔶","pageAbbrev":"𝔭.","pageCount":"{n, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}}","source":"𝔖𝔬𝔲𝔯𝔠𝔢"},"documentThumbnail":{"pages":"𝔭𝔞𝔤𝔢𝔰","loading":"𝔏𝔬𝔞𝔡𝔦𝔫𝔤 𝔭𝔯𝔬𝔤𝔯𝔢𝔰𝔰 𝔦𝔫𝔣𝔬𝔯𝔪𝔞𝔱𝔦𝔬𝔫..."},"mainContainer":{"error":"𝔈𝔯𝔯𝔬𝔯","errorMsg":"𝔚𝔢 𝔠𝔬𝔲𝔩𝔡 𝔫𝔬𝔱 𝔯𝔢𝔞𝔠𝔥 𝔱𝔥𝔢 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔰𝔢𝔯𝔳𝔢𝔯. 𝔓𝔩𝔢𝔞𝔰𝔢 𝔱𝔯𝔶 𝔯𝔢𝔣𝔯𝔢𝔰𝔥𝔦𝔫𝔤 𝔱𝔥𝔢 𝔭𝔞𝔤𝔢 𝔩𝔞𝔱𝔢𝔯.","refresh":"ℜ𝔢𝔣𝔯𝔢𝔰𝔥"},"editMenu":{"editDocInfo":"𝔈𝔡𝔦𝔱 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 ℑ𝔫𝔣𝔬𝔯𝔪𝔞𝔱𝔦𝔬𝔫","changeAccess":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔄𝔠𝔠𝔢𝔰𝔰","editDocData":"𝔈𝔡𝔦𝔱 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔇𝔞𝔱𝔞","cancelProcessing":"ℭ𝔞𝔫𝔠𝔢𝔩 𝔓𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤","forceReprocess":"𝔉𝔬𝔯𝔠𝔢 ℜ𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰","entities":"𝔈𝔫𝔱𝔦𝔱𝔦𝔢𝔰 𝔅𝔈𝔗𝔄","changeOwner":"ℭ𝔥𝔞𝔫𝔤𝔢 𝔒𝔴𝔫𝔢𝔯","delete":"𝔇𝔢𝔩𝔢𝔱𝔢","diagnosticInfo":"𝔇𝔦𝔞𝔤𝔫𝔬𝔰𝔱𝔦𝔠 ℑ𝔫𝔣𝔬"},"metaFields":{"defaultFieldInvalidText":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔞𝔩𝔯𝔢𝔞𝔡𝔶 𝔥𝔞𝔰 𝔱𝔥𝔦𝔰 {fieldName}","titleFieldTitle":"𝔗𝔦𝔱𝔩𝔢","titleFieldName":"𝔫𝔞𝔪𝔢","titleFieldNameUppercase":"𝔑𝔞𝔪𝔢","titleFieldHeader":"ℜ𝔢𝔫𝔞𝔪𝔢 {n, plural, one {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","titleFieldDescription":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔫𝔞𝔪𝔢 𝔟𝔢𝔩𝔬𝔴 𝔣𝔬𝔯 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","titleFieldButton":"ℜ𝔢𝔫𝔞𝔪𝔢","titleFieldInvalidSameName":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔞𝔩𝔯𝔢𝔞𝔡𝔶 𝔥𝔞𝔰 𝔱𝔥𝔦𝔰 𝔫𝔞𝔪𝔢","titleFieldInvalidEmptyName":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔳𝔞𝔩𝔦𝔡 𝔫𝔞𝔪𝔢","sourceFieldTitle":"𝔖𝔬𝔲𝔯𝔠𝔢","sourceFieldName":"𝔰𝔬𝔲𝔯𝔠𝔢","sourceFieldNameUppercase":"𝔖𝔬𝔲𝔯𝔠𝔢","sourceFieldHeader":"𝔈𝔡𝔦𝔱 𝔰𝔬𝔲𝔯𝔠𝔢 𝔣𝔬𝔯 {n, plural, one {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","sourceFieldDescription":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔰𝔬𝔲𝔯𝔠𝔢 𝔟𝔢𝔩𝔬𝔴 𝔣𝔬𝔯 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","sourceFieldButton":"𝔈𝔡𝔦𝔱","descriptionFieldTitle":"𝔇𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫","descriptionFieldName":"𝔡𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫","descriptionFieldNameUppercase":"𝔇𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫","descriptionFieldHeader":"𝔈𝔡𝔦𝔱 𝔡𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫 𝔣𝔬𝔯 {n, plural, one {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","descriptionFieldDescription":"𝔈𝔫𝔱𝔢𝔯 𝔱𝔥𝔢 𝔡𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫 𝔟𝔢𝔩𝔬𝔴 𝔣𝔬𝔯 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","descriptionFieldButton":"𝔈𝔡𝔦𝔱","relatedArticleFieldTitle":"ℜ𝔢𝔩𝔞𝔱𝔢𝔡 𝔄𝔯𝔱𝔦𝔠𝔩𝔢 𝔘ℜ𝔏","relatedArticleFieldName":"𝔯𝔢𝔩𝔞𝔱𝔢𝔡 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔘ℜ𝔏","relatedArticleFieldNameUppercase":"ℜ𝔢𝔩𝔞𝔱𝔢𝔡 𝔄𝔯𝔱𝔦𝔠𝔩𝔢 𝔘ℜ𝔏","relatedArticleFieldHeader":"𝔈𝔡𝔦𝔱 𝔱𝔥𝔢 𝔯𝔢𝔩𝔞𝔱𝔢𝔡 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔘ℜ𝔏 𝔣𝔬𝔯 {n, plural, one {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","relatedArticleFieldDescription":"𝔈𝔫𝔱𝔢𝔯 𝔱𝔥𝔢 𝔯𝔢𝔩𝔞𝔱𝔢𝔡 𝔞𝔯𝔱𝔦𝔠𝔩𝔢 𝔘ℜ𝔏 𝔟𝔢𝔩𝔬𝔴 𝔣𝔬𝔯 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","relatedArticleFieldButton":"𝔈𝔡𝔦𝔱","publishedUrlFieldTitle":"𝔓𝔲𝔟𝔩𝔦𝔰𝔥𝔢𝔡 𝔘ℜ𝔏","publishedUrlFieldName":"𝔭𝔲𝔟𝔩𝔦𝔰𝔥𝔢𝔡 𝔘ℜ𝔏","publishedUrlFieldNameUppercase":"𝔓𝔲𝔟𝔩𝔦𝔰𝔥𝔢𝔡 𝔘ℜ𝔏","publishedUrlFieldHeader":"𝔈𝔡𝔦𝔱 𝔱𝔥𝔢 𝔭𝔲𝔟𝔩𝔦𝔰𝔥𝔢𝔡 𝔘ℜ𝔏 𝔣𝔬𝔯 {n, plural, one {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","publishedUrlFieldDescription":"𝔈𝔫𝔱𝔢𝔯 𝔱𝔥𝔢 𝔭𝔲𝔟𝔩𝔦𝔰𝔥𝔢𝔡 𝔘ℜ𝔏 𝔟𝔢𝔩𝔬𝔴 𝔣𝔬𝔯 𝔱𝔥𝔢 {n, plural, one {𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔰𝔢𝔩𝔢𝔠𝔱𝔢𝔡 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}","publishedUrlFieldButton":"𝔈𝔡𝔦𝔱"},"projectsMenu":{"newProject":"+ 𝔑𝔢𝔴 𝔓𝔯𝔬𝔧𝔢𝔠𝔱","projMembership":"𝔓𝔯𝔬𝔧𝔢𝔠𝔱 𝔐𝔢𝔪𝔟𝔢𝔯𝔰𝔥𝔦𝔭","selectDocs":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔱𝔬 𝔭𝔩𝔞𝔠𝔢 𝔱𝔥𝔢𝔪 𝔦𝔫 𝔭𝔯𝔬𝔧𝔢𝔠𝔱𝔰","createProj":"ℭ𝔯𝔢𝔞𝔱𝔢 𝔞 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔱𝔬 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔢 𝔞𝔫𝔡 𝔰𝔥𝔞𝔯𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰"},"noDocuments":{"noSearchResults":"𝔑𝔬 𝔰𝔢𝔞𝔯𝔠𝔥 𝔯𝔢𝔰𝔲𝔩𝔱𝔰","queryNoResults":"𝔜𝔬𝔲𝔯 𝔰𝔢𝔞𝔯𝔠𝔥 𝔮𝔲𝔢𝔯𝔶 𝔯𝔢𝔱𝔲𝔯𝔫𝔢𝔡 𝔫𝔬 𝔯𝔢𝔰𝔲𝔩𝔱𝔰. 𝔗𝔯𝔶 𝔞𝔤𝔞𝔦𝔫 𝔴𝔦𝔱𝔥 𝔞 𝔟𝔯𝔬𝔞𝔡𝔢𝔯 𝔰𝔢𝔞𝔯𝔠𝔥 𝔮𝔲𝔢𝔯𝔶.","welcome":"𝔚𝔢𝔩𝔠𝔬𝔪𝔢 𝔱𝔬 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡!","verify1":"𝔑𝔬𝔱𝔢 𝔱𝔥𝔞𝔱 𝔠𝔲𝔯𝔯𝔢𝔫𝔱𝔩𝔶 𝔶𝔬𝔲𝔯 𝔞𝔠𝔠𝔬𝔲𝔫𝔱 𝔦𝔰 𝔫𝔬𝔱 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔱𝔬 𝔲𝔭𝔩𝔬𝔞𝔡. 𝔜𝔬𝔲 𝔠𝔞𝔫 𝔰𝔢𝔞𝔯𝔠𝔥 𝔱𝔥𝔯𝔬𝔲𝔤𝔥 𝔱𝔥𝔢 𝔭𝔲𝔟𝔩𝔦𝔠 𝔯𝔢𝔭𝔬𝔰𝔦𝔱𝔬𝔯𝔶, 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔶𝔬𝔲\'𝔯𝔢 𝔦𝔫𝔱𝔢𝔯𝔢𝔰𝔱𝔢𝔡 𝔦𝔫 𝔦𝔫𝔱𝔬 𝔭𝔯𝔬𝔧𝔢𝔠𝔱𝔰, 𝔩𝔢𝔞𝔳𝔢 𝔭𝔯𝔦𝔳𝔞𝔱𝔢 𝔫𝔬𝔱𝔢𝔰, 𝔞𝔫𝔡 𝔠𝔬𝔩𝔩𝔞𝔟𝔬𝔯𝔞𝔱𝔢 𝔬𝔫 𝔢𝔡𝔦𝔱𝔦𝔫𝔤 𝔞𝔫𝔡 𝔞𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔫𝔤 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔬𝔱𝔥𝔢𝔯 𝔲𝔰𝔢𝔯𝔰 𝔦𝔫𝔳𝔦𝔱𝔢 𝔶𝔬𝔲 𝔱𝔬.","verify2":"ℑ𝔣 𝔶𝔬𝔲’𝔡 𝔩𝔦𝔨𝔢 𝔱𝔬 𝔲𝔭𝔩𝔬𝔞𝔡 𝔬𝔯 𝔭𝔲𝔟𝔩𝔦𝔰𝔥 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔞𝔫𝔡 𝔶𝔬𝔲\'𝔯𝔢 𝔞 𝔴𝔬𝔯𝔨𝔦𝔫𝔤 𝔧𝔬𝔲𝔯𝔫𝔞𝔩𝔦𝔰𝔱 𝔬𝔯 𝔬𝔱𝔥𝔢𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔦𝔫𝔱𝔢𝔯𝔢𝔰𝔱𝔢𝔡 𝔦𝔫 𝔭𝔲𝔟𝔩𝔦𝔰𝔥𝔦𝔫𝔤 𝔭𝔯𝔦𝔪𝔞𝔯𝔶 𝔰𝔬𝔲𝔯𝔠𝔢 𝔪𝔞𝔱𝔢𝔯𝔦𝔞𝔩𝔰 𝔦𝔫 𝔱𝔥𝔢 𝔭𝔲𝔟𝔩𝔦𝔠 𝔦𝔫𝔱𝔢𝔯𝔢𝔰𝔱, 𝔶𝔬𝔲\'𝔩𝔩 𝔫𝔢𝔢𝔡 𝔱𝔬 𝔥𝔞𝔳𝔢 𝔶𝔬𝔲𝔯 𝔞𝔠𝔠𝔬𝔲𝔫𝔱 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔬𝔯 𝔞𝔡𝔡𝔢𝔡 𝔱𝔬 𝔞 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫. 𝔗𝔥𝔦𝔰 𝔦𝔰 𝔞 𝔰𝔦𝔪𝔭𝔩𝔢 𝔭𝔯𝔬𝔠𝔢𝔰𝔰:","verify3":"𝔉𝔦𝔯𝔰𝔱, 𝔰𝔢𝔢 𝔦𝔣 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔞𝔩𝔯𝔢𝔞𝔡𝔶 𝔢𝔵𝔦𝔰𝔱𝔰 𝔞𝔫𝔡, 𝔦𝔣 𝔶𝔬𝔲 𝔣𝔦𝔫𝔡 𝔦𝔱, 𝔠𝔩𝔦𝔠𝔨 \\"ℜ𝔢𝔮𝔲𝔢𝔰𝔱 𝔱𝔬 𝔍𝔬𝔦𝔫\\" 𝔬𝔫 𝔦𝔱𝔰 𝔭𝔞𝔤𝔢.","verify4":"ℑ𝔣 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫 𝔥𝔞𝔰 𝔫𝔬𝔱 𝔟𝔢𝔢𝔫 𝔳𝔢𝔯𝔦𝔣𝔦𝔢𝔡 𝔶𝔢𝔱, 𝔬𝔯 𝔦𝔣 𝔶𝔬𝔲\'𝔯𝔢 𝔞 𝔣𝔯𝔢𝔢𝔩𝔞𝔫𝔠𝔢𝔯, 𝔯𝔢𝔮𝔲𝔢𝔰𝔱 𝔳𝔢𝔯𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫 𝔥𝔢𝔯𝔢. ℜ𝔢𝔮𝔲𝔢𝔰𝔱𝔰 𝔲𝔰𝔲𝔞𝔩𝔩𝔶 𝔱𝔞𝔨𝔢 𝔱𝔴𝔬 𝔟𝔲𝔰𝔦𝔫𝔢𝔰𝔰 𝔡𝔞𝔶𝔰 𝔱𝔬 𝔭𝔯𝔬𝔠𝔢𝔰𝔰.","uploadFirst":"𝔘𝔭𝔩𝔬𝔞𝔡 𝔶𝔬𝔲𝔯 𝔣𝔦𝔯𝔰𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","upload1":"𝔘𝔭𝔩𝔬𝔞𝔡 𝔞 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔣𝔦𝔩𝔢 𝔱𝔬 𝔤𝔢𝔱 𝔰𝔱𝔞𝔯𝔱𝔢𝔡 𝔲𝔰𝔦𝔫𝔤 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡. 𝔜𝔬𝔲 𝔠𝔞𝔫 𝔡𝔯𝔞𝔤 𝔱𝔥𝔢 𝔣𝔦𝔩𝔢 𝔦𝔫𝔱𝔬 𝔱𝔥𝔦𝔰 𝔴𝔦𝔫𝔡𝔬𝔴, 𝔬𝔯 𝔠𝔩𝔦𝔠𝔨 𝔬𝔫 𝔱𝔥𝔢 𝔟𝔩𝔲𝔢 “𝔘𝔭𝔩𝔬𝔞𝔡” 𝔟𝔲𝔱𝔱𝔬𝔫 𝔞𝔟𝔬𝔳𝔢.","upload2":"𝔒𝔫𝔠𝔢 𝔶𝔬𝔲 𝔲𝔭𝔩𝔬𝔞𝔡 𝔞 𝔣𝔦𝔩𝔢, 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔴𝔦𝔩𝔩 𝔭𝔯𝔬𝔠𝔢𝔰𝔰 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔞𝔫𝔡 𝔢𝔵𝔱𝔯𝔞𝔠𝔱 𝔦𝔱𝔰 𝔠𝔬𝔫𝔱𝔢𝔫𝔱𝔰. ℑ𝔱 𝔪𝔞𝔶 𝔱𝔞𝔨𝔢 𝔞 𝔣𝔢𝔴 𝔪𝔦𝔫𝔲𝔱𝔢𝔰 𝔣𝔬𝔯 𝔱𝔥𝔦𝔰 𝔱𝔬 𝔠𝔬𝔪𝔭𝔩𝔢𝔱𝔢, 𝔟𝔲𝔱 𝔬𝔫𝔠𝔢 𝔦𝔱’𝔰 𝔡𝔬𝔫𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔬𝔭𝔱𝔦𝔪𝔦𝔷𝔢𝔡 𝔣𝔬𝔯 𝔞𝔫𝔞𝔩𝔶𝔰𝔦𝔰 𝔞𝔫𝔡 𝔰𝔥𝔞𝔯𝔦𝔫𝔤 𝔬𝔫 𝔱𝔥𝔢 𝔴𝔢𝔟."},"paginator":{"of":"𝔬𝔣","document":"{n, plural, one {𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}"},"processingBar":{"doneProcessing":"𝔇𝔬𝔫𝔢 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤","processingDocuments":"𝔓𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤 {n, plural, one {𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱} other {# 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰}}"},"searchBar":{"tips":"𝔖𝔢𝔞𝔯𝔠𝔥 𝔱𝔦𝔭𝔰: 𝔞𝔡𝔡 𝔣𝔦𝔩𝔱𝔢𝔯𝔰 𝔟𝔶 𝔱𝔶𝔭𝔦𝔫𝔤 𝔲𝔰𝔢𝔯:, 𝔭𝔯𝔬𝔧𝔢𝔠𝔱:, 𝔬𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫:, 𝔢𝔱𝔠. 𝔘𝔰𝔢 𝔰𝔬𝔯𝔱: 𝔱𝔬 𝔬𝔯𝔡𝔢𝔯 𝔯𝔢𝔰𝔲𝔩𝔱𝔰.","learnMore":"𝔏𝔢𝔞𝔯𝔫 𝔪𝔬𝔯𝔢","search":"𝔖𝔢𝔞𝔯𝔠𝔥"},"searchLink":{"search":"𝔖𝔢𝔞𝔯𝔠𝔥 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔠𝔬𝔩𝔩𝔢𝔠𝔱𝔦𝔬𝔫"},"projects":{"header":"𝔓𝔯𝔬𝔧𝔢𝔠𝔱𝔰","allDocuments":"𝔄𝔩𝔩 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","yourDocuments":"𝔜𝔬𝔲𝔯 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","yourPubDocuments":"𝔜𝔬𝔲𝔯 𝔓𝔲𝔟𝔩𝔦𝔠 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","orgDocuments":"{name}’𝔰 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰","newProject":"+ 𝔑𝔢𝔴 𝔓𝔯𝔬𝔧𝔢𝔠𝔱","createProject":"ℭ𝔯𝔢𝔞𝔱𝔢 𝔶𝔬𝔲𝔯 𝔣𝔦𝔯𝔰𝔱 𝔭𝔯𝔬𝔧𝔢𝔠𝔱 𝔟𝔶 𝔠𝔩𝔦𝔠𝔨𝔦𝔫𝔤 “𝔑𝔢𝔴 𝔓𝔯𝔬𝔧𝔢𝔠𝔱” 𝔞𝔟𝔬𝔳𝔢."},"uploadDialog":{"docUpload":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔘𝔭𝔩𝔬𝔞𝔡","docUploadProj":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔘𝔭𝔩𝔬𝔞𝔡 𝔱𝔬 {title}","beginUpload":"𝔅𝔢𝔤𝔦𝔫 𝔲𝔭𝔩𝔬𝔞𝔡","pdfSizeWarning":"𝔜𝔬𝔲 𝔠𝔞𝔫 𝔬𝔫𝔩𝔶 𝔲𝔭𝔩𝔬𝔞𝔡 𝔓𝔇𝔉 𝔣𝔦𝔩𝔢𝔰 𝔲𝔫𝔡𝔢𝔯 {size}.","nonPdfSizeWarning":"𝔜𝔬𝔲 𝔠𝔞𝔫 𝔬𝔫𝔩𝔶 𝔲𝔭𝔩𝔬𝔞𝔡 𝔫𝔬𝔫-𝔓𝔇𝔉 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔣𝔦𝔩𝔢𝔰 𝔲𝔫𝔡𝔢𝔯 {size}.","fileReady":"{n, plural, one {𝔣𝔦𝔩𝔢} other {𝔣𝔦𝔩𝔢𝔰}} 𝔯𝔢𝔞𝔡𝔶 𝔱𝔬 𝔲𝔭𝔩𝔬𝔞𝔡","fileLimitWarning":"𝔜𝔬𝔲 𝔠𝔞𝔫 𝔬𝔫𝔩𝔶 𝔲𝔭𝔩𝔬𝔞𝔡 {limit} 𝔣𝔦𝔩𝔢𝔰 𝔞𝔱 𝔬𝔫𝔠𝔢.","moreOptions":"𝔐𝔬𝔯𝔢 𝔬𝔭𝔱𝔦𝔬𝔫𝔰","selectFiles":"+ 𝔖𝔢𝔩𝔢𝔠𝔱 𝔣𝔦𝔩𝔢𝔰","dragDrop":"𝔇𝔯𝔞𝔤 𝔞𝔫𝔡 𝔡𝔯𝔬𝔭 𝔣𝔦𝔩𝔢𝔰 𝔥𝔢𝔯𝔢","publicMsg":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔭𝔲𝔟𝔩𝔦𝔠𝔩𝔶 𝔳𝔦𝔰𝔦𝔟𝔩𝔢.","collabMsg":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔶𝔬𝔲𝔯 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫.","privateMsg":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔶𝔬𝔲 𝔞𝔩𝔬𝔫𝔢.","collabName":"𝔒𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","submitting":"𝔄𝔩𝔪𝔬𝔰𝔱 𝔡𝔬𝔫𝔢... 𝔰𝔲𝔟𝔪𝔦𝔱𝔱𝔦𝔫𝔤 𝔲𝔭𝔩𝔬𝔞𝔡𝔢𝔡 𝔣𝔦𝔩𝔢𝔰 𝔣𝔬𝔯 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤 ({percent})","uploading":"𝔘𝔭𝔩𝔬𝔞𝔡𝔦𝔫𝔤 ... ({uploaded}/{length})","gettingInfo":"𝔊𝔢𝔱𝔱𝔦𝔫𝔤 𝔲𝔭𝔩𝔬𝔞𝔡 𝔦𝔫𝔣𝔬𝔯𝔪𝔞𝔱𝔦𝔬𝔫 ({percent})","pleaseLeaveOpen":"𝔓𝔩𝔢𝔞𝔰𝔢 𝔩𝔢𝔞𝔳𝔢 𝔱𝔥𝔦𝔰 𝔭𝔞𝔤𝔢 𝔬𝔭𝔢𝔫 𝔴𝔥𝔦𝔩𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰 𝔲𝔭𝔩𝔬𝔞𝔡. 𝔗𝔥𝔦𝔰 𝔡𝔦𝔞𝔩𝔬𝔤 𝔴𝔦𝔩𝔩 𝔞𝔲𝔱𝔬𝔪𝔞𝔱𝔦𝔠𝔞𝔩𝔩𝔶 𝔠𝔩𝔬𝔰𝔢 𝔴𝔥𝔢𝔫 𝔱𝔥𝔢𝔶 𝔥𝔞𝔳𝔢 𝔣𝔦𝔫𝔦𝔰𝔥𝔢𝔡 𝔲𝔭𝔩𝔬𝔞𝔡𝔦𝔫𝔤.","errorHeading":"𝔈𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡 𝔴𝔥𝔦𝔩𝔢 𝔲𝔭𝔩𝔬𝔞𝔡𝔦𝔫𝔤","errorMsg":"𝔚𝔢 𝔣𝔞𝔦𝔩𝔢𝔡 𝔱𝔬 {errorMessage}. 𝔓𝔩𝔢𝔞𝔰𝔢 𝔱𝔯𝔶 𝔞𝔤𝔞𝔦𝔫 𝔩𝔞𝔱𝔢𝔯.","editDocInfo":"𝔈𝔡𝔦𝔱 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔫𝔣𝔬𝔯𝔪𝔞𝔱𝔦𝔬𝔫:","untitled":"𝔘𝔫𝔱𝔦𝔱𝔩𝔢𝔡","uploadFiles":"𝔘𝔭𝔩𝔬𝔞𝔡 𝔞𝔡𝔡𝔦𝔱𝔦𝔬𝔫𝔞𝔩 𝔣𝔦𝔩𝔢𝔰","selectMore":"+ 𝔖𝔢𝔩𝔢𝔠𝔱 𝔪𝔬𝔯𝔢 𝔣𝔦𝔩𝔢𝔰","dragDropMore":"𝔇𝔯𝔞𝔤 𝔞𝔫𝔡 𝔡𝔯𝔬𝔭 𝔞𝔡𝔡𝔦𝔱𝔦𝔬𝔫𝔞𝔩 𝔣𝔦𝔩𝔢𝔰 𝔥𝔢𝔯𝔢"},"embedNote":{"viewTheNote":"𝔙𝔦𝔢𝔴 𝔱𝔥𝔢 𝔫𝔬𝔱𝔢 ‘{title}‘ 𝔦𝔫 𝔦𝔱𝔰 𝔬𝔯𝔦𝔤𝔦𝔫𝔞𝔩 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔠𝔬𝔫𝔱𝔢𝔵𝔱 𝔬𝔫 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔦𝔫 𝔞 𝔫𝔢𝔴 𝔴𝔦𝔫𝔡𝔬𝔴 𝔬𝔯 𝔱𝔞𝔟","viewDoc":"𝔙𝔦𝔢𝔴 𝔱𝔥𝔢 𝔢𝔫𝔱𝔦𝔯𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔱𝔥 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡"},"embedPage":{"viewDoc":"𝔙𝔦𝔢𝔴 𝔢𝔫𝔱𝔦𝔯𝔢 {title} 𝔬𝔫 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔦𝔫 𝔫𝔢𝔴 𝔴𝔦𝔫𝔡𝔬𝔴 𝔬𝔯 𝔱𝔞𝔟","pageOf":"𝔓𝔞𝔤𝔢 {page} 𝔬𝔣 {title}","gotoDocCloud":"𝔊𝔬 𝔱𝔬 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔦𝔫 𝔫𝔢𝔴 𝔴𝔦𝔫𝔡𝔬𝔴 𝔬𝔯 𝔱𝔞𝔟"},"entities":{"back":"𝔅𝔞𝔠𝔨","page":"𝔓𝔞𝔤𝔢","of":"𝔬𝔣","totalEntityResult":"{n, plural, one {# 𝔱𝔬𝔱𝔞𝔩 𝔢𝔫𝔱𝔦𝔱𝔶 𝔯𝔢𝔰𝔲𝔩𝔱} other {# 𝔱𝔬𝔱𝔞𝔩 𝔢𝔫𝔱𝔦𝔱𝔶 𝔯𝔢𝔰𝔲𝔩𝔱𝔰}} ","filter":"𝔉𝔦𝔩𝔱𝔢𝔯","applyFilters":"𝔄𝔭𝔭𝔩𝔶 𝔣𝔦𝔩𝔱𝔢𝔯𝔰","kind":"𝔎𝔦𝔫𝔡","clear":"ℭ𝔩𝔢𝔞𝔯","person":"𝔓𝔢𝔯𝔰𝔬𝔫","org":"𝔒𝔯𝔤𝔞𝔫𝔦𝔷𝔞𝔱𝔦𝔬𝔫","location":"𝔏𝔬𝔠𝔞𝔱𝔦𝔬𝔫","event":"𝔈𝔳𝔢𝔫𝔱","workOfArt":"𝔚𝔬𝔯𝔨 𝔬𝔣 𝔄𝔯𝔱","consumerGood":"ℭ𝔬𝔫𝔰𝔲𝔪𝔢𝔯 𝔊𝔬𝔬𝔡","address":"𝔄𝔡𝔡𝔯𝔢𝔰𝔰","date":"𝔇𝔞𝔱𝔢","number":"𝔑𝔲𝔪𝔟𝔢𝔯","phoneNumber":"𝔓𝔥𝔬𝔫𝔢 𝔑𝔲𝔪𝔟𝔢𝔯","price":"𝔓𝔯𝔦𝔠𝔢","unknown":"𝔘𝔫𝔨𝔫𝔬𝔴𝔫","other":"𝔒𝔱𝔥𝔢𝔯","occurrences":"𝔒𝔠𝔠𝔲𝔯𝔯𝔢𝔫𝔠𝔢𝔰","proper":"𝔓𝔯𝔬𝔭𝔢𝔯","common":"ℭ𝔬𝔪𝔪𝔬𝔫","advanced":"𝔄𝔡𝔳𝔞𝔫𝔠𝔢𝔡","relevanceThreshold":"ℜ𝔢𝔩𝔢𝔳𝔞𝔫𝔠𝔢 𝔱𝔥𝔯𝔢𝔰𝔥𝔬𝔩𝔡:","knowledgeGraph":"𝔎𝔫𝔬𝔴𝔩𝔢𝔡𝔤𝔢 𝔤𝔯𝔞𝔭𝔥:","hasKG":"ℌ𝔞𝔰 𝔞 𝔨𝔫𝔬𝔴𝔩𝔢𝔡𝔤𝔢 𝔤𝔯𝔞𝔭𝔥 ℑ𝔇","noKG":"𝔇𝔬𝔢𝔰 𝔫𝔬𝔱 𝔥𝔞𝔳𝔢 𝔞 𝔨𝔫𝔬𝔴𝔩𝔢𝔡𝔤𝔢 𝔤𝔯𝔞𝔭𝔥 ℑ𝔇","wikiUrl":"𝔚𝔦𝔨𝔦𝔭𝔢𝔡𝔦𝔞 𝔘ℜ𝔏:","hasWiki":"ℌ𝔞𝔰 𝔞 𝔚𝔦𝔨𝔦𝔭𝔢𝔡𝔦𝔞 𝔘ℜ𝔏","noWiki":"𝔇𝔬𝔢𝔰 𝔫𝔬𝔱 𝔥𝔞𝔳𝔢 𝔞 𝔚𝔦𝔨𝔦𝔭𝔢𝔡𝔦𝔞 𝔘ℜ𝔏","occurrence":"{n, plural, zero {} one {# 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔫𝔠𝔢} other {# 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔫𝔠𝔢𝔰}}","wikipedia":"𝔚𝔦𝔨𝔦𝔭𝔢𝔡𝔦𝔞","entityExtraction":"𝔈𝔫𝔱𝔦𝔱𝔶 𝔢𝔵𝔱𝔯𝔞𝔠𝔱𝔦𝔬𝔫 𝔣𝔬𝔯 “{title}”","extractingEntities":"𝔈𝔵𝔱𝔯𝔞𝔠𝔱𝔦𝔫𝔤 𝔢𝔫𝔱𝔦𝔱𝔦𝔢𝔰...","welcome":"𝔚𝔢𝔩𝔠𝔬𝔪𝔢 𝔱𝔬 𝔢𝔫𝔱𝔦𝔱𝔶 𝔢𝔵𝔱𝔯𝔞𝔠𝔱𝔦𝔬𝔫! 𝔗𝔥𝔦𝔰 𝔣𝔢𝔞𝔱𝔲𝔯𝔢 𝔦𝔰 𝔳𝔢𝔯𝔶 𝔪𝔲𝔠𝔥 𝔦𝔫 𝔭𝔯𝔬𝔤𝔯𝔢𝔰𝔰 𝔟𝔲𝔱 𝔴𝔢 𝔴𝔞𝔫𝔱 𝔦𝔱 𝔦𝔫 𝔶𝔬𝔲𝔯 𝔥𝔞𝔫𝔡𝔰 𝔢𝔞𝔯𝔩𝔶 𝔱𝔬 𝔴𝔢𝔩𝔠𝔬𝔪𝔢 𝔞𝔫𝔶 𝔣𝔢𝔢𝔡𝔟𝔞𝔠𝔨 𝔶𝔬𝔲 𝔪𝔦𝔤𝔥𝔱 𝔥𝔞𝔳𝔢.","manual":"ℜ𝔦𝔤𝔥𝔱 𝔫𝔬𝔴 𝔱𝔥𝔢 𝔭𝔯𝔬𝔠𝔢𝔰𝔰 𝔣𝔬𝔯 𝔢𝔵𝔱𝔯𝔞𝔠𝔱𝔦𝔫𝔤 𝔢𝔫𝔱𝔦𝔱𝔦𝔢𝔰 𝔦𝔰 𝔪𝔞𝔫𝔲𝔞𝔩. 𝔗𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔥𝔞𝔰 𝔫𝔬𝔱 𝔥𝔞𝔡 𝔢𝔫𝔱𝔦𝔱𝔦𝔢𝔰 𝔢𝔵𝔱𝔯𝔞𝔠𝔱𝔢𝔡 𝔶𝔢𝔱, 𝔰𝔬 𝔠𝔩𝔦𝔠𝔨 𝔟𝔢𝔩𝔬𝔴 𝔱𝔬 𝔤𝔢𝔱 𝔰𝔱𝔞𝔯𝔱𝔢𝔡.","error":"𝔄𝔫 𝔲𝔫𝔢𝔵𝔭𝔢𝔠𝔱𝔢𝔡 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡","extract":"𝔈𝔵𝔱𝔯𝔞𝔠𝔱 𝔢𝔫𝔱𝔦𝔱𝔦𝔢𝔰","noEntities":"𝔗𝔥𝔢𝔯𝔢 𝔞𝔯𝔢 𝔫𝔬 𝔢𝔫𝔱𝔦𝔱𝔦𝔢𝔰. 𝔗𝔥𝔦𝔰 𝔠𝔬𝔲𝔩𝔡 𝔥𝔞𝔭𝔭𝔢𝔫 𝔦𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔡𝔬𝔢𝔰𝔫’𝔱 𝔥𝔞𝔳𝔢 𝔱𝔢𝔵𝔱, 𝔦𝔰 𝔫𝔬𝔫-𝔈𝔫𝔤𝔩𝔦𝔰𝔥 (𝔬𝔫𝔩𝔶 𝔈𝔫𝔤𝔩𝔦𝔰𝔥 𝔦𝔰 𝔰𝔲𝔭𝔭𝔬𝔯𝔱𝔢𝔡 𝔣𝔬𝔯 𝔫𝔬𝔴), 𝔬𝔯 𝔰𝔬𝔪𝔢 𝔢𝔯𝔯𝔬𝔯 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔡.","starting":"𝔖𝔱𝔞𝔯𝔱𝔦𝔫𝔤 𝔢𝔵𝔱𝔞𝔠𝔱𝔦𝔬𝔫..."},"home":{"about":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱ℭ𝔩𝔬𝔲𝔡 𝔦𝔰 𝔞𝔫 𝔞𝔩𝔩-𝔦𝔫-𝔬𝔫𝔢 𝔭𝔩𝔞𝔱𝔣𝔬𝔯𝔪 𝔣𝔬𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰: 𝔲𝔭𝔩𝔬𝔞𝔡, 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔢, 𝔞𝔫𝔞𝔩𝔶𝔷𝔢, 𝔞𝔫𝔫𝔬𝔱𝔞𝔱𝔢, 𝔰𝔢𝔞𝔯𝔠𝔥, 𝔞𝔫𝔡 𝔢𝔪𝔟𝔢𝔡.","viewPublicDocs":"𝔙𝔦𝔢𝔴 𝔭𝔲𝔟𝔩𝔦𝔠 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱𝔰"},"annotation":{"title":"𝔄𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔬𝔫 𝔗𝔦𝔱𝔩𝔢","description":"𝔄𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔬𝔫 𝔇𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫 (𝔬𝔭𝔱𝔦𝔬𝔫𝔞𝔩)","unchanged":"𝔑𝔬𝔱𝔢 𝔯𝔢𝔪𝔞𝔦𝔫𝔰 𝔲𝔫𝔠𝔥𝔞𝔫𝔤𝔢𝔡","noTitle":"𝔈𝔫𝔱𝔢𝔯 𝔞 𝔱𝔦𝔱𝔩𝔢 𝔣𝔬𝔯 𝔱𝔥𝔢 𝔞𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔬𝔫","org":"𝔗𝔥𝔦𝔰 𝔫𝔬𝔱𝔢 𝔦𝔰 𝔬𝔫𝔩𝔶 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔶𝔬𝔲 𝔞𝔫𝔡 𝔬𝔱𝔥𝔢𝔯𝔰 𝔴𝔦𝔱𝔥 𝔢𝔡𝔦𝔱 𝔞𝔠𝔠𝔢𝔰𝔰 𝔱𝔬 𝔱𝔥𝔦𝔰 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","private":"𝔗𝔥𝔦𝔰 𝔭𝔯𝔦𝔳𝔞𝔱𝔢 𝔫𝔬𝔱𝔢 𝔦𝔰 𝔬𝔫𝔩𝔶 𝔳𝔦𝔰𝔦𝔟𝔩𝔢 𝔱𝔬 𝔶𝔬𝔲","by":"𝔄𝔫𝔫𝔬𝔱𝔞𝔱𝔢𝔡 𝔟𝔶 {name}","byOrg":"𝔄𝔫𝔫𝔬𝔱𝔞𝔱𝔢𝔡 𝔟𝔶 {name}, {org}","addPageNote":"𝔄𝔡𝔡 𝔭𝔞𝔤𝔢 𝔫𝔬𝔱𝔢"},"viewDropdown":{"document":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱","plainText":"𝔓𝔩𝔞𝔦𝔫 𝔗𝔢𝔵𝔱","thumbnail":"𝔗𝔥𝔲𝔪𝔟𝔫𝔞𝔦𝔩","notes":"𝔑𝔬𝔱𝔢𝔰","search":"𝔖𝔢𝔞𝔯𝔠𝔥 ℜ𝔢𝔰𝔲𝔩𝔱𝔰"},"zoom":{"fitWidth":"𝔉𝔦𝔱 𝔴𝔦𝔡𝔱𝔥","fitHeight":"𝔉𝔦𝔱 𝔥𝔢𝔦𝔤𝔥𝔱"},"titleHeader":{"contributedBy":"ℭ𝔬𝔫𝔱𝔯𝔦𝔟𝔲𝔱𝔢𝔡 𝔟𝔶 {name}"},"annotatePane":{"annotateDocument":"𝔄𝔫𝔫𝔬𝔱𝔞𝔱𝔢 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱","desc":"ℌ𝔦𝔤𝔥𝔩𝔦𝔤𝔥𝔱 𝔞 𝔭𝔬𝔯𝔱𝔦𝔬𝔫 𝔬𝔣 𝔱𝔥𝔢 𝔭𝔞𝔤𝔢, 𝔬𝔯 𝔠𝔩𝔦𝔠𝔨 𝔟𝔢𝔱𝔴𝔢𝔢𝔫 𝔭𝔞𝔤𝔢𝔰 𝔱𝔬 𝔠𝔯𝔢𝔞𝔱𝔢 𝔞 𝔫𝔬𝔱𝔢."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝔓𝔞𝔤𝔢} other {# 𝔓𝔞𝔤𝔢𝔰}} 𝔖𝔢𝔩𝔢𝔠𝔱𝔢𝔡","applyModifications":"𝔄𝔭𝔭𝔩𝔶 𝔐𝔬𝔡𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫𝔰","duplicate":"𝔇𝔲𝔭𝔩𝔦𝔠𝔞𝔱𝔢","move":"𝔐𝔬𝔳𝔢","unselect":"𝔘𝔫𝔰𝔢𝔩𝔢𝔠𝔱","remove":"ℜ𝔢𝔪𝔬𝔳𝔢","insertPages":"ℑ𝔫𝔰𝔢𝔯𝔱 {n, plural, one {# 𝔓𝔞𝔤𝔢} other {# 𝔓𝔞𝔤𝔢𝔰}}","pagesPending":"{n, plural, one {# 𝔓𝔞𝔤𝔢} other {# 𝔓𝔞𝔤𝔢𝔰}} 𝔓𝔢𝔫𝔡𝔦𝔫𝔤 ℑ𝔫𝔰𝔢𝔯𝔱𝔦𝔬𝔫","insertBegin":"ℑ𝔫𝔰𝔢𝔯𝔱 {n, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}} 𝔞𝔱 𝔟𝔢𝔤𝔦𝔫𝔫𝔦𝔫𝔤.","insertEnd":"ℑ𝔫𝔰𝔢𝔯𝔱 {n, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}} 𝔞𝔱 𝔢𝔫𝔡.","insertBetween":"ℑ𝔫𝔰𝔢𝔯𝔱 {n, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}} 𝔦𝔫 𝔟𝔢𝔱𝔴𝔢𝔢𝔫 𝔭𝔞𝔤𝔢 {p0} 𝔞𝔫𝔡 {p1}.","click":"ℭ𝔩𝔦𝔠𝔨 𝔦𝔫-𝔟𝔢𝔱𝔴𝔢𝔢𝔫 𝔭𝔞𝔤𝔢𝔰 𝔟𝔢𝔩𝔬𝔴 𝔱𝔬 𝔪𝔞𝔯𝔨 𝔴𝔥𝔢𝔯𝔢 𝔱𝔬 𝔭𝔞𝔰𝔱𝔢 {n, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}}.","insert":"ℑ𝔫𝔰𝔢𝔯𝔱","insertAtEnd":"ℑ𝔫𝔰𝔢𝔯𝔱 𝔞𝔱 𝔢𝔫𝔡","insertPosition":"ℑ𝔫𝔰𝔢𝔯𝔱 𝔭𝔞𝔤𝔢𝔰 𝔞𝔱 𝔭𝔬𝔰𝔦𝔱𝔦𝔬𝔫","insertOtherDoc":"ℑ𝔫𝔰𝔢𝔯𝔱 𝔣𝔯𝔬𝔪 𝔬𝔱𝔥𝔢𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱","modifyPages":"𝔐𝔬𝔡𝔦𝔣𝔶 𝔓𝔞𝔤𝔢𝔰","select":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔭𝔞𝔤𝔢𝔰 𝔟𝔢𝔩𝔬𝔴 𝔱𝔬 𝔞𝔭𝔭𝔩𝔶 𝔪𝔬𝔡𝔦𝔣𝔦𝔠𝔞𝔱𝔦𝔬𝔫𝔰 (𝔭𝔞𝔤𝔢 𝔯𝔬𝔱𝔞𝔱𝔦𝔬𝔫, 𝔯𝔢𝔞𝔯𝔯𝔞𝔫𝔤𝔦𝔫𝔤, 𝔞𝔫𝔡 𝔡𝔢𝔩𝔢𝔱𝔦𝔬𝔫). ℭ𝔩𝔦𝔠𝔨 𝔦𝔫-𝔟𝔢𝔱𝔴𝔢𝔢𝔫 𝔭𝔞𝔤𝔢𝔰 𝔱𝔬 𝔦𝔫𝔰𝔢𝔯𝔱.","undo":"𝔘𝔫𝔡𝔬","redo":"ℜ𝔢𝔡𝔬"},"redactPane":{"redactDoc":"ℜ𝔢𝔡𝔞𝔠𝔱 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱","desc":"ℭ𝔩𝔦𝔠𝔨 𝔞𝔫𝔡 𝔡𝔯𝔞𝔤 𝔱𝔬 𝔡𝔯𝔞𝔴 𝔞 𝔟𝔩𝔞𝔠𝔨 𝔯𝔢𝔠𝔱𝔞𝔫𝔤𝔩𝔢 𝔬𝔳𝔢𝔯 𝔢𝔞𝔠𝔥 𝔭𝔬𝔯𝔱𝔦𝔬𝔫 𝔬𝔣 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔶𝔬𝔲’𝔡 𝔩𝔦𝔨𝔢 𝔱𝔬 𝔯𝔢𝔡𝔞𝔠𝔱. 𝔄𝔰𝔰𝔬𝔠𝔦𝔞𝔱𝔢𝔡 𝔱𝔢𝔵𝔱 𝔴𝔦𝔩𝔩 𝔟𝔢 𝔯𝔢𝔪𝔬𝔳𝔢𝔡 𝔴𝔥𝔢𝔫 𝔶𝔬𝔲 𝔰𝔞𝔳𝔢 𝔶𝔬𝔲𝔯 𝔯𝔢𝔡𝔞𝔠𝔱𝔦𝔬𝔫𝔰.","confirm":"ℭ𝔬𝔫𝔣𝔦𝔯𝔪 ℜ𝔢𝔡𝔞𝔠𝔱𝔦𝔬𝔫𝔰","undo":"𝔘𝔫𝔡𝔬"},"searchPane":{"yourQuery":"𝔜𝔬𝔲𝔯 𝔮𝔲𝔢𝔯𝔶 {search} 𝔴𝔞𝔰 𝔣𝔬𝔲𝔫𝔡 𝔬𝔫 {n, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}}"},"selectNotePane":{"selectNote":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔞 𝔫𝔬𝔱𝔢","desc":"𝔖𝔢𝔩𝔢𝔠𝔱 𝔱𝔥𝔢 𝔞𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔬𝔫 𝔱𝔥𝔞𝔱 𝔶𝔬𝔲 𝔴𝔞𝔫𝔱 𝔱𝔬 𝔰𝔥𝔞𝔯𝔢."},"searchResults":{"resultPages":"{results, plural, one {# 𝔯𝔢𝔰𝔲𝔩𝔱} other {# 𝔯𝔢𝔰𝔲𝔩𝔱𝔰}} 𝔞𝔠𝔯𝔬𝔰𝔰 {pages, plural, one {# 𝔭𝔞𝔤𝔢} other {# 𝔭𝔞𝔤𝔢𝔰}}","noSearchResults":"𝔑𝔬 𝔰𝔢𝔞𝔯𝔠𝔥 𝔯𝔢𝔰𝔲𝔩𝔱𝔰. 𝔗𝔯𝔶 𝔞𝔤𝔞𝔦𝔫 𝔴𝔦𝔱𝔥 𝔞 𝔟𝔯𝔬𝔞𝔡𝔢𝔯 𝔮𝔲𝔢𝔯𝔶.","occurrences":"{n, plural, one {# 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔫𝔠𝔢} other {# 𝔬𝔠𝔠𝔲𝔯𝔯𝔢𝔫𝔠𝔢𝔰}}"},"sidebar":{"updating":"𝔘𝔭𝔡𝔞𝔱𝔦𝔫𝔤 𝔡𝔬𝔠𝔲𝔠𝔪𝔢𝔫𝔱...","original":"𝔒𝔯𝔦𝔤𝔦𝔫𝔞𝔩 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 (𝔓𝔇𝔉) »","related":"ℜ𝔢𝔩𝔞𝔱𝔢𝔡 𝔄𝔯𝔱𝔦𝔠𝔩𝔢 »","contributed":"ℭ𝔬𝔫𝔱𝔯𝔦𝔟𝔲𝔱𝔢𝔡 𝔟𝔶 {name}","source":"𝔖𝔬𝔲𝔯𝔠𝔢: {source}","actions":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔄𝔠𝔱𝔦𝔬𝔫𝔰","share":"𝔖𝔥𝔞𝔯𝔢","shareDesc":"ℭ𝔯𝔢𝔞𝔱𝔢 𝔞𝔫 𝔢𝔪𝔟𝔢𝔡 𝔬𝔯 𝔰𝔥𝔞𝔯𝔢 𝔬𝔫 𝔰𝔬𝔠𝔦𝔞𝔩 𝔪𝔢𝔡𝔦𝔞.","annotate":"𝔄𝔫𝔫𝔬𝔱𝔞𝔱𝔢","annotateDesc":"𝔐𝔞𝔨𝔢 𝔞𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔬𝔫𝔰 𝔱𝔬 𝔨𝔢𝔢𝔭 𝔫𝔬𝔱𝔢𝔰 𝔬𝔫 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱.","redact":"ℜ𝔢𝔡𝔞𝔠𝔱","redactDesc":"ℭ𝔯𝔢𝔞𝔱𝔢 𝔯𝔢𝔡𝔞𝔠𝔱𝔦𝔬𝔫𝔰 𝔬𝔫 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔱𝔬 𝔥𝔦𝔡𝔢 𝔱𝔢𝔵𝔱. 𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔩𝔩 𝔯𝔢𝔭𝔯𝔬𝔠𝔢𝔰𝔰 𝔞𝔣𝔱𝔢𝔯𝔴𝔞𝔯𝔡𝔰.","modify":"𝔐𝔬𝔡𝔦𝔣𝔶 𝔓𝔞𝔤𝔢𝔰","modifyDesc":"ℜ𝔢𝔞𝔯𝔯𝔞𝔫𝔤𝔢, 𝔯𝔬𝔱𝔞𝔱𝔢, 𝔡𝔢𝔩𝔢𝔱𝔢, 𝔦𝔫𝔰𝔢𝔯𝔱, 𝔞𝔫𝔡 𝔰𝔭𝔩𝔦𝔱 𝔭𝔞𝔤𝔢𝔰.","info":"𝔈𝔡𝔦𝔱 𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 ℑ𝔫𝔣𝔬","infoDesc":"𝔐𝔬𝔡𝔦𝔣𝔶 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔫𝔣𝔬𝔯𝔪𝔞𝔱𝔦𝔬𝔫 𝔩𝔦𝔨𝔢 𝔡𝔢𝔰𝔠𝔯𝔦𝔭𝔱𝔦𝔬𝔫 𝔞𝔫𝔡 𝔯𝔢𝔩𝔞𝔱𝔢𝔡 𝔘ℜ𝔏.","data":"𝔈𝔡𝔦𝔱 𝔗𝔞𝔤𝔰 𝔞𝔫𝔡 𝔇𝔞𝔱𝔞","dataDesc":"𝔄𝔡𝔡 𝔱𝔞𝔤𝔰 𝔞𝔫𝔡 𝔨𝔢𝔶/𝔳𝔞𝔩𝔲𝔢 𝔭𝔞𝔦𝔯𝔰 𝔱𝔬 𝔠𝔞𝔱𝔢𝔤𝔬𝔯𝔦𝔷𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱.","sections":"𝔈𝔡𝔦𝔱 𝔖𝔢𝔠𝔱𝔦𝔬𝔫𝔰","sectionsDesc":"𝔄𝔡𝔡 𝔰𝔢𝔠𝔱𝔦𝔬𝔫𝔰 𝔱𝔬 𝔬𝔯𝔤𝔞𝔫𝔦𝔷𝔢 𝔶𝔬𝔲𝔯 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔴𝔦𝔱𝔥 𝔞 𝔱𝔞𝔟𝔩𝔢 𝔬𝔣 𝔠𝔬𝔫𝔱𝔢𝔫𝔱𝔰.","privateNote":"𝔄𝔡𝔡 𝔓𝔯𝔦𝔳𝔞𝔱𝔢 𝔑𝔬𝔱𝔢","privateNoteDesc":"𝔐𝔞𝔨𝔢 𝔞𝔫𝔫𝔬𝔱𝔞𝔱𝔦𝔬𝔫𝔰 𝔱𝔬 𝔨𝔢𝔢𝔭 𝔫𝔬𝔱𝔢𝔰 𝔬𝔫 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱."},"viewer":{"notFound":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔫𝔬𝔱 𝔣𝔬𝔲𝔫𝔡","notFoundDesc":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔶𝔬𝔲 𝔯𝔢𝔮𝔲𝔢𝔰𝔱𝔢𝔡 𝔢𝔦𝔱𝔥𝔢𝔯 𝔡𝔬𝔢𝔰 𝔫𝔬𝔱 𝔢𝔵𝔦𝔰𝔱 𝔬𝔯 𝔶𝔬𝔲 𝔩𝔞𝔠𝔨 𝔭𝔢𝔯𝔪𝔦𝔰𝔰𝔦𝔬𝔫 𝔱𝔬 𝔞𝔠𝔠𝔢𝔰𝔰 𝔦𝔱","processing":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔦𝔰 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤","processingDesc":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔶𝔬𝔲 𝔯𝔢𝔮𝔲𝔢𝔰𝔱𝔢𝔡 𝔦𝔰 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤 𝔞𝔫𝔡 𝔴𝔦𝔩𝔩 𝔞𝔲𝔱𝔬𝔪𝔞𝔱𝔦𝔠𝔞𝔩𝔩𝔶 𝔯𝔢𝔣𝔯𝔢𝔰𝔥 𝔴𝔥𝔢𝔫 𝔦𝔱 𝔦𝔰 𝔯𝔢𝔞𝔡𝔶","error":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔥𝔞𝔰 𝔢𝔫𝔠𝔬𝔲𝔫𝔱𝔢𝔯𝔢𝔡 𝔞𝔫 𝔢𝔯𝔯𝔬𝔯","errorDesc":"𝔄 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤 𝔢𝔯𝔯𝔬𝔯 𝔥𝔞𝔰 𝔟𝔢𝔢𝔫 𝔢𝔫𝔠𝔬𝔲𝔫𝔱𝔢𝔯𝔢𝔡 𝔦𝔫 𝔱𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔶𝔬𝔲 𝔯𝔢𝔮𝔲𝔢𝔰𝔱𝔢𝔡","accessible":"𝔇𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔫𝔬𝔱 𝔞𝔠𝔠𝔢𝔰𝔰𝔦𝔟𝔩𝔢","accessibleDesc":"𝔗𝔥𝔢 𝔡𝔬𝔠𝔲𝔪𝔢𝔫𝔱 𝔶𝔬𝔲 𝔯𝔢𝔮𝔲𝔢𝔰𝔱𝔢𝔡 𝔦𝔰 𝔰𝔱𝔦𝔩𝔩 𝔭𝔯𝔬𝔠𝔢𝔰𝔰𝔦𝔫𝔤 𝔬𝔯 𝔶𝔬𝔲 𝔩𝔞𝔠𝔨 𝔭𝔢𝔯𝔪𝔦𝔰𝔰𝔦𝔬𝔫 𝔱𝔬 𝔞𝔠𝔠𝔢𝔰𝔰 𝔱𝔬 𝔦𝔱"}}')}}]);
-./public/src_langs_json_en_json.6ce0ee4e36235aad8c44.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"Email address","loading":"Loading...","documentCloud":"DocumentCloud","home":"Home","new":"New","learnMore":"Learn more"},"homeTemplate":{"signedIn":"Signed in as {name}","signOut":"Sign out","signIn":"Sign in","signUp":"Sign up","goToApp":"Go to app"},"notfound":{"title":"Page not found","content":"Please try another URL"},"accessToggle":{"public":"Note will be visible to anyone with access to the document.","collaborator":"Note will be visible to anyone who can edit this document.","private":"Note will be visible to you alone.","publicName":"Public","collaboratorName":"Collaborator","privateName":"Private"},"accessIcon":{"private":"Private Access","organization":"Private to Your Organization","public":"Public Access","privateExplanation":"Only you can view this document","organizationExplanation":"Only members of your organization can view this document","publicExplanation":"Anyone can search and view this document"},"appearanceCustomizer":{"customizeAppearance":"Customize Appearance","hide":"Hide help text","show":"Show help text"},"appearanceDimension":{"responsive":"Automatic (default)","fixed":"Fixed"},"calendar":{"jan":"January","feb":"February","mar":"March","apr":"April","may":"May","jun":"June","jul":"July","aug":"August","sep":"September","oct":"October","nov":"November","dec":"December","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Cancel","cancelling":"Cancelling...","delete":"Delete","done":"Done","edit":"Edit","remove":"Remove","save":"Save","create":"Create","ok":"Ok","reset":"Reset","update":"Update","dismiss":"Dismiss","continue":"Continue","dispatch":"Dispatch","submit":"Submit"},"dialogAccessDialog":{"changeAccess":"Change access for {n, plural, one {document} other {# documents}}","selectAccess":"Select an access level for the {n, plural, one {selected document} other {# selected documents}}","public":"Public access","publicDesc":"Anyone on the internet can view the document.","verifiedHelp":"Only verified users or members of verified organizations can make uploaded documents public. If you\'re a journalist or otherwise work in publishing vetted materials to inform the public, learn more and request verification here.","privateToOrg":"You can’t change the access level to “Private to your organization” because {n, plural, one {this document is} other {one or more documents are}} associated with your individual account, not an organization. To add {n, plural, one {it} other {them}} to an organization, select {n, plural, one {it} other {them}} from the management view and click “Change Owner.” You can join or create an organization on this page.","private":"Private access","privateDesc":"Only people with explicit permission (via collaboration) have access.","organization":"Private to your organization","organizationDesc":"Only the people in your organization have access.","schedulePublication":"Schedule publication","scheduleHelp":"This document will be made public at the given date and time. Publication time is local{timezone}.","noindexTitle":"Hide from search engines and DocumentCloud search","noindexHelp":"If you enable this option, search engines like Google\'s will be told they should not index this document. Also, the document will not appear in searches from DocumentCloud for users that are not logged in.","unchanged":"Access is unchanged. Select a different access level.","future":"Must select a time in the future","change":"Change","changeNoindex":"Change visibility to search engines and DocumentCloud search for {n, plural, one {document} other {# documents}}"},"dialogCollaboratorDialog":{"confirm":"Confirm remove user","confirmMsg":"Proceeding will remove {name} from {title}. Do you wish to continue?","addCollaborators":"Add Collaborators","invite":"Put in the email of an existing DocumentCloud user below. If they don\'t have an account, have them register here for free, and then ask them to log in to DocumentCloud at least once.","admin":"Admin","view":"View","adminHelp":"Collaborators can edit this project and its documents","editHelp":"Collaborators can edit documents in this project","viewHelp":"Collaborators can view documents in this project","add":"Add","empty":"You have not yet added any collaborators to this project. Invite collaborators to grant other users access to the documents shared in this project. You can control whether collaborators have access to view/edit the project’s documents or be an admin with permissions to invite other users and edit the project itself.","manageCollaborators":"Manage Collaborators","name":"Name","access":"Access","you":"(you)"},"dialogDataDialog":{"confirm":"Confirm remove data point","removeMsg":"Proceeding will remove the {key}{value} data point from the specified documents. Do you wish to continue?","addData":"Add Data for {n, plural, one {Document} other {# Documents}}","tag":"Tag","value":"Value","key":"Key","keyValue":"Key / Value","tagInfo":"Add custom tags to categorize your documents.","eg":"e.g.","exampleTagReport":"report","exampleTagLawsuit":"lawsuit","exampleTagEmail":"email","keyValueInfo":"Add custom key / value pairs for precise categorization of your documents.","exampleKVState":"state: California","exampleKVYear":"year: 2016","exampleKVType":"type: memo","enterTag":"Enter a tag","enterKey":"Enter a key","keyInvalid":"Keys can only contain letters, numbers, underscores (_), and dashes (-)","emptyMsg":"You have not yet added any data to the specified documents. Add tags and key/value pairs to categorize and organize your documents. You can filter and search on document data to give you powerful control over document management.","manageDocumentData":"Manage Document Data","valueUnchanged":"Value remains unchanged","kvCannotBeEmpty":"Key/value cannot be empty"},"dialogReprocessDialog":{"title":"Confirm reprocess","reprocessDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to reprocess page and image text. Do you wish to continue?","reprocessSingleDoc":"Proceeding will force the document to reprocess page and image text. Do you wish to continue?","confirm":"Reprocess"},"dialogDeleteDialog":{"title":"Confirm reprocess","deleteDocs":"Proceeding will permanently delete the {n, plural, one {selected document} other {# selected documents}}. Do you wish to continue?"},"dialogCancelProcessingDialog":{"title":"Cancel processing","deleteDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to stop processing. After processing has been stopped, an error will show after which you can “Force Reprocess” or delete the {n, plural, one {document} other {documents}} using the Edit menu. Do you wish to continue?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Staff-only info for selected {n, plural, one {document} other {# documents}}","id":"ID","title":"Title","actions":"Actions","debug":"Debug","viewErrors":"View errors","viewS3":"View in S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"On (default)","respOnHelp":"Fill the width of the article container (usually works best)","respOff":"Off","respOffHelp":"The document will fit the sizes specified below","width":"Width","widthAuto":"Will fill the available space if the document is set to responsive, otherwise defaults to 700px","widthFixed":"Set a maximum width if the document is responsive, or set a fixed size if not responsive","height":"Height","heightAuto":"The height is based on the size of the document, with no maximum size. If responsive, will be set to the height of the browser window minus 100px","heightFixed":"Set a maximum height if the document is responsive, or set a fixed size if not responsive","sidebarBehavior":"Sidebar behavior","sbResponsive":"Responsive (default)","sbResponsiveHelp":"Show sidebar automatically on large screens and hide on mobile devices. In embed mode, the sidebar will be hidden","hidden":"Hidden","visible":"Visible","visibleDefault":"Visible (default)","sbHiddenHelp":"Hide the sidebar by default","sbVisibleHelp":"Show the sidebar by default","titleBehavior":"Title behavior","tVisibleHelp":"Display the title and attribution in the header of the viewer","tHiddenHelp":"Hide the title in the header of the viewer (still visible in the sidebar)","pdfLink":"PDF link","plVisibleHelp":"Show a link to the raw PDF document in the sidebar","plHiddenHelp":"Hide the sidebar PDF link (file is still accessible if the URL is known)","fullscreenOption":"Fullscreen option","fsVisibleHelp":"Show a fullscreen icon in the bottom-right corner","fsHiddenHelp":"Hide the fullscreen option","textMode":"Text mode","tmVisibleHelp":"Show an option to view the document’s text in the view dropdown","tmHiddenHelp":"Hide text mode","contributedByFormat":"Contributed by format","cbfUserAndOrg":"User and org (default)","cbfUserAndOrgHelp":"Show a document’s attribution as the user name followed by the organization","cbfOrgOnly":"Org only","cbfOrgOnlyHelp":"Attribute the document to just the organization","share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article"},"dialogDocumentInformationDialog":{"editInformation":"Edit Information for {n, plural, one {document} other {# documents}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Set the parameters for your chosen add-on to run on {n, plural, one {document} other {# documents}}"},"dialogRedactDialog":{"title":"Confirm redactions","description":"Are you sure you wish to redact the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the redactions in place. This change is irreversible."},"dialogModifyDialog":{"title":"Apply modifications","description":"Are you sure you wish to modify the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the modifications. This change is irreversible.","closeTitle":"Confirm close","closeWarning":"You will lose all your unapplied modifications. Are you sure you want to proceed?"},"dialogDeleteNoteDialog":{"title":"Confirm delete","description":"Are you sure you wish to delete the current note?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirm delete","proceedingWillRemove":"Proceeding will remove the specified section (p. {page} {title}). Do you wish to continue?","editSections":"Edit Sections","manageSections":"Manage sections to organize your document with a table of contents.","pageAbbrevNo":"p. {n}","pageAbbrev":"p.","empty":"You have not added any sections","edit":"Edit the selected section","add":"Add a new section","title":"Title","missingTitle":"Please enter a title","updateTitle":"Enter a new title or page number","uniquePageNumber":"You must enter a unique page number","invalidPageNumber":"Page number is invalid"},"dialogEmbedDialog":{"updatingDocument":"Updating document...","makingPublic":"The document is currently being made public. This may take a minute or two.","wouldMakePublic":"Would you like to make this document public before sharing?","notPublic":"The document is not currently public. If you embed or link it, only you and collaborators will be able to view it until it is made public. Click below when you’re ready to publish this document to the public.","makePublic":"Make document public","leave":"Leave as is","selectShare":"Select share option","selectShareHelp":"Choose whether to share the entire document or just a page or note.","shareDoc":"Share entire document","shareDocHelp":"Link or embed the entire document. (This is the most commonly used share option.)","sharePage":"Share specific page","sharePageHelp":"Link or embed a single page of the document. Useful for highlighting a page excerpt.","shareNote":"Share specific note","shareNoteHelpHasNote":"Link or embed a note within the document. Useful for highlighting a region of a page.","shareNoteHelpNoNote":"Once you add notes to the document, use this feature to link or embed them."},"dialogErrorDialog":{"errorOccurred":"An error occurred","unexpectedErrorOccurred":"An unexpected error occurred","tryAgain":"Please try again later.","close":"Close","refresh":"Refresh"},"dialogNoteEmbedDialog":{"embedNote":"Embed a note of “{title}”","embedDesc":"Copy the HTML code to embed this note within an article or post:"},"dialogPageEmbedDialog":{"embedPage":"Embed a page of “{title}”","embedDesc":"Copy the HTML code to embed this page within an article or post:","selectPage":"Select the page to embed:","page":"Page {n} (currently visible)","otherPage":"Other page","enterPageNumber":"Enter the page number to embed:"},"dialogProjectAccessDialog":{"changeAccessFor":"Change access for {name}","selectAccess":"Select an access level below for {name} in {title}","adminAccess":"Admin Access","editAccess":"Edit Access","viewAccess":"View Access","adminHelp":"This collaborator can edit this project and its documents. The collaborator can invite users, delete users, and remove the project.","editHelp":"This collaborator can edit documents in this project but cannot edit the project itself.","viewHelp":"This collaborator can view documents in this project but cannot edit them or the project.","invalidAccess":"Access is already set to {access}. Select a different access level.","changeAccess":"Change access"},"dialogOwnerDialog":{"selectUser":"User must be selected","selectOrg":"Organization must be selected","changeOwner":"Change owner for {n, plural, one {document} other {# documents}}","accessWarning":"Warning: You may lose access to the specified {n, plural, one {document} other {# documents}} as a result of changing the document owner","user":"User:","filterUsers":"Type to filter users...","filterOrgs":"Type to filter organizations..."},"dialogProjectDialog":{"confirmDelete":"Confirm delete","deleteProject":"Are you sure you want to delete this project ({project})?","editProject":"Edit Project","createProject":"Create New Project","title":"Title...","projectDesc":"Project Description (optional)","manageCollabs":"Manage Collaborators","share":"Share / Embed Project","enterTitle":"Enter a title","changeTitle":"Change the title or description"},"dialogProjectEmbedDialog":{"share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article or post:","invalid":"Invalid project","cannotEmbed":"Cannot embed this project, as it does not appear to exist."},"htmlEditor":{"preview":"Preview:"},"image":{"error":"An error occurred. Try refreshing the page"},"omniselect":{"filter":"Type to filter","noResults":"No results. Click to clear filter."},"shareOptions":{"errorText":"An unexpected error occurred. Please try again later.","copyHtml":"Copy HTML code","addShortcode":"Add this shortcode to your WordPress content —","pluginRequired":"plugin required","copyShortcode":"Copy shortcode","copyUrl":"Copy URL"},"specialMessage":{"contactUs":"Contact us with bug reports, questions, and suggestions."},"uploadOptions":{"documentLang":"Document language:","forceOcr":"Force OCR:","ocrEngine":"OCR Engine:","tesseract":"Tesseract is an open source OCR engine available free to all DocumentCloud accounts.","textractPremium":"Textract is a more powerful OCR engine that can better handle messy text, handwriting and fuzzy scans. It is a premium feature available on Professional and Organization plans. Learn more or sign up.","creditHelpText":"Selecting Textract will cost one AI Credit per page in the document. If you go over, the document will fall back to using Tesseract. You are currently working on behalf of {organization} and have {n, plural, one {# credit} other {# credits}} left.","documentLanguagePlaceholder":"Begin typing to see options"},"actionBar":{"selectDocs":"Select some documents to reveal edit actions","noPerms":"You do not have permission to edit all of the selected documents","editMenu":"Edit","projectsMenu":"Projects","addOnsMenu":"Add-Ons"},"authSection":{"help":"Help","language":"Language","faq":"FAQ","searchDocs":"Search Documentation","apiDocs":"API Documentation","addOns":"Add-Ons","premium":"DocumentCloud Premium","emailUs":"Email Us","acctSettings":"Account settings","signOut":"Sign out","changeOrg":"Change organization","personalAcct":"Personal Account","signIn":"Sign in","uploadEmail":"Upload via email"},"documents":{"yourDocuments":"Your Documents","searchResults":"Search Results","accessDocuments":"Your {access}Documents","nameDocuments":"{name}\'s {access}Documents","allDocuments":"All {access}Documents","mustBeVerified":"You must be a verified journalist to upload documents","upload":"Upload","dropFile":"Drop file to upload"},"document":{"open":"Open","updating":"Updating document...","processing":"Processing","processingError":"An error occurred trying to process your document","remove":"Remove","improper":"Your document was uploaded improperly","project":"Project","totalMatchingPages":"{n} of {m} pages matching the query","showAll":"Show all","matchingPages":"{n} pages matching the query","pageAbbrev":"p.","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source","noteCount":"{n, plural, one {# note} other {# notes}}"},"documentThumbnail":{"pages":"pages","loading":"Loading progress information..."},"mainContainer":{"error":"Error","errorMsg":"We could not reach the DocumentCloud server. Please try refreshing the page later.","refresh":"Refresh"},"editMenu":{"editDocInfo":"Edit Document Information","changeAccess":"Change Access","editDocData":"Edit Document Data","cancelProcessing":"Cancel Processing","forceReprocess":"Force Reprocess","entities":"Entities BETA","changeOwner":"Change Owner","delete":"Delete","diagnosticInfo":"Diagnostic Info"},"metaFields":{"defaultFieldInvalidText":"The document already has this {fieldName}","titleFieldTitle":"Title","titleFieldName":"name","titleFieldNameUppercase":"Name","titleFieldHeader":"Rename {n, plural, one {# document} other {# documents}}","titleFieldDescription":"Enter a name below for the {n, plural, one {selected document} other {# selected documents}}","titleFieldButton":"Rename","titleFieldInvalidSameName":"The document already has this name","titleFieldInvalidEmptyName":"Enter a valid name","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Edit source for {n, plural, one {# document} other {# documents}}","sourceFieldDescription":"Enter a source below for the {n, plural, one {selected document} other {# selected documents}}","sourceFieldButton":"Edit","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Edit description for {n, plural, one {# document} other {# documents}}","descriptionFieldDescription":"Enter the description below for the {n, plural, one {selected document} other {# selected documents}}","descriptionFieldButton":"Edit","relatedArticleFieldTitle":"Related Article URL","relatedArticleFieldName":"related article URL","relatedArticleFieldNameUppercase":"Related Article URL","relatedArticleFieldHeader":"Edit the related article URL for {n, plural, one {# document} other {# documents}}","relatedArticleFieldDescription":"Enter the related article URL below for the {n, plural, one {selected document} other {# selected documents}}","relatedArticleFieldButton":"Edit","publishedUrlFieldTitle":"Published URL","publishedUrlFieldName":"published URL","publishedUrlFieldNameUppercase":"Published URL","publishedUrlFieldHeader":"Edit the published URL for {n, plural, one {# document} other {# documents}}","publishedUrlFieldDescription":"Enter the published URL below for the {n, plural, one {selected document} other {# selected documents}}","publishedUrlFieldButton":"Edit"},"projectsMenu":{"newProject":"+ New Project","projMembership":"Project Membership","selectDocs":"Select documents to place them in projects","createProj":"Create a project to organize and share documents"},"addonsMenu":{"newAddon":"Request new Add-on from Staff","selectDocs":"Select documents to dispatch them in add-ons","addonsList":"List of Add-Ons","createAddon":"Choose more documents to use add-ons","addon":"Add-on","learnMore":"Learn more about Add-Ons","browseAll":"Browse All Add-Ons","addonRuns":"See past and future Add-On runs"},"noDocuments":{"noSearchResults":"No search results","queryNoResults":"Your search query returned no results. Try again with a broader search query.","welcome":"Welcome to DocumentCloud!","verify1":"Note that currently your account is not verified to upload. You can search through the public repository, organize documents you\'re interested in into projects, leave private notes, and collaborate on editing and annotating documents other users invite you to.","verify2":"If you’d like to upload or publish documents and you\'re a working journalist or other organization interested in publishing primary source materials in the public interest, you\'ll need to have your account verified or added to a verified organization. This is a simple process:","verify3":"First, see if your organization already exists and, if you find it, click \\"Request to Join\\" on its page.","verify4":"If your organization has not been verified yet, or if you\'re a freelancer, request verification here. Requests usually take two business days to process.","uploadFirst":"Upload your first document","upload1":"Upload a document file to get started using DocumentCloud. You can drag the file into this window, or click on the blue “Upload” button above.","upload2":"Once you upload a file, DocumentCloud will process the document and extract its contents. It may take a few minutes for this to complete, but once it’s done your document will be optimized for analysis and sharing on the web.","requestVerificationAction":"Request Verification to Upload"},"paginator":{"of":"of","document":"{n, plural, one {Document} other {Documents}}","next":"Next","previous":"Previous"},"processingBar":{"doneProcessing":"Done processing","processingDocuments":"Processing {n, plural, one {document} other {# documents}}"},"searchBar":{"tips":"Search tips: add filters by typing user:, project:, or organization:, etc. Use sort: to order results.","learnMore":"Learn more","search":"Search"},"searchLink":{"search":"Search this document collection"},"projects":{"header":"Projects","allDocuments":"All Documents","yourDocuments":"Your Documents","yourPubDocuments":"Your Public Documents","orgDocuments":"{name}’s Documents","newProject":"+ New Project","createProject":"Create your first project by clicking “New Project” above."},"organizations":{"sameOrgUsers":"Users in organization"},"uploadDialog":{"docUpload":"Document Upload","docUploadProj":"Document Upload to {title}","selectDocument":"Select or drag a document to begin the document upload process. You will then be able to edit document information.","pdfSizeWarning":"You can only upload PDF files under {size}.","nonPdfSizeWarning":"You can only upload non-PDF document files under {size}.","fileReady":"{n, plural, one {file} other {files}} ready to upload","fileLimitWarning":"You can only upload {limit} files at once.","moreOptions":"More options","beginUpload":"Begin upload","selectFiles":"+ Select files","dragDrop":"Drag and drop files here","publicMsg":"Document will be publicly visible.","collabMsg":"Document will be visible to your organization.","privateMsg":"Document will be visible to you alone.","collabName":"Organization","submitting":"Almost done... submitting uploaded files for processing ({percent})","uploading":"Uploading ... ({uploaded}/{length})","gettingInfo":"Getting upload information ({percent})","pleaseLeaveOpen":"Please leave this page open while your documents upload. This dialog will automatically close when they have finished uploading.","errorHeading":"Error occurred while uploading","errorMsg":"We failed to {errorMessage}. Please try again later.","editDocInfo":"Edit document information:","untitled":"Untitled","uploadFiles":"Upload additional files","selectMore":"+ Select more files","dragDropMore":"Drag and drop additional files here"},"embedNote":{"viewTheNote":"View the note ‘{title}‘ in its original document context on DocumentCloud in a new window or tab","viewDoc":"View the entire document with DocumentCloud"},"embedPage":{"viewDoc":"View entire {title} on DocumentCloud in new window or tab","pageOf":"Page {page} of {title}","gotoDocCloud":"Go to DocumentCloud in new window or tab"},"entities":{"back":"Back","page":"Page","of":"of","totalEntityResult":"{n, plural, one {# total entity result} other {# total entity results}} ","filter":"Filter","applyFilters":"Apply filters","kind":"Kind","clear":"Clear","person":"Person","org":"Organization","location":"Location","event":"Event","workOfArt":"Work of Art","consumerGood":"Consumer Good","address":"Address","date":"Date","number":"Number","phoneNumber":"Phone Number","price":"Price","unknown":"Unknown","other":"Other","occurrences":"Occurrences","proper":"Proper","common":"Common","advanced":"Advanced","relevanceThreshold":"Relevance threshold:","knowledgeGraph":"Knowledge graph:","hasKG":"Has a knowledge graph ID","noKG":"Does not have a knowledge graph ID","wikiUrl":"Wikipedia URL:","hasWiki":"Has a Wikipedia URL","noWiki":"Does not have a Wikipedia URL","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipedia","entityExtraction":"Entity extraction for “{title}”","extractingEntities":"Extracting entities...","welcome":"Welcome to entity extraction! This feature is very much in progress but we want it in your hands early to welcome any feedback you might have.","manual":"Right now the process for extracting entities is manual. This document has not had entities extracted yet, so click below to get started.","error":"An unexpected error occurred","extract":"Extract entities","noEntities":"There are no entities. This could happen if the document doesn’t have text, is non-English (only English is supported for now), or some error occurred.","starting":"Starting extaction..."},"home":{"about":"DocumentCloud is an all-in-one platform for documents: upload, organize, analyze, annotate, search, and embed.","viewPublicDocs":"View public documents"},"annotation":{"title":"Note Title","description":"Note Description (optional)","unchanged":"Note remains unchanged","noTitle":"Enter a title for the note","org":"This note is only visible to you and others with edit access to this document","private":"This private note is only visible to you","by":"Note by {name}","byOrg":"Note by {name}, {org}","addPageNote":"Add page note"},"viewDropdown":{"document":"Document","plainText":"Plain Text","thumbnail":"Thumbnail","notes":"Notes","search":"Search Results"},"zoom":{"fitWidth":"Fit width","fitHeight":"Fit height"},"drawer":{"close":"Close Drawer"},"titleHeader":{"contributedBy":"Contributed by {name}"},"annotatePane":{"annotateDocument":"Add Note","desc":"Highlight a portion of the page, or click between pages to create a note."},"modifyPane":{"pagesSelected":"{n, plural, one {# Page} other {# Pages}} Selected","applyModifications":"Apply Modifications","duplicate":"Duplicate","move":"Move","rotate":"Rotate","unselect":"Unselect","remove":"Remove","insertPages":"Insert {n, plural, one {# Page} other {# Pages}}","pagesPending":"{n, plural, one {# Page} other {# Pages}} Pending Insertion","insertBegin":"Insert {n, plural, one {# page} other {# pages}} at beginning.","insertEnd":"Insert {n, plural, one {# page} other {# pages}} at end.","insertBetween":"Insert {n, plural, one {# page} other {# pages}} in between page {p0} and {p1}.","click":"Click in-between pages below to mark where to paste {n, plural, one {# page} other {# pages}}.","insert":"Insert","insertAtEnd":"Insert at end","insertPosition":"Insert pages at position","insertOtherDoc":"Insert from other document","modifyPages":"Modify Pages","select":"Select pages below to apply modifications (page rotation, rearranging, and deletion). Click in-between pages to insert.","undo":"Undo","redo":"Redo"},"redactPane":{"redactDoc":"Redact Document","desc":"Click and drag to draw a black rectangle over each portion of the document you’d like to redact. Associated text will be removed when you save your redactions.","confirm":"Confirm Redactions","undo":"Undo"},"searchPane":{"yourQuery":"Your query {search} was found on {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Select a note","desc":"Select the note that you want to share."},"searchResults":{"resultPages":"{results, plural, one {# result} other {# results}} across {pages, plural, one {# page} other {# pages}}","noSearchResults":"No search results. Try again with a broader query.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Updating docucment...","original":"Original Document (PDF) »","related":"Related Article »","contributed":"Contributed by {name}","source":"Source: {source}","actions":"Document Actions","share":"Share","shareDesc":"Create an embed or share on social media.","annotate":"Add Note","annotateDesc":"Leave a public, private or shared note, which can be embedded within an article.","redact":"Redact","redactDesc":"Create redactions on the document to hide text. The document will reprocess afterwards.","modify":"Modify Pages","modifyDesc":"Rearrange, rotate, delete, insert, and split pages.","info":"Edit Document Info","infoDesc":"Modify document information like description and related URL.","data":"Edit Tags and Data","dataDesc":"Add tags and key/value pairs to categorize your document.","sections":"Edit Sections","sectionsDesc":"Add sections to organize your document with a table of contents.","privateNote":"Add Private Note","privateNoteDesc":"Leave a public, private or shared note, which can be embedded within an article."},"viewer":{"notFound":"Document not found","notFoundDesc":"The document you requested either does not exist or you lack permission to access it","processing":"Document is processing","processingDesc":"The document you requested is processing and will automatically refresh when it is ready","error":"Document has encountered an error","errorDesc":"A processing error has been encountered in the document you requested","accessible":"Document not accessible","accessibleDesc":"The document you requested is still processing or you lack permission to access to it"},"addonDispatchDialog":{"addons":"Add-Ons","backButton":"Browse Add-Ons","select":"Documents to run this Add-On against:","queryNoSelected":"This Add-On will try to run against the {n, plural, one {# document} other {# documents}} currently included in your search results. To run it against only selected documents, cancel this and select some, then select the Add-On again.","noSelected":"You must select some documents to run against. Cancel this and select some, then select the Add-On again.","runSelected":"This Add-On will try to run against the {n, plural, one {# currently selected document} other {# currently selected documents}}.","runQuery":"This Add-On will try to run against the {n, plural, one {# document} other {# documents}} currently included in your search results.","labelSelected":"The {n, plural, one {# currently selected document} other {# currently selected documents}}","labelQuery":"The {n, plural, one {# document} other {# documents}} from the current search results","learnMore":"Learn more.","hideAddons":"Hide Scheduled Add-Ons","showRuns":"Show Runs","hideRuns":"Hide Runs","showAddons":"Show Scheduled Add-Ons ({n})","runSchedule":"Run on a schedule:","runOnce":"Run once","disable":"Disable","signIn":"Sign in to use Add-Ons","createdBy":"Created by","categories":"Categories","viewsource":"View Source","share":"Share","shareClipboardSuccess":"Copied add-on URL to your clipboard","scheduleSuccess":"Add-on is now scheduled","runSuccess":"Add-on is now running","selectionHelp":"From the main list, select individual documents or run a search for the documents you want, for example “+project:mueller-docs-200005”.","selectionLearnMore":"Learn more about how Add-Ons work"},"addonBrowserDialog":{"title":"Browse Add-Ons","subtitle":"Free automations, shortcuts and power-ups from the DocumentCloud community","categories":"Categories","browseAll":"Browse All Add-Ons","searchPlaceholder":"Search…","loading":"Loading…","empty":"No add-ons found","retry":"Retry","active":"Active","inactive":"Inactive","next":"Next","previous":"Previous","viewsource":"View Source","usage":"Usage","pinnedTip":"Quickly access your favorite Add-Ons by clicking the “Pin” icon next to its name. They’ll then be available to run from the Add-Ons dropdown menu.","featuredTip":"Here’s some of the DocumentCloud team’s favorite Add-Ons, including both new additions as well as classics we think every user should try."},"addonRuns":{"scheduled":"Scheduled Add-Ons","previous":"Previous Runs","runsOn":"Runs {schedule}","upcoming":{"empty":"Scheduled add-ons will appear here","loading":"Loading…","retry":"Retry"},"history":{"empty":"Previous add-on runs will appear here","loading":"Loading…","retry":"Retry"}},"addonProgress":{"timedOut":"Timed out","feedback":"Feedback on this Add-On run","progress":"Add-Ons in progress","thanks":"Thanks for the feedback!","download":"Download file"},"addonSidebar":{"title":"Add-Ons","runs":"Schedule & history"},"uploadEmailDialog":{"uploadEmailAddress":"Upload via email","bodyText":"You can upload documents to your account by sending them to to a special email address as attachments. For security reasons, this email is only shown to you once. Please copy it to a secure location: It will accept attachments from any email account. You can generate a new upload address at any time (which will disable the old one) or turn off this feature entirely. Documents are uploaded as private.
We’d love your feedback and to hear about creative use cases at info@documentcloud.org.","createMsg":"Upload email address succesfully created: {mailkey}@uploads.documentcloud.org","destroyMsg":"Any upload email address has been removed from your account.","disable":"Disable upload via email"},"anonymous":{"title":"Welcome to DocumentCloud, an open document archive from MuckRock!","p1":"This site helps organize, analyze and host millions of records contributed by verified newsrooms, research organizations and other groups that help inform the public through the user of primary source materials. Using the search bar above, you can browse through {n} publicly published documents, with thousands more added ever day.","p2":"If you\'re part of a newsroom, academic organization, or other public-interest organization that vets and publishes materials in the public interest, you can register here and request verification to upload materials, or learn more about DocumentCloud and it\'s powerful suite of hosting, analysis and publication tools.","p3":"Want more fascinating documents, open data and original reporting to your inbox? Subscribe to MuckRock\'s newsletter:","p4":"DocumentCloud is part of a suite of transparency tools from the MuckRock Foundation, a 501c3 registered non-profit. This archive is open to the public and advertisement free thanks to support from readers like you — you can learn more about our work or make a donation.","subscribe":"Subscribe"}}');
-./public/src_langs_json_de_json.b16f340a8dd4dcb31356.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"E-Mail-Adresse","loading":"Lädt...","documentCloud":"DocumentCloud","home":"Startseite"},"homeTemplate":{"signedIn":"Angemeldet als {name}","signOut":"Abmelden","signIn":"Anmelden","signUp":"Registrieren","goToApp":"Zur App gehen"},"accessToggle":{"public":"Die Anmerkung wird für jeden sichtbar sein, der Zugriff auf das Dokument hat.","collaborator":"Die Anmerkung wird für jeden sichtbar sein, der dieses Dokument bearbeiten kann.","private":"Die Anmerkung wird nur für Sie sichtbar sein.","publicName":"Öffentlich","collaboratorName":"Mitbearbeiter","privateName":"Privat"},"accessIcon":{"private":"Privater Zugriff","organization":"Nur für Ihre Organisation zugänglich","public":"Öffentlicher Zugriff","privateExplanation":"Nur Sie können dieses Dokument einsehen","organizationExplanation":"Nur Mitglieder Ihrer Organisation können dieses Dokument einsehen","publicExplanation":"Jeder kann dieses Dokument durchsuchen und einsehen"},"appearanceCustomizer":{"customizeAppearance":"Darstellung anpassen","hide":"Hilfetext ausblenden","show":"Hilfetext anzeigen"},"appearanceDimension":{"responsive":"Automatisch (standardmäßig)","fixed":"Fix"},"calendar":{"jan":"Januar","feb":"Februar","mar":"März","apr":"April","may":"Mai","jun":"Juni","jul":"Juli","aug":"August","sep":"September","oct":"Oktober","nov":"November","dec":"Dezember","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Abbrechen","delete":"Löschen","done":"Fertig","edit":"Bearbeiten","remove":"Entfernen","save":"Speichern","create":"Erstellen","ok":"Ok","update":"Aktualisieren","dismiss":"Verwerfen","continue":"Fortfahren","dispatch":"Senden"},"dialogAccessDialog":{"changeAccess":"Den Zugriff ändern für {n, plural, one {ein Dokument} other {# Dokumente}}","selectAccess":"Wählen Sie eine Zugriffsebene für {n, plural, one {das ausgewählte Dokument} other {# der ausgewählten Dokumente}}","public":"Öffentlicher Zugriff","publicDesc":"Jeder im Internet kann nach dem Dokument suchen und es einsehen.","verifiedHelp":"Nur verifizierte Benutzer oder Mitglieder von verifizierten Organisationen können hochgeladene Dokumente veröffentlichen. Wenn Sie Journalist sind oder an der Herausgabe geprüfter Materialien arbeiten, die zur Information der Öffentlichkeit dienen, können Sie hier mehr erfahren und eine Verifizierung beantragen.","privateToOrg":"{n, plural, one {Dieses Dokument ist} other {Ein oder mehrere Dokumente sind}} mit Ihrem persönlichen Konto und nicht mit einer Organisation verbunden, daher können Sie die Zugriffsebene nicht dahingehend ändern, dass sie „nur für Ihre Organisation zugänglich“ ist. Um {n, plural, one {dieses Dokument} other {diese Dokumente}} zu einer Organisation hinzuzufügen, wählen Sie {n, plural, one {es} other {sie}} aus der Management-Ansicht aus und und klicken Sie auf \\"Besitzer ändern\\". Sie können auf dieser Seite einer Organisation beitreten oder eine erstellen.","private":"Privater Zugriff","privateDesc":"Nur Personen mit ausdrücklicher Genehmigung (zwecks Mitbearbeitung) haben Zugriff.","organization":"Nur für Ihre Organisation zugänglich","organizationDesc":"Nur Personen Ihrer Organisation haben Zugriff.","schedulePublication":"Veröffentlichung planen","scheduleHelp":"Dieses Dokument wird zum angegebenen Datum und Zeitpunkt veröffentlicht. Die Veröffentlichungszeit entspricht der örtlichen{timezone}.","noindexTitle":"Vor Suchmaschinen und der DocumentCloud-Suche verbergen","noindexHelp":"Wenn Sie diese Option aktivieren, wird Suchmaschinen wie u. A. Google mitgeteilt, dass sie dieses Dokument nicht indizieren sollen. Des Weiteren wird nicht eingeloggten Besuchern dieses Dokument auch nicht in den DocumentCloud-Suchergebnissen angezeigt.","unchanged":"Der Zugriff ist unverändert. Wählen Sie eine andere Zugriffsebene.","future":"Sie müssen einen Zeitpunkt in der Zukunft auswählen","change":"Ändern","changeNoindex":"Ändern Sie die Sichtbarkeit in Suchmaschinen und in der DocumentCloud-Suche für {n, plural, one {ein Dokument} other {# Dokumente}}"},"dialogCollaboratorDialog":{"confirm":"Entfernen des Nutzers bestätigen","confirmMsg":"Wenn Sie fortfahren, wird {name} aus {title} entfernt. Möchten Sie fortfahren?","addCollaborators":"Mitbearbeiter hinzufügen","invite":"Geben Sie unten die E-Mail eines bestehenden DocumentCloud-Benutzers ein. Wenn dieser noch kein Konto hat, lassen Sie ihn sich hier kostenlos registrieren, und bitten Sie ihn dann sich mindestens einmal bei DocumentCloud anzumelden.","admin":"Admin","view":"Anzeigen","adminHelp":"Mitbearbeiter können dieses Projekt und dazugehörige Dokumente bearbeiten","editHelp":"Mitbearbeiter können Dokumente in diesem Projekt bearbeiten","viewHelp":"Mitbearbeiter können Dokumente in diesem Projekt einsehen","add":"Hinzufügen","empty":"Sie haben noch keine Mitbearbeiter zu diesem Projekt hinzugefügt. Laden Sie Mitbearbeiter ein, um anderen Benutzern Zugriff auf die in diesem Projekt geteilten Dokumente zu gewähren. Sie können festlegen, ob Mitbearbeiter Zugriff auf die Dokumente des Projekts haben um diese einzusehen/zu bearbeiten, oder ob diese als Administrator andere Benutzer einladen und das Projekt selbst bearbeiten dürfen.","manageCollaborators":"Mitbearbeiter verwalten","name":"Name","access":"Zugriff","you":"(Sie)"},"dialogDataDialog":{"confirm":"Entfernen des Datenpunktes bestätigen","removeMsg":"Wenn Sie fortfahren, wird der Datenpunkt {key}{value} aus den angegebenen Dokumenten entfernt. Möchten Sie fortfahren?","addData":"Daten für {n, plural, one {ein Dokument} other {# Dokumente}} hinzufügen","tag":"Tag","value":"Wert","key":"Schlüssel","keyValue":"Schlüssel / Wert","tagInfo":"Fügen Sie benutzerdefinierte Tags hinzu, um Ihre Dokumente zu kategorisieren.","eg":"z.B.","exampleTagReport":"Bericht","exampleTagLawsuit":"Gerichtsverfahren","exampleTagEmail":"E-Mail","keyValueInfo":"Fügen Sie benutzerdefinierte Schlüssel / Wertpaare für eine genaue Kategorisierung Ihrer Dokumente hinzu.","exampleKVState":"Staat: Kalifornien","exampleKVYear":"Jahr: 2016","exampleKVType":"Typ: Memo","enterTag":"Ein Tag eingeben","enterKey":"Einen Schlüssel eingeben","keyInvalid":"Die Schlüssel können nur Buchstaben, Zahlen, Unterstriche (_) und Bindestriche (-) enthalten","emptyMsg":"Sie haben zu dem/den angegebenen Dokument(en) noch keine Daten hinzugefügt. Fügen Sie Tags sowie Schlüssel/Wertpaare hinzu, um Ihre Dokumente zu kategorisieren und zu organisieren. Um eine bessere Kontrolle über Ihr Dokumentenmanagement zu erhalten, können Sie Dokumentdaten filtern und durchsuchen.","manageDocumentData":"Dokumentdaten verwalten","valueUnchanged":"Der Wert bleibt unverändert","kvCannotBeEmpty":"Der Schlüssel/Wert darf nicht leer sein"},"dialogReprocessDialog":{"title":"Wiederaufbereitung bestätigen","reprocessDocs":"Wenn Sie fortfahren, {n, plural, one {wird das ausgewählte Dokument} other {werden die # ausgewählten Dokumente}} den Seiten- und Bildtext erzwungermaßen wiederaufbereiten. Möchten Sie fortfahren?","reprocessSingleDoc":"Wenn Sie fortfahren, wird das Dokument erzwungenermaßen den Seiten- und Bildtext wiederaufbereiten. Möchten Sie fortfahren?","confirm":"Erneut aufbereiten"},"dialogDeleteDialog":{"title":"Wiederaufbereitung bestätigen","deleteDocs":"Wenn Sie fortfahren, {n, plural, one {wird das ausgewählte Dokument} other {werden die # ausgewählten Dokumente}} dauerhaft gelöscht. Möchten Sie fortfahren?"},"dialogCancelProcessingDialog":{"title":"Vorgang abbrechen","deleteDocs":"Wenn Sie fortfahren, {n, plural, one {wird das ausgewählte Dokument} other {werden die # ausgewählten Dokumente}} die Verarbeitung beenden. Nachdem die Verarbeitung beendet wurde, erscheint eine Fehlermeldung. Sie können dann die \\"Wiederaufbereitung erzwingen\\" und {n, plural, one {das Dokument} other {die Dokumente}} mithilfe des Bearbeiten-Menüs löschen. Möchten Sie fortfahren?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Mitarbeitern vorbehaltene Infos für {n, plural, one {ausgewähltes Dokument} other {# ausgewählte Dokumente}}","id":"Identifizierung","title":"Titel","actions":"Aktionen","debug":"Fehlerbehebung","viewErrors":"Fehler anzeigen","viewS3":"Anzeigen in S3"},"dialogDocumentEmbedDialog":{"responsive":"Reaktionsfähig","respOn":"Eingeschaltet (standardmäßig)","respOnHelp":"Füllen Sie die Breite des Artikelbehälters aus (funktioniert normalerweise am besten)","respOff":"Ausgeschaltet","respOffHelp":"Das Dokument muss den unten angegebenen Größen entsprechen","width":"Breite","widthAuto":"Füllt den verfügbaren Platz aus, wenn das Dokument auf reaktionsfähig eingestellt ist, andernfalls standardmäßig auf 700px","widthFixed":"Legen Sie eine maximale Breite fest, wenn das Dokument reaktionsfähig ist, oder eine feste Größe, wenn es nicht reaktionsfähig ist","height":"Höhe","heightAuto":"Die Höhe richtet sich nach der Größe des Dokuments, ohne Maximum. Wenn das Dokument reaktionsfähig ist, wird sie auf die Höhe des Browserfensters minus 100px eingestellt","heightFixed":"Legen Sie eine maximale Höhe fest, wenn das Dokument reaktionsfähig ist, oder eine feste Größe, wenn es nicht reaktionsfähig ist","sidebarBehavior":"Verhalten der Seitenleiste","sbResponsive":"Reaktionsfähig (standardmäßig)","sbResponsiveHelp":"Seitenleiste automatisch auf großen Bildschirmen anzeigen und auf mobilen Geräten ausblenden. Im eingebetteten Modus wird die Seitenleiste ausgeblendet","hidden":"Ausgeblendet","visible":"Sichtbar","visibleDefault":"Sichtbar (standardmäßig)","sbHiddenHelp":"Seitenleiste standardmäßig ausblenden","sbVisibleHelp":"Seitenleiste standardmäßig einblenden","titleBehavior":"Verhalten des Titels","tVisibleHelp":"Den Titel und die Zuordnung in der Kopfzeile des Viewers anzeigen","tHiddenHelp":"Den Titel in der Kopfzeile des Viewers ausblenden (noch in der Seitenleiste sichtbar)","pdfLink":"PDF-Link","plVisibleHelp":"Einen Link zum unbearbeiteten PDF-Dokument in der Seitenleiste anzeigen","plHiddenHelp":"Den PDF-Link in der Seitenleiste ausblenden (die Datei ist weiterhin zugänglich, wenn die URL bekannt ist)","fullscreenOption":"Vollbildmodus","fsVisibleHelp":"Ein Vollbild-Symbol in der unteren rechten Ecke anzeigen","fsHiddenHelp":"Den Vollbildmodus ausblenden","textMode":"Textmodus","tmVisibleHelp":"Eine Option anzeigen, um den Text des Dokuments in der Dropdown-Liste einzusehen","tmHiddenHelp":"Den Textmodus ausblenden","contributedByFormat":"Beitrag von Format","cbfUserAndOrg":"Benutzer und Organisation (standardmäßig)","cbfUserAndOrgHelp":"Die Zuordnung eines Dokuments durch den Benutzernamen gefolgt von der Organisation anzeigen","cbfOrgOnly":"Nur für die Organisation","cbfOrgOnlyHelp":"Das Dokument nur der Organisation zuordnen","share":"“{title}” teilen","embedDesc":"Den HTML-Code kopieren, um dieses Dokument in einen Artikel einzubetten"},"dialogDocumentInformationDialog":{"editInformation":"Die Informationen für {n, plural, one {ein Dokument} other {# Dokumente}} bearbeiten"},"dialogAddonDispatchDialog":{"setAddonParameters":"Legen Sie die Parameter für Ihr gewähltes Add-on fest, um es {n, plural, one {dem Dokument} other {den # Dokumenten}} hinzuzfügen"},"dialogRedactDialog":{"title":"Schwärzungen bestätigen","description":"Sind Sie sicher, dass Sie das aktuelle Dokument zensieren möchten? Wenn Sie fortfahren, ist der Dokument-Viewer vorübergehend nicht zugänglich, während das Dokument mit dem Zensierungen wiederaufbereitet wird. Dieser Schritt ist unwiderruflich."},"dialogModifyDialog":{"title":"Modifizierungen anwenden","description":"Sind Sie sicher, dass Sie das aktuelle Dokument modifizieren möchten? Wenn Sie fortfahren, ist der Dokument-Viewer vorübergehend nicht zugänglich, während das Dokument mit den Modifizierungen wiederaufbereitet wird. Dieser Schritt ist unwiderruflich.","closeTitle":"Schließen bestätigen","closeWarning":"Sie verlieren all Ihre nicht angewandten Modifizierungen. Sind Sie sicher, dass Sie fortfahren möchten?"},"dialogDeleteNoteDialog":{"title":"Löschen bestätigen","description":"Sind Sie sicher, dass Sie die aktuelle Anmerkung löschen möchten?"},"dialogEditSectionsDialog":{"confirmDelete":"Löschen bestätigen","proceedingWillRemove":"Wenn Sie fortfahren, wird der angegebene Abschnitt (S. {page} {title}) entfernt. Möchten Sie fortfahren?","editSections":"Abschnitte bearbeiten","manageSections":"Verwalten Sie Abschnitte, um Ihr Dokument mit einem Inhaltsverzeichnis zu organisieren.","pageAbbrevNo":"S. {n}","pageAbbrev":"S.","empty":"Sie haben noch keine Abschnitte hinzugefügt","edit":"Den ausgewählten Abschnitt bearbeiten","add":"Einen neuen Abschnitt hinzufügen","title":"Titel","missingTitle":"Bitte geben Sie einen Titel ein","updateTitle":"Einen neuen Titel oder eine Seitenzahl eingeben","uniquePageNumber":"Sie müssen eine eindeutige Seitenzahl eingeben","invalidPageNumber":"Die Seitenzahl ist ungültig"},"dialogEmbedDialog":{"updatingDocument":"Dokument wird aktualisiert...","makingPublic":"Das Dokument wird gerade veröffentlicht. Dies kann einige Minuten dauern.","wouldMakePublic":"Möchten Sie dieses Dokument veröffentlichen, bevor Sie es teilen?","notPublic":"Das Dokument ist derzeit nicht öffentlich. Wenn Sie es einbetten oder verlinken, können nur Sie und Ihre Mitarbeiter es einsehen, bis es veröffentlicht wird. Klicken Sie unten, wenn Sie dieses Dokument der Öffentlichkeit zugänglich machen möchten.","makePublic":"Dokument veröffentlichen","leave":"So belassen","selectShare":"Freigabeoption auswählen","selectShareHelp":"Wählen Sie aus, ob Sie das gesamte Dokument, nur eine Seite oder eine Notiz teilen möchten.","shareDoc":"Das gesamte Dokument teilen","shareDocHelp":"Das gesamte Dokument verlinken oder einbetten. (Dies ist die am häufigsten verwendete Freigabeoption.)","sharePage":"Eine bestimmte Seite teilen","sharePageHelp":"Eine einzelne Seite des Dokuments verlinken oder einbetten. Nützlich zum Hervorheben eines Seitenausschnitts.","shareNote":"Eine bestimmte Anmerkung teilen","shareNoteHelpHasNote":"Eine Anmerkung in dem Dokument verlinken oder einbetten. Nützlich zum Hervorheben eines Seitenbereichs.","shareNoteHelpNoNote":"Sobald Sie dem Dokument Anmerkungen hinzufügen, verwenden Sie diese Funktion, um sie zu verlinken oder einzubetten."},"dialogErrorDialog":{"errorOccurred":"Ein Fehler ist aufgetreten","unexpectedErrorOccurred":"Ein unerwarteter Fehler ist aufgetreten","tryAgain":"Bitte versuchen Sie es später erneut.","close":"Schließen","refresh":"Aktualisieren"},"dialogNoteEmbedDialog":{"embedNote":"Eine Anmerkung einbetten von “{title}”","embedDesc":"Kopieren Sie den HTML-Code, um diese Anmerkung in einen Artikel oder einen Beitrag einzubetten:"},"dialogPageEmbedDialog":{"embedPage":"Eine Seite einbetten von \\"{title}\\"","embedDesc":"Den HTML-Code kopieren, um diese Seite in einem Artikel oder Beitrag einzubetten:","selectPage":"Wählen Sie die einzubettende Seite aus:","page":"Seite {n} (derzeit sichtbar)","otherPage":"Andere Seite","enterPageNumber":"Geben Sie die zu einzubettende Seitenzahl ein:"},"dialogProjectAccessDialog":{"changeAccessFor":"Zugriff ändern für {name}","selectAccess":"Wählen Sie unten eine Zugriffsebene für {name} in {title}","adminAccess":"Admin-Zugriff","editAccess":"Zugriff bearbeiten","viewAccess":"Zugriff anzeigen","adminHelp":"Dieser Mitbearbeiter kann dieses Projekt und seine Dokumente bearbeiten. Der Mitbearbeiter kann Benutzer einladen, Benutzer löschen und das Projekt entfernen.","editHelp":"Dieser Mitbearbeiter kann Dokumente in diesem Projekt bearbeiten, kann aber das Projekt selbst nicht bearbeiten.","viewHelp":"Dieser Mitbearbeiter kann Dokumente in diesem Projekt einsehen, aber weder diese noch das Projekt selbst bearbeiten.","invalidAccess":"Der Zugriff ist bereits eingestellt auf {access}. Wählen Sie eine andere Zugriffsebene.","changeAccess":"Zugriff ändern"},"dialogOwnerDialog":{"selectUser":"Der Benutzer muss ausgewählt werden","selectOrg":"Die Organisation muss ausgewählt werden","changeOwner":"Den Besitzer ändern für {n, plural, one {ein Dokument} other {# Dokumente}}","accessWarning":"Warnung: Sie können den Zugriff auf {n, plural, one {das angegebene Dokument} other {die angegebenen # Dokumente}} infolge der Änderung des Dokumentbesitzers verlieren","user":"Benutzer:","filterUsers":"Hier nach Benutzern filtern...","filterOrgs":"Hier nach Organisationen filtern..."},"dialogProjectDialog":{"confirmDelete":"Löschen bestätigen","deleteProject":"Sind sie sicher, dass sie dieses Projekt ({project}) löschen möchten?","editProject":"Projekt bearbeiten","createProject":"Neues Projekt erstellen","title":"Titel...","projectDesc":"Projektbeschreibung (optional)","manageCollabs":"Mitbearbeiter verwalten","share":"Projekt teilen / einbetten","enterTitle":"Titel eingeben","changeTitle":"Den Titel oder die Beschreibung ändern"},"dialogProjectEmbedDialog":{"share":"“{title}” teilen","embedDesc":"Den HTML-Code kopieren, um dieses Dokument in einen Artikel oder Beitrag einzubetten:","invalid":"Ungültiges Projekt","cannotEmbed":"Dieses Projekt kann nicht eingebunden werden, da es anscheinend nicht existiert."},"htmlEditor":{"preview":"Vorschau:"},"image":{"error":"Ein Fehler ist aufgetreten. Aktualisieren Sie die Seite"},"omniselect":{"filter":"Hier nach Sprache filtern","noResults":"Keine Ergebnisse gefunden. Hier klicken, um den Filter zu löschen."},"shareOptions":{"errorText":"Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es später erneut.","copyHtml":"HTML-Code kopieren","addShortcode":"Fügen Sie diesen Shortcode zu Ihren WordPress-Inhalten hinzu —","pluginRequired":"Plugin erforderlich","copyShortcode":"Shortcode kopieren","copyUrl":"URL kopieren"},"specialMessage":{"contactUs":"Kontaktieren Sie uns mit Fehlermeldungen, Fragen und Vorschlägen."},"uploadOptions":{"documentLang":"Sprache des Dokuments:","forceOcr":"OCR erzwingen:"},"actionBar":{"selectDocs":"Wählen Sie einige Dokumente aus, um Bearbeitungsaktionen anzuzeigen","noPerms":"Sie sind nicht dazu berechtigt alle ausgewählten Dokumente zu bearbeiten","editMenu":"Bearbeiten","projectsMenu":"Projekte","addOnsMenu":"Add-Ons"},"authSection":{"help":"Hilfe","language":"Sprache","FAQ":"FAQ","searchDocs":"Dokumentation durchsuchen","apiDocs":"API-Dokumentation","emailUs":"Schreiben Sie uns eine E-Mail","acctSettings":"Kontoeinstellungen","signOut":"Abmelden","changeOrg":"Organisation ändern","personalAcct":"Persönliches Konto","signIn":"Anmelden","uploadEmail":"Hochladen per E-Mail"},"documents":{"yourDocuments":"Ihre Dokumente","searchResults":"Suchergebnisse","accessDocuments":"Ihre {access}-Dokumente","nameDocuments":"{access}-Dokumente von {name}","allDocuments":"Alle {access}-Dokumente","mustBeVerified":"Sie müssen ein verifizierter Journalist sein, um Dokumente hochzuladen","upload":"Hochladen","dropFile":"Datei zum Hochladen hier ablegen"},"document":{"open":"Öffnen","updating":"Dokument wird aktualisiert...","processing":"Verarbeitung","processingError":"Beim Verarbeiten Ihres Dokuments ist ein Fehler aufgetreten","remove":"Entfernen","improper":"Ihr Dokument wurde nicht korrekt hochgeladen","project":"Projekt","totalMatchingPages":"{n} von {m} Seiten entsprechen der Suchanfrage","showAll":"Alle anzeigen","matchingPages":"{n} Seiten entsprechen der Suchanfrage","pageAbbrev":"S.","pageCount":"{n, plural, one {# Seite} other {# Seiten}}","source":"Quelle","noteCount":"{n, plural, one {# Anmerkung} other {# Anmerkungen}}"},"documentThumbnail":{"pages":"Seiten","loading":"Informationen zum Fortschritt laden..."},"mainContainer":{"error":"Fehler","errorMsg":"Wir konnten den DocumentCloud-Server nicht erreichen. Bitte versuchen Sie später die Seite zu aktualisieren.","refresh":"Aktualisieren"},"editMenu":{"editDocInfo":"Dokumentinformationen bearbeiten","changeAccess":"Zugriff ändern","editDocData":"Dokumentdaten bearbeiten","cancelProcessing":"Verarbeitung abbrechen","forceReprocess":"Wiederverarbeitung erzwingen","entities":"Entitäten BETA","changeOwner":"Besitzer ändern","delete":"Löschen","diagnosticInfo":"Diagnose-Informationen"},"metaFields":{"defaultFieldInvalidText":"Das Dokument hat bereits diesen {fieldName}","titleFieldTitle":"Titel","titleFieldName":"Name","titleFieldNameUppercase":"Name","titleFieldHeader":"{n, plural, one {Ein Dokument} other {# Dokumente}} umbenennen","titleFieldDescription":"Geben Sie unten einen Namen für {n, plural, one {das ausgewählte Dokument} other {die # ausgewählten Dokumente}} ein","titleFieldButton":"Umbenennen","titleFieldInvalidSameName":"Das Dokument hat bereits diesen Namen","titleFieldInvalidEmptyName":"Geben Sie einen gültigen Namen ein","sourceFieldTitle":"Quelle","sourceFieldName":"Quelle","sourceFieldNameUppercase":"Quelle","sourceFieldHeader":"Die Quelle für {n, plural, one {ein Dokument} other {# Dokumente}} bearbeiten","sourceFieldDescription":"Geben Sie unten eine Quelle für {n, plural, one {das ausgewählte Dokument} other {die # ausgewählten Dokumente}} ein","sourceFieldButton":"Bearbeiten","descriptionFieldTitle":"Beschreibung","descriptionFieldName":"Beschreibung","descriptionFieldNameUppercase":"Beschreibung","descriptionFieldHeader":"Die Beschreibung für {n, plural, one {ein Dokument} other {# Dokumente}} bearbeiten","descriptionFieldDescription":"Geben Sie unten die Beschreibung für {n, plural, one {das ausgewählte Dokument} other {die # ausgewählten Dokumente}} ein","descriptionFieldButton":"Bearbeiten","relatedArticleFieldTitle":"URL des zugehörigen Artikels","relatedArticleFieldName":"URL des zugehörigen Artikels","relatedArticleFieldNameUppercase":"URL des zugehörigen Artikels","relatedArticleFieldHeader":"Bearbeiten Sie die URL des zugehörigen Artikels für {n, plural, one {# Dokument} other {# Dokumente}}","relatedArticleFieldDescription":"Geben Sie unten die URL des zugehörigen Artikels für {n, plural, one {# Dokument} other {# Dokumente}} ein","relatedArticleFieldButton":"Bearbeiten","publishedUrlFieldTitle":"Veröffentlichte URL","publishedUrlFieldName":"Veröffentlichte URL","publishedUrlFieldNameUppercase":"Veröffentlichte URL","publishedUrlFieldHeader":"Bearbeiten Sie die veröffentlichte URL für {n, plural, one {# Dokument} other {# Dokumente}}","publishedUrlFieldDescription":"Geben Sie unten die veröffentlichte URL für {n, plural, one {# Dokument} other {# Dokumente}} ein","publishedUrlFieldButton":"Bearbeiten"},"projectsMenu":{"newProject":"+ Neues Projekt","projMembership":"Projektmitgliedschaft","selectDocs":"Dokumente auswählen, um sie in Projekten zu platzieren","createProj":"Ein Projekt zum Organisieren und Teilen von Dokumenten erstellen"},"addonsMenu":{"newAddon":"Neues Add-on bei Mitarbeitern anfordern","selectDocs":"Dokumente auswählen, um sie in Add-ons zu verschicken","addonsList":"Liste der Add-ons","createAddon":"Weitere Dokumente zur Verwendung in Add-ons auswählen","addon":"Add-on","learnMore":"Mehr über Add-ons erfahren","browseAll":"Alle Add-ons durchsuchen"},"noDocuments":{"noSearchResults":"Keine Suchergebnisse","queryNoResults":"Ihre Suchanfrage lieferte keine Ergebnisse. Versuchen Sie es erneut mit einer breiteren Suchanfrage.","welcome":"Willkommen bei DocumentCloud!","verify1":"Bitte beachten Sie, dass Ihr Konto derzeit nicht für das Hochladen von Dokumenten verifiziert ist. Sie können das öffentliche Repositorium durchsuchen, für sie interessante Dokument in Projekten organisieren, persönliche Anmerkungen hinterlassen sowie Dokumente mitbearbeiten und kommentieren, zu denen Sie von anderen Benutzern eingeladen werden.","verify2":"Wenn Sie Dokumente hochladen oder veröffentlichen möchten und Sie ein aktiver Journalist oder eine andere Organisation sind, die an der Veröffentlichung von Materialien aus Primärquellen von öffentlichem Interesse interessiert ist, müssen Sie Ihr Konto verifizieren lassen oder es einer verifizierten Organisation hinzufügen. Dies ist ein einfacher Prozess:","verify3":"Prüfen Sie zunächst , ob Ihre Organisation bereits existiert, und wenn Sie sie gefunden haben, klicken Sie auf ihrer Seite auf \\"Beitritt beantragen\\".","verify4":"Wenn Ihre Organisation noch nicht verifiziert ist oder wenn Sie Freiberufler sind, beantragen Sie hier die Verifizierung. Die Bearbeitung von Anfragen dauert in der Regel zwei Werktage.","uploadFirst":"Laden Sie Ihr erstes Dokument hoch","upload1":"Laden Sie eine Dokumentdatei hoch, um mit der Nutzung von DocumentCloud zu beginnen. Sie können die Datei in dieses Fenster ziehen oder oben auf die blaue Schaltfläche „Hochladen“ klicken.","upload2":"Nachdem Sie eine Datei hochgeladen haben, verarbeitet DocumentCloud das Dokument und extrahiert seinen Inhalt. Dieser Vorgang kann einige Minuten dauern, aber sobald er abgeschlossen ist, ist Ihr Dokument für die Analyse und das Teilen im Internet optimiert.","requestVerificationAction":"Verifizierung zum Hochladen anfordern"},"paginator":{"of":"von","document":"{n, plural, one {Dokument} other {# Dokumenten}}"},"processingBar":{"doneProcessing":"Verarbeitung abgeschlossen","processingDocuments":"Verarbeitung {n, plural, one {von einem Dokument} other {von # Dokumenten}}"},"searchBar":{"tips":"Suchtipps: Fügen Sie Filter hinzu, indem Sie Benutzer:, Projekt:, oder Organisation:, etc. eingeben. Verwenden Sie sortieren:, um die Ergebnisse anzuordnen.","learnMore":"Mehr erfahren","search":"Suchen"},"searchLink":{"search":"Diese Dokumentensammlung durchsuchen"},"projects":{"header":"Projekte","allDocuments":"Alle Dokumente","yourDocuments":"Ihre Dokumente","yourPubDocuments":"Ihre öffentlichen Dokumente","orgDocuments":"Dokumente von {name}","newProject":"+ Neues Projekt","createProject":"Erstellen Sie Ihr erstes Projekt, indem Sie oben auf „Neues Projekt“ klicken."},"uploadDialog":{"docUpload":"Hochladen des Dokuments","docUploadProj":"Dokument hochladen zu {title}","beginUpload":"Hochladen starten","pdfSizeWarning":"Sie können nur PDF-Dateien hochladen, die kleiner sind als {size}.","nonPdfSizeWarning":"Sie können nur Nicht-PDF-Dokumente hochladen, die kleiner sind als {size}.","fileReady":"{n, plural, one {Datei} other {Dateien}} bereit zum Hochladen","fileLimitWarning":"Sie können nur {limit} Dateien auf einmal hochladen.","moreOptions":"Weitere Optionen","selectFiles":"+ Dateien auswählen","dragDrop":"Dateien hierher ziehen und ablegen","publicMsg":"Das Dokument wird öffentlich einsehbar sein.","collabMsg":"Das Dokument wird für Ihre Organisation einsehbar sein.","privateMsg":"Das Dokument wird nur für Sie einsehbar sein.","collabName":"Organisation","submitting":"Fast geschafft... hochgeladene Dateien werden zur Verarbeitung übermittelt ({percent})","uploading":"Hochladen ... ({uploaded}/{length})","gettingInfo":"Informationen zum Hochladen werden abgerufen ({percent})","pleaseLeaveOpen":"Bitte lassen Sie diese Seite geöffnet, während Ihre Dokumente hochgeladen werden. Dieses Dialogfeld schließt sich automatisch, wenn das Hochladen abgeschlossen ist.","errorHeading":"Während des Hochladens ist ein Fehler aufgetreten","errorMsg":"{errorMessage} fehlgeschlagen. Bitte versuchen Sie es später erneut.","editDocInfo":"Dokumentinformationen bearbeiten:","untitled":"Unbenannt","uploadFiles":"Zusätzliche Dateien hochladen","selectMore":"+ Weitere Dateien auswählen","dragDropMore":"Zusätzliche Dateien hierherziehen und ablegen"},"embedNote":{"viewTheNote":"Die Anmerkung ‘{title}‘ in ihrem ursprünglichen Dokumentenkontext auf DocumentCloud in einem neuen Fenster oder Tab anzeigen","viewDoc":"Das gesamte Dokument mit DocumentCloud anzeigen"},"embedPage":{"viewDoc":"{title} vollständig auf DocumentCloud in einem neuen Fenster oder Tab anzeigen","pageOf":"Seite {page} von {title}","gotoDocCloud":"DocumentCloud in einem neuen Fenster oder Tab öffnen"},"entities":{"back":"Zurück","page":"Seite","of":"von","totalEntityResult":"{n, plural, one {# Gesamtergebnis der Entität} other {# Gesamtergebnisse der Entität}} ","filter":"Filter","applyFilters":"Filter anwenden","kind":"Typ","clear":"Löschen","person":"Person","org":"Organisation","location":"Standort","event":"Veranstaltung","workOfArt":"Kunstwerk","consumerGood":"Konsumgüter","address":"Adresse","date":"Datum","number":"Nummer","phoneNumber":"Telefonnummer","price":"Preis","unknown":"Unbekannte","other":"Sonstige","occurrences":"Vorkommnisse","proper":"Korrekte","common":"Gemeinsame","advanced":"Erweiterte","relevanceThreshold":"Relevanzschwelle:","knowledgeGraph":"Wissensgraph:","hasKG":"Verfügt über eine Wissensgraph-ID","noKG":"Verfügt über keine Wissensgraph-ID","wikiUrl":"Wikipedia-URL:","hasWiki":"Verfügt über eine Wikipedia-URL","noWiki":"Verfügt über keine Wikipedia-URL","occurrence":"{n, plural, one {# Vorkommnis} other {# Vorkommnisse}}","wikipedia":"Wikipedia","entityExtraction":"Entitätsextraktion für “{title}”","extractingEntities":"Extrahieren von Entitäten...","welcome":"Willkommen bei der Entitätsextraktion! Diese Funktion befindet sich noch in der Entwicklung, aber wir möchten sie Ihnen jetzt schon zur Verfügung stellen, damit wir Ihr Feedback einfließen lassen können.","manual":"Derzeit erfolgt die Extraktion von Entitäten noch manuell. In diesem Dokument wurden noch keine Entitäten extrahiert. Klicken Sie daher bitte unten, um damit zu beginnen.","error":"Ein unerwarteter Fehler ist aufgetreten","extract":"Entitäten extrahieren","noEntities":"Es sind keine Entitäten vorhanden. Dies kann vorkommen, wenn das Dokument keinen Text enthält, nicht in englischer Sprache verfasst ist (derzeit wird nur Englisch unterstützt) oder ein Fehler aufgetreten ist.","starting":"Extraktion starten..."},"home":{"about":"DocumentCloud ist eine All-in-one-Plattform für Dokumente: hochladen, organisieren, analysieren, kommentieren, suchen und einbetten.","viewPublicDocs":"Öffentliche Dokumente anzeigen"},"annotation":{"title":"Titel der Anmerkung","description":"Beschreibung der Anmerkung (optional)","unchanged":"Die Anmerkung bleibt unverändert","noTitle":"Geben Sie einen Titel für die Anmerkung ein","org":"Diese Anmerkung ist nur für Sie und andere Personen mit Bearbeitungszugriff auf dieses Dokument sichtbar","private":"Diese persönliche Anmerkung ist nur für Sie sichtbar","by":"Angemerkt von {name}","byOrg":"Angemerkt von {name}, {org}","addPageNote":"Anmerkung zur Seite hinzufügen"},"viewDropdown":{"document":"Dokument","plainText":"Einfacher unformatierter Text","thumbnail":"Miniaturansicht","notes":"Anmerkungen","search":"Suchergebnisse"},"zoom":{"fitWidth":"Breite anpassen","fitHeight":"Höhe anpassen"},"titleHeader":{"contributedBy":"Beitrag von {name}"},"annotatePane":{"annotateDocument":"Dokument mit Anmerkungen versehen","desc":"Markieren Sie einen Teil der Seite oder klicken Sie zwischen die Seiten, um eine Anmerkung zu erstellen."},"modifyPane":{"pagesSelected":"{n, plural, one {# Seite} other {# Seiten}} ausgewählt","applyModifications":"Modifizierungen anwenden","duplicate":"Duplizieren","move":"Verschieben","rotate":"Drehen","unselect":"Auswahl aufheben","remove":"Entfernen","insertPages":"{n, plural, one {# Seite} other {# Seiten}} einfügen","pagesPending":"Ausstehende Einfügung von {n, plural, one {# Seite} other {# Seiten}}","insertBegin":"{n, plural, one {# Seite} other {# Seiten}} am Anfang einfügen.","insertEnd":"{n, plural, one {# Seite} other {# Seiten}} am Ende einfügen.","insertBetween":"{n, plural, one {# Seite} other {# Seiten}} zwischen Seite {p0} und {p1} einfügen.","click":"Klicken Sie unten zwischen die Seiten, um zu markieren, wo {n, plural, one {die # Seite eingefügt werden soll} other {die # Seiten eingefügt werden sollen}}.","insert":"Einfügen","insertAtEnd":"Am Ende einfügen","insertPosition":"Seiten an dieser Position einfügen","insertOtherDoc":"Aus einem anderen Dokument einfügen","modifyPages":"Seiten modifizieren","select":"Wählen Sie die Seiten unten aus, um Änderungen vorzunehmen (Drehen, Neuanordnen und Löschen von Seiten). Klicken Sie zum Einfügen zwischen die Seiten.","undo":"Rückgängig machen","redo":"Wiederherstellen"},"redactPane":{"redactDoc":"Dokument überarbeiten","desc":"Klicken und ziehen Sie, um ein schwarzes Rechteck über jeden Teil des Dokuments zu legen, den Sie unkenntlich machen möchten. Der darunter liegende Text wird entfernt, wenn Sie Ihre Schwärzungen speichern.","confirm":"Schwärzungen bestätigen","undo":"Rückgängig machen"},"searchPane":{"yourQuery":"Ihre Anfrage {search} wurde auf {n, plural, one {# Seite} other {# Seiten}} gefunden"},"selectNotePane":{"selectNote":"Anmerkung auswählen","desc":"Wählen Sie die Anmerkung aus, die Sie teilen möchten."},"searchResults":{"resultPages":"{results, plural, one {# Ergebnis} other {# Ergebnisse}} auf {pages, plural, one {# Seite} other {# Seiten}}","noSearchResults":"Keine Suchergebnisse. Versuchen Sie es erneut mit einer breiteren Anfrage.","occurrences":"{n, plural, one {# Vorkommnis} other {# Vorkommnisse}}"},"sidebar":{"updating":"Dokument wird aktualisiert...","original":"Originaldokument (PDF) »","related":"Zugehöriger Artikel »","contributed":"Beitrag von {name}","source":"Quelle: {source}","actions":"Dokumentaktionen","share":"Teilen","shareDesc":"Erstellen Sie eine Einbettung oder teilen Sie sie in sozialen Medien.","annotate":"Kommentieren","annotateDesc":"Machen Sie Anmerkungen, um Notizen im Dokument festzuhalten.","redact":"Zensieren","redactDesc":"Nehmen Sie Schwärzungen im Dokument vor, um Text zu verbergen. Das Dokument wird anschließend erneut verarbeitet.","modify":"Seiten modifizieren","modifyDesc":"Seiten neu anordnen, drehen, löschen, einfügen und trennen.","info":"Dokumentinformation bearbeiten","infoDesc":"Ändern Sie Dokumentinformationen wie die Beschreibung und die dazugehörige URL.","data":"Tags und Daten bearbeiten","dataDesc":"Fügen Sie Tags und Schlüssel/Wert-Paare hinzu, um Ihr Dokument zu kategorisieren.","sections":"Abschnitte bearbeiten","sectionsDesc":"Fügen Sie Abschnitte hinzu, um Ihr Dokument mit einem Inhaltsverzeichnis zu organisieren.","privateNote":"Persönliche Anmerkung hinzufügen","privateNoteDesc":"Machen Sie Anmerkungen, um Notizen im Dokument festzuhalten."},"viewer":{"notFound":"Dokument nicht gefunden","notFoundDesc":"Das von Ihnen angeforderte Dokument existiert nicht oder Sie haben keine Zugriffsberechtigung dafür","processing":"Dokument wird verarbeitet","processingDesc":"Das von Ihnen angeforderte Dokument wird gerade verarbeitet und automatisch aktualisiert, sobald es bereit ist","error":"Das Dokument ist auf einen Fehler gestoßen","errorDesc":"In dem von Ihnen angeforderten Dokument ist ein Verarbeitungsfehler aufgetreten","accessible":"Dokument nicht zugänglich","accessibleDesc":"Das von Ihnen angeforderte Dokument wird gerade verarbeitet oder Sie haben keine Zugriffsberechtigung dafür"},"addonDispatchDialog":{"select":"Wählen Sie die Dokumente aus, mit denen dieses Add-on ausgeführt werden soll:","queryNoSelected":"Dieses Add-on wird versuchen, mit {n, plural, one {dem # Dokument, das derzeit in Ihren Suchergebnissen enthalten ist} other {den # Dokumenten, die derzeit in Ihren Suchergebnissen enthalten sind}} zu laufen. Um es nur mit ausgewählten Dokumenten auszuführen, brechen Sie diesen Vorgang ab, wählen Sie einige Dokumente und anschließend das Add-on erneut aus.","noSelected":"Sie müssen einige Dokumente auswählen, mit denen das Add-on ausgeführt werden soll. Brechen Sie diesen Vorgang ab, wählen Sie einige Dokumente und anschließend das Add-on erneut aus.","runSelected":"Dieses Add-on wird versuchen, mit {n, plural, one {dem # derzeit ausgewählten Dokument} other {den # derzeit ausgewählten Dokumenten}} zu laufen.","runQuery":"Dieses Add-on wird versuchen, mit {n, plural, one {dem # Dokument, das derzeit in Ihren Suchergebnissen enthalten ist} other {den # Dokumenten, die derzeit in Ihren Suchergebnissen enthalten sind}} zu laufen.","labelSelected":"{n, plural, one {Das # derzeit ausgewählte Dokument} other {Die # derzeit ausgewählten Dokumente}}","labelQuery":"{n, plural, one {Das # Dokument} other {Die # Dokumente}} aus den derzeitigen Suchergebnissen","learnMore":"Mehr erfahren.","hideAddons":"Geplante Add-ons ausblenden","showRuns":"Laufende anzeigen","hideRuns":"Laufende ausblenden","showAddons":"Geplante Add-Ons anzeigen ({n})","runSchedule":"Planmäßig ausführen:","disable":"Deaktivieren"},"addonBrowserDialog":{"searchPlaceholder":"Suchen...","active":"Aktiv","inactive":"Inaktiv","next":"Weiter","previous":"Zurück"},"uploadEmailDialog":{"uploadEmailAddress":"Hochladen per E-Mail","bodyText":"Sie können Dokumente in Ihr Konto hochladen, indem Sie sie als Anhänge an eine spezielle E-Mail-Adresse senden. Aus Sicherheitsgründen wird Ihnen diese E-Mail nur einmal angezeigt. Kopieren Sie sie an einen sicheren Ort: Es werden Anhänge von jedem E-Mail-Konto akzeptiert. Sie können jederzeit eine neue Adresse fürs Hochladen erstellen (wodurch die vorherige Adresse deaktiviert wird) oder diese Funktion ganz deaktivieren. Dokumente werden nicht öffentlich hochgeladen.
Wir würden uns über Ihr Feedback sowie kreative Anwendungsfälle freuen via info@documentcloud.org.","createMsg":"E-Mail-Adresse fürs Hochladen erfolgreich erstellt: {mailkey}@uploads.documentcloud.org","destroyMsg":"Jede E-Mail-Adresse fürs Hochladen wurde aus Ihrem Konto entfernt.","disable":"Hochladen per E-Mail deaktivieren"}}');
-./public/8472.eb3cdfa743b26834002a.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="d1298f5c-3a59-43e0-8adf-bf1816770a97",e._sentryDebugIdIdentifier="sentry-dbid-d1298f5c-3a59-43e0-8adf-bf1816770a97")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[8472],{8472:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"Email address","loading":"Loading...","documentCloud":"DocumentCloud","home":"Home"},"homeTemplate":{"signedIn":"Signed in as {name}","signOut":"Sign out","signIn":"Sign in","signUp":"Sign up","goToApp":"Go to app"},"accessToggle":{"public":"Note will be visible to anyone with access to the document.","collaborator":"Note will be visible to anyone who can edit this document.","private":"Note will be visible to you alone.","publicName":"Public","collaboratorName":"Collaborator","privateName":"Private"},"accessIcon":{"private":"Private Access","organization":"Private to Your Organization","public":"Public Access","privateExplanation":"Only you can view this document","organizationExplanation":"Only members of your organization can view this document","publicExplanation":"Anyone can search and view this document"},"appearanceCustomizer":{"customizeAppearance":"Customize Appearance","hide":"Hide help text","show":"Show help text"},"appearanceDimension":{"responsive":"Automatic (default)","fixed":"Fixed"},"calendar":{"jan":"January","feb":"February","mar":"March","apr":"April","may":"May","jun":"June","jul":"July","aug":"August","sep":"September","oct":"October","nov":"November","dec":"December","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"Cancel","delete":"Delete","done":"Done","edit":"Edit","remove":"Remove","save":"Save","create":"Create","ok":"Ok","update":"Update","dismiss":"Dismiss","continue":"Continue"},"dialogAccessDialog":{"changeAccess":"Change access for {n, plural, one {document} other {# documents}}","selectAccess":"Select an access level for the {n, plural, one {selected document} other {# selected documents}}","public":"Public access","publicDesc":"Anyone on the internet can search for and view the document.","verifiedHelp":"Only verified users or members of verified organizations can make uploaded documents public. If you're a journalist or otherwise work in publishing vetted materials to inform the public, learn more and request verification here.","privateToOrg":"You can’t change the access level to “Private to your organization” because {n, plural, one {this document is} other {one or more documents are}} associated with your individual account, not an organization. To add {n, plural, one {it} other {them}} to an organization, select {n, plural, one {it} other {them}} from the management view and click “Change Owner.” You can join or create an organization on this page.","private":"Private access","privateDesc":"Only people with explicit permission (via collaboration) have access.","organization":"Private to your organization","organizationDesc":"Only the people in your organization have access.","schedulePublication":"Schedule publication","scheduleHelp":"This document will be made public at the given date and time. Publication time is local{timezone}.","unchanged":"Access is unchanged. Select a different access level.","future":"Must select a time in the future","change":"Change"},"dialogCollaboratorDialog":{"confirm":"Confirm remove user","confirmMsg":"Proceeding will remove {name} from {title}. Do you wish to continue?","addCollaborators":"Add Collaborators","invite":"Put in the email of an existing DocumentCloud user below. If they don't have an account, have them register here for free, and then ask them to log in to DocumentCloud at least once.","admin":"Admin","view":"View","adminHelp":"Collaborators can edit this project and its documents","editHelp":"Collaborators can edit documents in this project","viewHelp":"Collaborators can view documents in this project","add":"Add","empty":"You have not yet added any collaborators to this project. Invite collaborators to grant other users access to the documents shared in this project. You can control whether collaborators have access to view/edit the project’s documents or be an admin with permissions to invite other users and edit the project itself.","manageCollaborators":"Manage Collaborators","name":"Name","access":"Access","you":"(you)"},"dialogDataDialog":{"confirm":"Confirm remove data point","removeMsg":"Proceeding will remove the {key}{value} data point from the specified documents. Do you wish to continue?","addData":"Add Data for {n, plural, one {Document} other {# Documents}}","tag":"Tag","value":"Value","key":"Key","keyValue":"Key / Value","tagInfo":"Add custom tags to categorize your documents.","eg":"e.g.","exampleTagReport":"report","exampleTagLawsuit":"lawsuit","exampleTagEmail":"email","keyValueInfo":"Add custom key / value pairs for precise categorization of your documents.","exampleKVState":"state:&nbsp;California","exampleKVYear":"year:&nbsp;2016","exampleKVType":"type:&nbsp;memo","enterTag":"Enter a tag","enterKey":"Enter a key","keyInvalid":"Keys can only contain letters, numbers, underscores (_), and dashes (-)","emptyMsg":"You have not yet added any data to the specified documents. Add tags and key/value pairs to categorize and organize your documents. You can filter and search on document data to give you powerful control over document management.","manageDocumentData":"Manage Document Data","valueUnchanged":"Value remains unchanged","kvCannotBeEmpty":"Key/value cannot be empty"},"dialogReprocessDialog":{"title":"Confirm reprocess","reprocessDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to reprocess page and image text. Do you wish to continue?","reprocessSingleDoc":"Proceeding will force the document to reprocess page and image text. Do you wish to continue?","confirm":"Reprocess"},"dialogDeleteDialog":{"title":"Confirm reprocess","deleteDocs":"Proceeding will permanently delete the {n, plural, one {selected document} other {# selected documents}}. Do you wish to continue?"},"dialogCancelProcessingDialog":{"title":"Cancel processing","deleteDocs":"Proceeding will force the {n, plural, one {selected document} other {# selected documents}} to stop processing. After processing has been stopped, an error will show after which you can “Force Reprocess” or delete the {n, plural, one {document} other {documents}} using the Edit menu. Do you wish to continue?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Staff-only info for selected {n, plural, one {document} other {# documents}}","id":"ID","title":"Title","actions":"Actions","debug":"Debug","viewErrors":"View errors","viewS3":"View in S3"},"dialogDocumentEmbedDialog":{"responsive":"Responsive","respOn":"On (default)","respOnHelp":"Fill the width of the article container (usually works best)","respOff":"Off","respOffHelp":"The document will fit the sizes specified below","width":"Width","widthAuto":"Will fill the available space if the document is set to responsive, otherwise defaults to 700px","widthFixed":"Set a maximum width if the document is responsive, or set a fixed size if not responsive","height":"Height","heightAuto":"The height is based on the size of the document, with no maximum size. If responsive, will be set to the height of the browser window minus 100px","heightFixed":"Set a maximum height if the document is responsive, or set a fixed size if not responsive","sidebarBehavior":"Sidebar behavior","sbResponsive":"Responsive (default)","sbResponsiveHelp":"Show sidebar automatically on large screens and hide on mobile devices. In embed mode, the sidebar will be hidden","hidden":"Hidden","visible":"Visible","visibleDefault":"Visible (default)","sbHiddenHelp":"Hide the sidebar by default","sbVisibleHelp":"Show the sidebar by default","titleBehavior":"Title behavior","tVisibleHelp":"Display the title and attribution in the header of the viewer","tHiddenHelp":"Hide the title in the header of the viewer (still visible in the sidebar)","pdfLink":"PDF link","plVisibleHelp":"Show a link to the raw PDF document in the sidebar","plHiddenHelp":"Hide the sidebar PDF link (file is still accessible if the URL is known)","fullscreenOption":"Fullscreen option","fsVisibleHelp":"Show a fullscreen icon in the bottom-right corner","fsHiddenHelp":"Hide the fullscreen option","textMode":"Text mode","tmVisibleHelp":"Show an option to view the document’s text in the view dropdown","tmHiddenHelp":"Hide text mode","contributedByFormat":"Contributed by format","cbfUserAndOrg":"User and org (default)","cbfUserAndOrgHelp":"Show a document’s attribution as the user name followed by the organization","cbfOrgOnly":"Org only","cbfOrgOnlyHelp":"Attribute the document to just the organization","share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article"},"dialogDocumentInformationDialog":{"editInformation":"Edit Information for {n, plural, one {document} other {# documents}}"},"dialogRedactDialog":{"title":"Confirm redactions","description":"Are you sure you wish to redact the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the redactions in place. This change is irreversible."},"dialogModifyDialog":{"title":"Apply modifications","description":"Are you sure you wish to modify the current document? If you continue, the document viewer will be inaccessible temporarily while the document reprocesses with the modifications. This change is irreversible.","closeTitle":"Confirm close","closeWarning":"You will lose all your unapplied modifications. Are you sure you want to proceed?"},"dialogDeleteNoteDialog":{"title":"Confirm delete","description":"Are you sure you wish to delete the current note?"},"dialogEditSectionsDialog":{"confirmDelete":"Confirm delete","proceedingWillRemove":"Proceeding will remove the specified section (p. {page} {title}). Do you wish to continue?","editSections":"Edit Sections","manageSections":"Manage sections to organize your document with a table of contents.","pageAbbrevNo":"p. {n}","pageAbbrev":"p.","empty":"You have not added any sections","edit":"Edit the selected section","add":"Add a new section","title":"Title","missingTitle":"Please enter a title","updateTitle":"Enter a new title or page number","uniquePageNumber":"You must enter a unique page number","invalidPageNumber":"Page number is invalid"},"dialogEmbedDialog":{"updatingDocument":"Updating document...","makingPublic":"The document is currently being made public. This may take a minute or two.","wouldMakePublic":"Would you like to make this document public before sharing?","notPublic":"The document is not currently public. If you embed or link it, only you and collaborators will be able to view it until it is made public. Click below when you’re ready to publish this document to the public.","makePublic":"Make document public","leave":"Leave as is","selectShare":"Select share option","selectShareHelp":"Choose whether to share the entire document or just a page or note.","shareDoc":"Share entire document","shareDocHelp":"Link or embed the entire document. (This is the most commonly used share option.)","sharePage":"Share specific page","sharePageHelp":"Link or embed a single page of the document. Useful for highlighting a page excerpt.","shareNote":"Share specific note","shareNoteHelpHasNote":"Link or embed a note within the document. Useful for highlighting a region of a page.","shareNoteHelpNoNote":"Once you add notes to the document, use this feature to link or embed them."},"dialogErrorDialog":{"errorOccurred":"An error occurred","unexpectedErrorOccurred":"An unexpected error occurred","tryAgain":"Please try again later.","close":"Close","refresh":"Refresh"},"dialogNoteEmbedDialog":{"embedNote":"Embed a note of “{title}”","embedDesc":"Copy the HTML code to embed this note within an article or post:"},"dialogPageEmbedDialog":{"embedPage":"Embed a page of “{title}”","embedDesc":"Copy the HTML code to embed this page within an article or post:","selectPage":"Select the page to embed:","page":"Page {n} (currently visible)","otherPage":"Other page","enterPageNumber":"Enter the page number to embed:"},"dialogProjectAccessDialog":{"changeAccessFor":"Change access for {name}","selectAccess":"Select an access level below for {name} in {title}","adminAccess":"Admin Access","editAccess":"Edit Access","viewAccess":"View Access","adminHelp":"This collaborator can edit this project and its documents. The collaborator can invite users, delete users, and remove the project.","editHelp":"This collaborator can edit documents in this project but cannot edit the project itself.","viewHelp":"This collaborator can view documents in this project but cannot edit them or the project.","invalidAccess":"Access is already set to {access}. Select a different access level.","changeAccess":"Change access"},"dialogOwnerDialog":{"selectUser":"User must be selected","selectOrg":"Organization must be selected","changeOwner":"Change owner for {n, plural, one {document} other {# documents}}","accessWarning":"Warning: You may lost access to the specified {n, plural, one {document} other {# documents}} as a result of changing the document owner","user":"User:","filterUsers":"Type to filter users...","filterOrgs":"Type to filter organizations..."},"dialogProjectDialog":{"confirmDelete":"Confirm delete","deleteProject":"Are you sure you want to delete this project ({project})?","editProject":"Edit Project","createProject":"Create New Project","title":"Title...","projectDesc":"Project Description (optional)","manageCollabs":"Manage Collaborators","share":"Share / Embed Project","enterTitle":"Enter a title","changeTitle":"Change the title or description"},"dialogProjectEmbedDialog":{"share":"Share “{title}”","embedDesc":"Copy the HTML code to embed this document within an article or post:","invalid":"Invalid project","cannotEmbed":"Cannot embed this project, as it does not appear to exist."},"htmlEditor":{"preview":"Preview:"},"image":{"error":"An error occurred. Try refreshing the page"},"omniselect":{"filter":"Type to filter language","noResults":"No results. Click to clear filter."},"shareOptions":{"errorText":"An unexpected error occurred. Please try again later.","copyHtml":"Copy HTML code","addShortcode":"Add this shortcode to your WordPress content —","pluginRequired":"plugin required","copyShortcode":"Copy shortcode","copyUrl":"Copy URL"},"specialMessage":{"contactUs":"Contact us with bug reports, questions, and suggestions."},"uploadOptions":{"documentLang":"Document language:","forceOcr":"Force OCR:"},"actionBar":{"selectDocs":"Select some documents to reveal edit actions","noPerms":"You do not have permission to edit all of the selected documents","editMenu":"Edit","projectsMenu":"Projects"},"authSection":{"help":"Help","language":"Language","tips":"Tips and Tricks","searchDocs":"Search Documentation","apiDocs":"API Documentation","emailUs":"Email Us","acctSettings":"Account Settings","signOut":"Sign out","changeOrg":"Change organization","personalAcct":"Personal Account","signIn":"Sign in"},"documents":{"yourDocuments":"Your Documents","searchResults":"Search Results","accessDocuments":"Your {access}Documents","nameDocuments":"{name}'s {access}Documents","allDocuments":"All {access}Documents","mustBeVerified":"You must be a verified journalist to upload documents","upload":"Upload","dropFile":"Drop file to upload"},"document":{"open":"Open","updating":"Updating document...","processing":"Processing","processingError":"An error occurred trying to process your document","remove":"Remove","improper":"Your document was uploaded improperly","project":"Project","totalMatchingPages":"{n} of {m} pages matching the query","showAll":"Show all","matchingPages":"{n} pages matching the query","pageAbbrev":"p.","pageCount":"{n, plural, one {# page} other {# pages}}","source":"Source"},"documentThumbnail":{"pages":"pages","loading":"Loading progress information..."},"mainContainer":{"error":"Error","errorMsg":"We could not reach the DocumentCloud server. Please try refreshing the page later.","refresh":"Refresh"},"editMenu":{"editDocInfo":"Edit Document Information","changeAccess":"Change Access","editDocData":"Edit Document Data","cancelProcessing":"Cancel Processing","forceReprocess":"Force Reprocess","entities":"Entities BETA","changeOwner":"Change Owner","delete":"Delete","diagnosticInfo":"Diagnostic Info"},"metaFields":{"defaultFieldInvalidText":"The document already has this {fieldName}","titleFieldTitle":"Title","titleFieldName":"name","titleFieldNameUppercase":"Name","titleFieldHeader":"Rename {n, plural, one {# document} other {# documents}}","titleFieldDescription":"Enter a name below for the {n, plural, one {selected document} other {# selected documents}}","titleFieldButton":"Rename","titleFieldInvalidSameName":"The document already has this name","titleFieldInvalidEmptyName":"Enter a valid name","sourceFieldTitle":"Source","sourceFieldName":"source","sourceFieldNameUppercase":"Source","sourceFieldHeader":"Edit source for {n, plural, one {# document} other {# documents}}","sourceFieldDescription":"Enter a source below for the {n, plural, one {selected document} other {# selected documents}}","sourceFieldButton":"Edit","descriptionFieldTitle":"Description","descriptionFieldName":"description","descriptionFieldNameUppercase":"Description","descriptionFieldHeader":"Edit description for {n, plural, one {# document} other {# documents}}","descriptionFieldDescription":"Enter the description below for the {n, plural, one {selected document} other {# selected documents}}","descriptionFieldButton":"Edit","relatedArticleFieldTitle":"Related Article URL","relatedArticleFieldName":"related article URL","relatedArticleFieldNameUppercase":"Related Article URL","relatedArticleFieldHeader":"Edit the related article URL for {n, plural, one {# document} other {# documents}}","relatedArticleFieldDescription":"Enter the related article URL below for the {n, plural, one {selected document} other {# selected documents}}","relatedArticleFieldButton":"Edit","publishedUrlFieldTitle":"Published URL","publishedUrlFieldName":"published URL","publishedUrlFieldNameUppercase":"Published URL","publishedUrlFieldHeader":"Edit the published URL for {n, plural, one {# document} other {# documents}}","publishedUrlFieldDescription":"Enter the published URL below for the {n, plural, one {selected document} other {# selected documents}}","publishedUrlFieldButton":"Edit"},"projectsMenu":{"newProject":"+ New Project","projMembership":"Project Membership","selectDocs":"Select documents to place them in projects","createProj":"Create a project to organize and share documents"},"noDocuments":{"noSearchResults":"No search results","queryNoResults":"Your search query returned no results. Try again with a broader search query.","welcome":"Welcome to DocumentCloud!","verify1":"Note that currently your account is not verified to upload. You can search through the public repository, organize documents you're interested in into projects, leave private notes, and collaborate on editing and annotating documents other users invite you to.","verify2":"If you’d like to upload or publish documents and you're a working journalist or other organization interested in publishing primary source materials in the public interest, you'll need to have your account verified or added to a verified organization. This is a simple process:","verify3":"First, see if your organization already exists and, if you find it, click \\"Request to Join\\" on its page.","verify4":"If your organization has not been verified yet, or if you're a freelancer, request verification here. Requests usually take two business days to process.","uploadFirst":"Upload your first document","upload1":"Upload a document file to get started using DocumentCloud. You can drag the file into this window, or click on the blue “Upload” button above.","upload2":"Once you upload a file, DocumentCloud will process the document and extract its contents. It may take a few minutes for this to complete, but once it’s done your document will be optimized for analysis and sharing on the web."},"paginator":{"of":"of","document":"{n, plural, one {Document} other {Documents}}"},"processingBar":{"doneProcessing":"Done processing","processingDocuments":"Processing {n, plural, one {document} other {# documents}}"},"searchBar":{"tips":"Search tips: add filters by typing user:, project:, or organization:, etc. Use sort: to order results.","learnMore":"Learn more","search":"Search"},"searchLink":{"search":"Search this document collection"},"projects":{"header":"Projects","allDocuments":"All Documents","yourDocuments":"Your Documents","yourPubDocuments":"Your Public Documents","orgDocuments":"{name}’s Documents","newProject":"+ New Project","createProject":"Create your first project by clicking “New Project” above."},"uploadDialog":{"docUpload":"Document Upload","docUploadProj":"Document Upload to {title}","beginUpload":"Begin upload","pdfSizeWarning":"You can only upload PDF files under {size}.","nonPdfSizeWarning":"You can only upload non-PDF document files under {size}.","fileReady":"{n, plural, one {file} other {files}} ready to upload","fileLimitWarning":"You can only upload {limit} files at once.","moreOptions":"More options","selectFiles":"+ Select files","dragDrop":"Drag and drop files here","publicMsg":"Document will be publicly visible.","collabMsg":"Document will be visible to your organization.","privateMsg":"Document will be visible to you alone.","collabName":"Organization","submitting":"Almost done... submitting uploaded files for processing ({percent})","uploading":"Uploading ... ({uploaded}/{length})","gettingInfo":"Getting upload information ({percent})","pleaseLeaveOpen":"Please leave this page open while your documents upload. This dialog will automatically close when they have finished uploading.","errorHeading":"Error occurred while uploading","errorMsg":"We failed to {errorMessage}. Please try again later.","editDocInfo":"Edit document information:","untitled":"Untitled","uploadFiles":"Upload additional files","selectMore":"+ Select more files","dragDropMore":"Drag and drop additional files here"},"embedNote":{"viewTheNote":"View the note ‘{title}‘ in its original document context on DocumentCloud in a new window or tab","viewDoc":"View the entire document with DocumentCloud"},"embedPage":{"viewDoc":"View entire {title} on DocumentCloud in new window or tab","pageOf":"Page {page} of {title}","gotoDocCloud":"Go to DocumentCloud in new window or tab"},"entities":{"back":"Back","page":"Page","of":"of","totalEntityResult":"{n, plural, one {# total entity result} other {# total entity results}} ","filter":"Filter","applyFilters":"Apply filters","kind":"Kind","clear":"Clear","person":"Person","org":"Organization","location":"Location","event":"Event","workOfArt":"Work of Art","consumerGood":"Consumer Good","address":"Address","date":"Date","number":"Number","phoneNumber":"Phone Number","price":"Price","unknown":"Unknown","other":"Other","occurrences":"Occurrences","proper":"Proper","common":"Common","advanced":"Advanced","relevanceThreshold":"Relevance threshold:","knowledgeGraph":"Knowledge graph:","hasKG":"Has a knowledge graph ID","noKG":"Does not have a knowledge graph ID","wikiUrl":"Wikipedia URL:","hasWiki":"Has a Wikipedia URL","noWiki":"Does not have a Wikipedia URL","occurrence":"{n, plural, zero {} one {# occurrence} other {# occurrences}}","wikipedia":"Wikipedia","entityExtraction":"Entity extraction for “{title}”","extractingEntities":"Extracting entities...","welcome":"Welcome to entity extraction! This feature is very much in progress but we want it in your hands early to welcome any feedback you might have.","manual":"Right now the process for extracting entities is manual. This document has not had entities extracted yet, so click below to get started.","error":"An unexpected error occurred","extract":"Extract entities","noEntities":"There are no entities. This could happen if the document doesn’t have text, is non-English (only English is supported for now), or some error occurred.","starting":"Starting extaction..."},"home":{"about":"DocumentCloud is an all-in-one platform for documents: upload, organize, analyze, annotate, search, and embed.","viewPublicDocs":"View public documents"},"annotation":{"title":"Annotation Title","description":"Annotation Description (optional)","unchanged":"Note remains unchanged","noTitle":"Enter a title for the annotation","org":"This note is only visible to you and others with edit access to this document","private":"This private note is only visible to you","by":"Annotated by {name}","byOrg":"Annotated by {name}, {org}","addPageNote":"Add page note"},"viewDropdown":{"document":"Document","plainText":"Plain Text","thumbnail":"Thumbnail","notes":"Notes","search":"Search Results"},"zoom":{"fitWidth":"Fit width","fitHeight":"Fit height"},"titleHeader":{"contributedBy":"Contributed by {name}"},"annotatePane":{"annotateDocument":"Annotate Document","desc":"Highlight a portion of the page, or click between pages to create a note."},"modifyPane":{"pagesSelected":"{n, plural, one {# Page} other {# Pages}} Selected","applyModifications":"Apply Modifications","duplicate":"Duplicate","move":"Move","unselect":"Unselect","remove":"Remove","insertPages":"Insert {n, plural, one {# Page} other {# Pages}}","pagesPending":"{n, plural, one {# Page} other {# Pages}} Pending Insertion","insertBegin":"Insert {n, plural, one {# page} other {# pages}} at beginning.","insertEnd":"Insert {n, plural, one {# page} other {# pages}} at end.","insertBetween":"Insert {n, plural, one {# page} other {# pages}} in between page {p0} and {p1}.","click":"Click in-between pages below to mark where to paste {n, plural, one {# page} other {# pages}}.","insert":"Insert","insertAtEnd":"Insert at end","insertPosition":"Insert pages at position","insertOtherDoc":"Insert from other document","modifyPages":"Modify Pages","select":"Select pages below to apply modifications (page rotation, rearranging, and deletion). Click in-between pages to insert.","undo":"Undo","redo":"Redo"},"redactPane":{"redactDoc":"Redact Document","desc":"Click and drag to draw a black rectangle over each portion of the document you’d like to redact. Associated text will be removed when you save your redactions.","confirm":"Confirm Redactions","undo":"Undo"},"searchPane":{"yourQuery":"Your query {search} was found on {n, plural, one {# page} other {# pages}}"},"selectNotePane":{"selectNote":"Select a note","desc":"Select the annotation that you want to share."},"searchResults":{"resultPages":"{results, plural, one {# result} other {# results}} across {pages, plural, one {# page} other {# pages}}","noSearchResults":"No search results. Try again with a broader query.","occurrences":"{n, plural, one {# occurrence} other {# occurrences}}"},"sidebar":{"updating":"Updating docucment...","original":"Original Document (PDF) »","related":"Related Article »","contributed":"Contributed by {name}","source":"Source: {source}","actions":"Document Actions","share":"Share","shareDesc":"Create an embed or share on social media.","annotate":"Annotate","annotateDesc":"Make annotations to keep notes on the document.","redact":"Redact","redactDesc":"Create redactions on the document to hide text. The document will reprocess afterwards.","modify":"Modify Pages","modifyDesc":"Rearrange, rotate, delete, insert, and split pages.","info":"Edit Document Info","infoDesc":"Modify document information like description and related URL.","data":"Edit Tags and Data","dataDesc":"Add tags and key/value pairs to categorize your document.","sections":"Edit Sections","sectionsDesc":"Add sections to organize your document with a table of contents.","privateNote":"Add Private Note","privateNoteDesc":"Make annotations to keep notes on the document."},"viewer":{"notFound":"Document not found","notFoundDesc":"The document you requested either does not exist or you lack permission to access it","processing":"Document is processing","processingDesc":"The document you requested is processing and will automatically refresh when it is ready","error":"Document has encountered an error","errorDesc":"A processing error has been encountered in the document you requested","accessible":"Document not accessible","accessibleDesc":"The document you requested is still processing or you lack permission to access to it"}}')}}]);
-./public/446.b7d03ac5d900ff59f2ed.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="68b38246-d67a-4638-bc24-779ba9b56254",e._sentryDebugIdIdentifier="sentry-dbid-68b38246-d67a-4638-bc24-779ba9b56254")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[446],{446:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"𝘌𝘮𝘢𝘪𝘭 𝘢𝘥𝘥𝘳𝘦𝘴𝘴","loading":"𝘓𝘰𝘢𝘥𝘪𝘯𝘨...","documentCloud":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥","home":"𝘏𝘰𝘮𝘦"},"homeTemplate":{"signedIn":"𝘚𝘪𝘨𝘯𝘦𝘥 𝘪𝘯 𝘢𝘴 {name}","signOut":"𝘚𝘪𝘨𝘯 𝘰𝘶𝘵","signIn":"𝘚𝘪𝘨𝘯 𝘪𝘯","signUp":"𝘚𝘪𝘨𝘯 𝘶𝘱","goToApp":"𝘎𝘰 𝘵𝘰 𝘢𝘱𝘱"},"accessToggle":{"public":"𝘕𝘰𝘵𝘦 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘢𝘯𝘺𝘰𝘯𝘦 𝘸𝘪𝘵𝘩 𝘢𝘤𝘤𝘦𝘴𝘴 𝘵𝘰 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵.","collaborator":"𝘕𝘰𝘵𝘦 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘢𝘯𝘺𝘰𝘯𝘦 𝘸𝘩𝘰 𝘤𝘢𝘯 𝘦𝘥𝘪𝘵 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵.","private":"𝘕𝘰𝘵𝘦 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘺𝘰𝘶 𝘢𝘭𝘰𝘯𝘦.","publicName":"𝘗𝘶𝘣𝘭𝘪𝘤","collaboratorName":"𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳","privateName":"𝘗𝘳𝘪𝘷𝘢𝘵𝘦"},"accessIcon":{"private":"𝘗𝘳𝘪𝘷𝘢𝘵𝘦 𝘈𝘤𝘤𝘦𝘴𝘴","organization":"𝘗𝘳𝘪𝘷𝘢𝘵𝘦 𝘵𝘰 𝘠𝘰𝘶𝘳 𝘖𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","public":"𝘗𝘶𝘣𝘭𝘪𝘤 𝘈𝘤𝘤𝘦𝘴𝘴","privateExplanation":"𝘖𝘯𝘭𝘺 𝘺𝘰𝘶 𝘤𝘢𝘯 𝘷𝘪𝘦𝘸 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","organizationExplanation":"𝘖𝘯𝘭𝘺 𝘮𝘦𝘮𝘣𝘦𝘳𝘴 𝘰𝘧 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘤𝘢𝘯 𝘷𝘪𝘦𝘸 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","publicExplanation":"𝘈𝘯𝘺𝘰𝘯𝘦 𝘤𝘢𝘯 𝘴𝘦𝘢𝘳𝘤𝘩 𝘢𝘯𝘥 𝘷𝘪𝘦𝘸 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵"},"appearanceCustomizer":{"customizeAppearance":"𝘊𝘶𝘴𝘵𝘰𝘮𝘪𝘻𝘦 𝘈𝘱𝘱𝘦𝘢𝘳𝘢𝘯𝘤𝘦","hide":"𝘏𝘪𝘥𝘦 𝘩𝘦𝘭𝘱 𝘵𝘦𝘹𝘵","show":"𝘚𝘩𝘰𝘸 𝘩𝘦𝘭𝘱 𝘵𝘦𝘹𝘵"},"appearanceDimension":{"responsive":"𝘈𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤 (𝘥𝘦𝘧𝘢𝘶𝘭𝘵)","fixed":"𝘍𝘪𝘹𝘦𝘥"},"calendar":{"jan":"𝘑𝘢𝘯𝘶𝘢𝘳𝘺","feb":"𝘍𝘦𝘣𝘳𝘶𝘢𝘳𝘺","mar":"𝘔𝘢𝘳𝘤𝘩","apr":"𝘈𝘱𝘳𝘪𝘭","may":"𝘔𝘢𝘺","jun":"𝘑𝘶𝘯𝘦","jul":"𝘑𝘶𝘭𝘺","aug":"𝘈𝘶𝘨𝘶𝘴𝘵","sep":"𝘚𝘦𝘱𝘵𝘦𝘮𝘣𝘦𝘳","oct":"𝘖𝘤𝘵𝘰𝘣𝘦𝘳","nov":"𝘕𝘰𝘷𝘦𝘮𝘣𝘦𝘳","dec":"𝘋𝘦𝘤𝘦𝘮𝘣𝘦𝘳","hourShortcode":"𝘏𝘏","minuteShortcode":"𝘔𝘔"},"dialog":{"cancel":"𝘊𝘢𝘯𝘤𝘦𝘭","delete":"𝘋𝘦𝘭𝘦𝘵𝘦","done":"𝘋𝘰𝘯𝘦","edit":"𝘌𝘥𝘪𝘵","remove":"𝘙𝘦𝘮𝘰𝘷𝘦","save":"𝘚𝘢𝘷𝘦","create":"𝘊𝘳𝘦𝘢𝘵𝘦","ok":"𝘖𝘬","update":"𝘜𝘱𝘥𝘢𝘵𝘦","dismiss":"𝘋𝘪𝘴𝘮𝘪𝘴𝘴","continue":"𝘊𝘰𝘯𝘵𝘪𝘯𝘶𝘦"},"dialogAccessDialog":{"changeAccess":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘢𝘤𝘤𝘦𝘴𝘴 𝘧𝘰𝘳 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","selectAccess":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘢𝘯 𝘢𝘤𝘤𝘦𝘴𝘴 𝘭𝘦𝘷𝘦𝘭 𝘧𝘰𝘳 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","public":"𝘗𝘶𝘣𝘭𝘪𝘤 𝘢𝘤𝘤𝘦𝘴𝘴","publicDesc":"𝘈𝘯𝘺𝘰𝘯𝘦 𝘰𝘯 𝘵𝘩𝘦 𝘪𝘯𝘵𝘦𝘳𝘯𝘦𝘵 𝘤𝘢𝘯 𝘴𝘦𝘢𝘳𝘤𝘩 𝘧𝘰𝘳 𝘢𝘯𝘥 𝘷𝘪𝘦𝘸 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵.","verifiedHelp":"𝘖𝘯𝘭𝘺 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘶𝘴𝘦𝘳𝘴 𝘰𝘳 𝘮𝘦𝘮𝘣𝘦𝘳𝘴 𝘰𝘧 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯𝘴 𝘤𝘢𝘯 𝘮𝘢𝘬𝘦 𝘶𝘱𝘭𝘰𝘢𝘥𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘱𝘶𝘣𝘭𝘪𝘤. 𝘐𝘧 𝘺𝘰𝘶\'𝘳𝘦 𝘢 𝘫𝘰𝘶𝘳𝘯𝘢𝘭𝘪𝘴𝘵 𝘰𝘳 𝘰𝘵𝘩𝘦𝘳𝘸𝘪𝘴𝘦 𝘸𝘰𝘳𝘬 𝘪𝘯 𝘱𝘶𝘣𝘭𝘪𝘴𝘩𝘪𝘯𝘨 𝘷𝘦𝘵𝘵𝘦𝘥 𝘮𝘢𝘵𝘦𝘳𝘪𝘢𝘭𝘴 𝘵𝘰 𝘪𝘯𝘧𝘰𝘳𝘮 𝘵𝘩𝘦 𝘱𝘶𝘣𝘭𝘪𝘤, 𝘭𝘦𝘢𝘳𝘯 𝘮𝘰𝘳𝘦 𝘢𝘯𝘥 𝘳𝘦𝘲𝘶𝘦𝘴𝘵 𝘷𝘦𝘳𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯 𝘩𝘦𝘳𝘦.","privateToOrg":"𝘠𝘰𝘶 𝘤𝘢𝘯’𝘵 𝘤𝘩𝘢𝘯𝘨𝘦 𝘵𝘩𝘦 𝘢𝘤𝘤𝘦𝘴𝘴 𝘭𝘦𝘷𝘦𝘭 𝘵𝘰 “𝘗𝘳𝘪𝘷𝘢𝘵𝘦 𝘵𝘰 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯” 𝘣𝘦𝘤𝘢𝘶𝘴𝘦 {n, plural, one {𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴} other {𝘰𝘯𝘦 𝘰𝘳 𝘮𝘰𝘳𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘢𝘳𝘦}} 𝘢𝘴𝘴𝘰𝘤𝘪𝘢𝘵𝘦𝘥 𝘸𝘪𝘵𝘩 𝘺𝘰𝘶𝘳 𝘪𝘯𝘥𝘪𝘷𝘪𝘥𝘶𝘢𝘭 𝘢𝘤𝘤𝘰𝘶𝘯𝘵, 𝘯𝘰𝘵 𝘢𝘯 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯. 𝘛𝘰 𝘢𝘥𝘥 {n, plural, one {𝘪𝘵} other {𝘵𝘩𝘦𝘮}} 𝘵𝘰 𝘢𝘯 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯, 𝘴𝘦𝘭𝘦𝘤𝘵 {n, plural, one {𝘪𝘵} other {𝘵𝘩𝘦𝘮}} 𝘧𝘳𝘰𝘮 𝘵𝘩𝘦 𝘮𝘢𝘯𝘢𝘨𝘦𝘮𝘦𝘯𝘵 𝘷𝘪𝘦𝘸 𝘢𝘯𝘥 𝘤𝘭𝘪𝘤𝘬 “𝘊𝘩𝘢𝘯𝘨𝘦 𝘖𝘸𝘯𝘦𝘳.” 𝘠𝘰𝘶 𝘤𝘢𝘯 𝘫𝘰𝘪𝘯 𝘰𝘳 𝘤𝘳𝘦𝘢𝘵𝘦 𝘢𝘯 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘰𝘯 𝘵𝘩𝘪𝘴 𝘱𝘢𝘨𝘦.","private":"𝘗𝘳𝘪𝘷𝘢𝘵𝘦 𝘢𝘤𝘤𝘦𝘴𝘴","privateDesc":"𝘖𝘯𝘭𝘺 𝘱𝘦𝘰𝘱𝘭𝘦 𝘸𝘪𝘵𝘩 𝘦𝘹𝘱𝘭𝘪𝘤𝘪𝘵 𝘱𝘦𝘳𝘮𝘪𝘴𝘴𝘪𝘰𝘯 (𝘷𝘪𝘢 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘪𝘰𝘯) 𝘩𝘢𝘷𝘦 𝘢𝘤𝘤𝘦𝘴𝘴.","organization":"𝘗𝘳𝘪𝘷𝘢𝘵𝘦 𝘵𝘰 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","organizationDesc":"𝘖𝘯𝘭𝘺 𝘵𝘩𝘦 𝘱𝘦𝘰𝘱𝘭𝘦 𝘪𝘯 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘩𝘢𝘷𝘦 𝘢𝘤𝘤𝘦𝘴𝘴.","schedulePublication":"𝘚𝘤𝘩𝘦𝘥𝘶𝘭𝘦 𝘱𝘶𝘣𝘭𝘪𝘤𝘢𝘵𝘪𝘰𝘯","scheduleHelp":"𝘛𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘮𝘢𝘥𝘦 𝘱𝘶𝘣𝘭𝘪𝘤 𝘢𝘵 𝘵𝘩𝘦 𝘨𝘪𝘷𝘦𝘯 𝘥𝘢𝘵𝘦 𝘢𝘯𝘥 𝘵𝘪𝘮𝘦. 𝘗𝘶𝘣𝘭𝘪𝘤𝘢𝘵𝘪𝘰𝘯 𝘵𝘪𝘮𝘦 𝘪𝘴 𝘭𝘰𝘤𝘢𝘭{timezone}.","unchanged":"𝘈𝘤𝘤𝘦𝘴𝘴 𝘪𝘴 𝘶𝘯𝘤𝘩𝘢𝘯𝘨𝘦𝘥. 𝘚𝘦𝘭𝘦𝘤𝘵 𝘢 𝘥𝘪𝘧𝘧𝘦𝘳𝘦𝘯𝘵 𝘢𝘤𝘤𝘦𝘴𝘴 𝘭𝘦𝘷𝘦𝘭.","future":"𝘔𝘶𝘴𝘵 𝘴𝘦𝘭𝘦𝘤𝘵 𝘢 𝘵𝘪𝘮𝘦 𝘪𝘯 𝘵𝘩𝘦 𝘧𝘶𝘵𝘶𝘳𝘦","change":"𝘊𝘩𝘢𝘯𝘨𝘦"},"dialogCollaboratorDialog":{"confirm":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘳𝘦𝘮𝘰𝘷𝘦 𝘶𝘴𝘦𝘳","confirmMsg":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘳𝘦𝘮𝘰𝘷𝘦 {name} 𝘧𝘳𝘰𝘮 {title}. 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?","addCollaborators":"𝘈𝘥𝘥 𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴","invite":"𝘗𝘶𝘵 𝘪𝘯 𝘵𝘩𝘦 𝘦𝘮𝘢𝘪𝘭 𝘰𝘧 𝘢𝘯 𝘦𝘹𝘪𝘴𝘵𝘪𝘯𝘨 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘶𝘴𝘦𝘳 𝘣𝘦𝘭𝘰𝘸. 𝘐𝘧 𝘵𝘩𝘦𝘺 𝘥𝘰𝘯\'𝘵 𝘩𝘢𝘷𝘦 𝘢𝘯 𝘢𝘤𝘤𝘰𝘶𝘯𝘵, 𝘩𝘢𝘷𝘦 𝘵𝘩𝘦𝘮 𝘳𝘦𝘨𝘪𝘴𝘵𝘦𝘳 𝘩𝘦𝘳𝘦 𝘧𝘰𝘳 𝘧𝘳𝘦𝘦, 𝘢𝘯𝘥 𝘵𝘩𝘦𝘯 𝘢𝘴𝘬 𝘵𝘩𝘦𝘮 𝘵𝘰 𝘭𝘰𝘨 𝘪𝘯 𝘵𝘰 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘢𝘵 𝘭𝘦𝘢𝘴𝘵 𝘰𝘯𝘤𝘦.","admin":"𝘈𝘥𝘮𝘪𝘯","view":"𝘝𝘪𝘦𝘸","adminHelp":"𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘤𝘢𝘯 𝘦𝘥𝘪𝘵 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘢𝘯𝘥 𝘪𝘵𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","editHelp":"𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘤𝘢𝘯 𝘦𝘥𝘪𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘪𝘯 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵","viewHelp":"𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘤𝘢𝘯 𝘷𝘪𝘦𝘸 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘪𝘯 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵","add":"𝘈𝘥𝘥","empty":"𝘠𝘰𝘶 𝘩𝘢𝘷𝘦 𝘯𝘰𝘵 𝘺𝘦𝘵 𝘢𝘥𝘥𝘦𝘥 𝘢𝘯𝘺 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘵𝘰 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵. 𝘐𝘯𝘷𝘪𝘵𝘦 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘵𝘰 𝘨𝘳𝘢𝘯𝘵 𝘰𝘵𝘩𝘦𝘳 𝘶𝘴𝘦𝘳𝘴 𝘢𝘤𝘤𝘦𝘴𝘴 𝘵𝘰 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘴𝘩𝘢𝘳𝘦𝘥 𝘪𝘯 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵. 𝘠𝘰𝘶 𝘤𝘢𝘯 𝘤𝘰𝘯𝘵𝘳𝘰𝘭 𝘸𝘩𝘦𝘵𝘩𝘦𝘳 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘩𝘢𝘷𝘦 𝘢𝘤𝘤𝘦𝘴𝘴 𝘵𝘰 𝘷𝘪𝘦𝘸/𝘦𝘥𝘪𝘵 𝘵𝘩𝘦 𝘱𝘳𝘰𝘫𝘦𝘤𝘵’𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘰𝘳 𝘣𝘦 𝘢𝘯 𝘢𝘥𝘮𝘪𝘯 𝘸𝘪𝘵𝘩 𝘱𝘦𝘳𝘮𝘪𝘴𝘴𝘪𝘰𝘯𝘴 𝘵𝘰 𝘪𝘯𝘷𝘪𝘵𝘦 𝘰𝘵𝘩𝘦𝘳 𝘶𝘴𝘦𝘳𝘴 𝘢𝘯𝘥 𝘦𝘥𝘪𝘵 𝘵𝘩𝘦 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘪𝘵𝘴𝘦𝘭𝘧.","manageCollaborators":"𝘔𝘢𝘯𝘢𝘨𝘦 𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴","name":"𝘕𝘢𝘮𝘦","access":"𝘈𝘤𝘤𝘦𝘴𝘴","you":"(𝘺𝘰𝘶)"},"dialogDataDialog":{"confirm":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘳𝘦𝘮𝘰𝘷𝘦 𝘥𝘢𝘵𝘢 𝘱𝘰𝘪𝘯𝘵","removeMsg":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘳𝘦𝘮𝘰𝘷𝘦 𝘵𝘩𝘦 {key}{value} 𝘥𝘢𝘵𝘢 𝘱𝘰𝘪𝘯𝘵 𝘧𝘳𝘰𝘮 𝘵𝘩𝘦 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴. 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?","addData":"𝘈𝘥𝘥 𝘋𝘢𝘵𝘢 𝘧𝘰𝘳 {n, plural, one {𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","tag":"𝘛𝘢𝘨","value":"𝘝𝘢𝘭𝘶𝘦","key":"𝘒𝘦𝘺","keyValue":"𝘒𝘦𝘺 / 𝘝𝘢𝘭𝘶𝘦","tagInfo":"𝘈𝘥𝘥 𝘤𝘶𝘴𝘵𝘰𝘮 𝘵𝘢𝘨𝘴 𝘵𝘰 𝘤𝘢𝘵𝘦𝘨𝘰𝘳𝘪𝘻𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴.","eg":"𝘦.𝘨.","exampleTagReport":"𝘳𝘦𝘱𝘰𝘳𝘵","exampleTagLawsuit":"𝘭𝘢𝘸𝘴𝘶𝘪𝘵","exampleTagEmail":"𝘦𝘮𝘢𝘪𝘭","keyValueInfo":"𝘈𝘥𝘥 𝘤𝘶𝘴𝘵𝘰𝘮 𝘬𝘦𝘺 / 𝘷𝘢𝘭𝘶𝘦 𝘱𝘢𝘪𝘳𝘴 𝘧𝘰𝘳 𝘱𝘳𝘦𝘤𝘪𝘴𝘦 𝘤𝘢𝘵𝘦𝘨𝘰𝘳𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘰𝘧 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴.","exampleKVState":"𝘴𝘵𝘢𝘵𝘦:&𝘯𝘣𝘴𝘱;𝘊𝘢𝘭𝘪𝘧𝘰𝘳𝘯𝘪𝘢","exampleKVYear":"𝘺𝘦𝘢𝘳:&𝘯𝘣𝘴𝘱;2016","exampleKVType":"𝘵𝘺𝘱𝘦:&𝘯𝘣𝘴𝘱;𝘮𝘦𝘮𝘰","enterTag":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘵𝘢𝘨","enterKey":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘬𝘦𝘺","keyInvalid":"𝘒𝘦𝘺𝘴 𝘤𝘢𝘯 𝘰𝘯𝘭𝘺 𝘤𝘰𝘯𝘵𝘢𝘪𝘯 𝘭𝘦𝘵𝘵𝘦𝘳𝘴, 𝘯𝘶𝘮𝘣𝘦𝘳𝘴, 𝘶𝘯𝘥𝘦𝘳𝘴𝘤𝘰𝘳𝘦𝘴 (_), 𝘢𝘯𝘥 𝘥𝘢𝘴𝘩𝘦𝘴 (-)","emptyMsg":"𝘠𝘰𝘶 𝘩𝘢𝘷𝘦 𝘯𝘰𝘵 𝘺𝘦𝘵 𝘢𝘥𝘥𝘦𝘥 𝘢𝘯𝘺 𝘥𝘢𝘵𝘢 𝘵𝘰 𝘵𝘩𝘦 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴. 𝘈𝘥𝘥 𝘵𝘢𝘨𝘴 𝘢𝘯𝘥 𝘬𝘦𝘺/𝘷𝘢𝘭𝘶𝘦 𝘱𝘢𝘪𝘳𝘴 𝘵𝘰 𝘤𝘢𝘵𝘦𝘨𝘰𝘳𝘪𝘻𝘦 𝘢𝘯𝘥 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴. 𝘠𝘰𝘶 𝘤𝘢𝘯 𝘧𝘪𝘭𝘵𝘦𝘳 𝘢𝘯𝘥 𝘴𝘦𝘢𝘳𝘤𝘩 𝘰𝘯 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘥𝘢𝘵𝘢 𝘵𝘰 𝘨𝘪𝘷𝘦 𝘺𝘰𝘶 𝘱𝘰𝘸𝘦𝘳𝘧𝘶𝘭 𝘤𝘰𝘯𝘵𝘳𝘰𝘭 𝘰𝘷𝘦𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘮𝘢𝘯𝘢𝘨𝘦𝘮𝘦𝘯𝘵.","manageDocumentData":"𝘔𝘢𝘯𝘢𝘨𝘦 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘋𝘢𝘵𝘢","valueUnchanged":"𝘝𝘢𝘭𝘶𝘦 𝘳𝘦𝘮𝘢𝘪𝘯𝘴 𝘶𝘯𝘤𝘩𝘢𝘯𝘨𝘦𝘥","kvCannotBeEmpty":"𝘒𝘦𝘺/𝘷𝘢𝘭𝘶𝘦 𝘤𝘢𝘯𝘯𝘰𝘵 𝘣𝘦 𝘦𝘮𝘱𝘵𝘺"},"dialogReprocessDialog":{"title":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴","reprocessDocs":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘧𝘰𝘳𝘤𝘦 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}} 𝘵𝘰 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴 𝘱𝘢𝘨𝘦 𝘢𝘯𝘥 𝘪𝘮𝘢𝘨𝘦 𝘵𝘦𝘹𝘵. 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?","reprocessSingleDoc":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘧𝘰𝘳𝘤𝘦 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘵𝘰 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴 𝘱𝘢𝘨𝘦 𝘢𝘯𝘥 𝘪𝘮𝘢𝘨𝘦 𝘵𝘦𝘹𝘵. 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?","confirm":"𝘙𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴"},"dialogDeleteDialog":{"title":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴","deleteDocs":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘱𝘦𝘳𝘮𝘢𝘯𝘦𝘯𝘵𝘭𝘺 𝘥𝘦𝘭𝘦𝘵𝘦 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}. 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?"},"dialogCancelProcessingDialog":{"title":"𝘊𝘢𝘯𝘤𝘦𝘭 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨","deleteDocs":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘧𝘰𝘳𝘤𝘦 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}} 𝘵𝘰 𝘴𝘵𝘰𝘱 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨. 𝘈𝘧𝘵𝘦𝘳 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨 𝘩𝘢𝘴 𝘣𝘦𝘦𝘯 𝘴𝘵𝘰𝘱𝘱𝘦𝘥, 𝘢𝘯 𝘦𝘳𝘳𝘰𝘳 𝘸𝘪𝘭𝘭 𝘴𝘩𝘰𝘸 𝘢𝘧𝘵𝘦𝘳 𝘸𝘩𝘪𝘤𝘩 𝘺𝘰𝘶 𝘤𝘢𝘯 “𝘍𝘰𝘳𝘤𝘦 𝘙𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴” 𝘰𝘳 𝘥𝘦𝘭𝘦𝘵𝘦 𝘵𝘩𝘦 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}} 𝘶𝘴𝘪𝘯𝘨 𝘵𝘩𝘦 𝘌𝘥𝘪𝘵 𝘮𝘦𝘯𝘶. 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝘚𝘵𝘢𝘧𝘧-𝘰𝘯𝘭𝘺 𝘪𝘯𝘧𝘰 𝘧𝘰𝘳 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","id":"𝘐𝘋","title":"𝘛𝘪𝘵𝘭𝘦","actions":"𝘈𝘤𝘵𝘪𝘰𝘯𝘴","debug":"𝘋𝘦𝘣𝘶𝘨","viewErrors":"𝘝𝘪𝘦𝘸 𝘦𝘳𝘳𝘰𝘳𝘴","viewS3":"𝘝𝘪𝘦𝘸 𝘪𝘯 𝘚3"},"dialogDocumentEmbedDialog":{"responsive":"𝘙𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦","respOn":"𝘖𝘯 (𝘥𝘦𝘧𝘢𝘶𝘭𝘵)","respOnHelp":"𝘍𝘪𝘭𝘭 𝘵𝘩𝘦 𝘸𝘪𝘥𝘵𝘩 𝘰𝘧 𝘵𝘩𝘦 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘤𝘰𝘯𝘵𝘢𝘪𝘯𝘦𝘳 (𝘶𝘴𝘶𝘢𝘭𝘭𝘺 𝘸𝘰𝘳𝘬𝘴 𝘣𝘦𝘴𝘵)","respOff":"𝘖𝘧𝘧","respOffHelp":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘧𝘪𝘵 𝘵𝘩𝘦 𝘴𝘪𝘻𝘦𝘴 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘦𝘥 𝘣𝘦𝘭𝘰𝘸","width":"𝘞𝘪𝘥𝘵𝘩","widthAuto":"𝘞𝘪𝘭𝘭 𝘧𝘪𝘭𝘭 𝘵𝘩𝘦 𝘢𝘷𝘢𝘪𝘭𝘢𝘣𝘭𝘦 𝘴𝘱𝘢𝘤𝘦 𝘪𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴 𝘴𝘦𝘵 𝘵𝘰 𝘳𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦, 𝘰𝘵𝘩𝘦𝘳𝘸𝘪𝘴𝘦 𝘥𝘦𝘧𝘢𝘶𝘭𝘵𝘴 𝘵𝘰 700𝘱𝘹","widthFixed":"𝘚𝘦𝘵 𝘢 𝘮𝘢𝘹𝘪𝘮𝘶𝘮 𝘸𝘪𝘥𝘵𝘩 𝘪𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴 𝘳𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦, 𝘰𝘳 𝘴𝘦𝘵 𝘢 𝘧𝘪𝘹𝘦𝘥 𝘴𝘪𝘻𝘦 𝘪𝘧 𝘯𝘰𝘵 𝘳𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦","height":"𝘏𝘦𝘪𝘨𝘩𝘵","heightAuto":"𝘛𝘩𝘦 𝘩𝘦𝘪𝘨𝘩𝘵 𝘪𝘴 𝘣𝘢𝘴𝘦𝘥 𝘰𝘯 𝘵𝘩𝘦 𝘴𝘪𝘻𝘦 𝘰𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵, 𝘸𝘪𝘵𝘩 𝘯𝘰 𝘮𝘢𝘹𝘪𝘮𝘶𝘮 𝘴𝘪𝘻𝘦. 𝘐𝘧 𝘳𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦, 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘴𝘦𝘵 𝘵𝘰 𝘵𝘩𝘦 𝘩𝘦𝘪𝘨𝘩𝘵 𝘰𝘧 𝘵𝘩𝘦 𝘣𝘳𝘰𝘸𝘴𝘦𝘳 𝘸𝘪𝘯𝘥𝘰𝘸 𝘮𝘪𝘯𝘶𝘴 100𝘱𝘹","heightFixed":"𝘚𝘦𝘵 𝘢 𝘮𝘢𝘹𝘪𝘮𝘶𝘮 𝘩𝘦𝘪𝘨𝘩𝘵 𝘪𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴 𝘳𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦, 𝘰𝘳 𝘴𝘦𝘵 𝘢 𝘧𝘪𝘹𝘦𝘥 𝘴𝘪𝘻𝘦 𝘪𝘧 𝘯𝘰𝘵 𝘳𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦","sidebarBehavior":"𝘚𝘪𝘥𝘦𝘣𝘢𝘳 𝘣𝘦𝘩𝘢𝘷𝘪𝘰𝘳","sbResponsive":"𝘙𝘦𝘴𝘱𝘰𝘯𝘴𝘪𝘷𝘦 (𝘥𝘦𝘧𝘢𝘶𝘭𝘵)","sbResponsiveHelp":"𝘚𝘩𝘰𝘸 𝘴𝘪𝘥𝘦𝘣𝘢𝘳 𝘢𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤𝘢𝘭𝘭𝘺 𝘰𝘯 𝘭𝘢𝘳𝘨𝘦 𝘴𝘤𝘳𝘦𝘦𝘯𝘴 𝘢𝘯𝘥 𝘩𝘪𝘥𝘦 𝘰𝘯 𝘮𝘰𝘣𝘪𝘭𝘦 𝘥𝘦𝘷𝘪𝘤𝘦𝘴. 𝘐𝘯 𝘦𝘮𝘣𝘦𝘥 𝘮𝘰𝘥𝘦, 𝘵𝘩𝘦 𝘴𝘪𝘥𝘦𝘣𝘢𝘳 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘩𝘪𝘥𝘥𝘦𝘯","hidden":"𝘏𝘪𝘥𝘥𝘦𝘯","visible":"𝘝𝘪𝘴𝘪𝘣𝘭𝘦","visibleDefault":"𝘝𝘪𝘴𝘪𝘣𝘭𝘦 (𝘥𝘦𝘧𝘢𝘶𝘭𝘵)","sbHiddenHelp":"𝘏𝘪𝘥𝘦 𝘵𝘩𝘦 𝘴𝘪𝘥𝘦𝘣𝘢𝘳 𝘣𝘺 𝘥𝘦𝘧𝘢𝘶𝘭𝘵","sbVisibleHelp":"𝘚𝘩𝘰𝘸 𝘵𝘩𝘦 𝘴𝘪𝘥𝘦𝘣𝘢𝘳 𝘣𝘺 𝘥𝘦𝘧𝘢𝘶𝘭𝘵","titleBehavior":"𝘛𝘪𝘵𝘭𝘦 𝘣𝘦𝘩𝘢𝘷𝘪𝘰𝘳","tVisibleHelp":"𝘋𝘪𝘴𝘱𝘭𝘢𝘺 𝘵𝘩𝘦 𝘵𝘪𝘵𝘭𝘦 𝘢𝘯𝘥 𝘢𝘵𝘵𝘳𝘪𝘣𝘶𝘵𝘪𝘰𝘯 𝘪𝘯 𝘵𝘩𝘦 𝘩𝘦𝘢𝘥𝘦𝘳 𝘰𝘧 𝘵𝘩𝘦 𝘷𝘪𝘦𝘸𝘦𝘳","tHiddenHelp":"𝘏𝘪𝘥𝘦 𝘵𝘩𝘦 𝘵𝘪𝘵𝘭𝘦 𝘪𝘯 𝘵𝘩𝘦 𝘩𝘦𝘢𝘥𝘦𝘳 𝘰𝘧 𝘵𝘩𝘦 𝘷𝘪𝘦𝘸𝘦𝘳 (𝘴𝘵𝘪𝘭𝘭 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘪𝘯 𝘵𝘩𝘦 𝘴𝘪𝘥𝘦𝘣𝘢𝘳)","pdfLink":"𝘗𝘋𝘍 𝘭𝘪𝘯𝘬","plVisibleHelp":"𝘚𝘩𝘰𝘸 𝘢 𝘭𝘪𝘯𝘬 𝘵𝘰 𝘵𝘩𝘦 𝘳𝘢𝘸 𝘗𝘋𝘍 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘯 𝘵𝘩𝘦 𝘴𝘪𝘥𝘦𝘣𝘢𝘳","plHiddenHelp":"𝘏𝘪𝘥𝘦 𝘵𝘩𝘦 𝘴𝘪𝘥𝘦𝘣𝘢𝘳 𝘗𝘋𝘍 𝘭𝘪𝘯𝘬 (𝘧𝘪𝘭𝘦 𝘪𝘴 𝘴𝘵𝘪𝘭𝘭 𝘢𝘤𝘤𝘦𝘴𝘴𝘪𝘣𝘭𝘦 𝘪𝘧 𝘵𝘩𝘦 𝘜𝘙𝘓 𝘪𝘴 𝘬𝘯𝘰𝘸𝘯)","fullscreenOption":"𝘍𝘶𝘭𝘭𝘴𝘤𝘳𝘦𝘦𝘯 𝘰𝘱𝘵𝘪𝘰𝘯","fsVisibleHelp":"𝘚𝘩𝘰𝘸 𝘢 𝘧𝘶𝘭𝘭𝘴𝘤𝘳𝘦𝘦𝘯 𝘪𝘤𝘰𝘯 𝘪𝘯 𝘵𝘩𝘦 𝘣𝘰𝘵𝘵𝘰𝘮-𝘳𝘪𝘨𝘩𝘵 𝘤𝘰𝘳𝘯𝘦𝘳","fsHiddenHelp":"𝘏𝘪𝘥𝘦 𝘵𝘩𝘦 𝘧𝘶𝘭𝘭𝘴𝘤𝘳𝘦𝘦𝘯 𝘰𝘱𝘵𝘪𝘰𝘯","textMode":"𝘛𝘦𝘹𝘵 𝘮𝘰𝘥𝘦","tmVisibleHelp":"𝘚𝘩𝘰𝘸 𝘢𝘯 𝘰𝘱𝘵𝘪𝘰𝘯 𝘵𝘰 𝘷𝘪𝘦𝘸 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵’𝘴 𝘵𝘦𝘹𝘵 𝘪𝘯 𝘵𝘩𝘦 𝘷𝘪𝘦𝘸 𝘥𝘳𝘰𝘱𝘥𝘰𝘸𝘯","tmHiddenHelp":"𝘏𝘪𝘥𝘦 𝘵𝘦𝘹𝘵 𝘮𝘰𝘥𝘦","contributedByFormat":"𝘊𝘰𝘯𝘵𝘳𝘪𝘣𝘶𝘵𝘦𝘥 𝘣𝘺 𝘧𝘰𝘳𝘮𝘢𝘵","cbfUserAndOrg":"𝘜𝘴𝘦𝘳 𝘢𝘯𝘥 𝘰𝘳𝘨 (𝘥𝘦𝘧𝘢𝘶𝘭𝘵)","cbfUserAndOrgHelp":"𝘚𝘩𝘰𝘸 𝘢 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵’𝘴 𝘢𝘵𝘵𝘳𝘪𝘣𝘶𝘵𝘪𝘰𝘯 𝘢𝘴 𝘵𝘩𝘦 𝘶𝘴𝘦𝘳 𝘯𝘢𝘮𝘦 𝘧𝘰𝘭𝘭𝘰𝘸𝘦𝘥 𝘣𝘺 𝘵𝘩𝘦 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","cbfOrgOnly":"𝘖𝘳𝘨 𝘰𝘯𝘭𝘺","cbfOrgOnlyHelp":"𝘈𝘵𝘵𝘳𝘪𝘣𝘶𝘵𝘦 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘵𝘰 𝘫𝘶𝘴𝘵 𝘵𝘩𝘦 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","share":"𝘚𝘩𝘢𝘳𝘦 “{title}”","embedDesc":"𝘊𝘰𝘱𝘺 𝘵𝘩𝘦 𝘏𝘛𝘔𝘓 𝘤𝘰𝘥𝘦 𝘵𝘰 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘵𝘩𝘪𝘯 𝘢𝘯 𝘢𝘳𝘵𝘪𝘤𝘭𝘦"},"dialogDocumentInformationDialog":{"editInformation":"𝘌𝘥𝘪𝘵 𝘐𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯 𝘧𝘰𝘳 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}"},"dialogRedactDialog":{"title":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘳𝘦𝘥𝘢𝘤𝘵𝘪𝘰𝘯𝘴","description":"𝘈𝘳𝘦 𝘺𝘰𝘶 𝘴𝘶𝘳𝘦 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘳𝘦𝘥𝘢𝘤𝘵 𝘵𝘩𝘦 𝘤𝘶𝘳𝘳𝘦𝘯𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵? 𝘐𝘧 𝘺𝘰𝘶 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦, 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘷𝘪𝘦𝘸𝘦𝘳 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘪𝘯𝘢𝘤𝘤𝘦𝘴𝘴𝘪𝘣𝘭𝘦 𝘵𝘦𝘮𝘱𝘰𝘳𝘢𝘳𝘪𝘭𝘺 𝘸𝘩𝘪𝘭𝘦 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘦𝘴 𝘸𝘪𝘵𝘩 𝘵𝘩𝘦 𝘳𝘦𝘥𝘢𝘤𝘵𝘪𝘰𝘯𝘴 𝘪𝘯 𝘱𝘭𝘢𝘤𝘦. 𝘛𝘩𝘪𝘴 𝘤𝘩𝘢𝘯𝘨𝘦 𝘪𝘴 𝘪𝘳𝘳𝘦𝘷𝘦𝘳𝘴𝘪𝘣𝘭𝘦."},"dialogModifyDialog":{"title":"𝘈𝘱𝘱𝘭𝘺 𝘮𝘰𝘥𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯𝘴","description":"𝘈𝘳𝘦 𝘺𝘰𝘶 𝘴𝘶𝘳𝘦 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘮𝘰𝘥𝘪𝘧𝘺 𝘵𝘩𝘦 𝘤𝘶𝘳𝘳𝘦𝘯𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵? 𝘐𝘧 𝘺𝘰𝘶 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦, 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘷𝘪𝘦𝘸𝘦𝘳 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘪𝘯𝘢𝘤𝘤𝘦𝘴𝘴𝘪𝘣𝘭𝘦 𝘵𝘦𝘮𝘱𝘰𝘳𝘢𝘳𝘪𝘭𝘺 𝘸𝘩𝘪𝘭𝘦 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘦𝘴 𝘸𝘪𝘵𝘩 𝘵𝘩𝘦 𝘮𝘰𝘥𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯𝘴. 𝘛𝘩𝘪𝘴 𝘤𝘩𝘢𝘯𝘨𝘦 𝘪𝘴 𝘪𝘳𝘳𝘦𝘷𝘦𝘳𝘴𝘪𝘣𝘭𝘦.","closeTitle":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘤𝘭𝘰𝘴𝘦","closeWarning":"𝘠𝘰𝘶 𝘸𝘪𝘭𝘭 𝘭𝘰𝘴𝘦 𝘢𝘭𝘭 𝘺𝘰𝘶𝘳 𝘶𝘯𝘢𝘱𝘱𝘭𝘪𝘦𝘥 𝘮𝘰𝘥𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯𝘴. 𝘈𝘳𝘦 𝘺𝘰𝘶 𝘴𝘶𝘳𝘦 𝘺𝘰𝘶 𝘸𝘢𝘯𝘵 𝘵𝘰 𝘱𝘳𝘰𝘤𝘦𝘦𝘥?"},"dialogDeleteNoteDialog":{"title":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘥𝘦𝘭𝘦𝘵𝘦","description":"𝘈𝘳𝘦 𝘺𝘰𝘶 𝘴𝘶𝘳𝘦 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘥𝘦𝘭𝘦𝘵𝘦 𝘵𝘩𝘦 𝘤𝘶𝘳𝘳𝘦𝘯𝘵 𝘯𝘰𝘵𝘦?"},"dialogEditSectionsDialog":{"confirmDelete":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘥𝘦𝘭𝘦𝘵𝘦","proceedingWillRemove":"𝘗𝘳𝘰𝘤𝘦𝘦𝘥𝘪𝘯𝘨 𝘸𝘪𝘭𝘭 𝘳𝘦𝘮𝘰𝘷𝘦 𝘵𝘩𝘦 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘦𝘥 𝘴𝘦𝘤𝘵𝘪𝘰𝘯 (𝘱. {page} {title}). 𝘋𝘰 𝘺𝘰𝘶 𝘸𝘪𝘴𝘩 𝘵𝘰 𝘤𝘰𝘯𝘵𝘪𝘯𝘶𝘦?","editSections":"𝘌𝘥𝘪𝘵 𝘚𝘦𝘤𝘵𝘪𝘰𝘯𝘴","manageSections":"𝘔𝘢𝘯𝘢𝘨𝘦 𝘴𝘦𝘤𝘵𝘪𝘰𝘯𝘴 𝘵𝘰 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘵𝘩 𝘢 𝘵𝘢𝘣𝘭𝘦 𝘰𝘧 𝘤𝘰𝘯𝘵𝘦𝘯𝘵𝘴.","pageAbbrevNo":"𝘱. {n}","pageAbbrev":"𝘱.","empty":"𝘠𝘰𝘶 𝘩𝘢𝘷𝘦 𝘯𝘰𝘵 𝘢𝘥𝘥𝘦𝘥 𝘢𝘯𝘺 𝘴𝘦𝘤𝘵𝘪𝘰𝘯𝘴","edit":"𝘌𝘥𝘪𝘵 𝘵𝘩𝘦 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘴𝘦𝘤𝘵𝘪𝘰𝘯","add":"𝘈𝘥𝘥 𝘢 𝘯𝘦𝘸 𝘴𝘦𝘤𝘵𝘪𝘰𝘯","title":"𝘛𝘪𝘵𝘭𝘦","missingTitle":"𝘗𝘭𝘦𝘢𝘴𝘦 𝘦𝘯𝘵𝘦𝘳 𝘢 𝘵𝘪𝘵𝘭𝘦","updateTitle":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘯𝘦𝘸 𝘵𝘪𝘵𝘭𝘦 𝘰𝘳 𝘱𝘢𝘨𝘦 𝘯𝘶𝘮𝘣𝘦𝘳","uniquePageNumber":"𝘠𝘰𝘶 𝘮𝘶𝘴𝘵 𝘦𝘯𝘵𝘦𝘳 𝘢 𝘶𝘯𝘪𝘲𝘶𝘦 𝘱𝘢𝘨𝘦 𝘯𝘶𝘮𝘣𝘦𝘳","invalidPageNumber":"𝘗𝘢𝘨𝘦 𝘯𝘶𝘮𝘣𝘦𝘳 𝘪𝘴 𝘪𝘯𝘷𝘢𝘭𝘪𝘥"},"dialogEmbedDialog":{"updatingDocument":"𝘜𝘱𝘥𝘢𝘵𝘪𝘯𝘨 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵...","makingPublic":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴 𝘤𝘶𝘳𝘳𝘦𝘯𝘵𝘭𝘺 𝘣𝘦𝘪𝘯𝘨 𝘮𝘢𝘥𝘦 𝘱𝘶𝘣𝘭𝘪𝘤. 𝘛𝘩𝘪𝘴 𝘮𝘢𝘺 𝘵𝘢𝘬𝘦 𝘢 𝘮𝘪𝘯𝘶𝘵𝘦 𝘰𝘳 𝘵𝘸𝘰.","wouldMakePublic":"𝘞𝘰𝘶𝘭𝘥 𝘺𝘰𝘶 𝘭𝘪𝘬𝘦 𝘵𝘰 𝘮𝘢𝘬𝘦 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘱𝘶𝘣𝘭𝘪𝘤 𝘣𝘦𝘧𝘰𝘳𝘦 𝘴𝘩𝘢𝘳𝘪𝘯𝘨?","notPublic":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴 𝘯𝘰𝘵 𝘤𝘶𝘳𝘳𝘦𝘯𝘵𝘭𝘺 𝘱𝘶𝘣𝘭𝘪𝘤. 𝘐𝘧 𝘺𝘰𝘶 𝘦𝘮𝘣𝘦𝘥 𝘰𝘳 𝘭𝘪𝘯𝘬 𝘪𝘵, 𝘰𝘯𝘭𝘺 𝘺𝘰𝘶 𝘢𝘯𝘥 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘢𝘣𝘭𝘦 𝘵𝘰 𝘷𝘪𝘦𝘸 𝘪𝘵 𝘶𝘯𝘵𝘪𝘭 𝘪𝘵 𝘪𝘴 𝘮𝘢𝘥𝘦 𝘱𝘶𝘣𝘭𝘪𝘤. 𝘊𝘭𝘪𝘤𝘬 𝘣𝘦𝘭𝘰𝘸 𝘸𝘩𝘦𝘯 𝘺𝘰𝘶’𝘳𝘦 𝘳𝘦𝘢𝘥𝘺 𝘵𝘰 𝘱𝘶𝘣𝘭𝘪𝘴𝘩 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘵𝘰 𝘵𝘩𝘦 𝘱𝘶𝘣𝘭𝘪𝘤.","makePublic":"𝘔𝘢𝘬𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘱𝘶𝘣𝘭𝘪𝘤","leave":"𝘓𝘦𝘢𝘷𝘦 𝘢𝘴 𝘪𝘴","selectShare":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘴𝘩𝘢𝘳𝘦 𝘰𝘱𝘵𝘪𝘰𝘯","selectShareHelp":"𝘊𝘩𝘰𝘰𝘴𝘦 𝘸𝘩𝘦𝘵𝘩𝘦𝘳 𝘵𝘰 𝘴𝘩𝘢𝘳𝘦 𝘵𝘩𝘦 𝘦𝘯𝘵𝘪𝘳𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘰𝘳 𝘫𝘶𝘴𝘵 𝘢 𝘱𝘢𝘨𝘦 𝘰𝘳 𝘯𝘰𝘵𝘦.","shareDoc":"𝘚𝘩𝘢𝘳𝘦 𝘦𝘯𝘵𝘪𝘳𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","shareDocHelp":"𝘓𝘪𝘯𝘬 𝘰𝘳 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘦 𝘦𝘯𝘵𝘪𝘳𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵. (𝘛𝘩𝘪𝘴 𝘪𝘴 𝘵𝘩𝘦 𝘮𝘰𝘴𝘵 𝘤𝘰𝘮𝘮𝘰𝘯𝘭𝘺 𝘶𝘴𝘦𝘥 𝘴𝘩𝘢𝘳𝘦 𝘰𝘱𝘵𝘪𝘰𝘯.)","sharePage":"𝘚𝘩𝘢𝘳𝘦 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘤 𝘱𝘢𝘨𝘦","sharePageHelp":"𝘓𝘪𝘯𝘬 𝘰𝘳 𝘦𝘮𝘣𝘦𝘥 𝘢 𝘴𝘪𝘯𝘨𝘭𝘦 𝘱𝘢𝘨𝘦 𝘰𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵. 𝘜𝘴𝘦𝘧𝘶𝘭 𝘧𝘰𝘳 𝘩𝘪𝘨𝘩𝘭𝘪𝘨𝘩𝘵𝘪𝘯𝘨 𝘢 𝘱𝘢𝘨𝘦 𝘦𝘹𝘤𝘦𝘳𝘱𝘵.","shareNote":"𝘚𝘩𝘢𝘳𝘦 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘤 𝘯𝘰𝘵𝘦","shareNoteHelpHasNote":"𝘓𝘪𝘯𝘬 𝘰𝘳 𝘦𝘮𝘣𝘦𝘥 𝘢 𝘯𝘰𝘵𝘦 𝘸𝘪𝘵𝘩𝘪𝘯 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵. 𝘜𝘴𝘦𝘧𝘶𝘭 𝘧𝘰𝘳 𝘩𝘪𝘨𝘩𝘭𝘪𝘨𝘩𝘵𝘪𝘯𝘨 𝘢 𝘳𝘦𝘨𝘪𝘰𝘯 𝘰𝘧 𝘢 𝘱𝘢𝘨𝘦.","shareNoteHelpNoNote":"𝘖𝘯𝘤𝘦 𝘺𝘰𝘶 𝘢𝘥𝘥 𝘯𝘰𝘵𝘦𝘴 𝘵𝘰 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵, 𝘶𝘴𝘦 𝘵𝘩𝘪𝘴 𝘧𝘦𝘢𝘵𝘶𝘳𝘦 𝘵𝘰 𝘭𝘪𝘯𝘬 𝘰𝘳 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘦𝘮."},"dialogErrorDialog":{"errorOccurred":"𝘈𝘯 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥","unexpectedErrorOccurred":"𝘈𝘯 𝘶𝘯𝘦𝘹𝘱𝘦𝘤𝘵𝘦𝘥 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥","tryAgain":"𝘗𝘭𝘦𝘢𝘴𝘦 𝘵𝘳𝘺 𝘢𝘨𝘢𝘪𝘯 𝘭𝘢𝘵𝘦𝘳.","close":"𝘊𝘭𝘰𝘴𝘦","refresh":"𝘙𝘦𝘧𝘳𝘦𝘴𝘩"},"dialogNoteEmbedDialog":{"embedNote":"𝘌𝘮𝘣𝘦𝘥 𝘢 𝘯𝘰𝘵𝘦 𝘰𝘧 “{title}”","embedDesc":"𝘊𝘰𝘱𝘺 𝘵𝘩𝘦 𝘏𝘛𝘔𝘓 𝘤𝘰𝘥𝘦 𝘵𝘰 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘪𝘴 𝘯𝘰𝘵𝘦 𝘸𝘪𝘵𝘩𝘪𝘯 𝘢𝘯 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘰𝘳 𝘱𝘰𝘴𝘵:"},"dialogPageEmbedDialog":{"embedPage":"𝘌𝘮𝘣𝘦𝘥 𝘢 𝘱𝘢𝘨𝘦 𝘰𝘧 “{title}”","embedDesc":"𝘊𝘰𝘱𝘺 𝘵𝘩𝘦 𝘏𝘛𝘔𝘓 𝘤𝘰𝘥𝘦 𝘵𝘰 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘪𝘴 𝘱𝘢𝘨𝘦 𝘸𝘪𝘵𝘩𝘪𝘯 𝘢𝘯 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘰𝘳 𝘱𝘰𝘴𝘵:","selectPage":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘵𝘩𝘦 𝘱𝘢𝘨𝘦 𝘵𝘰 𝘦𝘮𝘣𝘦𝘥:","page":"𝘗𝘢𝘨𝘦 {n} (𝘤𝘶𝘳𝘳𝘦𝘯𝘵𝘭𝘺 𝘷𝘪𝘴𝘪𝘣𝘭𝘦)","otherPage":"𝘖𝘵𝘩𝘦𝘳 𝘱𝘢𝘨𝘦","enterPageNumber":"𝘌𝘯𝘵𝘦𝘳 𝘵𝘩𝘦 𝘱𝘢𝘨𝘦 𝘯𝘶𝘮𝘣𝘦𝘳 𝘵𝘰 𝘦𝘮𝘣𝘦𝘥:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘢𝘤𝘤𝘦𝘴𝘴 𝘧𝘰𝘳 {name}","selectAccess":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘢𝘯 𝘢𝘤𝘤𝘦𝘴𝘴 𝘭𝘦𝘷𝘦𝘭 𝘣𝘦𝘭𝘰𝘸 𝘧𝘰𝘳 {name} 𝘪𝘯 {title}","adminAccess":"𝘈𝘥𝘮𝘪𝘯 𝘈𝘤𝘤𝘦𝘴𝘴","editAccess":"𝘌𝘥𝘪𝘵 𝘈𝘤𝘤𝘦𝘴𝘴","viewAccess":"𝘝𝘪𝘦𝘸 𝘈𝘤𝘤𝘦𝘴𝘴","adminHelp":"𝘛𝘩𝘪𝘴 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳 𝘤𝘢𝘯 𝘦𝘥𝘪𝘵 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘢𝘯𝘥 𝘪𝘵𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴. 𝘛𝘩𝘦 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳 𝘤𝘢𝘯 𝘪𝘯𝘷𝘪𝘵𝘦 𝘶𝘴𝘦𝘳𝘴, 𝘥𝘦𝘭𝘦𝘵𝘦 𝘶𝘴𝘦𝘳𝘴, 𝘢𝘯𝘥 𝘳𝘦𝘮𝘰𝘷𝘦 𝘵𝘩𝘦 𝘱𝘳𝘰𝘫𝘦𝘤𝘵.","editHelp":"𝘛𝘩𝘪𝘴 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳 𝘤𝘢𝘯 𝘦𝘥𝘪𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘪𝘯 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘣𝘶𝘵 𝘤𝘢𝘯𝘯𝘰𝘵 𝘦𝘥𝘪𝘵 𝘵𝘩𝘦 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘪𝘵𝘴𝘦𝘭𝘧.","viewHelp":"𝘛𝘩𝘪𝘴 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳 𝘤𝘢𝘯 𝘷𝘪𝘦𝘸 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘪𝘯 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘣𝘶𝘵 𝘤𝘢𝘯𝘯𝘰𝘵 𝘦𝘥𝘪𝘵 𝘵𝘩𝘦𝘮 𝘰𝘳 𝘵𝘩𝘦 𝘱𝘳𝘰𝘫𝘦𝘤𝘵.","invalidAccess":"𝘈𝘤𝘤𝘦𝘴𝘴 𝘪𝘴 𝘢𝘭𝘳𝘦𝘢𝘥𝘺 𝘴𝘦𝘵 𝘵𝘰 {access}. 𝘚𝘦𝘭𝘦𝘤𝘵 𝘢 𝘥𝘪𝘧𝘧𝘦𝘳𝘦𝘯𝘵 𝘢𝘤𝘤𝘦𝘴𝘴 𝘭𝘦𝘷𝘦𝘭.","changeAccess":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘢𝘤𝘤𝘦𝘴𝘴"},"dialogOwnerDialog":{"selectUser":"𝘜𝘴𝘦𝘳 𝘮𝘶𝘴𝘵 𝘣𝘦 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥","selectOrg":"𝘖𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘮𝘶𝘴𝘵 𝘣𝘦 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥","changeOwner":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘰𝘸𝘯𝘦𝘳 𝘧𝘰𝘳 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","accessWarning":"𝘞𝘢𝘳𝘯𝘪𝘯𝘨: 𝘠𝘰𝘶 𝘮𝘢𝘺 𝘭𝘰𝘴𝘵 𝘢𝘤𝘤𝘦𝘴𝘴 𝘵𝘰 𝘵𝘩𝘦 𝘴𝘱𝘦𝘤𝘪𝘧𝘪𝘦𝘥 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}} 𝘢𝘴 𝘢 𝘳𝘦𝘴𝘶𝘭𝘵 𝘰𝘧 𝘤𝘩𝘢𝘯𝘨𝘪𝘯𝘨 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘰𝘸𝘯𝘦𝘳","user":"𝘜𝘴𝘦𝘳:","filterUsers":"𝘛𝘺𝘱𝘦 𝘵𝘰 𝘧𝘪𝘭𝘵𝘦𝘳 𝘶𝘴𝘦𝘳𝘴...","filterOrgs":"𝘛𝘺𝘱𝘦 𝘵𝘰 𝘧𝘪𝘭𝘵𝘦𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯𝘴..."},"dialogProjectDialog":{"confirmDelete":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘥𝘦𝘭𝘦𝘵𝘦","deleteProject":"𝘈𝘳𝘦 𝘺𝘰𝘶 𝘴𝘶𝘳𝘦 𝘺𝘰𝘶 𝘸𝘢𝘯𝘵 𝘵𝘰 𝘥𝘦𝘭𝘦𝘵𝘦 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 ({project})?","editProject":"𝘌𝘥𝘪𝘵 𝘗𝘳𝘰𝘫𝘦𝘤𝘵","createProject":"𝘊𝘳𝘦𝘢𝘵𝘦 𝘕𝘦𝘸 𝘗𝘳𝘰𝘫𝘦𝘤𝘵","title":"𝘛𝘪𝘵𝘭𝘦...","projectDesc":"𝘗𝘳𝘰𝘫𝘦𝘤𝘵 𝘋𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯 (𝘰𝘱𝘵𝘪𝘰𝘯𝘢𝘭)","manageCollabs":"𝘔𝘢𝘯𝘢𝘨𝘦 𝘊𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘰𝘳𝘴","share":"𝘚𝘩𝘢𝘳𝘦 / 𝘌𝘮𝘣𝘦𝘥 𝘗𝘳𝘰𝘫𝘦𝘤𝘵","enterTitle":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘵𝘪𝘵𝘭𝘦","changeTitle":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘵𝘩𝘦 𝘵𝘪𝘵𝘭𝘦 𝘰𝘳 𝘥𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯"},"dialogProjectEmbedDialog":{"share":"𝘚𝘩𝘢𝘳𝘦 “{title}”","embedDesc":"𝘊𝘰𝘱𝘺 𝘵𝘩𝘦 𝘏𝘛𝘔𝘓 𝘤𝘰𝘥𝘦 𝘵𝘰 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘵𝘩𝘪𝘯 𝘢𝘯 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘰𝘳 𝘱𝘰𝘴𝘵:","invalid":"𝘐𝘯𝘷𝘢𝘭𝘪𝘥 𝘱𝘳𝘰𝘫𝘦𝘤𝘵","cannotEmbed":"𝘊𝘢𝘯𝘯𝘰𝘵 𝘦𝘮𝘣𝘦𝘥 𝘵𝘩𝘪𝘴 𝘱𝘳𝘰𝘫𝘦𝘤𝘵, 𝘢𝘴 𝘪𝘵 𝘥𝘰𝘦𝘴 𝘯𝘰𝘵 𝘢𝘱𝘱𝘦𝘢𝘳 𝘵𝘰 𝘦𝘹𝘪𝘴𝘵."},"htmlEditor":{"preview":"𝘗𝘳𝘦𝘷𝘪𝘦𝘸:"},"image":{"error":"𝘈𝘯 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥. 𝘛𝘳𝘺 𝘳𝘦𝘧𝘳𝘦𝘴𝘩𝘪𝘯𝘨 𝘵𝘩𝘦 𝘱𝘢𝘨𝘦"},"omniselect":{"filter":"𝘛𝘺𝘱𝘦 𝘵𝘰 𝘧𝘪𝘭𝘵𝘦𝘳 𝘭𝘢𝘯𝘨𝘶𝘢𝘨𝘦","noResults":"𝘕𝘰 𝘳𝘦𝘴𝘶𝘭𝘵𝘴. 𝘊𝘭𝘪𝘤𝘬 𝘵𝘰 𝘤𝘭𝘦𝘢𝘳 𝘧𝘪𝘭𝘵𝘦𝘳."},"shareOptions":{"errorText":"𝘈𝘯 𝘶𝘯𝘦𝘹𝘱𝘦𝘤𝘵𝘦𝘥 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥. 𝘗𝘭𝘦𝘢𝘴𝘦 𝘵𝘳𝘺 𝘢𝘨𝘢𝘪𝘯 𝘭𝘢𝘵𝘦𝘳.","copyHtml":"𝘊𝘰𝘱𝘺 𝘏𝘛𝘔𝘓 𝘤𝘰𝘥𝘦","addShortcode":"𝘈𝘥𝘥 𝘵𝘩𝘪𝘴 𝘴𝘩𝘰𝘳𝘵𝘤𝘰𝘥𝘦 𝘵𝘰 𝘺𝘰𝘶𝘳 𝘞𝘰𝘳𝘥𝘗𝘳𝘦𝘴𝘴 𝘤𝘰𝘯𝘵𝘦𝘯𝘵 —","pluginRequired":"𝘱𝘭𝘶𝘨𝘪𝘯 𝘳𝘦𝘲𝘶𝘪𝘳𝘦𝘥","copyShortcode":"𝘊𝘰𝘱𝘺 𝘴𝘩𝘰𝘳𝘵𝘤𝘰𝘥𝘦","copyUrl":"𝘊𝘰𝘱𝘺 𝘜𝘙𝘓"},"specialMessage":{"contactUs":"𝘊𝘰𝘯𝘵𝘢𝘤𝘵 𝘶𝘴 𝘸𝘪𝘵𝘩 𝘣𝘶𝘨 𝘳𝘦𝘱𝘰𝘳𝘵𝘴, 𝘲𝘶𝘦𝘴𝘵𝘪𝘰𝘯𝘴, 𝘢𝘯𝘥 𝘴𝘶𝘨𝘨𝘦𝘴𝘵𝘪𝘰𝘯𝘴."},"uploadOptions":{"documentLang":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘭𝘢𝘯𝘨𝘶𝘢𝘨𝘦:","forceOcr":"𝘍𝘰𝘳𝘤𝘦 𝘖𝘊𝘙:"},"actionBar":{"selectDocs":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘴𝘰𝘮𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘵𝘰 𝘳𝘦𝘷𝘦𝘢𝘭 𝘦𝘥𝘪𝘵 𝘢𝘤𝘵𝘪𝘰𝘯𝘴","noPerms":"𝘠𝘰𝘶 𝘥𝘰 𝘯𝘰𝘵 𝘩𝘢𝘷𝘦 𝘱𝘦𝘳𝘮𝘪𝘴𝘴𝘪𝘰𝘯 𝘵𝘰 𝘦𝘥𝘪𝘵 𝘢𝘭𝘭 𝘰𝘧 𝘵𝘩𝘦 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","editMenu":"𝘌𝘥𝘪𝘵","projectsMenu":"𝘗𝘳𝘰𝘫𝘦𝘤𝘵𝘴"},"authSection":{"help":"𝘏𝘦𝘭𝘱","language":"𝘓𝘢𝘯𝘨𝘶𝘢𝘨𝘦","tips":"𝘛𝘪𝘱𝘴 𝘢𝘯𝘥 𝘛𝘳𝘪𝘤𝘬𝘴","searchDocs":"𝘚𝘦𝘢𝘳𝘤𝘩 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘢𝘵𝘪𝘰𝘯","apiDocs":"𝘈𝘗𝘐 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘢𝘵𝘪𝘰𝘯","emailUs":"𝘌𝘮𝘢𝘪𝘭 𝘜𝘴","acctSettings":"𝘈𝘤𝘤𝘰𝘶𝘯𝘵 𝘚𝘦𝘵𝘵𝘪𝘯𝘨𝘴","signOut":"𝘚𝘪𝘨𝘯 𝘰𝘶𝘵","changeOrg":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","personalAcct":"𝘗𝘦𝘳𝘴𝘰𝘯𝘢𝘭 𝘈𝘤𝘤𝘰𝘶𝘯𝘵","signIn":"𝘚𝘪𝘨𝘯 𝘪𝘯"},"documents":{"yourDocuments":"𝘠𝘰𝘶𝘳 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","searchResults":"𝘚𝘦𝘢𝘳𝘤𝘩 𝘙𝘦𝘴𝘶𝘭𝘵𝘴","accessDocuments":"𝘠𝘰𝘶𝘳 {access}𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","nameDocuments":"{name}\'𝘴 {access}𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","allDocuments":"𝘈𝘭𝘭 {access}𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","mustBeVerified":"𝘠𝘰𝘶 𝘮𝘶𝘴𝘵 𝘣𝘦 𝘢 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘫𝘰𝘶𝘳𝘯𝘢𝘭𝘪𝘴𝘵 𝘵𝘰 𝘶𝘱𝘭𝘰𝘢𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","upload":"𝘜𝘱𝘭𝘰𝘢𝘥","dropFile":"𝘋𝘳𝘰𝘱 𝘧𝘪𝘭𝘦 𝘵𝘰 𝘶𝘱𝘭𝘰𝘢𝘥"},"document":{"open":"𝘖𝘱𝘦𝘯","updating":"𝘜𝘱𝘥𝘢𝘵𝘪𝘯𝘨 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵...","processing":"𝘗𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨","processingError":"𝘈𝘯 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥 𝘵𝘳𝘺𝘪𝘯𝘨 𝘵𝘰 𝘱𝘳𝘰𝘤𝘦𝘴𝘴 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","remove":"𝘙𝘦𝘮𝘰𝘷𝘦","improper":"𝘠𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘢𝘴 𝘶𝘱𝘭𝘰𝘢𝘥𝘦𝘥 𝘪𝘮𝘱𝘳𝘰𝘱𝘦𝘳𝘭𝘺","project":"𝘗𝘳𝘰𝘫𝘦𝘤𝘵","totalMatchingPages":"{n} 𝘰𝘧 {m} 𝘱𝘢𝘨𝘦𝘴 𝘮𝘢𝘵𝘤𝘩𝘪𝘯𝘨 𝘵𝘩𝘦 𝘲𝘶𝘦𝘳𝘺","showAll":"𝘚𝘩𝘰𝘸 𝘢𝘭𝘭","matchingPages":"{n} 𝘱𝘢𝘨𝘦𝘴 𝘮𝘢𝘵𝘤𝘩𝘪𝘯𝘨 𝘵𝘩𝘦 𝘲𝘶𝘦𝘳𝘺","pageAbbrev":"𝘱.","pageCount":"{n, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}}","source":"𝘚𝘰𝘶𝘳𝘤𝘦"},"documentThumbnail":{"pages":"𝘱𝘢𝘨𝘦𝘴","loading":"𝘓𝘰𝘢𝘥𝘪𝘯𝘨 𝘱𝘳𝘰𝘨𝘳𝘦𝘴𝘴 𝘪𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯..."},"mainContainer":{"error":"𝘌𝘳𝘳𝘰𝘳","errorMsg":"𝘞𝘦 𝘤𝘰𝘶𝘭𝘥 𝘯𝘰𝘵 𝘳𝘦𝘢𝘤𝘩 𝘵𝘩𝘦 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘴𝘦𝘳𝘷𝘦𝘳. 𝘗𝘭𝘦𝘢𝘴𝘦 𝘵𝘳𝘺 𝘳𝘦𝘧𝘳𝘦𝘴𝘩𝘪𝘯𝘨 𝘵𝘩𝘦 𝘱𝘢𝘨𝘦 𝘭𝘢𝘵𝘦𝘳.","refresh":"𝘙𝘦𝘧𝘳𝘦𝘴𝘩"},"editMenu":{"editDocInfo":"𝘌𝘥𝘪𝘵 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘐𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯","changeAccess":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘈𝘤𝘤𝘦𝘴𝘴","editDocData":"𝘌𝘥𝘪𝘵 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘋𝘢𝘵𝘢","cancelProcessing":"𝘊𝘢𝘯𝘤𝘦𝘭 𝘗𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨","forceReprocess":"𝘍𝘰𝘳𝘤𝘦 𝘙𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴","entities":"𝘌𝘯𝘵𝘪𝘵𝘪𝘦𝘴 𝘉𝘌𝘛𝘈","changeOwner":"𝘊𝘩𝘢𝘯𝘨𝘦 𝘖𝘸𝘯𝘦𝘳","delete":"𝘋𝘦𝘭𝘦𝘵𝘦","diagnosticInfo":"𝘋𝘪𝘢𝘨𝘯𝘰𝘴𝘵𝘪𝘤 𝘐𝘯𝘧𝘰"},"metaFields":{"defaultFieldInvalidText":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘢𝘭𝘳𝘦𝘢𝘥𝘺 𝘩𝘢𝘴 𝘵𝘩𝘪𝘴 {fieldName}","titleFieldTitle":"𝘛𝘪𝘵𝘭𝘦","titleFieldName":"𝘯𝘢𝘮𝘦","titleFieldNameUppercase":"𝘕𝘢𝘮𝘦","titleFieldHeader":"𝘙𝘦𝘯𝘢𝘮𝘦 {n, plural, one {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","titleFieldDescription":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘯𝘢𝘮𝘦 𝘣𝘦𝘭𝘰𝘸 𝘧𝘰𝘳 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","titleFieldButton":"𝘙𝘦𝘯𝘢𝘮𝘦","titleFieldInvalidSameName":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘢𝘭𝘳𝘦𝘢𝘥𝘺 𝘩𝘢𝘴 𝘵𝘩𝘪𝘴 𝘯𝘢𝘮𝘦","titleFieldInvalidEmptyName":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘷𝘢𝘭𝘪𝘥 𝘯𝘢𝘮𝘦","sourceFieldTitle":"𝘚𝘰𝘶𝘳𝘤𝘦","sourceFieldName":"𝘴𝘰𝘶𝘳𝘤𝘦","sourceFieldNameUppercase":"𝘚𝘰𝘶𝘳𝘤𝘦","sourceFieldHeader":"𝘌𝘥𝘪𝘵 𝘴𝘰𝘶𝘳𝘤𝘦 𝘧𝘰𝘳 {n, plural, one {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","sourceFieldDescription":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘴𝘰𝘶𝘳𝘤𝘦 𝘣𝘦𝘭𝘰𝘸 𝘧𝘰𝘳 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","sourceFieldButton":"𝘌𝘥𝘪𝘵","descriptionFieldTitle":"𝘋𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯","descriptionFieldName":"𝘥𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯","descriptionFieldNameUppercase":"𝘋𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯","descriptionFieldHeader":"𝘌𝘥𝘪𝘵 𝘥𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯 𝘧𝘰𝘳 {n, plural, one {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","descriptionFieldDescription":"𝘌𝘯𝘵𝘦𝘳 𝘵𝘩𝘦 𝘥𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯 𝘣𝘦𝘭𝘰𝘸 𝘧𝘰𝘳 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","descriptionFieldButton":"𝘌𝘥𝘪𝘵","relatedArticleFieldTitle":"𝘙𝘦𝘭𝘢𝘵𝘦𝘥 𝘈𝘳𝘵𝘪𝘤𝘭𝘦 𝘜𝘙𝘓","relatedArticleFieldName":"𝘳𝘦𝘭𝘢𝘵𝘦𝘥 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘜𝘙𝘓","relatedArticleFieldNameUppercase":"𝘙𝘦𝘭𝘢𝘵𝘦𝘥 𝘈𝘳𝘵𝘪𝘤𝘭𝘦 𝘜𝘙𝘓","relatedArticleFieldHeader":"𝘌𝘥𝘪𝘵 𝘵𝘩𝘦 𝘳𝘦𝘭𝘢𝘵𝘦𝘥 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘜𝘙𝘓 𝘧𝘰𝘳 {n, plural, one {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","relatedArticleFieldDescription":"𝘌𝘯𝘵𝘦𝘳 𝘵𝘩𝘦 𝘳𝘦𝘭𝘢𝘵𝘦𝘥 𝘢𝘳𝘵𝘪𝘤𝘭𝘦 𝘜𝘙𝘓 𝘣𝘦𝘭𝘰𝘸 𝘧𝘰𝘳 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","relatedArticleFieldButton":"𝘌𝘥𝘪𝘵","publishedUrlFieldTitle":"𝘗𝘶𝘣𝘭𝘪𝘴𝘩𝘦𝘥 𝘜𝘙𝘓","publishedUrlFieldName":"𝘱𝘶𝘣𝘭𝘪𝘴𝘩𝘦𝘥 𝘜𝘙𝘓","publishedUrlFieldNameUppercase":"𝘗𝘶𝘣𝘭𝘪𝘴𝘩𝘦𝘥 𝘜𝘙𝘓","publishedUrlFieldHeader":"𝘌𝘥𝘪𝘵 𝘵𝘩𝘦 𝘱𝘶𝘣𝘭𝘪𝘴𝘩𝘦𝘥 𝘜𝘙𝘓 𝘧𝘰𝘳 {n, plural, one {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","publishedUrlFieldDescription":"𝘌𝘯𝘵𝘦𝘳 𝘵𝘩𝘦 𝘱𝘶𝘣𝘭𝘪𝘴𝘩𝘦𝘥 𝘜𝘙𝘓 𝘣𝘦𝘭𝘰𝘸 𝘧𝘰𝘳 𝘵𝘩𝘦 {n, plural, one {𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘴𝘦𝘭𝘦𝘤𝘵𝘦𝘥 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}","publishedUrlFieldButton":"𝘌𝘥𝘪𝘵"},"projectsMenu":{"newProject":"+ 𝘕𝘦𝘸 𝘗𝘳𝘰𝘫𝘦𝘤𝘵","projMembership":"𝘗𝘳𝘰𝘫𝘦𝘤𝘵 𝘔𝘦𝘮𝘣𝘦𝘳𝘴𝘩𝘪𝘱","selectDocs":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘵𝘰 𝘱𝘭𝘢𝘤𝘦 𝘵𝘩𝘦𝘮 𝘪𝘯 𝘱𝘳𝘰𝘫𝘦𝘤𝘵𝘴","createProj":"𝘊𝘳𝘦𝘢𝘵𝘦 𝘢 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘵𝘰 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘦 𝘢𝘯𝘥 𝘴𝘩𝘢𝘳𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴"},"noDocuments":{"noSearchResults":"𝘕𝘰 𝘴𝘦𝘢𝘳𝘤𝘩 𝘳𝘦𝘴𝘶𝘭𝘵𝘴","queryNoResults":"𝘠𝘰𝘶𝘳 𝘴𝘦𝘢𝘳𝘤𝘩 𝘲𝘶𝘦𝘳𝘺 𝘳𝘦𝘵𝘶𝘳𝘯𝘦𝘥 𝘯𝘰 𝘳𝘦𝘴𝘶𝘭𝘵𝘴. 𝘛𝘳𝘺 𝘢𝘨𝘢𝘪𝘯 𝘸𝘪𝘵𝘩 𝘢 𝘣𝘳𝘰𝘢𝘥𝘦𝘳 𝘴𝘦𝘢𝘳𝘤𝘩 𝘲𝘶𝘦𝘳𝘺.","welcome":"𝘞𝘦𝘭𝘤𝘰𝘮𝘦 𝘵𝘰 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥!","verify1":"𝘕𝘰𝘵𝘦 𝘵𝘩𝘢𝘵 𝘤𝘶𝘳𝘳𝘦𝘯𝘵𝘭𝘺 𝘺𝘰𝘶𝘳 𝘢𝘤𝘤𝘰𝘶𝘯𝘵 𝘪𝘴 𝘯𝘰𝘵 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘵𝘰 𝘶𝘱𝘭𝘰𝘢𝘥. 𝘠𝘰𝘶 𝘤𝘢𝘯 𝘴𝘦𝘢𝘳𝘤𝘩 𝘵𝘩𝘳𝘰𝘶𝘨𝘩 𝘵𝘩𝘦 𝘱𝘶𝘣𝘭𝘪𝘤 𝘳𝘦𝘱𝘰𝘴𝘪𝘵𝘰𝘳𝘺, 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘺𝘰𝘶\'𝘳𝘦 𝘪𝘯𝘵𝘦𝘳𝘦𝘴𝘵𝘦𝘥 𝘪𝘯 𝘪𝘯𝘵𝘰 𝘱𝘳𝘰𝘫𝘦𝘤𝘵𝘴, 𝘭𝘦𝘢𝘷𝘦 𝘱𝘳𝘪𝘷𝘢𝘵𝘦 𝘯𝘰𝘵𝘦𝘴, 𝘢𝘯𝘥 𝘤𝘰𝘭𝘭𝘢𝘣𝘰𝘳𝘢𝘵𝘦 𝘰𝘯 𝘦𝘥𝘪𝘵𝘪𝘯𝘨 𝘢𝘯𝘥 𝘢𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘯𝘨 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘰𝘵𝘩𝘦𝘳 𝘶𝘴𝘦𝘳𝘴 𝘪𝘯𝘷𝘪𝘵𝘦 𝘺𝘰𝘶 𝘵𝘰.","verify2":"𝘐𝘧 𝘺𝘰𝘶’𝘥 𝘭𝘪𝘬𝘦 𝘵𝘰 𝘶𝘱𝘭𝘰𝘢𝘥 𝘰𝘳 𝘱𝘶𝘣𝘭𝘪𝘴𝘩 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘢𝘯𝘥 𝘺𝘰𝘶\'𝘳𝘦 𝘢 𝘸𝘰𝘳𝘬𝘪𝘯𝘨 𝘫𝘰𝘶𝘳𝘯𝘢𝘭𝘪𝘴𝘵 𝘰𝘳 𝘰𝘵𝘩𝘦𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘪𝘯𝘵𝘦𝘳𝘦𝘴𝘵𝘦𝘥 𝘪𝘯 𝘱𝘶𝘣𝘭𝘪𝘴𝘩𝘪𝘯𝘨 𝘱𝘳𝘪𝘮𝘢𝘳𝘺 𝘴𝘰𝘶𝘳𝘤𝘦 𝘮𝘢𝘵𝘦𝘳𝘪𝘢𝘭𝘴 𝘪𝘯 𝘵𝘩𝘦 𝘱𝘶𝘣𝘭𝘪𝘤 𝘪𝘯𝘵𝘦𝘳𝘦𝘴𝘵, 𝘺𝘰𝘶\'𝘭𝘭 𝘯𝘦𝘦𝘥 𝘵𝘰 𝘩𝘢𝘷𝘦 𝘺𝘰𝘶𝘳 𝘢𝘤𝘤𝘰𝘶𝘯𝘵 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘰𝘳 𝘢𝘥𝘥𝘦𝘥 𝘵𝘰 𝘢 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯. 𝘛𝘩𝘪𝘴 𝘪𝘴 𝘢 𝘴𝘪𝘮𝘱𝘭𝘦 𝘱𝘳𝘰𝘤𝘦𝘴𝘴:","verify3":"𝘍𝘪𝘳𝘴𝘵, 𝘴𝘦𝘦 𝘪𝘧 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘢𝘭𝘳𝘦𝘢𝘥𝘺 𝘦𝘹𝘪𝘴𝘵𝘴 𝘢𝘯𝘥, 𝘪𝘧 𝘺𝘰𝘶 𝘧𝘪𝘯𝘥 𝘪𝘵, 𝘤𝘭𝘪𝘤𝘬 \\"𝘙𝘦𝘲𝘶𝘦𝘴𝘵 𝘵𝘰 𝘑𝘰𝘪𝘯\\" 𝘰𝘯 𝘪𝘵𝘴 𝘱𝘢𝘨𝘦.","verify4":"𝘐𝘧 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯 𝘩𝘢𝘴 𝘯𝘰𝘵 𝘣𝘦𝘦𝘯 𝘷𝘦𝘳𝘪𝘧𝘪𝘦𝘥 𝘺𝘦𝘵, 𝘰𝘳 𝘪𝘧 𝘺𝘰𝘶\'𝘳𝘦 𝘢 𝘧𝘳𝘦𝘦𝘭𝘢𝘯𝘤𝘦𝘳, 𝘳𝘦𝘲𝘶𝘦𝘴𝘵 𝘷𝘦𝘳𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯 𝘩𝘦𝘳𝘦. 𝘙𝘦𝘲𝘶𝘦𝘴𝘵𝘴 𝘶𝘴𝘶𝘢𝘭𝘭𝘺 𝘵𝘢𝘬𝘦 𝘵𝘸𝘰 𝘣𝘶𝘴𝘪𝘯𝘦𝘴𝘴 𝘥𝘢𝘺𝘴 𝘵𝘰 𝘱𝘳𝘰𝘤𝘦𝘴𝘴.","uploadFirst":"𝘜𝘱𝘭𝘰𝘢𝘥 𝘺𝘰𝘶𝘳 𝘧𝘪𝘳𝘴𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","upload1":"𝘜𝘱𝘭𝘰𝘢𝘥 𝘢 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘧𝘪𝘭𝘦 𝘵𝘰 𝘨𝘦𝘵 𝘴𝘵𝘢𝘳𝘵𝘦𝘥 𝘶𝘴𝘪𝘯𝘨 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥. 𝘠𝘰𝘶 𝘤𝘢𝘯 𝘥𝘳𝘢𝘨 𝘵𝘩𝘦 𝘧𝘪𝘭𝘦 𝘪𝘯𝘵𝘰 𝘵𝘩𝘪𝘴 𝘸𝘪𝘯𝘥𝘰𝘸, 𝘰𝘳 𝘤𝘭𝘪𝘤𝘬 𝘰𝘯 𝘵𝘩𝘦 𝘣𝘭𝘶𝘦 “𝘜𝘱𝘭𝘰𝘢𝘥” 𝘣𝘶𝘵𝘵𝘰𝘯 𝘢𝘣𝘰𝘷𝘦.","upload2":"𝘖𝘯𝘤𝘦 𝘺𝘰𝘶 𝘶𝘱𝘭𝘰𝘢𝘥 𝘢 𝘧𝘪𝘭𝘦, 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘸𝘪𝘭𝘭 𝘱𝘳𝘰𝘤𝘦𝘴𝘴 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘢𝘯𝘥 𝘦𝘹𝘵𝘳𝘢𝘤𝘵 𝘪𝘵𝘴 𝘤𝘰𝘯𝘵𝘦𝘯𝘵𝘴. 𝘐𝘵 𝘮𝘢𝘺 𝘵𝘢𝘬𝘦 𝘢 𝘧𝘦𝘸 𝘮𝘪𝘯𝘶𝘵𝘦𝘴 𝘧𝘰𝘳 𝘵𝘩𝘪𝘴 𝘵𝘰 𝘤𝘰𝘮𝘱𝘭𝘦𝘵𝘦, 𝘣𝘶𝘵 𝘰𝘯𝘤𝘦 𝘪𝘵’𝘴 𝘥𝘰𝘯𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘰𝘱𝘵𝘪𝘮𝘪𝘻𝘦𝘥 𝘧𝘰𝘳 𝘢𝘯𝘢𝘭𝘺𝘴𝘪𝘴 𝘢𝘯𝘥 𝘴𝘩𝘢𝘳𝘪𝘯𝘨 𝘰𝘯 𝘵𝘩𝘦 𝘸𝘦𝘣."},"paginator":{"of":"𝘰𝘧","document":"{n, plural, one {𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}"},"processingBar":{"doneProcessing":"𝘋𝘰𝘯𝘦 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨","processingDocuments":"𝘗𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨 {n, plural, one {𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵} other {# 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴}}"},"searchBar":{"tips":"𝘚𝘦𝘢𝘳𝘤𝘩 𝘵𝘪𝘱𝘴: 𝘢𝘥𝘥 𝘧𝘪𝘭𝘵𝘦𝘳𝘴 𝘣𝘺 𝘵𝘺𝘱𝘪𝘯𝘨 𝘶𝘴𝘦𝘳:, 𝘱𝘳𝘰𝘫𝘦𝘤𝘵:, 𝘰𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯:, 𝘦𝘵𝘤. 𝘜𝘴𝘦 𝘴𝘰𝘳𝘵: 𝘵𝘰 𝘰𝘳𝘥𝘦𝘳 𝘳𝘦𝘴𝘶𝘭𝘵𝘴.","learnMore":"𝘓𝘦𝘢𝘳𝘯 𝘮𝘰𝘳𝘦","search":"𝘚𝘦𝘢𝘳𝘤𝘩"},"searchLink":{"search":"𝘚𝘦𝘢𝘳𝘤𝘩 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘤𝘰𝘭𝘭𝘦𝘤𝘵𝘪𝘰𝘯"},"projects":{"header":"𝘗𝘳𝘰𝘫𝘦𝘤𝘵𝘴","allDocuments":"𝘈𝘭𝘭 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","yourDocuments":"𝘠𝘰𝘶𝘳 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","yourPubDocuments":"𝘠𝘰𝘶𝘳 𝘗𝘶𝘣𝘭𝘪𝘤 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","orgDocuments":"{name}’𝘴 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴","newProject":"+ 𝘕𝘦𝘸 𝘗𝘳𝘰𝘫𝘦𝘤𝘵","createProject":"𝘊𝘳𝘦𝘢𝘵𝘦 𝘺𝘰𝘶𝘳 𝘧𝘪𝘳𝘴𝘵 𝘱𝘳𝘰𝘫𝘦𝘤𝘵 𝘣𝘺 𝘤𝘭𝘪𝘤𝘬𝘪𝘯𝘨 “𝘕𝘦𝘸 𝘗𝘳𝘰𝘫𝘦𝘤𝘵” 𝘢𝘣𝘰𝘷𝘦."},"uploadDialog":{"docUpload":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘜𝘱𝘭𝘰𝘢𝘥","docUploadProj":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘜𝘱𝘭𝘰𝘢𝘥 𝘵𝘰 {title}","beginUpload":"𝘉𝘦𝘨𝘪𝘯 𝘶𝘱𝘭𝘰𝘢𝘥","pdfSizeWarning":"𝘠𝘰𝘶 𝘤𝘢𝘯 𝘰𝘯𝘭𝘺 𝘶𝘱𝘭𝘰𝘢𝘥 𝘗𝘋𝘍 𝘧𝘪𝘭𝘦𝘴 𝘶𝘯𝘥𝘦𝘳 {size}.","nonPdfSizeWarning":"𝘠𝘰𝘶 𝘤𝘢𝘯 𝘰𝘯𝘭𝘺 𝘶𝘱𝘭𝘰𝘢𝘥 𝘯𝘰𝘯-𝘗𝘋𝘍 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘧𝘪𝘭𝘦𝘴 𝘶𝘯𝘥𝘦𝘳 {size}.","fileReady":"{n, plural, one {𝘧𝘪𝘭𝘦} other {𝘧𝘪𝘭𝘦𝘴}} 𝘳𝘦𝘢𝘥𝘺 𝘵𝘰 𝘶𝘱𝘭𝘰𝘢𝘥","fileLimitWarning":"𝘠𝘰𝘶 𝘤𝘢𝘯 𝘰𝘯𝘭𝘺 𝘶𝘱𝘭𝘰𝘢𝘥 {limit} 𝘧𝘪𝘭𝘦𝘴 𝘢𝘵 𝘰𝘯𝘤𝘦.","moreOptions":"𝘔𝘰𝘳𝘦 𝘰𝘱𝘵𝘪𝘰𝘯𝘴","selectFiles":"+ 𝘚𝘦𝘭𝘦𝘤𝘵 𝘧𝘪𝘭𝘦𝘴","dragDrop":"𝘋𝘳𝘢𝘨 𝘢𝘯𝘥 𝘥𝘳𝘰𝘱 𝘧𝘪𝘭𝘦𝘴 𝘩𝘦𝘳𝘦","publicMsg":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘱𝘶𝘣𝘭𝘪𝘤𝘭𝘺 𝘷𝘪𝘴𝘪𝘣𝘭𝘦.","collabMsg":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘺𝘰𝘶𝘳 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯.","privateMsg":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘺𝘰𝘶 𝘢𝘭𝘰𝘯𝘦.","collabName":"𝘖𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","submitting":"𝘈𝘭𝘮𝘰𝘴𝘵 𝘥𝘰𝘯𝘦... 𝘴𝘶𝘣𝘮𝘪𝘵𝘵𝘪𝘯𝘨 𝘶𝘱𝘭𝘰𝘢𝘥𝘦𝘥 𝘧𝘪𝘭𝘦𝘴 𝘧𝘰𝘳 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨 ({percent})","uploading":"𝘜𝘱𝘭𝘰𝘢𝘥𝘪𝘯𝘨 ... ({uploaded}/{length})","gettingInfo":"𝘎𝘦𝘵𝘵𝘪𝘯𝘨 𝘶𝘱𝘭𝘰𝘢𝘥 𝘪𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯 ({percent})","pleaseLeaveOpen":"𝘗𝘭𝘦𝘢𝘴𝘦 𝘭𝘦𝘢𝘷𝘦 𝘵𝘩𝘪𝘴 𝘱𝘢𝘨𝘦 𝘰𝘱𝘦𝘯 𝘸𝘩𝘪𝘭𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴 𝘶𝘱𝘭𝘰𝘢𝘥. 𝘛𝘩𝘪𝘴 𝘥𝘪𝘢𝘭𝘰𝘨 𝘸𝘪𝘭𝘭 𝘢𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤𝘢𝘭𝘭𝘺 𝘤𝘭𝘰𝘴𝘦 𝘸𝘩𝘦𝘯 𝘵𝘩𝘦𝘺 𝘩𝘢𝘷𝘦 𝘧𝘪𝘯𝘪𝘴𝘩𝘦𝘥 𝘶𝘱𝘭𝘰𝘢𝘥𝘪𝘯𝘨.","errorHeading":"𝘌𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥 𝘸𝘩𝘪𝘭𝘦 𝘶𝘱𝘭𝘰𝘢𝘥𝘪𝘯𝘨","errorMsg":"𝘞𝘦 𝘧𝘢𝘪𝘭𝘦𝘥 𝘵𝘰 {errorMessage}. 𝘗𝘭𝘦𝘢𝘴𝘦 𝘵𝘳𝘺 𝘢𝘨𝘢𝘪𝘯 𝘭𝘢𝘵𝘦𝘳.","editDocInfo":"𝘌𝘥𝘪𝘵 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯:","untitled":"𝘜𝘯𝘵𝘪𝘵𝘭𝘦𝘥","uploadFiles":"𝘜𝘱𝘭𝘰𝘢𝘥 𝘢𝘥𝘥𝘪𝘵𝘪𝘰𝘯𝘢𝘭 𝘧𝘪𝘭𝘦𝘴","selectMore":"+ 𝘚𝘦𝘭𝘦𝘤𝘵 𝘮𝘰𝘳𝘦 𝘧𝘪𝘭𝘦𝘴","dragDropMore":"𝘋𝘳𝘢𝘨 𝘢𝘯𝘥 𝘥𝘳𝘰𝘱 𝘢𝘥𝘥𝘪𝘵𝘪𝘰𝘯𝘢𝘭 𝘧𝘪𝘭𝘦𝘴 𝘩𝘦𝘳𝘦"},"embedNote":{"viewTheNote":"𝘝𝘪𝘦𝘸 𝘵𝘩𝘦 𝘯𝘰𝘵𝘦 ‘{title}‘ 𝘪𝘯 𝘪𝘵𝘴 𝘰𝘳𝘪𝘨𝘪𝘯𝘢𝘭 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘤𝘰𝘯𝘵𝘦𝘹𝘵 𝘰𝘯 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘪𝘯 𝘢 𝘯𝘦𝘸 𝘸𝘪𝘯𝘥𝘰𝘸 𝘰𝘳 𝘵𝘢𝘣","viewDoc":"𝘝𝘪𝘦𝘸 𝘵𝘩𝘦 𝘦𝘯𝘵𝘪𝘳𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘵𝘩 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥"},"embedPage":{"viewDoc":"𝘝𝘪𝘦𝘸 𝘦𝘯𝘵𝘪𝘳𝘦 {title} 𝘰𝘯 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘪𝘯 𝘯𝘦𝘸 𝘸𝘪𝘯𝘥𝘰𝘸 𝘰𝘳 𝘵𝘢𝘣","pageOf":"𝘗𝘢𝘨𝘦 {page} 𝘰𝘧 {title}","gotoDocCloud":"𝘎𝘰 𝘵𝘰 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘪𝘯 𝘯𝘦𝘸 𝘸𝘪𝘯𝘥𝘰𝘸 𝘰𝘳 𝘵𝘢𝘣"},"entities":{"back":"𝘉𝘢𝘤𝘬","page":"𝘗𝘢𝘨𝘦","of":"𝘰𝘧","totalEntityResult":"{n, plural, one {# 𝘵𝘰𝘵𝘢𝘭 𝘦𝘯𝘵𝘪𝘵𝘺 𝘳𝘦𝘴𝘶𝘭𝘵} other {# 𝘵𝘰𝘵𝘢𝘭 𝘦𝘯𝘵𝘪𝘵𝘺 𝘳𝘦𝘴𝘶𝘭𝘵𝘴}} ","filter":"𝘍𝘪𝘭𝘵𝘦𝘳","applyFilters":"𝘈𝘱𝘱𝘭𝘺 𝘧𝘪𝘭𝘵𝘦𝘳𝘴","kind":"𝘒𝘪𝘯𝘥","clear":"𝘊𝘭𝘦𝘢𝘳","person":"𝘗𝘦𝘳𝘴𝘰𝘯","org":"𝘖𝘳𝘨𝘢𝘯𝘪𝘻𝘢𝘵𝘪𝘰𝘯","location":"𝘓𝘰𝘤𝘢𝘵𝘪𝘰𝘯","event":"𝘌𝘷𝘦𝘯𝘵","workOfArt":"𝘞𝘰𝘳𝘬 𝘰𝘧 𝘈𝘳𝘵","consumerGood":"𝘊𝘰𝘯𝘴𝘶𝘮𝘦𝘳 𝘎𝘰𝘰𝘥","address":"𝘈𝘥𝘥𝘳𝘦𝘴𝘴","date":"𝘋𝘢𝘵𝘦","number":"𝘕𝘶𝘮𝘣𝘦𝘳","phoneNumber":"𝘗𝘩𝘰𝘯𝘦 𝘕𝘶𝘮𝘣𝘦𝘳","price":"𝘗𝘳𝘪𝘤𝘦","unknown":"𝘜𝘯𝘬𝘯𝘰𝘸𝘯","other":"𝘖𝘵𝘩𝘦𝘳","occurrences":"𝘖𝘤𝘤𝘶𝘳𝘳𝘦𝘯𝘤𝘦𝘴","proper":"𝘗𝘳𝘰𝘱𝘦𝘳","common":"𝘊𝘰𝘮𝘮𝘰𝘯","advanced":"𝘈𝘥𝘷𝘢𝘯𝘤𝘦𝘥","relevanceThreshold":"𝘙𝘦𝘭𝘦𝘷𝘢𝘯𝘤𝘦 𝘵𝘩𝘳𝘦𝘴𝘩𝘰𝘭𝘥:","knowledgeGraph":"𝘒𝘯𝘰𝘸𝘭𝘦𝘥𝘨𝘦 𝘨𝘳𝘢𝘱𝘩:","hasKG":"𝘏𝘢𝘴 𝘢 𝘬𝘯𝘰𝘸𝘭𝘦𝘥𝘨𝘦 𝘨𝘳𝘢𝘱𝘩 𝘐𝘋","noKG":"𝘋𝘰𝘦𝘴 𝘯𝘰𝘵 𝘩𝘢𝘷𝘦 𝘢 𝘬𝘯𝘰𝘸𝘭𝘦𝘥𝘨𝘦 𝘨𝘳𝘢𝘱𝘩 𝘐𝘋","wikiUrl":"𝘞𝘪𝘬𝘪𝘱𝘦𝘥𝘪𝘢 𝘜𝘙𝘓:","hasWiki":"𝘏𝘢𝘴 𝘢 𝘞𝘪𝘬𝘪𝘱𝘦𝘥𝘪𝘢 𝘜𝘙𝘓","noWiki":"𝘋𝘰𝘦𝘴 𝘯𝘰𝘵 𝘩𝘢𝘷𝘦 𝘢 𝘞𝘪𝘬𝘪𝘱𝘦𝘥𝘪𝘢 𝘜𝘙𝘓","occurrence":"{n, plural, zero {} one {# 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘯𝘤𝘦} other {# 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘯𝘤𝘦𝘴}}","wikipedia":"𝘞𝘪𝘬𝘪𝘱𝘦𝘥𝘪𝘢","entityExtraction":"𝘌𝘯𝘵𝘪𝘵𝘺 𝘦𝘹𝘵𝘳𝘢𝘤𝘵𝘪𝘰𝘯 𝘧𝘰𝘳 “{title}”","extractingEntities":"𝘌𝘹𝘵𝘳𝘢𝘤𝘵𝘪𝘯𝘨 𝘦𝘯𝘵𝘪𝘵𝘪𝘦𝘴...","welcome":"𝘞𝘦𝘭𝘤𝘰𝘮𝘦 𝘵𝘰 𝘦𝘯𝘵𝘪𝘵𝘺 𝘦𝘹𝘵𝘳𝘢𝘤𝘵𝘪𝘰𝘯! 𝘛𝘩𝘪𝘴 𝘧𝘦𝘢𝘵𝘶𝘳𝘦 𝘪𝘴 𝘷𝘦𝘳𝘺 𝘮𝘶𝘤𝘩 𝘪𝘯 𝘱𝘳𝘰𝘨𝘳𝘦𝘴𝘴 𝘣𝘶𝘵 𝘸𝘦 𝘸𝘢𝘯𝘵 𝘪𝘵 𝘪𝘯 𝘺𝘰𝘶𝘳 𝘩𝘢𝘯𝘥𝘴 𝘦𝘢𝘳𝘭𝘺 𝘵𝘰 𝘸𝘦𝘭𝘤𝘰𝘮𝘦 𝘢𝘯𝘺 𝘧𝘦𝘦𝘥𝘣𝘢𝘤𝘬 𝘺𝘰𝘶 𝘮𝘪𝘨𝘩𝘵 𝘩𝘢𝘷𝘦.","manual":"𝘙𝘪𝘨𝘩𝘵 𝘯𝘰𝘸 𝘵𝘩𝘦 𝘱𝘳𝘰𝘤𝘦𝘴𝘴 𝘧𝘰𝘳 𝘦𝘹𝘵𝘳𝘢𝘤𝘵𝘪𝘯𝘨 𝘦𝘯𝘵𝘪𝘵𝘪𝘦𝘴 𝘪𝘴 𝘮𝘢𝘯𝘶𝘢𝘭. 𝘛𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘩𝘢𝘴 𝘯𝘰𝘵 𝘩𝘢𝘥 𝘦𝘯𝘵𝘪𝘵𝘪𝘦𝘴 𝘦𝘹𝘵𝘳𝘢𝘤𝘵𝘦𝘥 𝘺𝘦𝘵, 𝘴𝘰 𝘤𝘭𝘪𝘤𝘬 𝘣𝘦𝘭𝘰𝘸 𝘵𝘰 𝘨𝘦𝘵 𝘴𝘵𝘢𝘳𝘵𝘦𝘥.","error":"𝘈𝘯 𝘶𝘯𝘦𝘹𝘱𝘦𝘤𝘵𝘦𝘥 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥","extract":"𝘌𝘹𝘵𝘳𝘢𝘤𝘵 𝘦𝘯𝘵𝘪𝘵𝘪𝘦𝘴","noEntities":"𝘛𝘩𝘦𝘳𝘦 𝘢𝘳𝘦 𝘯𝘰 𝘦𝘯𝘵𝘪𝘵𝘪𝘦𝘴. 𝘛𝘩𝘪𝘴 𝘤𝘰𝘶𝘭𝘥 𝘩𝘢𝘱𝘱𝘦𝘯 𝘪𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘥𝘰𝘦𝘴𝘯’𝘵 𝘩𝘢𝘷𝘦 𝘵𝘦𝘹𝘵, 𝘪𝘴 𝘯𝘰𝘯-𝘌𝘯𝘨𝘭𝘪𝘴𝘩 (𝘰𝘯𝘭𝘺 𝘌𝘯𝘨𝘭𝘪𝘴𝘩 𝘪𝘴 𝘴𝘶𝘱𝘱𝘰𝘳𝘵𝘦𝘥 𝘧𝘰𝘳 𝘯𝘰𝘸), 𝘰𝘳 𝘴𝘰𝘮𝘦 𝘦𝘳𝘳𝘰𝘳 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘥.","starting":"𝘚𝘵𝘢𝘳𝘵𝘪𝘯𝘨 𝘦𝘹𝘵𝘢𝘤𝘵𝘪𝘰𝘯..."},"home":{"about":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘊𝘭𝘰𝘶𝘥 𝘪𝘴 𝘢𝘯 𝘢𝘭𝘭-𝘪𝘯-𝘰𝘯𝘦 𝘱𝘭𝘢𝘵𝘧𝘰𝘳𝘮 𝘧𝘰𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴: 𝘶𝘱𝘭𝘰𝘢𝘥, 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘦, 𝘢𝘯𝘢𝘭𝘺𝘻𝘦, 𝘢𝘯𝘯𝘰𝘵𝘢𝘵𝘦, 𝘴𝘦𝘢𝘳𝘤𝘩, 𝘢𝘯𝘥 𝘦𝘮𝘣𝘦𝘥.","viewPublicDocs":"𝘝𝘪𝘦𝘸 𝘱𝘶𝘣𝘭𝘪𝘤 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵𝘴"},"annotation":{"title":"𝘈𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘰𝘯 𝘛𝘪𝘵𝘭𝘦","description":"𝘈𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘰𝘯 𝘋𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯 (𝘰𝘱𝘵𝘪𝘰𝘯𝘢𝘭)","unchanged":"𝘕𝘰𝘵𝘦 𝘳𝘦𝘮𝘢𝘪𝘯𝘴 𝘶𝘯𝘤𝘩𝘢𝘯𝘨𝘦𝘥","noTitle":"𝘌𝘯𝘵𝘦𝘳 𝘢 𝘵𝘪𝘵𝘭𝘦 𝘧𝘰𝘳 𝘵𝘩𝘦 𝘢𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘰𝘯","org":"𝘛𝘩𝘪𝘴 𝘯𝘰𝘵𝘦 𝘪𝘴 𝘰𝘯𝘭𝘺 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘺𝘰𝘶 𝘢𝘯𝘥 𝘰𝘵𝘩𝘦𝘳𝘴 𝘸𝘪𝘵𝘩 𝘦𝘥𝘪𝘵 𝘢𝘤𝘤𝘦𝘴𝘴 𝘵𝘰 𝘵𝘩𝘪𝘴 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","private":"𝘛𝘩𝘪𝘴 𝘱𝘳𝘪𝘷𝘢𝘵𝘦 𝘯𝘰𝘵𝘦 𝘪𝘴 𝘰𝘯𝘭𝘺 𝘷𝘪𝘴𝘪𝘣𝘭𝘦 𝘵𝘰 𝘺𝘰𝘶","by":"𝘈𝘯𝘯𝘰𝘵𝘢𝘵𝘦𝘥 𝘣𝘺 {name}","byOrg":"𝘈𝘯𝘯𝘰𝘵𝘢𝘵𝘦𝘥 𝘣𝘺 {name}, {org}","addPageNote":"𝘈𝘥𝘥 𝘱𝘢𝘨𝘦 𝘯𝘰𝘵𝘦"},"viewDropdown":{"document":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵","plainText":"𝘗𝘭𝘢𝘪𝘯 𝘛𝘦𝘹𝘵","thumbnail":"𝘛𝘩𝘶𝘮𝘣𝘯𝘢𝘪𝘭","notes":"𝘕𝘰𝘵𝘦𝘴","search":"𝘚𝘦𝘢𝘳𝘤𝘩 𝘙𝘦𝘴𝘶𝘭𝘵𝘴"},"zoom":{"fitWidth":"𝘍𝘪𝘵 𝘸𝘪𝘥𝘵𝘩","fitHeight":"𝘍𝘪𝘵 𝘩𝘦𝘪𝘨𝘩𝘵"},"titleHeader":{"contributedBy":"𝘊𝘰𝘯𝘵𝘳𝘪𝘣𝘶𝘵𝘦𝘥 𝘣𝘺 {name}"},"annotatePane":{"annotateDocument":"𝘈𝘯𝘯𝘰𝘵𝘢𝘵𝘦 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵","desc":"𝘏𝘪𝘨𝘩𝘭𝘪𝘨𝘩𝘵 𝘢 𝘱𝘰𝘳𝘵𝘪𝘰𝘯 𝘰𝘧 𝘵𝘩𝘦 𝘱𝘢𝘨𝘦, 𝘰𝘳 𝘤𝘭𝘪𝘤𝘬 𝘣𝘦𝘵𝘸𝘦𝘦𝘯 𝘱𝘢𝘨𝘦𝘴 𝘵𝘰 𝘤𝘳𝘦𝘢𝘵𝘦 𝘢 𝘯𝘰𝘵𝘦."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝘗𝘢𝘨𝘦} other {# 𝘗𝘢𝘨𝘦𝘴}} 𝘚𝘦𝘭𝘦𝘤𝘵𝘦𝘥","applyModifications":"𝘈𝘱𝘱𝘭𝘺 𝘔𝘰𝘥𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯𝘴","duplicate":"𝘋𝘶𝘱𝘭𝘪𝘤𝘢𝘵𝘦","move":"𝘔𝘰𝘷𝘦","unselect":"𝘜𝘯𝘴𝘦𝘭𝘦𝘤𝘵","remove":"𝘙𝘦𝘮𝘰𝘷𝘦","insertPages":"𝘐𝘯𝘴𝘦𝘳𝘵 {n, plural, one {# 𝘗𝘢𝘨𝘦} other {# 𝘗𝘢𝘨𝘦𝘴}}","pagesPending":"{n, plural, one {# 𝘗𝘢𝘨𝘦} other {# 𝘗𝘢𝘨𝘦𝘴}} 𝘗𝘦𝘯𝘥𝘪𝘯𝘨 𝘐𝘯𝘴𝘦𝘳𝘵𝘪𝘰𝘯","insertBegin":"𝘐𝘯𝘴𝘦𝘳𝘵 {n, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}} 𝘢𝘵 𝘣𝘦𝘨𝘪𝘯𝘯𝘪𝘯𝘨.","insertEnd":"𝘐𝘯𝘴𝘦𝘳𝘵 {n, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}} 𝘢𝘵 𝘦𝘯𝘥.","insertBetween":"𝘐𝘯𝘴𝘦𝘳𝘵 {n, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}} 𝘪𝘯 𝘣𝘦𝘵𝘸𝘦𝘦𝘯 𝘱𝘢𝘨𝘦 {p0} 𝘢𝘯𝘥 {p1}.","click":"𝘊𝘭𝘪𝘤𝘬 𝘪𝘯-𝘣𝘦𝘵𝘸𝘦𝘦𝘯 𝘱𝘢𝘨𝘦𝘴 𝘣𝘦𝘭𝘰𝘸 𝘵𝘰 𝘮𝘢𝘳𝘬 𝘸𝘩𝘦𝘳𝘦 𝘵𝘰 𝘱𝘢𝘴𝘵𝘦 {n, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}}.","insert":"𝘐𝘯𝘴𝘦𝘳𝘵","insertAtEnd":"𝘐𝘯𝘴𝘦𝘳𝘵 𝘢𝘵 𝘦𝘯𝘥","insertPosition":"𝘐𝘯𝘴𝘦𝘳𝘵 𝘱𝘢𝘨𝘦𝘴 𝘢𝘵 𝘱𝘰𝘴𝘪𝘵𝘪𝘰𝘯","insertOtherDoc":"𝘐𝘯𝘴𝘦𝘳𝘵 𝘧𝘳𝘰𝘮 𝘰𝘵𝘩𝘦𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵","modifyPages":"𝘔𝘰𝘥𝘪𝘧𝘺 𝘗𝘢𝘨𝘦𝘴","select":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘱𝘢𝘨𝘦𝘴 𝘣𝘦𝘭𝘰𝘸 𝘵𝘰 𝘢𝘱𝘱𝘭𝘺 𝘮𝘰𝘥𝘪𝘧𝘪𝘤𝘢𝘵𝘪𝘰𝘯𝘴 (𝘱𝘢𝘨𝘦 𝘳𝘰𝘵𝘢𝘵𝘪𝘰𝘯, 𝘳𝘦𝘢𝘳𝘳𝘢𝘯𝘨𝘪𝘯𝘨, 𝘢𝘯𝘥 𝘥𝘦𝘭𝘦𝘵𝘪𝘰𝘯). 𝘊𝘭𝘪𝘤𝘬 𝘪𝘯-𝘣𝘦𝘵𝘸𝘦𝘦𝘯 𝘱𝘢𝘨𝘦𝘴 𝘵𝘰 𝘪𝘯𝘴𝘦𝘳𝘵.","undo":"𝘜𝘯𝘥𝘰","redo":"𝘙𝘦𝘥𝘰"},"redactPane":{"redactDoc":"𝘙𝘦𝘥𝘢𝘤𝘵 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵","desc":"𝘊𝘭𝘪𝘤𝘬 𝘢𝘯𝘥 𝘥𝘳𝘢𝘨 𝘵𝘰 𝘥𝘳𝘢𝘸 𝘢 𝘣𝘭𝘢𝘤𝘬 𝘳𝘦𝘤𝘵𝘢𝘯𝘨𝘭𝘦 𝘰𝘷𝘦𝘳 𝘦𝘢𝘤𝘩 𝘱𝘰𝘳𝘵𝘪𝘰𝘯 𝘰𝘧 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘺𝘰𝘶’𝘥 𝘭𝘪𝘬𝘦 𝘵𝘰 𝘳𝘦𝘥𝘢𝘤𝘵. 𝘈𝘴𝘴𝘰𝘤𝘪𝘢𝘵𝘦𝘥 𝘵𝘦𝘹𝘵 𝘸𝘪𝘭𝘭 𝘣𝘦 𝘳𝘦𝘮𝘰𝘷𝘦𝘥 𝘸𝘩𝘦𝘯 𝘺𝘰𝘶 𝘴𝘢𝘷𝘦 𝘺𝘰𝘶𝘳 𝘳𝘦𝘥𝘢𝘤𝘵𝘪𝘰𝘯𝘴.","confirm":"𝘊𝘰𝘯𝘧𝘪𝘳𝘮 𝘙𝘦𝘥𝘢𝘤𝘵𝘪𝘰𝘯𝘴","undo":"𝘜𝘯𝘥𝘰"},"searchPane":{"yourQuery":"𝘠𝘰𝘶𝘳 𝘲𝘶𝘦𝘳𝘺 {search} 𝘸𝘢𝘴 𝘧𝘰𝘶𝘯𝘥 𝘰𝘯 {n, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}}"},"selectNotePane":{"selectNote":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘢 𝘯𝘰𝘵𝘦","desc":"𝘚𝘦𝘭𝘦𝘤𝘵 𝘵𝘩𝘦 𝘢𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘰𝘯 𝘵𝘩𝘢𝘵 𝘺𝘰𝘶 𝘸𝘢𝘯𝘵 𝘵𝘰 𝘴𝘩𝘢𝘳𝘦."},"searchResults":{"resultPages":"{results, plural, one {# 𝘳𝘦𝘴𝘶𝘭𝘵} other {# 𝘳𝘦𝘴𝘶𝘭𝘵𝘴}} 𝘢𝘤𝘳𝘰𝘴𝘴 {pages, plural, one {# 𝘱𝘢𝘨𝘦} other {# 𝘱𝘢𝘨𝘦𝘴}}","noSearchResults":"𝘕𝘰 𝘴𝘦𝘢𝘳𝘤𝘩 𝘳𝘦𝘴𝘶𝘭𝘵𝘴. 𝘛𝘳𝘺 𝘢𝘨𝘢𝘪𝘯 𝘸𝘪𝘵𝘩 𝘢 𝘣𝘳𝘰𝘢𝘥𝘦𝘳 𝘲𝘶𝘦𝘳𝘺.","occurrences":"{n, plural, one {# 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘯𝘤𝘦} other {# 𝘰𝘤𝘤𝘶𝘳𝘳𝘦𝘯𝘤𝘦𝘴}}"},"sidebar":{"updating":"𝘜𝘱𝘥𝘢𝘵𝘪𝘯𝘨 𝘥𝘰𝘤𝘶𝘤𝘮𝘦𝘯𝘵...","original":"𝘖𝘳𝘪𝘨𝘪𝘯𝘢𝘭 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 (𝘗𝘋𝘍) »","related":"𝘙𝘦𝘭𝘢𝘵𝘦𝘥 𝘈𝘳𝘵𝘪𝘤𝘭𝘦 »","contributed":"𝘊𝘰𝘯𝘵𝘳𝘪𝘣𝘶𝘵𝘦𝘥 𝘣𝘺 {name}","source":"𝘚𝘰𝘶𝘳𝘤𝘦: {source}","actions":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘈𝘤𝘵𝘪𝘰𝘯𝘴","share":"𝘚𝘩𝘢𝘳𝘦","shareDesc":"𝘊𝘳𝘦𝘢𝘵𝘦 𝘢𝘯 𝘦𝘮𝘣𝘦𝘥 𝘰𝘳 𝘴𝘩𝘢𝘳𝘦 𝘰𝘯 𝘴𝘰𝘤𝘪𝘢𝘭 𝘮𝘦𝘥𝘪𝘢.","annotate":"𝘈𝘯𝘯𝘰𝘵𝘢𝘵𝘦","annotateDesc":"𝘔𝘢𝘬𝘦 𝘢𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘰𝘯𝘴 𝘵𝘰 𝘬𝘦𝘦𝘱 𝘯𝘰𝘵𝘦𝘴 𝘰𝘯 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵.","redact":"𝘙𝘦𝘥𝘢𝘤𝘵","redactDesc":"𝘊𝘳𝘦𝘢𝘵𝘦 𝘳𝘦𝘥𝘢𝘤𝘵𝘪𝘰𝘯𝘴 𝘰𝘯 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘵𝘰 𝘩𝘪𝘥𝘦 𝘵𝘦𝘹𝘵. 𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘭𝘭 𝘳𝘦𝘱𝘳𝘰𝘤𝘦𝘴𝘴 𝘢𝘧𝘵𝘦𝘳𝘸𝘢𝘳𝘥𝘴.","modify":"𝘔𝘰𝘥𝘪𝘧𝘺 𝘗𝘢𝘨𝘦𝘴","modifyDesc":"𝘙𝘦𝘢𝘳𝘳𝘢𝘯𝘨𝘦, 𝘳𝘰𝘵𝘢𝘵𝘦, 𝘥𝘦𝘭𝘦𝘵𝘦, 𝘪𝘯𝘴𝘦𝘳𝘵, 𝘢𝘯𝘥 𝘴𝘱𝘭𝘪𝘵 𝘱𝘢𝘨𝘦𝘴.","info":"𝘌𝘥𝘪𝘵 𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘐𝘯𝘧𝘰","infoDesc":"𝘔𝘰𝘥𝘪𝘧𝘺 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘯𝘧𝘰𝘳𝘮𝘢𝘵𝘪𝘰𝘯 𝘭𝘪𝘬𝘦 𝘥𝘦𝘴𝘤𝘳𝘪𝘱𝘵𝘪𝘰𝘯 𝘢𝘯𝘥 𝘳𝘦𝘭𝘢𝘵𝘦𝘥 𝘜𝘙𝘓.","data":"𝘌𝘥𝘪𝘵 𝘛𝘢𝘨𝘴 𝘢𝘯𝘥 𝘋𝘢𝘵𝘢","dataDesc":"𝘈𝘥𝘥 𝘵𝘢𝘨𝘴 𝘢𝘯𝘥 𝘬𝘦𝘺/𝘷𝘢𝘭𝘶𝘦 𝘱𝘢𝘪𝘳𝘴 𝘵𝘰 𝘤𝘢𝘵𝘦𝘨𝘰𝘳𝘪𝘻𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵.","sections":"𝘌𝘥𝘪𝘵 𝘚𝘦𝘤𝘵𝘪𝘰𝘯𝘴","sectionsDesc":"𝘈𝘥𝘥 𝘴𝘦𝘤𝘵𝘪𝘰𝘯𝘴 𝘵𝘰 𝘰𝘳𝘨𝘢𝘯𝘪𝘻𝘦 𝘺𝘰𝘶𝘳 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘸𝘪𝘵𝘩 𝘢 𝘵𝘢𝘣𝘭𝘦 𝘰𝘧 𝘤𝘰𝘯𝘵𝘦𝘯𝘵𝘴.","privateNote":"𝘈𝘥𝘥 𝘗𝘳𝘪𝘷𝘢𝘵𝘦 𝘕𝘰𝘵𝘦","privateNoteDesc":"𝘔𝘢𝘬𝘦 𝘢𝘯𝘯𝘰𝘵𝘢𝘵𝘪𝘰𝘯𝘴 𝘵𝘰 𝘬𝘦𝘦𝘱 𝘯𝘰𝘵𝘦𝘴 𝘰𝘯 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵."},"viewer":{"notFound":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘯𝘰𝘵 𝘧𝘰𝘶𝘯𝘥","notFoundDesc":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘺𝘰𝘶 𝘳𝘦𝘲𝘶𝘦𝘴𝘵𝘦𝘥 𝘦𝘪𝘵𝘩𝘦𝘳 𝘥𝘰𝘦𝘴 𝘯𝘰𝘵 𝘦𝘹𝘪𝘴𝘵 𝘰𝘳 𝘺𝘰𝘶 𝘭𝘢𝘤𝘬 𝘱𝘦𝘳𝘮𝘪𝘴𝘴𝘪𝘰𝘯 𝘵𝘰 𝘢𝘤𝘤𝘦𝘴𝘴 𝘪𝘵","processing":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘪𝘴 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨","processingDesc":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘺𝘰𝘶 𝘳𝘦𝘲𝘶𝘦𝘴𝘵𝘦𝘥 𝘪𝘴 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨 𝘢𝘯𝘥 𝘸𝘪𝘭𝘭 𝘢𝘶𝘵𝘰𝘮𝘢𝘵𝘪𝘤𝘢𝘭𝘭𝘺 𝘳𝘦𝘧𝘳𝘦𝘴𝘩 𝘸𝘩𝘦𝘯 𝘪𝘵 𝘪𝘴 𝘳𝘦𝘢𝘥𝘺","error":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘩𝘢𝘴 𝘦𝘯𝘤𝘰𝘶𝘯𝘵𝘦𝘳𝘦𝘥 𝘢𝘯 𝘦𝘳𝘳𝘰𝘳","errorDesc":"𝘈 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨 𝘦𝘳𝘳𝘰𝘳 𝘩𝘢𝘴 𝘣𝘦𝘦𝘯 𝘦𝘯𝘤𝘰𝘶𝘯𝘵𝘦𝘳𝘦𝘥 𝘪𝘯 𝘵𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘺𝘰𝘶 𝘳𝘦𝘲𝘶𝘦𝘴𝘵𝘦𝘥","accessible":"𝘋𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘯𝘰𝘵 𝘢𝘤𝘤𝘦𝘴𝘴𝘪𝘣𝘭𝘦","accessibleDesc":"𝘛𝘩𝘦 𝘥𝘰𝘤𝘶𝘮𝘦𝘯𝘵 𝘺𝘰𝘶 𝘳𝘦𝘲𝘶𝘦𝘴𝘵𝘦𝘥 𝘪𝘴 𝘴𝘵𝘪𝘭𝘭 𝘱𝘳𝘰𝘤𝘦𝘴𝘴𝘪𝘯𝘨 𝘰𝘳 𝘺𝘰𝘶 𝘭𝘢𝘤𝘬 𝘱𝘦𝘳𝘮𝘪𝘴𝘴𝘪𝘰𝘯 𝘵𝘰 𝘢𝘤𝘤𝘦𝘴𝘴 𝘵𝘰 𝘪𝘵"}}')}}]);
-./public/7378.2e848f4215f4d9998b6b.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="e1abdb03-7fe0-49ea-ae0e-054ca5fe4939",e._sentryDebugIdIdentifier="sentry-dbid-e1abdb03-7fe0-49ea-ae0e-054ca5fe4939")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[7378],{7378:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"𝐄𝐦𝐚𝐢𝐥 𝐚𝐝𝐝𝐫𝐞𝐬𝐬","loading":"𝐋𝐨𝐚𝐝𝐢𝐧𝐠...","documentCloud":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝","home":"𝐇𝐨𝐦𝐞"},"homeTemplate":{"signedIn":"𝐒𝐢𝐠𝐧𝐞𝐝 𝐢𝐧 𝐚𝐬 {name}","signOut":"𝐒𝐢𝐠𝐧 𝐨𝐮𝐭","signIn":"𝐒𝐢𝐠𝐧 𝐢𝐧","signUp":"𝐒𝐢𝐠𝐧 𝐮𝐩","goToApp":"𝐆𝐨 𝐭𝐨 𝐚𝐩𝐩"},"accessToggle":{"public":"𝐍𝐨𝐭𝐞 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐚𝐧𝐲𝐨𝐧𝐞 𝐰𝐢𝐭𝐡 𝐚𝐜𝐜𝐞𝐬𝐬 𝐭𝐨 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭.","collaborator":"𝐍𝐨𝐭𝐞 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐚𝐧𝐲𝐨𝐧𝐞 𝐰𝐡𝐨 𝐜𝐚𝐧 𝐞𝐝𝐢𝐭 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭.","private":"𝐍𝐨𝐭𝐞 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐲𝐨𝐮 𝐚𝐥𝐨𝐧𝐞.","publicName":"𝐏𝐮𝐛𝐥𝐢𝐜","collaboratorName":"𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫","privateName":"𝐏𝐫𝐢𝐯𝐚𝐭𝐞"},"accessIcon":{"private":"𝐏𝐫𝐢𝐯𝐚𝐭𝐞 𝐀𝐜𝐜𝐞𝐬𝐬","organization":"𝐏𝐫𝐢𝐯𝐚𝐭𝐞 𝐭𝐨 𝐘𝐨𝐮𝐫 𝐎𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","public":"𝐏𝐮𝐛𝐥𝐢𝐜 𝐀𝐜𝐜𝐞𝐬𝐬","privateExplanation":"𝐎𝐧𝐥𝐲 𝐲𝐨𝐮 𝐜𝐚𝐧 𝐯𝐢𝐞𝐰 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","organizationExplanation":"𝐎𝐧𝐥𝐲 𝐦𝐞𝐦𝐛𝐞𝐫𝐬 𝐨𝐟 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐜𝐚𝐧 𝐯𝐢𝐞𝐰 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","publicExplanation":"𝐀𝐧𝐲𝐨𝐧𝐞 𝐜𝐚𝐧 𝐬𝐞𝐚𝐫𝐜𝐡 𝐚𝐧𝐝 𝐯𝐢𝐞𝐰 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭"},"appearanceCustomizer":{"customizeAppearance":"𝐂𝐮𝐬𝐭𝐨𝐦𝐢𝐳𝐞 𝐀𝐩𝐩𝐞𝐚𝐫𝐚𝐧𝐜𝐞","hide":"𝐇𝐢𝐝𝐞 𝐡𝐞𝐥𝐩 𝐭𝐞𝐱𝐭","show":"𝐒𝐡𝐨𝐰 𝐡𝐞𝐥𝐩 𝐭𝐞𝐱𝐭"},"appearanceDimension":{"responsive":"𝐀𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐜 (𝐝𝐞𝐟𝐚𝐮𝐥𝐭)","fixed":"𝐅𝐢𝐱𝐞𝐝"},"calendar":{"jan":"𝐉𝐚𝐧𝐮𝐚𝐫𝐲","feb":"𝐅𝐞𝐛𝐫𝐮𝐚𝐫𝐲","mar":"𝐌𝐚𝐫𝐜𝐡","apr":"𝐀𝐩𝐫𝐢𝐥","may":"𝐌𝐚𝐲","jun":"𝐉𝐮𝐧𝐞","jul":"𝐉𝐮𝐥𝐲","aug":"𝐀𝐮𝐠𝐮𝐬𝐭","sep":"𝐒𝐞𝐩𝐭𝐞𝐦𝐛𝐞𝐫","oct":"𝐎𝐜𝐭𝐨𝐛𝐞𝐫","nov":"𝐍𝐨𝐯𝐞𝐦𝐛𝐞𝐫","dec":"𝐃𝐞𝐜𝐞𝐦𝐛𝐞𝐫","hourShortcode":"𝐇𝐇","minuteShortcode":"𝐌𝐌"},"dialog":{"cancel":"𝐂𝐚𝐧𝐜𝐞𝐥","delete":"𝐃𝐞𝐥𝐞𝐭𝐞","done":"𝐃𝐨𝐧𝐞","edit":"𝐄𝐝𝐢𝐭","remove":"𝐑𝐞𝐦𝐨𝐯𝐞","save":"𝐒𝐚𝐯𝐞","create":"𝐂𝐫𝐞𝐚𝐭𝐞","ok":"𝐎𝐤","update":"𝐔𝐩𝐝𝐚𝐭𝐞","dismiss":"𝐃𝐢𝐬𝐦𝐢𝐬𝐬","continue":"𝐂𝐨𝐧𝐭𝐢𝐧𝐮𝐞"},"dialogAccessDialog":{"changeAccess":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐚𝐜𝐜𝐞𝐬𝐬 𝐟𝐨𝐫 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","selectAccess":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐚𝐧 𝐚𝐜𝐜𝐞𝐬𝐬 𝐥𝐞𝐯𝐞𝐥 𝐟𝐨𝐫 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","public":"𝐏𝐮𝐛𝐥𝐢𝐜 𝐚𝐜𝐜𝐞𝐬𝐬","publicDesc":"𝐀𝐧𝐲𝐨𝐧𝐞 𝐨𝐧 𝐭𝐡𝐞 𝐢𝐧𝐭𝐞𝐫𝐧𝐞𝐭 𝐜𝐚𝐧 𝐬𝐞𝐚𝐫𝐜𝐡 𝐟𝐨𝐫 𝐚𝐧𝐝 𝐯𝐢𝐞𝐰 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭.","verifiedHelp":"𝐎𝐧𝐥𝐲 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐮𝐬𝐞𝐫𝐬 𝐨𝐫 𝐦𝐞𝐦𝐛𝐞𝐫𝐬 𝐨𝐟 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧𝐬 𝐜𝐚𝐧 𝐦𝐚𝐤𝐞 𝐮𝐩𝐥𝐨𝐚𝐝𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐩𝐮𝐛𝐥𝐢𝐜. 𝐈𝐟 𝐲𝐨𝐮\'𝐫𝐞 𝐚 𝐣𝐨𝐮𝐫𝐧𝐚𝐥𝐢𝐬𝐭 𝐨𝐫 𝐨𝐭𝐡𝐞𝐫𝐰𝐢𝐬𝐞 𝐰𝐨𝐫𝐤 𝐢𝐧 𝐩𝐮𝐛𝐥𝐢𝐬𝐡𝐢𝐧𝐠 𝐯𝐞𝐭𝐭𝐞𝐝 𝐦𝐚𝐭𝐞𝐫𝐢𝐚𝐥𝐬 𝐭𝐨 𝐢𝐧𝐟𝐨𝐫𝐦 𝐭𝐡𝐞 𝐩𝐮𝐛𝐥𝐢𝐜, 𝐥𝐞𝐚𝐫𝐧 𝐦𝐨𝐫𝐞 𝐚𝐧𝐝 𝐫𝐞𝐪𝐮𝐞𝐬𝐭 𝐯𝐞𝐫𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐡𝐞𝐫𝐞.","privateToOrg":"𝐘𝐨𝐮 𝐜𝐚𝐧’𝐭 𝐜𝐡𝐚𝐧𝐠𝐞 𝐭𝐡𝐞 𝐚𝐜𝐜𝐞𝐬𝐬 𝐥𝐞𝐯𝐞𝐥 𝐭𝐨 “𝐏𝐫𝐢𝐯𝐚𝐭𝐞 𝐭𝐨 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧” 𝐛𝐞𝐜𝐚𝐮𝐬𝐞 {n, plural, one {𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬} other {𝐨𝐧𝐞 𝐨𝐫 𝐦𝐨𝐫𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐚𝐫𝐞}} 𝐚𝐬𝐬𝐨𝐜𝐢𝐚𝐭𝐞𝐝 𝐰𝐢𝐭𝐡 𝐲𝐨𝐮𝐫 𝐢𝐧𝐝𝐢𝐯𝐢𝐝𝐮𝐚𝐥 𝐚𝐜𝐜𝐨𝐮𝐧𝐭, 𝐧𝐨𝐭 𝐚𝐧 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧. 𝐓𝐨 𝐚𝐝𝐝 {n, plural, one {𝐢𝐭} other {𝐭𝐡𝐞𝐦}} 𝐭𝐨 𝐚𝐧 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧, 𝐬𝐞𝐥𝐞𝐜𝐭 {n, plural, one {𝐢𝐭} other {𝐭𝐡𝐞𝐦}} 𝐟𝐫𝐨𝐦 𝐭𝐡𝐞 𝐦𝐚𝐧𝐚𝐠𝐞𝐦𝐞𝐧𝐭 𝐯𝐢𝐞𝐰 𝐚𝐧𝐝 𝐜𝐥𝐢𝐜𝐤 “𝐂𝐡𝐚𝐧𝐠𝐞 𝐎𝐰𝐧𝐞𝐫.” 𝐘𝐨𝐮 𝐜𝐚𝐧 𝐣𝐨𝐢𝐧 𝐨𝐫 𝐜𝐫𝐞𝐚𝐭𝐞 𝐚𝐧 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐨𝐧 𝐭𝐡𝐢𝐬 𝐩𝐚𝐠𝐞.","private":"𝐏𝐫𝐢𝐯𝐚𝐭𝐞 𝐚𝐜𝐜𝐞𝐬𝐬","privateDesc":"𝐎𝐧𝐥𝐲 𝐩𝐞𝐨𝐩𝐥𝐞 𝐰𝐢𝐭𝐡 𝐞𝐱𝐩𝐥𝐢𝐜𝐢𝐭 𝐩𝐞𝐫𝐦𝐢𝐬𝐬𝐢𝐨𝐧 (𝐯𝐢𝐚 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐢𝐨𝐧) 𝐡𝐚𝐯𝐞 𝐚𝐜𝐜𝐞𝐬𝐬.","organization":"𝐏𝐫𝐢𝐯𝐚𝐭𝐞 𝐭𝐨 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","organizationDesc":"𝐎𝐧𝐥𝐲 𝐭𝐡𝐞 𝐩𝐞𝐨𝐩𝐥𝐞 𝐢𝐧 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐡𝐚𝐯𝐞 𝐚𝐜𝐜𝐞𝐬𝐬.","schedulePublication":"𝐒𝐜𝐡𝐞𝐝𝐮𝐥𝐞 𝐩𝐮𝐛𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧","scheduleHelp":"𝐓𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐦𝐚𝐝𝐞 𝐩𝐮𝐛𝐥𝐢𝐜 𝐚𝐭 𝐭𝐡𝐞 𝐠𝐢𝐯𝐞𝐧 𝐝𝐚𝐭𝐞 𝐚𝐧𝐝 𝐭𝐢𝐦𝐞. 𝐏𝐮𝐛𝐥𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐭𝐢𝐦𝐞 𝐢𝐬 𝐥𝐨𝐜𝐚𝐥{timezone}.","unchanged":"𝐀𝐜𝐜𝐞𝐬𝐬 𝐢𝐬 𝐮𝐧𝐜𝐡𝐚𝐧𝐠𝐞𝐝. 𝐒𝐞𝐥𝐞𝐜𝐭 𝐚 𝐝𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐭 𝐚𝐜𝐜𝐞𝐬𝐬 𝐥𝐞𝐯𝐞𝐥.","future":"𝐌𝐮𝐬𝐭 𝐬𝐞𝐥𝐞𝐜𝐭 𝐚 𝐭𝐢𝐦𝐞 𝐢𝐧 𝐭𝐡𝐞 𝐟𝐮𝐭𝐮𝐫𝐞","change":"𝐂𝐡𝐚𝐧𝐠𝐞"},"dialogCollaboratorDialog":{"confirm":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐫𝐞𝐦𝐨𝐯𝐞 𝐮𝐬𝐞𝐫","confirmMsg":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐫𝐞𝐦𝐨𝐯𝐞 {name} 𝐟𝐫𝐨𝐦 {title}. 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓","addCollaborators":"𝐀𝐝𝐝 𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬","invite":"𝐏𝐮𝐭 𝐢𝐧 𝐭𝐡𝐞 𝐞𝐦𝐚𝐢𝐥 𝐨𝐟 𝐚𝐧 𝐞𝐱𝐢𝐬𝐭𝐢𝐧𝐠 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐮𝐬𝐞𝐫 𝐛𝐞𝐥𝐨𝐰. 𝐈𝐟 𝐭𝐡𝐞𝐲 𝐝𝐨𝐧\'𝐭 𝐡𝐚𝐯𝐞 𝐚𝐧 𝐚𝐜𝐜𝐨𝐮𝐧𝐭, 𝐡𝐚𝐯𝐞 𝐭𝐡𝐞𝐦 𝐫𝐞𝐠𝐢𝐬𝐭𝐞𝐫 𝐡𝐞𝐫𝐞 𝐟𝐨𝐫 𝐟𝐫𝐞𝐞, 𝐚𝐧𝐝 𝐭𝐡𝐞𝐧 𝐚𝐬𝐤 𝐭𝐡𝐞𝐦 𝐭𝐨 𝐥𝐨𝐠 𝐢𝐧 𝐭𝐨 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐚𝐭 𝐥𝐞𝐚𝐬𝐭 𝐨𝐧𝐜𝐞.","admin":"𝐀𝐝𝐦𝐢𝐧","view":"𝐕𝐢𝐞𝐰","adminHelp":"𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐜𝐚𝐧 𝐞𝐝𝐢𝐭 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐚𝐧𝐝 𝐢𝐭𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","editHelp":"𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐜𝐚𝐧 𝐞𝐝𝐢𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐢𝐧 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭","viewHelp":"𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐜𝐚𝐧 𝐯𝐢𝐞𝐰 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐢𝐧 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭","add":"𝐀𝐝𝐝","empty":"𝐘𝐨𝐮 𝐡𝐚𝐯𝐞 𝐧𝐨𝐭 𝐲𝐞𝐭 𝐚𝐝𝐝𝐞𝐝 𝐚𝐧𝐲 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐭𝐨 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭. 𝐈𝐧𝐯𝐢𝐭𝐞 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐭𝐨 𝐠𝐫𝐚𝐧𝐭 𝐨𝐭𝐡𝐞𝐫 𝐮𝐬𝐞𝐫𝐬 𝐚𝐜𝐜𝐞𝐬𝐬 𝐭𝐨 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐬𝐡𝐚𝐫𝐞𝐝 𝐢𝐧 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭. 𝐘𝐨𝐮 𝐜𝐚𝐧 𝐜𝐨𝐧𝐭𝐫𝐨𝐥 𝐰𝐡𝐞𝐭𝐡𝐞𝐫 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐡𝐚𝐯𝐞 𝐚𝐜𝐜𝐞𝐬𝐬 𝐭𝐨 𝐯𝐢𝐞𝐰/𝐞𝐝𝐢𝐭 𝐭𝐡𝐞 𝐩𝐫𝐨𝐣𝐞𝐜𝐭’𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐨𝐫 𝐛𝐞 𝐚𝐧 𝐚𝐝𝐦𝐢𝐧 𝐰𝐢𝐭𝐡 𝐩𝐞𝐫𝐦𝐢𝐬𝐬𝐢𝐨𝐧𝐬 𝐭𝐨 𝐢𝐧𝐯𝐢𝐭𝐞 𝐨𝐭𝐡𝐞𝐫 𝐮𝐬𝐞𝐫𝐬 𝐚𝐧𝐝 𝐞𝐝𝐢𝐭 𝐭𝐡𝐞 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐢𝐭𝐬𝐞𝐥𝐟.","manageCollaborators":"𝐌𝐚𝐧𝐚𝐠𝐞 𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬","name":"𝐍𝐚𝐦𝐞","access":"𝐀𝐜𝐜𝐞𝐬𝐬","you":"(𝐲𝐨𝐮)"},"dialogDataDialog":{"confirm":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐫𝐞𝐦𝐨𝐯𝐞 𝐝𝐚𝐭𝐚 𝐩𝐨𝐢𝐧𝐭","removeMsg":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐫𝐞𝐦𝐨𝐯𝐞 𝐭𝐡𝐞 {key}{value} 𝐝𝐚𝐭𝐚 𝐩𝐨𝐢𝐧𝐭 𝐟𝐫𝐨𝐦 𝐭𝐡𝐞 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬. 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓","addData":"𝐀𝐝𝐝 𝐃𝐚𝐭𝐚 𝐟𝐨𝐫 {n, plural, one {𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","tag":"𝐓𝐚𝐠","value":"𝐕𝐚𝐥𝐮𝐞","key":"𝐊𝐞𝐲","keyValue":"𝐊𝐞𝐲 / 𝐕𝐚𝐥𝐮𝐞","tagInfo":"𝐀𝐝𝐝 𝐜𝐮𝐬𝐭𝐨𝐦 𝐭𝐚𝐠𝐬 𝐭𝐨 𝐜𝐚𝐭𝐞𝐠𝐨𝐫𝐢𝐳𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬.","eg":"𝐞.𝐠.","exampleTagReport":"𝐫𝐞𝐩𝐨𝐫𝐭","exampleTagLawsuit":"𝐥𝐚𝐰𝐬𝐮𝐢𝐭","exampleTagEmail":"𝐞𝐦𝐚𝐢𝐥","keyValueInfo":"𝐀𝐝𝐝 𝐜𝐮𝐬𝐭𝐨𝐦 𝐤𝐞𝐲 / 𝐯𝐚𝐥𝐮𝐞 𝐩𝐚𝐢𝐫𝐬 𝐟𝐨𝐫 𝐩𝐫𝐞𝐜𝐢𝐬𝐞 𝐜𝐚𝐭𝐞𝐠𝐨𝐫𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐨𝐟 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬.","exampleKVState":"𝐬𝐭𝐚𝐭𝐞:&𝐧𝐛𝐬𝐩;𝐂𝐚𝐥𝐢𝐟𝐨𝐫𝐧𝐢𝐚","exampleKVYear":"𝐲𝐞𝐚𝐫:&𝐧𝐛𝐬𝐩;𝟐𝟎𝟏𝟔","exampleKVType":"𝐭𝐲𝐩𝐞:&𝐧𝐛𝐬𝐩;𝐦𝐞𝐦𝐨","enterTag":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐭𝐚𝐠","enterKey":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐤𝐞𝐲","keyInvalid":"𝐊𝐞𝐲𝐬 𝐜𝐚𝐧 𝐨𝐧𝐥𝐲 𝐜𝐨𝐧𝐭𝐚𝐢𝐧 𝐥𝐞𝐭𝐭𝐞𝐫𝐬, 𝐧𝐮𝐦𝐛𝐞𝐫𝐬, 𝐮𝐧𝐝𝐞𝐫𝐬𝐜𝐨𝐫𝐞𝐬 (_), 𝐚𝐧𝐝 𝐝𝐚𝐬𝐡𝐞𝐬 (-)","emptyMsg":"𝐘𝐨𝐮 𝐡𝐚𝐯𝐞 𝐧𝐨𝐭 𝐲𝐞𝐭 𝐚𝐝𝐝𝐞𝐝 𝐚𝐧𝐲 𝐝𝐚𝐭𝐚 𝐭𝐨 𝐭𝐡𝐞 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬. 𝐀𝐝𝐝 𝐭𝐚𝐠𝐬 𝐚𝐧𝐝 𝐤𝐞𝐲/𝐯𝐚𝐥𝐮𝐞 𝐩𝐚𝐢𝐫𝐬 𝐭𝐨 𝐜𝐚𝐭𝐞𝐠𝐨𝐫𝐢𝐳𝐞 𝐚𝐧𝐝 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬. 𝐘𝐨𝐮 𝐜𝐚𝐧 𝐟𝐢𝐥𝐭𝐞𝐫 𝐚𝐧𝐝 𝐬𝐞𝐚𝐫𝐜𝐡 𝐨𝐧 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐝𝐚𝐭𝐚 𝐭𝐨 𝐠𝐢𝐯𝐞 𝐲𝐨𝐮 𝐩𝐨𝐰𝐞𝐫𝐟𝐮𝐥 𝐜𝐨𝐧𝐭𝐫𝐨𝐥 𝐨𝐯𝐞𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐦𝐚𝐧𝐚𝐠𝐞𝐦𝐞𝐧𝐭.","manageDocumentData":"𝐌𝐚𝐧𝐚𝐠𝐞 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐃𝐚𝐭𝐚","valueUnchanged":"𝐕𝐚𝐥𝐮𝐞 𝐫𝐞𝐦𝐚𝐢𝐧𝐬 𝐮𝐧𝐜𝐡𝐚𝐧𝐠𝐞𝐝","kvCannotBeEmpty":"𝐊𝐞𝐲/𝐯𝐚𝐥𝐮𝐞 𝐜𝐚𝐧𝐧𝐨𝐭 𝐛𝐞 𝐞𝐦𝐩𝐭𝐲"},"dialogReprocessDialog":{"title":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬","reprocessDocs":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐟𝐨𝐫𝐜𝐞 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}} 𝐭𝐨 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬 𝐩𝐚𝐠𝐞 𝐚𝐧𝐝 𝐢𝐦𝐚𝐠𝐞 𝐭𝐞𝐱𝐭. 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓","reprocessSingleDoc":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐟𝐨𝐫𝐜𝐞 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐭𝐨 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬 𝐩𝐚𝐠𝐞 𝐚𝐧𝐝 𝐢𝐦𝐚𝐠𝐞 𝐭𝐞𝐱𝐭. 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓","confirm":"𝐑𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬"},"dialogDeleteDialog":{"title":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬","deleteDocs":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐩𝐞𝐫𝐦𝐚𝐧𝐞𝐧𝐭𝐥𝐲 𝐝𝐞𝐥𝐞𝐭𝐞 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}. 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓"},"dialogCancelProcessingDialog":{"title":"𝐂𝐚𝐧𝐜𝐞𝐥 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠","deleteDocs":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐟𝐨𝐫𝐜𝐞 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}} 𝐭𝐨 𝐬𝐭𝐨𝐩 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠. 𝐀𝐟𝐭𝐞𝐫 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠 𝐡𝐚𝐬 𝐛𝐞𝐞𝐧 𝐬𝐭𝐨𝐩𝐩𝐞𝐝, 𝐚𝐧 𝐞𝐫𝐫𝐨𝐫 𝐰𝐢𝐥𝐥 𝐬𝐡𝐨𝐰 𝐚𝐟𝐭𝐞𝐫 𝐰𝐡𝐢𝐜𝐡 𝐲𝐨𝐮 𝐜𝐚𝐧 “𝐅𝐨𝐫𝐜𝐞 𝐑𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬” 𝐨𝐫 𝐝𝐞𝐥𝐞𝐭𝐞 𝐭𝐡𝐞 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}} 𝐮𝐬𝐢𝐧𝐠 𝐭𝐡𝐞 𝐄𝐝𝐢𝐭 𝐦𝐞𝐧𝐮. 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝐒𝐭𝐚𝐟𝐟-𝐨𝐧𝐥𝐲 𝐢𝐧𝐟𝐨 𝐟𝐨𝐫 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","id":"𝐈𝐃","title":"𝐓𝐢𝐭𝐥𝐞","actions":"𝐀𝐜𝐭𝐢𝐨𝐧𝐬","debug":"𝐃𝐞𝐛𝐮𝐠","viewErrors":"𝐕𝐢𝐞𝐰 𝐞𝐫𝐫𝐨𝐫𝐬","viewS3":"𝐕𝐢𝐞𝐰 𝐢𝐧 𝐒𝟑"},"dialogDocumentEmbedDialog":{"responsive":"𝐑𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞","respOn":"𝐎𝐧 (𝐝𝐞𝐟𝐚𝐮𝐥𝐭)","respOnHelp":"𝐅𝐢𝐥𝐥 𝐭𝐡𝐞 𝐰𝐢𝐝𝐭𝐡 𝐨𝐟 𝐭𝐡𝐞 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐜𝐨𝐧𝐭𝐚𝐢𝐧𝐞𝐫 (𝐮𝐬𝐮𝐚𝐥𝐥𝐲 𝐰𝐨𝐫𝐤𝐬 𝐛𝐞𝐬𝐭)","respOff":"𝐎𝐟𝐟","respOffHelp":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐟𝐢𝐭 𝐭𝐡𝐞 𝐬𝐢𝐳𝐞𝐬 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐞𝐝 𝐛𝐞𝐥𝐨𝐰","width":"𝐖𝐢𝐝𝐭𝐡","widthAuto":"𝐖𝐢𝐥𝐥 𝐟𝐢𝐥𝐥 𝐭𝐡𝐞 𝐚𝐯𝐚𝐢𝐥𝐚𝐛𝐥𝐞 𝐬𝐩𝐚𝐜𝐞 𝐢𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬 𝐬𝐞𝐭 𝐭𝐨 𝐫𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞, 𝐨𝐭𝐡𝐞𝐫𝐰𝐢𝐬𝐞 𝐝𝐞𝐟𝐚𝐮𝐥𝐭𝐬 𝐭𝐨 𝟕𝟎𝟎𝐩𝐱","widthFixed":"𝐒𝐞𝐭 𝐚 𝐦𝐚𝐱𝐢𝐦𝐮𝐦 𝐰𝐢𝐝𝐭𝐡 𝐢𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬 𝐫𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞, 𝐨𝐫 𝐬𝐞𝐭 𝐚 𝐟𝐢𝐱𝐞𝐝 𝐬𝐢𝐳𝐞 𝐢𝐟 𝐧𝐨𝐭 𝐫𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞","height":"𝐇𝐞𝐢𝐠𝐡𝐭","heightAuto":"𝐓𝐡𝐞 𝐡𝐞𝐢𝐠𝐡𝐭 𝐢𝐬 𝐛𝐚𝐬𝐞𝐝 𝐨𝐧 𝐭𝐡𝐞 𝐬𝐢𝐳𝐞 𝐨𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭, 𝐰𝐢𝐭𝐡 𝐧𝐨 𝐦𝐚𝐱𝐢𝐦𝐮𝐦 𝐬𝐢𝐳𝐞. 𝐈𝐟 𝐫𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞, 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐬𝐞𝐭 𝐭𝐨 𝐭𝐡𝐞 𝐡𝐞𝐢𝐠𝐡𝐭 𝐨𝐟 𝐭𝐡𝐞 𝐛𝐫𝐨𝐰𝐬𝐞𝐫 𝐰𝐢𝐧𝐝𝐨𝐰 𝐦𝐢𝐧𝐮𝐬 𝟏𝟎𝟎𝐩𝐱","heightFixed":"𝐒𝐞𝐭 𝐚 𝐦𝐚𝐱𝐢𝐦𝐮𝐦 𝐡𝐞𝐢𝐠𝐡𝐭 𝐢𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬 𝐫𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞, 𝐨𝐫 𝐬𝐞𝐭 𝐚 𝐟𝐢𝐱𝐞𝐝 𝐬𝐢𝐳𝐞 𝐢𝐟 𝐧𝐨𝐭 𝐫𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞","sidebarBehavior":"𝐒𝐢𝐝𝐞𝐛𝐚𝐫 𝐛𝐞𝐡𝐚𝐯𝐢𝐨𝐫","sbResponsive":"𝐑𝐞𝐬𝐩𝐨𝐧𝐬𝐢𝐯𝐞 (𝐝𝐞𝐟𝐚𝐮𝐥𝐭)","sbResponsiveHelp":"𝐒𝐡𝐨𝐰 𝐬𝐢𝐝𝐞𝐛𝐚𝐫 𝐚𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐜𝐚𝐥𝐥𝐲 𝐨𝐧 𝐥𝐚𝐫𝐠𝐞 𝐬𝐜𝐫𝐞𝐞𝐧𝐬 𝐚𝐧𝐝 𝐡𝐢𝐝𝐞 𝐨𝐧 𝐦𝐨𝐛𝐢𝐥𝐞 𝐝𝐞𝐯𝐢𝐜𝐞𝐬. 𝐈𝐧 𝐞𝐦𝐛𝐞𝐝 𝐦𝐨𝐝𝐞, 𝐭𝐡𝐞 𝐬𝐢𝐝𝐞𝐛𝐚𝐫 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐡𝐢𝐝𝐝𝐞𝐧","hidden":"𝐇𝐢𝐝𝐝𝐞𝐧","visible":"𝐕𝐢𝐬𝐢𝐛𝐥𝐞","visibleDefault":"𝐕𝐢𝐬𝐢𝐛𝐥𝐞 (𝐝𝐞𝐟𝐚𝐮𝐥𝐭)","sbHiddenHelp":"𝐇𝐢𝐝𝐞 𝐭𝐡𝐞 𝐬𝐢𝐝𝐞𝐛𝐚𝐫 𝐛𝐲 𝐝𝐞𝐟𝐚𝐮𝐥𝐭","sbVisibleHelp":"𝐒𝐡𝐨𝐰 𝐭𝐡𝐞 𝐬𝐢𝐝𝐞𝐛𝐚𝐫 𝐛𝐲 𝐝𝐞𝐟𝐚𝐮𝐥𝐭","titleBehavior":"𝐓𝐢𝐭𝐥𝐞 𝐛𝐞𝐡𝐚𝐯𝐢𝐨𝐫","tVisibleHelp":"𝐃𝐢𝐬𝐩𝐥𝐚𝐲 𝐭𝐡𝐞 𝐭𝐢𝐭𝐥𝐞 𝐚𝐧𝐝 𝐚𝐭𝐭𝐫𝐢𝐛𝐮𝐭𝐢𝐨𝐧 𝐢𝐧 𝐭𝐡𝐞 𝐡𝐞𝐚𝐝𝐞𝐫 𝐨𝐟 𝐭𝐡𝐞 𝐯𝐢𝐞𝐰𝐞𝐫","tHiddenHelp":"𝐇𝐢𝐝𝐞 𝐭𝐡𝐞 𝐭𝐢𝐭𝐥𝐞 𝐢𝐧 𝐭𝐡𝐞 𝐡𝐞𝐚𝐝𝐞𝐫 𝐨𝐟 𝐭𝐡𝐞 𝐯𝐢𝐞𝐰𝐞𝐫 (𝐬𝐭𝐢𝐥𝐥 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐢𝐧 𝐭𝐡𝐞 𝐬𝐢𝐝𝐞𝐛𝐚𝐫)","pdfLink":"𝐏𝐃𝐅 𝐥𝐢𝐧𝐤","plVisibleHelp":"𝐒𝐡𝐨𝐰 𝐚 𝐥𝐢𝐧𝐤 𝐭𝐨 𝐭𝐡𝐞 𝐫𝐚𝐰 𝐏𝐃𝐅 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐧 𝐭𝐡𝐞 𝐬𝐢𝐝𝐞𝐛𝐚𝐫","plHiddenHelp":"𝐇𝐢𝐝𝐞 𝐭𝐡𝐞 𝐬𝐢𝐝𝐞𝐛𝐚𝐫 𝐏𝐃𝐅 𝐥𝐢𝐧𝐤 (𝐟𝐢𝐥𝐞 𝐢𝐬 𝐬𝐭𝐢𝐥𝐥 𝐚𝐜𝐜𝐞𝐬𝐬𝐢𝐛𝐥𝐞 𝐢𝐟 𝐭𝐡𝐞 𝐔𝐑𝐋 𝐢𝐬 𝐤𝐧𝐨𝐰𝐧)","fullscreenOption":"𝐅𝐮𝐥𝐥𝐬𝐜𝐫𝐞𝐞𝐧 𝐨𝐩𝐭𝐢𝐨𝐧","fsVisibleHelp":"𝐒𝐡𝐨𝐰 𝐚 𝐟𝐮𝐥𝐥𝐬𝐜𝐫𝐞𝐞𝐧 𝐢𝐜𝐨𝐧 𝐢𝐧 𝐭𝐡𝐞 𝐛𝐨𝐭𝐭𝐨𝐦-𝐫𝐢𝐠𝐡𝐭 𝐜𝐨𝐫𝐧𝐞𝐫","fsHiddenHelp":"𝐇𝐢𝐝𝐞 𝐭𝐡𝐞 𝐟𝐮𝐥𝐥𝐬𝐜𝐫𝐞𝐞𝐧 𝐨𝐩𝐭𝐢𝐨𝐧","textMode":"𝐓𝐞𝐱𝐭 𝐦𝐨𝐝𝐞","tmVisibleHelp":"𝐒𝐡𝐨𝐰 𝐚𝐧 𝐨𝐩𝐭𝐢𝐨𝐧 𝐭𝐨 𝐯𝐢𝐞𝐰 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭’𝐬 𝐭𝐞𝐱𝐭 𝐢𝐧 𝐭𝐡𝐞 𝐯𝐢𝐞𝐰 𝐝𝐫𝐨𝐩𝐝𝐨𝐰𝐧","tmHiddenHelp":"𝐇𝐢𝐝𝐞 𝐭𝐞𝐱𝐭 𝐦𝐨𝐝𝐞","contributedByFormat":"𝐂𝐨𝐧𝐭𝐫𝐢𝐛𝐮𝐭𝐞𝐝 𝐛𝐲 𝐟𝐨𝐫𝐦𝐚𝐭","cbfUserAndOrg":"𝐔𝐬𝐞𝐫 𝐚𝐧𝐝 𝐨𝐫𝐠 (𝐝𝐞𝐟𝐚𝐮𝐥𝐭)","cbfUserAndOrgHelp":"𝐒𝐡𝐨𝐰 𝐚 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭’𝐬 𝐚𝐭𝐭𝐫𝐢𝐛𝐮𝐭𝐢𝐨𝐧 𝐚𝐬 𝐭𝐡𝐞 𝐮𝐬𝐞𝐫 𝐧𝐚𝐦𝐞 𝐟𝐨𝐥𝐥𝐨𝐰𝐞𝐝 𝐛𝐲 𝐭𝐡𝐞 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","cbfOrgOnly":"𝐎𝐫𝐠 𝐨𝐧𝐥𝐲","cbfOrgOnlyHelp":"𝐀𝐭𝐭𝐫𝐢𝐛𝐮𝐭𝐞 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐭𝐨 𝐣𝐮𝐬𝐭 𝐭𝐡𝐞 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","share":"𝐒𝐡𝐚𝐫𝐞 “{title}”","embedDesc":"𝐂𝐨𝐩𝐲 𝐭𝐡𝐞 𝐇𝐓𝐌𝐋 𝐜𝐨𝐝𝐞 𝐭𝐨 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐭𝐡𝐢𝐧 𝐚𝐧 𝐚𝐫𝐭𝐢𝐜𝐥𝐞"},"dialogDocumentInformationDialog":{"editInformation":"𝐄𝐝𝐢𝐭 𝐈𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐨𝐧 𝐟𝐨𝐫 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}"},"dialogRedactDialog":{"title":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐫𝐞𝐝𝐚𝐜𝐭𝐢𝐨𝐧𝐬","description":"𝐀𝐫𝐞 𝐲𝐨𝐮 𝐬𝐮𝐫𝐞 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐫𝐞𝐝𝐚𝐜𝐭 𝐭𝐡𝐞 𝐜𝐮𝐫𝐫𝐞𝐧𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭❓ 𝐈𝐟 𝐲𝐨𝐮 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞, 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐯𝐢𝐞𝐰𝐞𝐫 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐢𝐧𝐚𝐜𝐜𝐞𝐬𝐬𝐢𝐛𝐥𝐞 𝐭𝐞𝐦𝐩𝐨𝐫𝐚𝐫𝐢𝐥𝐲 𝐰𝐡𝐢𝐥𝐞 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐞𝐬 𝐰𝐢𝐭𝐡 𝐭𝐡𝐞 𝐫𝐞𝐝𝐚𝐜𝐭𝐢𝐨𝐧𝐬 𝐢𝐧 𝐩𝐥𝐚𝐜𝐞. 𝐓𝐡𝐢𝐬 𝐜𝐡𝐚𝐧𝐠𝐞 𝐢𝐬 𝐢𝐫𝐫𝐞𝐯𝐞𝐫𝐬𝐢𝐛𝐥𝐞."},"dialogModifyDialog":{"title":"𝐀𝐩𝐩𝐥𝐲 𝐦𝐨𝐝𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬","description":"𝐀𝐫𝐞 𝐲𝐨𝐮 𝐬𝐮𝐫𝐞 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐦𝐨𝐝𝐢𝐟𝐲 𝐭𝐡𝐞 𝐜𝐮𝐫𝐫𝐞𝐧𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭❓ 𝐈𝐟 𝐲𝐨𝐮 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞, 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐯𝐢𝐞𝐰𝐞𝐫 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐢𝐧𝐚𝐜𝐜𝐞𝐬𝐬𝐢𝐛𝐥𝐞 𝐭𝐞𝐦𝐩𝐨𝐫𝐚𝐫𝐢𝐥𝐲 𝐰𝐡𝐢𝐥𝐞 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐞𝐬 𝐰𝐢𝐭𝐡 𝐭𝐡𝐞 𝐦𝐨𝐝𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬. 𝐓𝐡𝐢𝐬 𝐜𝐡𝐚𝐧𝐠𝐞 𝐢𝐬 𝐢𝐫𝐫𝐞𝐯𝐞𝐫𝐬𝐢𝐛𝐥𝐞.","closeTitle":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐜𝐥𝐨𝐬𝐞","closeWarning":"𝐘𝐨𝐮 𝐰𝐢𝐥𝐥 𝐥𝐨𝐬𝐞 𝐚𝐥𝐥 𝐲𝐨𝐮𝐫 𝐮𝐧𝐚𝐩𝐩𝐥𝐢𝐞𝐝 𝐦𝐨𝐝𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬. 𝐀𝐫𝐞 𝐲𝐨𝐮 𝐬𝐮𝐫𝐞 𝐲𝐨𝐮 𝐰𝐚𝐧𝐭 𝐭𝐨 𝐩𝐫𝐨𝐜𝐞𝐞𝐝❓"},"dialogDeleteNoteDialog":{"title":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐝𝐞𝐥𝐞𝐭𝐞","description":"𝐀𝐫𝐞 𝐲𝐨𝐮 𝐬𝐮𝐫𝐞 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐝𝐞𝐥𝐞𝐭𝐞 𝐭𝐡𝐞 𝐜𝐮𝐫𝐫𝐞𝐧𝐭 𝐧𝐨𝐭𝐞❓"},"dialogEditSectionsDialog":{"confirmDelete":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐝𝐞𝐥𝐞𝐭𝐞","proceedingWillRemove":"𝐏𝐫𝐨𝐜𝐞𝐞𝐝𝐢𝐧𝐠 𝐰𝐢𝐥𝐥 𝐫𝐞𝐦𝐨𝐯𝐞 𝐭𝐡𝐞 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐞𝐝 𝐬𝐞𝐜𝐭𝐢𝐨𝐧 (𝐩. {page} {title}). 𝐃𝐨 𝐲𝐨𝐮 𝐰𝐢𝐬𝐡 𝐭𝐨 𝐜𝐨𝐧𝐭𝐢𝐧𝐮𝐞❓","editSections":"𝐄𝐝𝐢𝐭 𝐒𝐞𝐜𝐭𝐢𝐨𝐧𝐬","manageSections":"𝐌𝐚𝐧𝐚𝐠𝐞 𝐬𝐞𝐜𝐭𝐢𝐨𝐧𝐬 𝐭𝐨 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐭𝐡 𝐚 𝐭𝐚𝐛𝐥𝐞 𝐨𝐟 𝐜𝐨𝐧𝐭𝐞𝐧𝐭𝐬.","pageAbbrevNo":"𝐩. {n}","pageAbbrev":"𝐩.","empty":"𝐘𝐨𝐮 𝐡𝐚𝐯𝐞 𝐧𝐨𝐭 𝐚𝐝𝐝𝐞𝐝 𝐚𝐧𝐲 𝐬𝐞𝐜𝐭𝐢𝐨𝐧𝐬","edit":"𝐄𝐝𝐢𝐭 𝐭𝐡𝐞 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐬𝐞𝐜𝐭𝐢𝐨𝐧","add":"𝐀𝐝𝐝 𝐚 𝐧𝐞𝐰 𝐬𝐞𝐜𝐭𝐢𝐨𝐧","title":"𝐓𝐢𝐭𝐥𝐞","missingTitle":"𝐏𝐥𝐞𝐚𝐬𝐞 𝐞𝐧𝐭𝐞𝐫 𝐚 𝐭𝐢𝐭𝐥𝐞","updateTitle":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐧𝐞𝐰 𝐭𝐢𝐭𝐥𝐞 𝐨𝐫 𝐩𝐚𝐠𝐞 𝐧𝐮𝐦𝐛𝐞𝐫","uniquePageNumber":"𝐘𝐨𝐮 𝐦𝐮𝐬𝐭 𝐞𝐧𝐭𝐞𝐫 𝐚 𝐮𝐧𝐢𝐪𝐮𝐞 𝐩𝐚𝐠𝐞 𝐧𝐮𝐦𝐛𝐞𝐫","invalidPageNumber":"𝐏𝐚𝐠𝐞 𝐧𝐮𝐦𝐛𝐞𝐫 𝐢𝐬 𝐢𝐧𝐯𝐚𝐥𝐢𝐝"},"dialogEmbedDialog":{"updatingDocument":"𝐔𝐩𝐝𝐚𝐭𝐢𝐧𝐠 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭...","makingPublic":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬 𝐜𝐮𝐫𝐫𝐞𝐧𝐭𝐥𝐲 𝐛𝐞𝐢𝐧𝐠 𝐦𝐚𝐝𝐞 𝐩𝐮𝐛𝐥𝐢𝐜. 𝐓𝐡𝐢𝐬 𝐦𝐚𝐲 𝐭𝐚𝐤𝐞 𝐚 𝐦𝐢𝐧𝐮𝐭𝐞 𝐨𝐫 𝐭𝐰𝐨.","wouldMakePublic":"𝐖𝐨𝐮𝐥𝐝 𝐲𝐨𝐮 𝐥𝐢𝐤𝐞 𝐭𝐨 𝐦𝐚𝐤𝐞 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐩𝐮𝐛𝐥𝐢𝐜 𝐛𝐞𝐟𝐨𝐫𝐞 𝐬𝐡𝐚𝐫𝐢𝐧𝐠❓","notPublic":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬 𝐧𝐨𝐭 𝐜𝐮𝐫𝐫𝐞𝐧𝐭𝐥𝐲 𝐩𝐮𝐛𝐥𝐢𝐜. 𝐈𝐟 𝐲𝐨𝐮 𝐞𝐦𝐛𝐞𝐝 𝐨𝐫 𝐥𝐢𝐧𝐤 𝐢𝐭, 𝐨𝐧𝐥𝐲 𝐲𝐨𝐮 𝐚𝐧𝐝 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐚𝐛𝐥𝐞 𝐭𝐨 𝐯𝐢𝐞𝐰 𝐢𝐭 𝐮𝐧𝐭𝐢𝐥 𝐢𝐭 𝐢𝐬 𝐦𝐚𝐝𝐞 𝐩𝐮𝐛𝐥𝐢𝐜. 𝐂𝐥𝐢𝐜𝐤 𝐛𝐞𝐥𝐨𝐰 𝐰𝐡𝐞𝐧 𝐲𝐨𝐮’𝐫𝐞 𝐫𝐞𝐚𝐝𝐲 𝐭𝐨 𝐩𝐮𝐛𝐥𝐢𝐬𝐡 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐭𝐨 𝐭𝐡𝐞 𝐩𝐮𝐛𝐥𝐢𝐜.","makePublic":"𝐌𝐚𝐤𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐩𝐮𝐛𝐥𝐢𝐜","leave":"𝐋𝐞𝐚𝐯𝐞 𝐚𝐬 𝐢𝐬","selectShare":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐬𝐡𝐚𝐫𝐞 𝐨𝐩𝐭𝐢𝐨𝐧","selectShareHelp":"𝐂𝐡𝐨𝐨𝐬𝐞 𝐰𝐡𝐞𝐭𝐡𝐞𝐫 𝐭𝐨 𝐬𝐡𝐚𝐫𝐞 𝐭𝐡𝐞 𝐞𝐧𝐭𝐢𝐫𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐨𝐫 𝐣𝐮𝐬𝐭 𝐚 𝐩𝐚𝐠𝐞 𝐨𝐫 𝐧𝐨𝐭𝐞.","shareDoc":"𝐒𝐡𝐚𝐫𝐞 𝐞𝐧𝐭𝐢𝐫𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","shareDocHelp":"𝐋𝐢𝐧𝐤 𝐨𝐫 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐞 𝐞𝐧𝐭𝐢𝐫𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭. (𝐓𝐡𝐢𝐬 𝐢𝐬 𝐭𝐡𝐞 𝐦𝐨𝐬𝐭 𝐜𝐨𝐦𝐦𝐨𝐧𝐥𝐲 𝐮𝐬𝐞𝐝 𝐬𝐡𝐚𝐫𝐞 𝐨𝐩𝐭𝐢𝐨𝐧.)","sharePage":"𝐒𝐡𝐚𝐫𝐞 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐜 𝐩𝐚𝐠𝐞","sharePageHelp":"𝐋𝐢𝐧𝐤 𝐨𝐫 𝐞𝐦𝐛𝐞𝐝 𝐚 𝐬𝐢𝐧𝐠𝐥𝐞 𝐩𝐚𝐠𝐞 𝐨𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭. 𝐔𝐬𝐞𝐟𝐮𝐥 𝐟𝐨𝐫 𝐡𝐢𝐠𝐡𝐥𝐢𝐠𝐡𝐭𝐢𝐧𝐠 𝐚 𝐩𝐚𝐠𝐞 𝐞𝐱𝐜𝐞𝐫𝐩𝐭.","shareNote":"𝐒𝐡𝐚𝐫𝐞 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐜 𝐧𝐨𝐭𝐞","shareNoteHelpHasNote":"𝐋𝐢𝐧𝐤 𝐨𝐫 𝐞𝐦𝐛𝐞𝐝 𝐚 𝐧𝐨𝐭𝐞 𝐰𝐢𝐭𝐡𝐢𝐧 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭. 𝐔𝐬𝐞𝐟𝐮𝐥 𝐟𝐨𝐫 𝐡𝐢𝐠𝐡𝐥𝐢𝐠𝐡𝐭𝐢𝐧𝐠 𝐚 𝐫𝐞𝐠𝐢𝐨𝐧 𝐨𝐟 𝐚 𝐩𝐚𝐠𝐞.","shareNoteHelpNoNote":"𝐎𝐧𝐜𝐞 𝐲𝐨𝐮 𝐚𝐝𝐝 𝐧𝐨𝐭𝐞𝐬 𝐭𝐨 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭, 𝐮𝐬𝐞 𝐭𝐡𝐢𝐬 𝐟𝐞𝐚𝐭𝐮𝐫𝐞 𝐭𝐨 𝐥𝐢𝐧𝐤 𝐨𝐫 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐞𝐦."},"dialogErrorDialog":{"errorOccurred":"𝐀𝐧 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝","unexpectedErrorOccurred":"𝐀𝐧 𝐮𝐧𝐞𝐱𝐩𝐞𝐜𝐭𝐞𝐝 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝","tryAgain":"𝐏𝐥𝐞𝐚𝐬𝐞 𝐭𝐫𝐲 𝐚𝐠𝐚𝐢𝐧 𝐥𝐚𝐭𝐞𝐫.","close":"𝐂𝐥𝐨𝐬𝐞","refresh":"𝐑𝐞𝐟𝐫𝐞𝐬𝐡"},"dialogNoteEmbedDialog":{"embedNote":"𝐄𝐦𝐛𝐞𝐝 𝐚 𝐧𝐨𝐭𝐞 𝐨𝐟 “{title}”","embedDesc":"𝐂𝐨𝐩𝐲 𝐭𝐡𝐞 𝐇𝐓𝐌𝐋 𝐜𝐨𝐝𝐞 𝐭𝐨 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐢𝐬 𝐧𝐨𝐭𝐞 𝐰𝐢𝐭𝐡𝐢𝐧 𝐚𝐧 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐨𝐫 𝐩𝐨𝐬𝐭:"},"dialogPageEmbedDialog":{"embedPage":"𝐄𝐦𝐛𝐞𝐝 𝐚 𝐩𝐚𝐠𝐞 𝐨𝐟 “{title}”","embedDesc":"𝐂𝐨𝐩𝐲 𝐭𝐡𝐞 𝐇𝐓𝐌𝐋 𝐜𝐨𝐝𝐞 𝐭𝐨 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐢𝐬 𝐩𝐚𝐠𝐞 𝐰𝐢𝐭𝐡𝐢𝐧 𝐚𝐧 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐨𝐫 𝐩𝐨𝐬𝐭:","selectPage":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐭𝐡𝐞 𝐩𝐚𝐠𝐞 𝐭𝐨 𝐞𝐦𝐛𝐞𝐝:","page":"𝐏𝐚𝐠𝐞 {n} (𝐜𝐮𝐫𝐫𝐞𝐧𝐭𝐥𝐲 𝐯𝐢𝐬𝐢𝐛𝐥𝐞)","otherPage":"𝐎𝐭𝐡𝐞𝐫 𝐩𝐚𝐠𝐞","enterPageNumber":"𝐄𝐧𝐭𝐞𝐫 𝐭𝐡𝐞 𝐩𝐚𝐠𝐞 𝐧𝐮𝐦𝐛𝐞𝐫 𝐭𝐨 𝐞𝐦𝐛𝐞𝐝:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐚𝐜𝐜𝐞𝐬𝐬 𝐟𝐨𝐫 {name}","selectAccess":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐚𝐧 𝐚𝐜𝐜𝐞𝐬𝐬 𝐥𝐞𝐯𝐞𝐥 𝐛𝐞𝐥𝐨𝐰 𝐟𝐨𝐫 {name} 𝐢𝐧 {title}","adminAccess":"𝐀𝐝𝐦𝐢𝐧 𝐀𝐜𝐜𝐞𝐬𝐬","editAccess":"𝐄𝐝𝐢𝐭 𝐀𝐜𝐜𝐞𝐬𝐬","viewAccess":"𝐕𝐢𝐞𝐰 𝐀𝐜𝐜𝐞𝐬𝐬","adminHelp":"𝐓𝐡𝐢𝐬 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫 𝐜𝐚𝐧 𝐞𝐝𝐢𝐭 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐚𝐧𝐝 𝐢𝐭𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬. 𝐓𝐡𝐞 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫 𝐜𝐚𝐧 𝐢𝐧𝐯𝐢𝐭𝐞 𝐮𝐬𝐞𝐫𝐬, 𝐝𝐞𝐥𝐞𝐭𝐞 𝐮𝐬𝐞𝐫𝐬, 𝐚𝐧𝐝 𝐫𝐞𝐦𝐨𝐯𝐞 𝐭𝐡𝐞 𝐩𝐫𝐨𝐣𝐞𝐜𝐭.","editHelp":"𝐓𝐡𝐢𝐬 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫 𝐜𝐚𝐧 𝐞𝐝𝐢𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐢𝐧 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐛𝐮𝐭 𝐜𝐚𝐧𝐧𝐨𝐭 𝐞𝐝𝐢𝐭 𝐭𝐡𝐞 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐢𝐭𝐬𝐞𝐥𝐟.","viewHelp":"𝐓𝐡𝐢𝐬 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫 𝐜𝐚𝐧 𝐯𝐢𝐞𝐰 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐢𝐧 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐛𝐮𝐭 𝐜𝐚𝐧𝐧𝐨𝐭 𝐞𝐝𝐢𝐭 𝐭𝐡𝐞𝐦 𝐨𝐫 𝐭𝐡𝐞 𝐩𝐫𝐨𝐣𝐞𝐜𝐭.","invalidAccess":"𝐀𝐜𝐜𝐞𝐬𝐬 𝐢𝐬 𝐚𝐥𝐫𝐞𝐚𝐝𝐲 𝐬𝐞𝐭 𝐭𝐨 {access}. 𝐒𝐞𝐥𝐞𝐜𝐭 𝐚 𝐝𝐢𝐟𝐟𝐞𝐫𝐞𝐧𝐭 𝐚𝐜𝐜𝐞𝐬𝐬 𝐥𝐞𝐯𝐞𝐥.","changeAccess":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐚𝐜𝐜𝐞𝐬𝐬"},"dialogOwnerDialog":{"selectUser":"𝐔𝐬𝐞𝐫 𝐦𝐮𝐬𝐭 𝐛𝐞 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝","selectOrg":"𝐎𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐦𝐮𝐬𝐭 𝐛𝐞 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝","changeOwner":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐨𝐰𝐧𝐞𝐫 𝐟𝐨𝐫 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","accessWarning":"𝐖𝐚𝐫𝐧𝐢𝐧𝐠: 𝐘𝐨𝐮 𝐦𝐚𝐲 𝐥𝐨𝐬𝐭 𝐚𝐜𝐜𝐞𝐬𝐬 𝐭𝐨 𝐭𝐡𝐞 𝐬𝐩𝐞𝐜𝐢𝐟𝐢𝐞𝐝 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}} 𝐚𝐬 𝐚 𝐫𝐞𝐬𝐮𝐥𝐭 𝐨𝐟 𝐜𝐡𝐚𝐧𝐠𝐢𝐧𝐠 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐨𝐰𝐧𝐞𝐫","user":"𝐔𝐬𝐞𝐫:","filterUsers":"𝐓𝐲𝐩𝐞 𝐭𝐨 𝐟𝐢𝐥𝐭𝐞𝐫 𝐮𝐬𝐞𝐫𝐬...","filterOrgs":"𝐓𝐲𝐩𝐞 𝐭𝐨 𝐟𝐢𝐥𝐭𝐞𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧𝐬..."},"dialogProjectDialog":{"confirmDelete":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐝𝐞𝐥𝐞𝐭𝐞","deleteProject":"𝐀𝐫𝐞 𝐲𝐨𝐮 𝐬𝐮𝐫𝐞 𝐲𝐨𝐮 𝐰𝐚𝐧𝐭 𝐭𝐨 𝐝𝐞𝐥𝐞𝐭𝐞 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 ({project})❓","editProject":"𝐄𝐝𝐢𝐭 𝐏𝐫𝐨𝐣𝐞𝐜𝐭","createProject":"𝐂𝐫𝐞𝐚𝐭𝐞 𝐍𝐞𝐰 𝐏𝐫𝐨𝐣𝐞𝐜𝐭","title":"𝐓𝐢𝐭𝐥𝐞...","projectDesc":"𝐏𝐫𝐨𝐣𝐞𝐜𝐭 𝐃𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧 (𝐨𝐩𝐭𝐢𝐨𝐧𝐚𝐥)","manageCollabs":"𝐌𝐚𝐧𝐚𝐠𝐞 𝐂𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐨𝐫𝐬","share":"𝐒𝐡𝐚𝐫𝐞 / 𝐄𝐦𝐛𝐞𝐝 𝐏𝐫𝐨𝐣𝐞𝐜𝐭","enterTitle":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐭𝐢𝐭𝐥𝐞","changeTitle":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐭𝐡𝐞 𝐭𝐢𝐭𝐥𝐞 𝐨𝐫 𝐝𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧"},"dialogProjectEmbedDialog":{"share":"𝐒𝐡𝐚𝐫𝐞 “{title}”","embedDesc":"𝐂𝐨𝐩𝐲 𝐭𝐡𝐞 𝐇𝐓𝐌𝐋 𝐜𝐨𝐝𝐞 𝐭𝐨 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐭𝐡𝐢𝐧 𝐚𝐧 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐨𝐫 𝐩𝐨𝐬𝐭:","invalid":"𝐈𝐧𝐯𝐚𝐥𝐢𝐝 𝐩𝐫𝐨𝐣𝐞𝐜𝐭","cannotEmbed":"𝐂𝐚𝐧𝐧𝐨𝐭 𝐞𝐦𝐛𝐞𝐝 𝐭𝐡𝐢𝐬 𝐩𝐫𝐨𝐣𝐞𝐜𝐭, 𝐚𝐬 𝐢𝐭 𝐝𝐨𝐞𝐬 𝐧𝐨𝐭 𝐚𝐩𝐩𝐞𝐚𝐫 𝐭𝐨 𝐞𝐱𝐢𝐬𝐭."},"htmlEditor":{"preview":"𝐏𝐫𝐞𝐯𝐢𝐞𝐰:"},"image":{"error":"𝐀𝐧 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝. 𝐓𝐫𝐲 𝐫𝐞𝐟𝐫𝐞𝐬𝐡𝐢𝐧𝐠 𝐭𝐡𝐞 𝐩𝐚𝐠𝐞"},"omniselect":{"filter":"𝐓𝐲𝐩𝐞 𝐭𝐨 𝐟𝐢𝐥𝐭𝐞𝐫 𝐥𝐚𝐧𝐠𝐮𝐚𝐠𝐞","noResults":"𝐍𝐨 𝐫𝐞𝐬𝐮𝐥𝐭𝐬. 𝐂𝐥𝐢𝐜𝐤 𝐭𝐨 𝐜𝐥𝐞𝐚𝐫 𝐟𝐢𝐥𝐭𝐞𝐫."},"shareOptions":{"errorText":"𝐀𝐧 𝐮𝐧𝐞𝐱𝐩𝐞𝐜𝐭𝐞𝐝 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝. 𝐏𝐥𝐞𝐚𝐬𝐞 𝐭𝐫𝐲 𝐚𝐠𝐚𝐢𝐧 𝐥𝐚𝐭𝐞𝐫.","copyHtml":"𝐂𝐨𝐩𝐲 𝐇𝐓𝐌𝐋 𝐜𝐨𝐝𝐞","addShortcode":"𝐀𝐝𝐝 𝐭𝐡𝐢𝐬 𝐬𝐡𝐨𝐫𝐭𝐜𝐨𝐝𝐞 𝐭𝐨 𝐲𝐨𝐮𝐫 𝐖𝐨𝐫𝐝𝐏𝐫𝐞𝐬𝐬 𝐜𝐨𝐧𝐭𝐞𝐧𝐭 —","pluginRequired":"𝐩𝐥𝐮𝐠𝐢𝐧 𝐫𝐞𝐪𝐮𝐢𝐫𝐞𝐝","copyShortcode":"𝐂𝐨𝐩𝐲 𝐬𝐡𝐨𝐫𝐭𝐜𝐨𝐝𝐞","copyUrl":"𝐂𝐨𝐩𝐲 𝐔𝐑𝐋"},"specialMessage":{"contactUs":"𝐂𝐨𝐧𝐭𝐚𝐜𝐭 𝐮𝐬 𝐰𝐢𝐭𝐡 𝐛𝐮𝐠 𝐫𝐞𝐩𝐨𝐫𝐭𝐬, 𝐪𝐮𝐞𝐬𝐭𝐢𝐨𝐧𝐬, 𝐚𝐧𝐝 𝐬𝐮𝐠𝐠𝐞𝐬𝐭𝐢𝐨𝐧𝐬."},"uploadOptions":{"documentLang":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐥𝐚𝐧𝐠𝐮𝐚𝐠𝐞:","forceOcr":"𝐅𝐨𝐫𝐜𝐞 𝐎𝐂𝐑:"},"actionBar":{"selectDocs":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐬𝐨𝐦𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐭𝐨 𝐫𝐞𝐯𝐞𝐚𝐥 𝐞𝐝𝐢𝐭 𝐚𝐜𝐭𝐢𝐨𝐧𝐬","noPerms":"𝐘𝐨𝐮 𝐝𝐨 𝐧𝐨𝐭 𝐡𝐚𝐯𝐞 𝐩𝐞𝐫𝐦𝐢𝐬𝐬𝐢𝐨𝐧 𝐭𝐨 𝐞𝐝𝐢𝐭 𝐚𝐥𝐥 𝐨𝐟 𝐭𝐡𝐞 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","editMenu":"𝐄𝐝𝐢𝐭","projectsMenu":"𝐏𝐫𝐨𝐣𝐞𝐜𝐭𝐬"},"authSection":{"help":"𝐇𝐞𝐥𝐩","language":"𝐋𝐚𝐧𝐠𝐮𝐚𝐠𝐞","tips":"𝐓𝐢𝐩𝐬 𝐚𝐧𝐝 𝐓𝐫𝐢𝐜𝐤𝐬","searchDocs":"𝐒𝐞𝐚𝐫𝐜𝐡 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐚𝐭𝐢𝐨𝐧","apiDocs":"𝐀𝐏𝐈 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐚𝐭𝐢𝐨𝐧","emailUs":"𝐄𝐦𝐚𝐢𝐥 𝐔𝐬","acctSettings":"𝐀𝐜𝐜𝐨𝐮𝐧𝐭 𝐒𝐞𝐭𝐭𝐢𝐧𝐠𝐬","signOut":"𝐒𝐢𝐠𝐧 𝐨𝐮𝐭","changeOrg":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","personalAcct":"𝐏𝐞𝐫𝐬𝐨𝐧𝐚𝐥 𝐀𝐜𝐜𝐨𝐮𝐧𝐭","signIn":"𝐒𝐢𝐠𝐧 𝐢𝐧"},"documents":{"yourDocuments":"𝐘𝐨𝐮𝐫 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","searchResults":"𝐒𝐞𝐚𝐫𝐜𝐡 𝐑𝐞𝐬𝐮𝐥𝐭𝐬","accessDocuments":"𝐘𝐨𝐮𝐫 {access}𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","nameDocuments":"{name}\'𝐬 {access}𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","allDocuments":"𝐀𝐥𝐥 {access}𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","mustBeVerified":"𝐘𝐨𝐮 𝐦𝐮𝐬𝐭 𝐛𝐞 𝐚 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐣𝐨𝐮𝐫𝐧𝐚𝐥𝐢𝐬𝐭 𝐭𝐨 𝐮𝐩𝐥𝐨𝐚𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","upload":"𝐔𝐩𝐥𝐨𝐚𝐝","dropFile":"𝐃𝐫𝐨𝐩 𝐟𝐢𝐥𝐞 𝐭𝐨 𝐮𝐩𝐥𝐨𝐚𝐝"},"document":{"open":"𝐎𝐩𝐞𝐧","updating":"𝐔𝐩𝐝𝐚𝐭𝐢𝐧𝐠 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭...","processing":"𝐏𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠","processingError":"𝐀𝐧 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝 𝐭𝐫𝐲𝐢𝐧𝐠 𝐭𝐨 𝐩𝐫𝐨𝐜𝐞𝐬𝐬 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","remove":"𝐑𝐞𝐦𝐨𝐯𝐞","improper":"𝐘𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐚𝐬 𝐮𝐩𝐥𝐨𝐚𝐝𝐞𝐝 𝐢𝐦𝐩𝐫𝐨𝐩𝐞𝐫𝐥𝐲","project":"𝐏𝐫𝐨𝐣𝐞𝐜𝐭","totalMatchingPages":"{n} 𝐨𝐟 {m} 𝐩𝐚𝐠𝐞𝐬 𝐦𝐚𝐭𝐜𝐡𝐢𝐧𝐠 𝐭𝐡𝐞 𝐪𝐮𝐞𝐫𝐲","showAll":"𝐒𝐡𝐨𝐰 𝐚𝐥𝐥","matchingPages":"{n} 𝐩𝐚𝐠𝐞𝐬 𝐦𝐚𝐭𝐜𝐡𝐢𝐧𝐠 𝐭𝐡𝐞 𝐪𝐮𝐞𝐫𝐲","pageAbbrev":"𝐩.","pageCount":"{n, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}}","source":"𝐒𝐨𝐮𝐫𝐜𝐞"},"documentThumbnail":{"pages":"𝐩𝐚𝐠𝐞𝐬","loading":"𝐋𝐨𝐚𝐝𝐢𝐧𝐠 𝐩𝐫𝐨𝐠𝐫𝐞𝐬𝐬 𝐢𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐨𝐧..."},"mainContainer":{"error":"𝐄𝐫𝐫𝐨𝐫","errorMsg":"𝐖𝐞 𝐜𝐨𝐮𝐥𝐝 𝐧𝐨𝐭 𝐫𝐞𝐚𝐜𝐡 𝐭𝐡𝐞 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐬𝐞𝐫𝐯𝐞𝐫. 𝐏𝐥𝐞𝐚𝐬𝐞 𝐭𝐫𝐲 𝐫𝐞𝐟𝐫𝐞𝐬𝐡𝐢𝐧𝐠 𝐭𝐡𝐞 𝐩𝐚𝐠𝐞 𝐥𝐚𝐭𝐞𝐫.","refresh":"𝐑𝐞𝐟𝐫𝐞𝐬𝐡"},"editMenu":{"editDocInfo":"𝐄𝐝𝐢𝐭 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐈𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐨𝐧","changeAccess":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐀𝐜𝐜𝐞𝐬𝐬","editDocData":"𝐄𝐝𝐢𝐭 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐃𝐚𝐭𝐚","cancelProcessing":"𝐂𝐚𝐧𝐜𝐞𝐥 𝐏𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠","forceReprocess":"𝐅𝐨𝐫𝐜𝐞 𝐑𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬","entities":"𝐄𝐧𝐭𝐢𝐭𝐢𝐞𝐬 𝐁𝐄𝐓𝐀","changeOwner":"𝐂𝐡𝐚𝐧𝐠𝐞 𝐎𝐰𝐧𝐞𝐫","delete":"𝐃𝐞𝐥𝐞𝐭𝐞","diagnosticInfo":"𝐃𝐢𝐚𝐠𝐧𝐨𝐬𝐭𝐢𝐜 𝐈𝐧𝐟𝐨"},"metaFields":{"defaultFieldInvalidText":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐚𝐥𝐫𝐞𝐚𝐝𝐲 𝐡𝐚𝐬 𝐭𝐡𝐢𝐬 {fieldName}","titleFieldTitle":"𝐓𝐢𝐭𝐥𝐞","titleFieldName":"𝐧𝐚𝐦𝐞","titleFieldNameUppercase":"𝐍𝐚𝐦𝐞","titleFieldHeader":"𝐑𝐞𝐧𝐚𝐦𝐞 {n, plural, one {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","titleFieldDescription":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐧𝐚𝐦𝐞 𝐛𝐞𝐥𝐨𝐰 𝐟𝐨𝐫 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","titleFieldButton":"𝐑𝐞𝐧𝐚𝐦𝐞","titleFieldInvalidSameName":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐚𝐥𝐫𝐞𝐚𝐝𝐲 𝐡𝐚𝐬 𝐭𝐡𝐢𝐬 𝐧𝐚𝐦𝐞","titleFieldInvalidEmptyName":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐯𝐚𝐥𝐢𝐝 𝐧𝐚𝐦𝐞","sourceFieldTitle":"𝐒𝐨𝐮𝐫𝐜𝐞","sourceFieldName":"𝐬𝐨𝐮𝐫𝐜𝐞","sourceFieldNameUppercase":"𝐒𝐨𝐮𝐫𝐜𝐞","sourceFieldHeader":"𝐄𝐝𝐢𝐭 𝐬𝐨𝐮𝐫𝐜𝐞 𝐟𝐨𝐫 {n, plural, one {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","sourceFieldDescription":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐬𝐨𝐮𝐫𝐜𝐞 𝐛𝐞𝐥𝐨𝐰 𝐟𝐨𝐫 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","sourceFieldButton":"𝐄𝐝𝐢𝐭","descriptionFieldTitle":"𝐃𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧","descriptionFieldName":"𝐝𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧","descriptionFieldNameUppercase":"𝐃𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧","descriptionFieldHeader":"𝐄𝐝𝐢𝐭 𝐝𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧 𝐟𝐨𝐫 {n, plural, one {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","descriptionFieldDescription":"𝐄𝐧𝐭𝐞𝐫 𝐭𝐡𝐞 𝐝𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧 𝐛𝐞𝐥𝐨𝐰 𝐟𝐨𝐫 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","descriptionFieldButton":"𝐄𝐝𝐢𝐭","relatedArticleFieldTitle":"𝐑𝐞𝐥𝐚𝐭𝐞𝐝 𝐀𝐫𝐭𝐢𝐜𝐥𝐞 𝐔𝐑𝐋","relatedArticleFieldName":"𝐫𝐞𝐥𝐚𝐭𝐞𝐝 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐔𝐑𝐋","relatedArticleFieldNameUppercase":"𝐑𝐞𝐥𝐚𝐭𝐞𝐝 𝐀𝐫𝐭𝐢𝐜𝐥𝐞 𝐔𝐑𝐋","relatedArticleFieldHeader":"𝐄𝐝𝐢𝐭 𝐭𝐡𝐞 𝐫𝐞𝐥𝐚𝐭𝐞𝐝 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐔𝐑𝐋 𝐟𝐨𝐫 {n, plural, one {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","relatedArticleFieldDescription":"𝐄𝐧𝐭𝐞𝐫 𝐭𝐡𝐞 𝐫𝐞𝐥𝐚𝐭𝐞𝐝 𝐚𝐫𝐭𝐢𝐜𝐥𝐞 𝐔𝐑𝐋 𝐛𝐞𝐥𝐨𝐰 𝐟𝐨𝐫 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","relatedArticleFieldButton":"𝐄𝐝𝐢𝐭","publishedUrlFieldTitle":"𝐏𝐮𝐛𝐥𝐢𝐬𝐡𝐞𝐝 𝐔𝐑𝐋","publishedUrlFieldName":"𝐩𝐮𝐛𝐥𝐢𝐬𝐡𝐞𝐝 𝐔𝐑𝐋","publishedUrlFieldNameUppercase":"𝐏𝐮𝐛𝐥𝐢𝐬𝐡𝐞𝐝 𝐔𝐑𝐋","publishedUrlFieldHeader":"𝐄𝐝𝐢𝐭 𝐭𝐡𝐞 𝐩𝐮𝐛𝐥𝐢𝐬𝐡𝐞𝐝 𝐔𝐑𝐋 𝐟𝐨𝐫 {n, plural, one {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","publishedUrlFieldDescription":"𝐄𝐧𝐭𝐞𝐫 𝐭𝐡𝐞 𝐩𝐮𝐛𝐥𝐢𝐬𝐡𝐞𝐝 𝐔𝐑𝐋 𝐛𝐞𝐥𝐨𝐰 𝐟𝐨𝐫 𝐭𝐡𝐞 {n, plural, one {𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐬𝐞𝐥𝐞𝐜𝐭𝐞𝐝 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}","publishedUrlFieldButton":"𝐄𝐝𝐢𝐭"},"projectsMenu":{"newProject":"+ 𝐍𝐞𝐰 𝐏𝐫𝐨𝐣𝐞𝐜𝐭","projMembership":"𝐏𝐫𝐨𝐣𝐞𝐜𝐭 𝐌𝐞𝐦𝐛𝐞𝐫𝐬𝐡𝐢𝐩","selectDocs":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐭𝐨 𝐩𝐥𝐚𝐜𝐞 𝐭𝐡𝐞𝐦 𝐢𝐧 𝐩𝐫𝐨𝐣𝐞𝐜𝐭𝐬","createProj":"𝐂𝐫𝐞𝐚𝐭𝐞 𝐚 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐭𝐨 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐞 𝐚𝐧𝐝 𝐬𝐡𝐚𝐫𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬"},"noDocuments":{"noSearchResults":"𝐍𝐨 𝐬𝐞𝐚𝐫𝐜𝐡 𝐫𝐞𝐬𝐮𝐥𝐭𝐬","queryNoResults":"𝐘𝐨𝐮𝐫 𝐬𝐞𝐚𝐫𝐜𝐡 𝐪𝐮𝐞𝐫𝐲 𝐫𝐞𝐭𝐮𝐫𝐧𝐞𝐝 𝐧𝐨 𝐫𝐞𝐬𝐮𝐥𝐭𝐬. 𝐓𝐫𝐲 𝐚𝐠𝐚𝐢𝐧 𝐰𝐢𝐭𝐡 𝐚 𝐛𝐫𝐨𝐚𝐝𝐞𝐫 𝐬𝐞𝐚𝐫𝐜𝐡 𝐪𝐮𝐞𝐫𝐲.","welcome":"𝐖𝐞𝐥𝐜𝐨𝐦𝐞 𝐭𝐨 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝❗","verify1":"𝐍𝐨𝐭𝐞 𝐭𝐡𝐚𝐭 𝐜𝐮𝐫𝐫𝐞𝐧𝐭𝐥𝐲 𝐲𝐨𝐮𝐫 𝐚𝐜𝐜𝐨𝐮𝐧𝐭 𝐢𝐬 𝐧𝐨𝐭 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐭𝐨 𝐮𝐩𝐥𝐨𝐚𝐝. 𝐘𝐨𝐮 𝐜𝐚𝐧 𝐬𝐞𝐚𝐫𝐜𝐡 𝐭𝐡𝐫𝐨𝐮𝐠𝐡 𝐭𝐡𝐞 𝐩𝐮𝐛𝐥𝐢𝐜 𝐫𝐞𝐩𝐨𝐬𝐢𝐭𝐨𝐫𝐲, 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐲𝐨𝐮\'𝐫𝐞 𝐢𝐧𝐭𝐞𝐫𝐞𝐬𝐭𝐞𝐝 𝐢𝐧 𝐢𝐧𝐭𝐨 𝐩𝐫𝐨𝐣𝐞𝐜𝐭𝐬, 𝐥𝐞𝐚𝐯𝐞 𝐩𝐫𝐢𝐯𝐚𝐭𝐞 𝐧𝐨𝐭𝐞𝐬, 𝐚𝐧𝐝 𝐜𝐨𝐥𝐥𝐚𝐛𝐨𝐫𝐚𝐭𝐞 𝐨𝐧 𝐞𝐝𝐢𝐭𝐢𝐧𝐠 𝐚𝐧𝐝 𝐚𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐧𝐠 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐨𝐭𝐡𝐞𝐫 𝐮𝐬𝐞𝐫𝐬 𝐢𝐧𝐯𝐢𝐭𝐞 𝐲𝐨𝐮 𝐭𝐨.","verify2":"𝐈𝐟 𝐲𝐨𝐮’𝐝 𝐥𝐢𝐤𝐞 𝐭𝐨 𝐮𝐩𝐥𝐨𝐚𝐝 𝐨𝐫 𝐩𝐮𝐛𝐥𝐢𝐬𝐡 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐚𝐧𝐝 𝐲𝐨𝐮\'𝐫𝐞 𝐚 𝐰𝐨𝐫𝐤𝐢𝐧𝐠 𝐣𝐨𝐮𝐫𝐧𝐚𝐥𝐢𝐬𝐭 𝐨𝐫 𝐨𝐭𝐡𝐞𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐢𝐧𝐭𝐞𝐫𝐞𝐬𝐭𝐞𝐝 𝐢𝐧 𝐩𝐮𝐛𝐥𝐢𝐬𝐡𝐢𝐧𝐠 𝐩𝐫𝐢𝐦𝐚𝐫𝐲 𝐬𝐨𝐮𝐫𝐜𝐞 𝐦𝐚𝐭𝐞𝐫𝐢𝐚𝐥𝐬 𝐢𝐧 𝐭𝐡𝐞 𝐩𝐮𝐛𝐥𝐢𝐜 𝐢𝐧𝐭𝐞𝐫𝐞𝐬𝐭, 𝐲𝐨𝐮\'𝐥𝐥 𝐧𝐞𝐞𝐝 𝐭𝐨 𝐡𝐚𝐯𝐞 𝐲𝐨𝐮𝐫 𝐚𝐜𝐜𝐨𝐮𝐧𝐭 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐨𝐫 𝐚𝐝𝐝𝐞𝐝 𝐭𝐨 𝐚 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧. 𝐓𝐡𝐢𝐬 𝐢𝐬 𝐚 𝐬𝐢𝐦𝐩𝐥𝐞 𝐩𝐫𝐨𝐜𝐞𝐬𝐬:","verify3":"𝐅𝐢𝐫𝐬𝐭, 𝐬𝐞𝐞 𝐢𝐟 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐚𝐥𝐫𝐞𝐚𝐝𝐲 𝐞𝐱𝐢𝐬𝐭𝐬 𝐚𝐧𝐝, 𝐢𝐟 𝐲𝐨𝐮 𝐟𝐢𝐧𝐝 𝐢𝐭, 𝐜𝐥𝐢𝐜𝐤 \\"𝐑𝐞𝐪𝐮𝐞𝐬𝐭 𝐭𝐨 𝐉𝐨𝐢𝐧\\" 𝐨𝐧 𝐢𝐭𝐬 𝐩𝐚𝐠𝐞.","verify4":"𝐈𝐟 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧 𝐡𝐚𝐬 𝐧𝐨𝐭 𝐛𝐞𝐞𝐧 𝐯𝐞𝐫𝐢𝐟𝐢𝐞𝐝 𝐲𝐞𝐭, 𝐨𝐫 𝐢𝐟 𝐲𝐨𝐮\'𝐫𝐞 𝐚 𝐟𝐫𝐞𝐞𝐥𝐚𝐧𝐜𝐞𝐫, 𝐫𝐞𝐪𝐮𝐞𝐬𝐭 𝐯𝐞𝐫𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧 𝐡𝐞𝐫𝐞. 𝐑𝐞𝐪𝐮𝐞𝐬𝐭𝐬 𝐮𝐬𝐮𝐚𝐥𝐥𝐲 𝐭𝐚𝐤𝐞 𝐭𝐰𝐨 𝐛𝐮𝐬𝐢𝐧𝐞𝐬𝐬 𝐝𝐚𝐲𝐬 𝐭𝐨 𝐩𝐫𝐨𝐜𝐞𝐬𝐬.","uploadFirst":"𝐔𝐩𝐥𝐨𝐚𝐝 𝐲𝐨𝐮𝐫 𝐟𝐢𝐫𝐬𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","upload1":"𝐔𝐩𝐥𝐨𝐚𝐝 𝐚 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐟𝐢𝐥𝐞 𝐭𝐨 𝐠𝐞𝐭 𝐬𝐭𝐚𝐫𝐭𝐞𝐝 𝐮𝐬𝐢𝐧𝐠 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝. 𝐘𝐨𝐮 𝐜𝐚𝐧 𝐝𝐫𝐚𝐠 𝐭𝐡𝐞 𝐟𝐢𝐥𝐞 𝐢𝐧𝐭𝐨 𝐭𝐡𝐢𝐬 𝐰𝐢𝐧𝐝𝐨𝐰, 𝐨𝐫 𝐜𝐥𝐢𝐜𝐤 𝐨𝐧 𝐭𝐡𝐞 𝐛𝐥𝐮𝐞 “𝐔𝐩𝐥𝐨𝐚𝐝” 𝐛𝐮𝐭𝐭𝐨𝐧 𝐚𝐛𝐨𝐯𝐞.","upload2":"𝐎𝐧𝐜𝐞 𝐲𝐨𝐮 𝐮𝐩𝐥𝐨𝐚𝐝 𝐚 𝐟𝐢𝐥𝐞, 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐰𝐢𝐥𝐥 𝐩𝐫𝐨𝐜𝐞𝐬𝐬 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐚𝐧𝐝 𝐞𝐱𝐭𝐫𝐚𝐜𝐭 𝐢𝐭𝐬 𝐜𝐨𝐧𝐭𝐞𝐧𝐭𝐬. 𝐈𝐭 𝐦𝐚𝐲 𝐭𝐚𝐤𝐞 𝐚 𝐟𝐞𝐰 𝐦𝐢𝐧𝐮𝐭𝐞𝐬 𝐟𝐨𝐫 𝐭𝐡𝐢𝐬 𝐭𝐨 𝐜𝐨𝐦𝐩𝐥𝐞𝐭𝐞, 𝐛𝐮𝐭 𝐨𝐧𝐜𝐞 𝐢𝐭’𝐬 𝐝𝐨𝐧𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐨𝐩𝐭𝐢𝐦𝐢𝐳𝐞𝐝 𝐟𝐨𝐫 𝐚𝐧𝐚𝐥𝐲𝐬𝐢𝐬 𝐚𝐧𝐝 𝐬𝐡𝐚𝐫𝐢𝐧𝐠 𝐨𝐧 𝐭𝐡𝐞 𝐰𝐞𝐛."},"paginator":{"of":"𝐨𝐟","document":"{n, plural, one {𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}"},"processingBar":{"doneProcessing":"𝐃𝐨𝐧𝐞 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠","processingDocuments":"𝐏𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠 {n, plural, one {𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭} other {# 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬}}"},"searchBar":{"tips":"𝐒𝐞𝐚𝐫𝐜𝐡 𝐭𝐢𝐩𝐬: 𝐚𝐝𝐝 𝐟𝐢𝐥𝐭𝐞𝐫𝐬 𝐛𝐲 𝐭𝐲𝐩𝐢𝐧𝐠 𝐮𝐬𝐞𝐫:, 𝐩𝐫𝐨𝐣𝐞𝐜𝐭:, 𝐨𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧:, 𝐞𝐭𝐜. 𝐔𝐬𝐞 𝐬𝐨𝐫𝐭: 𝐭𝐨 𝐨𝐫𝐝𝐞𝐫 𝐫𝐞𝐬𝐮𝐥𝐭𝐬.","learnMore":"𝐋𝐞𝐚𝐫𝐧 𝐦𝐨𝐫𝐞","search":"𝐒𝐞𝐚𝐫𝐜𝐡"},"searchLink":{"search":"𝐒𝐞𝐚𝐫𝐜𝐡 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐜𝐨𝐥𝐥𝐞𝐜𝐭𝐢𝐨𝐧"},"projects":{"header":"𝐏𝐫𝐨𝐣𝐞𝐜𝐭𝐬","allDocuments":"𝐀𝐥𝐥 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","yourDocuments":"𝐘𝐨𝐮𝐫 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","yourPubDocuments":"𝐘𝐨𝐮𝐫 𝐏𝐮𝐛𝐥𝐢𝐜 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","orgDocuments":"{name}’𝐬 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬","newProject":"+ 𝐍𝐞𝐰 𝐏𝐫𝐨𝐣𝐞𝐜𝐭","createProject":"𝐂𝐫𝐞𝐚𝐭𝐞 𝐲𝐨𝐮𝐫 𝐟𝐢𝐫𝐬𝐭 𝐩𝐫𝐨𝐣𝐞𝐜𝐭 𝐛𝐲 𝐜𝐥𝐢𝐜𝐤𝐢𝐧𝐠 “𝐍𝐞𝐰 𝐏𝐫𝐨𝐣𝐞𝐜𝐭” 𝐚𝐛𝐨𝐯𝐞."},"uploadDialog":{"docUpload":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐔𝐩𝐥𝐨𝐚𝐝","docUploadProj":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐔𝐩𝐥𝐨𝐚𝐝 𝐭𝐨 {title}","beginUpload":"𝐁𝐞𝐠𝐢𝐧 𝐮𝐩𝐥𝐨𝐚𝐝","pdfSizeWarning":"𝐘𝐨𝐮 𝐜𝐚𝐧 𝐨𝐧𝐥𝐲 𝐮𝐩𝐥𝐨𝐚𝐝 𝐏𝐃𝐅 𝐟𝐢𝐥𝐞𝐬 𝐮𝐧𝐝𝐞𝐫 {size}.","nonPdfSizeWarning":"𝐘𝐨𝐮 𝐜𝐚𝐧 𝐨𝐧𝐥𝐲 𝐮𝐩𝐥𝐨𝐚𝐝 𝐧𝐨𝐧-𝐏𝐃𝐅 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐟𝐢𝐥𝐞𝐬 𝐮𝐧𝐝𝐞𝐫 {size}.","fileReady":"{n, plural, one {𝐟𝐢𝐥𝐞} other {𝐟𝐢𝐥𝐞𝐬}} 𝐫𝐞𝐚𝐝𝐲 𝐭𝐨 𝐮𝐩𝐥𝐨𝐚𝐝","fileLimitWarning":"𝐘𝐨𝐮 𝐜𝐚𝐧 𝐨𝐧𝐥𝐲 𝐮𝐩𝐥𝐨𝐚𝐝 {limit} 𝐟𝐢𝐥𝐞𝐬 𝐚𝐭 𝐨𝐧𝐜𝐞.","moreOptions":"𝐌𝐨𝐫𝐞 𝐨𝐩𝐭𝐢𝐨𝐧𝐬","selectFiles":"+ 𝐒𝐞𝐥𝐞𝐜𝐭 𝐟𝐢𝐥𝐞𝐬","dragDrop":"𝐃𝐫𝐚𝐠 𝐚𝐧𝐝 𝐝𝐫𝐨𝐩 𝐟𝐢𝐥𝐞𝐬 𝐡𝐞𝐫𝐞","publicMsg":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐩𝐮𝐛𝐥𝐢𝐜𝐥𝐲 𝐯𝐢𝐬𝐢𝐛𝐥𝐞.","collabMsg":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐲𝐨𝐮𝐫 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧.","privateMsg":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐲𝐨𝐮 𝐚𝐥𝐨𝐧𝐞.","collabName":"𝐎𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","submitting":"𝐀𝐥𝐦𝐨𝐬𝐭 𝐝𝐨𝐧𝐞... 𝐬𝐮𝐛𝐦𝐢𝐭𝐭𝐢𝐧𝐠 𝐮𝐩𝐥𝐨𝐚𝐝𝐞𝐝 𝐟𝐢𝐥𝐞𝐬 𝐟𝐨𝐫 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠 ({percent})","uploading":"𝐔𝐩𝐥𝐨𝐚𝐝𝐢𝐧𝐠 ... ({uploaded}/{length})","gettingInfo":"𝐆𝐞𝐭𝐭𝐢𝐧𝐠 𝐮𝐩𝐥𝐨𝐚𝐝 𝐢𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐨𝐧 ({percent})","pleaseLeaveOpen":"𝐏𝐥𝐞𝐚𝐬𝐞 𝐥𝐞𝐚𝐯𝐞 𝐭𝐡𝐢𝐬 𝐩𝐚𝐠𝐞 𝐨𝐩𝐞𝐧 𝐰𝐡𝐢𝐥𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬 𝐮𝐩𝐥𝐨𝐚𝐝. 𝐓𝐡𝐢𝐬 𝐝𝐢𝐚𝐥𝐨𝐠 𝐰𝐢𝐥𝐥 𝐚𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐜𝐚𝐥𝐥𝐲 𝐜𝐥𝐨𝐬𝐞 𝐰𝐡𝐞𝐧 𝐭𝐡𝐞𝐲 𝐡𝐚𝐯𝐞 𝐟𝐢𝐧𝐢𝐬𝐡𝐞𝐝 𝐮𝐩𝐥𝐨𝐚𝐝𝐢𝐧𝐠.","errorHeading":"𝐄𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝 𝐰𝐡𝐢𝐥𝐞 𝐮𝐩𝐥𝐨𝐚𝐝𝐢𝐧𝐠","errorMsg":"𝐖𝐞 𝐟𝐚𝐢𝐥𝐞𝐝 𝐭𝐨 {errorMessage}. 𝐏𝐥𝐞𝐚𝐬𝐞 𝐭𝐫𝐲 𝐚𝐠𝐚𝐢𝐧 𝐥𝐚𝐭𝐞𝐫.","editDocInfo":"𝐄𝐝𝐢𝐭 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐨𝐧:","untitled":"𝐔𝐧𝐭𝐢𝐭𝐥𝐞𝐝","uploadFiles":"𝐔𝐩𝐥𝐨𝐚𝐝 𝐚𝐝𝐝𝐢𝐭𝐢𝐨𝐧𝐚𝐥 𝐟𝐢𝐥𝐞𝐬","selectMore":"+ 𝐒𝐞𝐥𝐞𝐜𝐭 𝐦𝐨𝐫𝐞 𝐟𝐢𝐥𝐞𝐬","dragDropMore":"𝐃𝐫𝐚𝐠 𝐚𝐧𝐝 𝐝𝐫𝐨𝐩 𝐚𝐝𝐝𝐢𝐭𝐢𝐨𝐧𝐚𝐥 𝐟𝐢𝐥𝐞𝐬 𝐡𝐞𝐫𝐞"},"embedNote":{"viewTheNote":"𝐕𝐢𝐞𝐰 𝐭𝐡𝐞 𝐧𝐨𝐭𝐞 ‘{title}‘ 𝐢𝐧 𝐢𝐭𝐬 𝐨𝐫𝐢𝐠𝐢𝐧𝐚𝐥 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐜𝐨𝐧𝐭𝐞𝐱𝐭 𝐨𝐧 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐢𝐧 𝐚 𝐧𝐞𝐰 𝐰𝐢𝐧𝐝𝐨𝐰 𝐨𝐫 𝐭𝐚𝐛","viewDoc":"𝐕𝐢𝐞𝐰 𝐭𝐡𝐞 𝐞𝐧𝐭𝐢𝐫𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐭𝐡 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝"},"embedPage":{"viewDoc":"𝐕𝐢𝐞𝐰 𝐞𝐧𝐭𝐢𝐫𝐞 {title} 𝐨𝐧 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐢𝐧 𝐧𝐞𝐰 𝐰𝐢𝐧𝐝𝐨𝐰 𝐨𝐫 𝐭𝐚𝐛","pageOf":"𝐏𝐚𝐠𝐞 {page} 𝐨𝐟 {title}","gotoDocCloud":"𝐆𝐨 𝐭𝐨 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐢𝐧 𝐧𝐞𝐰 𝐰𝐢𝐧𝐝𝐨𝐰 𝐨𝐫 𝐭𝐚𝐛"},"entities":{"back":"𝐁𝐚𝐜𝐤","page":"𝐏𝐚𝐠𝐞","of":"𝐨𝐟","totalEntityResult":"{n, plural, one {# 𝐭𝐨𝐭𝐚𝐥 𝐞𝐧𝐭𝐢𝐭𝐲 𝐫𝐞𝐬𝐮𝐥𝐭} other {# 𝐭𝐨𝐭𝐚𝐥 𝐞𝐧𝐭𝐢𝐭𝐲 𝐫𝐞𝐬𝐮𝐥𝐭𝐬}} ","filter":"𝐅𝐢𝐥𝐭𝐞𝐫","applyFilters":"𝐀𝐩𝐩𝐥𝐲 𝐟𝐢𝐥𝐭𝐞𝐫𝐬","kind":"𝐊𝐢𝐧𝐝","clear":"𝐂𝐥𝐞𝐚𝐫","person":"𝐏𝐞𝐫𝐬𝐨𝐧","org":"𝐎𝐫𝐠𝐚𝐧𝐢𝐳𝐚𝐭𝐢𝐨𝐧","location":"𝐋𝐨𝐜𝐚𝐭𝐢𝐨𝐧","event":"𝐄𝐯𝐞𝐧𝐭","workOfArt":"𝐖𝐨𝐫𝐤 𝐨𝐟 𝐀𝐫𝐭","consumerGood":"𝐂𝐨𝐧𝐬𝐮𝐦𝐞𝐫 𝐆𝐨𝐨𝐝","address":"𝐀𝐝𝐝𝐫𝐞𝐬𝐬","date":"𝐃𝐚𝐭𝐞","number":"𝐍𝐮𝐦𝐛𝐞𝐫","phoneNumber":"𝐏𝐡𝐨𝐧𝐞 𝐍𝐮𝐦𝐛𝐞𝐫","price":"𝐏𝐫𝐢𝐜𝐞","unknown":"𝐔𝐧𝐤𝐧𝐨𝐰𝐧","other":"𝐎𝐭𝐡𝐞𝐫","occurrences":"𝐎𝐜𝐜𝐮𝐫𝐫𝐞𝐧𝐜𝐞𝐬","proper":"𝐏𝐫𝐨𝐩𝐞𝐫","common":"𝐂𝐨𝐦𝐦𝐨𝐧","advanced":"𝐀𝐝𝐯𝐚𝐧𝐜𝐞𝐝","relevanceThreshold":"𝐑𝐞𝐥𝐞𝐯𝐚𝐧𝐜𝐞 𝐭𝐡𝐫𝐞𝐬𝐡𝐨𝐥𝐝:","knowledgeGraph":"𝐊𝐧𝐨𝐰𝐥𝐞𝐝𝐠𝐞 𝐠𝐫𝐚𝐩𝐡:","hasKG":"𝐇𝐚𝐬 𝐚 𝐤𝐧𝐨𝐰𝐥𝐞𝐝𝐠𝐞 𝐠𝐫𝐚𝐩𝐡 𝐈𝐃","noKG":"𝐃𝐨𝐞𝐬 𝐧𝐨𝐭 𝐡𝐚𝐯𝐞 𝐚 𝐤𝐧𝐨𝐰𝐥𝐞𝐝𝐠𝐞 𝐠𝐫𝐚𝐩𝐡 𝐈𝐃","wikiUrl":"𝐖𝐢𝐤𝐢𝐩𝐞𝐝𝐢𝐚 𝐔𝐑𝐋:","hasWiki":"𝐇𝐚𝐬 𝐚 𝐖𝐢𝐤𝐢𝐩𝐞𝐝𝐢𝐚 𝐔𝐑𝐋","noWiki":"𝐃𝐨𝐞𝐬 𝐧𝐨𝐭 𝐡𝐚𝐯𝐞 𝐚 𝐖𝐢𝐤𝐢𝐩𝐞𝐝𝐢𝐚 𝐔𝐑𝐋","occurrence":"{n, plural, zero {} one {# 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐧𝐜𝐞} other {# 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐧𝐜𝐞𝐬}}","wikipedia":"𝐖𝐢𝐤𝐢𝐩𝐞𝐝𝐢𝐚","entityExtraction":"𝐄𝐧𝐭𝐢𝐭𝐲 𝐞𝐱𝐭𝐫𝐚𝐜𝐭𝐢𝐨𝐧 𝐟𝐨𝐫 “{title}”","extractingEntities":"𝐄𝐱𝐭𝐫𝐚𝐜𝐭𝐢𝐧𝐠 𝐞𝐧𝐭𝐢𝐭𝐢𝐞𝐬...","welcome":"𝐖𝐞𝐥𝐜𝐨𝐦𝐞 𝐭𝐨 𝐞𝐧𝐭𝐢𝐭𝐲 𝐞𝐱𝐭𝐫𝐚𝐜𝐭𝐢𝐨𝐧❗ 𝐓𝐡𝐢𝐬 𝐟𝐞𝐚𝐭𝐮𝐫𝐞 𝐢𝐬 𝐯𝐞𝐫𝐲 𝐦𝐮𝐜𝐡 𝐢𝐧 𝐩𝐫𝐨𝐠𝐫𝐞𝐬𝐬 𝐛𝐮𝐭 𝐰𝐞 𝐰𝐚𝐧𝐭 𝐢𝐭 𝐢𝐧 𝐲𝐨𝐮𝐫 𝐡𝐚𝐧𝐝𝐬 𝐞𝐚𝐫𝐥𝐲 𝐭𝐨 𝐰𝐞𝐥𝐜𝐨𝐦𝐞 𝐚𝐧𝐲 𝐟𝐞𝐞𝐝𝐛𝐚𝐜𝐤 𝐲𝐨𝐮 𝐦𝐢𝐠𝐡𝐭 𝐡𝐚𝐯𝐞.","manual":"𝐑𝐢𝐠𝐡𝐭 𝐧𝐨𝐰 𝐭𝐡𝐞 𝐩𝐫𝐨𝐜𝐞𝐬𝐬 𝐟𝐨𝐫 𝐞𝐱𝐭𝐫𝐚𝐜𝐭𝐢𝐧𝐠 𝐞𝐧𝐭𝐢𝐭𝐢𝐞𝐬 𝐢𝐬 𝐦𝐚𝐧𝐮𝐚𝐥. 𝐓𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐡𝐚𝐬 𝐧𝐨𝐭 𝐡𝐚𝐝 𝐞𝐧𝐭𝐢𝐭𝐢𝐞𝐬 𝐞𝐱𝐭𝐫𝐚𝐜𝐭𝐞𝐝 𝐲𝐞𝐭, 𝐬𝐨 𝐜𝐥𝐢𝐜𝐤 𝐛𝐞𝐥𝐨𝐰 𝐭𝐨 𝐠𝐞𝐭 𝐬𝐭𝐚𝐫𝐭𝐞𝐝.","error":"𝐀𝐧 𝐮𝐧𝐞𝐱𝐩𝐞𝐜𝐭𝐞𝐝 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝","extract":"𝐄𝐱𝐭𝐫𝐚𝐜𝐭 𝐞𝐧𝐭𝐢𝐭𝐢𝐞𝐬","noEntities":"𝐓𝐡𝐞𝐫𝐞 𝐚𝐫𝐞 𝐧𝐨 𝐞𝐧𝐭𝐢𝐭𝐢𝐞𝐬. 𝐓𝐡𝐢𝐬 𝐜𝐨𝐮𝐥𝐝 𝐡𝐚𝐩𝐩𝐞𝐧 𝐢𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐝𝐨𝐞𝐬𝐧’𝐭 𝐡𝐚𝐯𝐞 𝐭𝐞𝐱𝐭, 𝐢𝐬 𝐧𝐨𝐧-𝐄𝐧𝐠𝐥𝐢𝐬𝐡 (𝐨𝐧𝐥𝐲 𝐄𝐧𝐠𝐥𝐢𝐬𝐡 𝐢𝐬 𝐬𝐮𝐩𝐩𝐨𝐫𝐭𝐞𝐝 𝐟𝐨𝐫 𝐧𝐨𝐰), 𝐨𝐫 𝐬𝐨𝐦𝐞 𝐞𝐫𝐫𝐨𝐫 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐝.","starting":"𝐒𝐭𝐚𝐫𝐭𝐢𝐧𝐠 𝐞𝐱𝐭𝐚𝐜𝐭𝐢𝐨𝐧..."},"home":{"about":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐂𝐥𝐨𝐮𝐝 𝐢𝐬 𝐚𝐧 𝐚𝐥𝐥-𝐢𝐧-𝐨𝐧𝐞 𝐩𝐥𝐚𝐭𝐟𝐨𝐫𝐦 𝐟𝐨𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬: 𝐮𝐩𝐥𝐨𝐚𝐝, 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐞, 𝐚𝐧𝐚𝐥𝐲𝐳𝐞, 𝐚𝐧𝐧𝐨𝐭𝐚𝐭𝐞, 𝐬𝐞𝐚𝐫𝐜𝐡, 𝐚𝐧𝐝 𝐞𝐦𝐛𝐞𝐝.","viewPublicDocs":"𝐕𝐢𝐞𝐰 𝐩𝐮𝐛𝐥𝐢𝐜 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭𝐬"},"annotation":{"title":"𝐀𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐨𝐧 𝐓𝐢𝐭𝐥𝐞","description":"𝐀𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐨𝐧 𝐃𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧 (𝐨𝐩𝐭𝐢𝐨𝐧𝐚𝐥)","unchanged":"𝐍𝐨𝐭𝐞 𝐫𝐞𝐦𝐚𝐢𝐧𝐬 𝐮𝐧𝐜𝐡𝐚𝐧𝐠𝐞𝐝","noTitle":"𝐄𝐧𝐭𝐞𝐫 𝐚 𝐭𝐢𝐭𝐥𝐞 𝐟𝐨𝐫 𝐭𝐡𝐞 𝐚𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐨𝐧","org":"𝐓𝐡𝐢𝐬 𝐧𝐨𝐭𝐞 𝐢𝐬 𝐨𝐧𝐥𝐲 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐲𝐨𝐮 𝐚𝐧𝐝 𝐨𝐭𝐡𝐞𝐫𝐬 𝐰𝐢𝐭𝐡 𝐞𝐝𝐢𝐭 𝐚𝐜𝐜𝐞𝐬𝐬 𝐭𝐨 𝐭𝐡𝐢𝐬 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","private":"𝐓𝐡𝐢𝐬 𝐩𝐫𝐢𝐯𝐚𝐭𝐞 𝐧𝐨𝐭𝐞 𝐢𝐬 𝐨𝐧𝐥𝐲 𝐯𝐢𝐬𝐢𝐛𝐥𝐞 𝐭𝐨 𝐲𝐨𝐮","by":"𝐀𝐧𝐧𝐨𝐭𝐚𝐭𝐞𝐝 𝐛𝐲 {name}","byOrg":"𝐀𝐧𝐧𝐨𝐭𝐚𝐭𝐞𝐝 𝐛𝐲 {name}, {org}","addPageNote":"𝐀𝐝𝐝 𝐩𝐚𝐠𝐞 𝐧𝐨𝐭𝐞"},"viewDropdown":{"document":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭","plainText":"𝐏𝐥𝐚𝐢𝐧 𝐓𝐞𝐱𝐭","thumbnail":"𝐓𝐡𝐮𝐦𝐛𝐧𝐚𝐢𝐥","notes":"𝐍𝐨𝐭𝐞𝐬","search":"𝐒𝐞𝐚𝐫𝐜𝐡 𝐑𝐞𝐬𝐮𝐥𝐭𝐬"},"zoom":{"fitWidth":"𝐅𝐢𝐭 𝐰𝐢𝐝𝐭𝐡","fitHeight":"𝐅𝐢𝐭 𝐡𝐞𝐢𝐠𝐡𝐭"},"titleHeader":{"contributedBy":"𝐂𝐨𝐧𝐭𝐫𝐢𝐛𝐮𝐭𝐞𝐝 𝐛𝐲 {name}"},"annotatePane":{"annotateDocument":"𝐀𝐧𝐧𝐨𝐭𝐚𝐭𝐞 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭","desc":"𝐇𝐢𝐠𝐡𝐥𝐢𝐠𝐡𝐭 𝐚 𝐩𝐨𝐫𝐭𝐢𝐨𝐧 𝐨𝐟 𝐭𝐡𝐞 𝐩𝐚𝐠𝐞, 𝐨𝐫 𝐜𝐥𝐢𝐜𝐤 𝐛𝐞𝐭𝐰𝐞𝐞𝐧 𝐩𝐚𝐠𝐞𝐬 𝐭𝐨 𝐜𝐫𝐞𝐚𝐭𝐞 𝐚 𝐧𝐨𝐭𝐞."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝐏𝐚𝐠𝐞} other {# 𝐏𝐚𝐠𝐞𝐬}} 𝐒𝐞𝐥𝐞𝐜𝐭𝐞𝐝","applyModifications":"𝐀𝐩𝐩𝐥𝐲 𝐌𝐨𝐝𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬","duplicate":"𝐃𝐮𝐩𝐥𝐢𝐜𝐚𝐭𝐞","move":"𝐌𝐨𝐯𝐞","unselect":"𝐔𝐧𝐬𝐞𝐥𝐞𝐜𝐭","remove":"𝐑𝐞𝐦𝐨𝐯𝐞","insertPages":"𝐈𝐧𝐬𝐞𝐫𝐭 {n, plural, one {# 𝐏𝐚𝐠𝐞} other {# 𝐏𝐚𝐠𝐞𝐬}}","pagesPending":"{n, plural, one {# 𝐏𝐚𝐠𝐞} other {# 𝐏𝐚𝐠𝐞𝐬}} 𝐏𝐞𝐧𝐝𝐢𝐧𝐠 𝐈𝐧𝐬𝐞𝐫𝐭𝐢𝐨𝐧","insertBegin":"𝐈𝐧𝐬𝐞𝐫𝐭 {n, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}} 𝐚𝐭 𝐛𝐞𝐠𝐢𝐧𝐧𝐢𝐧𝐠.","insertEnd":"𝐈𝐧𝐬𝐞𝐫𝐭 {n, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}} 𝐚𝐭 𝐞𝐧𝐝.","insertBetween":"𝐈𝐧𝐬𝐞𝐫𝐭 {n, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}} 𝐢𝐧 𝐛𝐞𝐭𝐰𝐞𝐞𝐧 𝐩𝐚𝐠𝐞 {p0} 𝐚𝐧𝐝 {p1}.","click":"𝐂𝐥𝐢𝐜𝐤 𝐢𝐧-𝐛𝐞𝐭𝐰𝐞𝐞𝐧 𝐩𝐚𝐠𝐞𝐬 𝐛𝐞𝐥𝐨𝐰 𝐭𝐨 𝐦𝐚𝐫𝐤 𝐰𝐡𝐞𝐫𝐞 𝐭𝐨 𝐩𝐚𝐬𝐭𝐞 {n, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}}.","insert":"𝐈𝐧𝐬𝐞𝐫𝐭","insertAtEnd":"𝐈𝐧𝐬𝐞𝐫𝐭 𝐚𝐭 𝐞𝐧𝐝","insertPosition":"𝐈𝐧𝐬𝐞𝐫𝐭 𝐩𝐚𝐠𝐞𝐬 𝐚𝐭 𝐩𝐨𝐬𝐢𝐭𝐢𝐨𝐧","insertOtherDoc":"𝐈𝐧𝐬𝐞𝐫𝐭 𝐟𝐫𝐨𝐦 𝐨𝐭𝐡𝐞𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭","modifyPages":"𝐌𝐨𝐝𝐢𝐟𝐲 𝐏𝐚𝐠𝐞𝐬","select":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐩𝐚𝐠𝐞𝐬 𝐛𝐞𝐥𝐨𝐰 𝐭𝐨 𝐚𝐩𝐩𝐥𝐲 𝐦𝐨𝐝𝐢𝐟𝐢𝐜𝐚𝐭𝐢𝐨𝐧𝐬 (𝐩𝐚𝐠𝐞 𝐫𝐨𝐭𝐚𝐭𝐢𝐨𝐧, 𝐫𝐞𝐚𝐫𝐫𝐚𝐧𝐠𝐢𝐧𝐠, 𝐚𝐧𝐝 𝐝𝐞𝐥𝐞𝐭𝐢𝐨𝐧). 𝐂𝐥𝐢𝐜𝐤 𝐢𝐧-𝐛𝐞𝐭𝐰𝐞𝐞𝐧 𝐩𝐚𝐠𝐞𝐬 𝐭𝐨 𝐢𝐧𝐬𝐞𝐫𝐭.","undo":"𝐔𝐧𝐝𝐨","redo":"𝐑𝐞𝐝𝐨"},"redactPane":{"redactDoc":"𝐑𝐞𝐝𝐚𝐜𝐭 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭","desc":"𝐂𝐥𝐢𝐜𝐤 𝐚𝐧𝐝 𝐝𝐫𝐚𝐠 𝐭𝐨 𝐝𝐫𝐚𝐰 𝐚 𝐛𝐥𝐚𝐜𝐤 𝐫𝐞𝐜𝐭𝐚𝐧𝐠𝐥𝐞 𝐨𝐯𝐞𝐫 𝐞𝐚𝐜𝐡 𝐩𝐨𝐫𝐭𝐢𝐨𝐧 𝐨𝐟 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐲𝐨𝐮’𝐝 𝐥𝐢𝐤𝐞 𝐭𝐨 𝐫𝐞𝐝𝐚𝐜𝐭. 𝐀𝐬𝐬𝐨𝐜𝐢𝐚𝐭𝐞𝐝 𝐭𝐞𝐱𝐭 𝐰𝐢𝐥𝐥 𝐛𝐞 𝐫𝐞𝐦𝐨𝐯𝐞𝐝 𝐰𝐡𝐞𝐧 𝐲𝐨𝐮 𝐬𝐚𝐯𝐞 𝐲𝐨𝐮𝐫 𝐫𝐞𝐝𝐚𝐜𝐭𝐢𝐨𝐧𝐬.","confirm":"𝐂𝐨𝐧𝐟𝐢𝐫𝐦 𝐑𝐞𝐝𝐚𝐜𝐭𝐢𝐨𝐧𝐬","undo":"𝐔𝐧𝐝𝐨"},"searchPane":{"yourQuery":"𝐘𝐨𝐮𝐫 𝐪𝐮𝐞𝐫𝐲 {search} 𝐰𝐚𝐬 𝐟𝐨𝐮𝐧𝐝 𝐨𝐧 {n, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}}"},"selectNotePane":{"selectNote":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐚 𝐧𝐨𝐭𝐞","desc":"𝐒𝐞𝐥𝐞𝐜𝐭 𝐭𝐡𝐞 𝐚𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐨𝐧 𝐭𝐡𝐚𝐭 𝐲𝐨𝐮 𝐰𝐚𝐧𝐭 𝐭𝐨 𝐬𝐡𝐚𝐫𝐞."},"searchResults":{"resultPages":"{results, plural, one {# 𝐫𝐞𝐬𝐮𝐥𝐭} other {# 𝐫𝐞𝐬𝐮𝐥𝐭𝐬}} 𝐚𝐜𝐫𝐨𝐬𝐬 {pages, plural, one {# 𝐩𝐚𝐠𝐞} other {# 𝐩𝐚𝐠𝐞𝐬}}","noSearchResults":"𝐍𝐨 𝐬𝐞𝐚𝐫𝐜𝐡 𝐫𝐞𝐬𝐮𝐥𝐭𝐬. 𝐓𝐫𝐲 𝐚𝐠𝐚𝐢𝐧 𝐰𝐢𝐭𝐡 𝐚 𝐛𝐫𝐨𝐚𝐝𝐞𝐫 𝐪𝐮𝐞𝐫𝐲.","occurrences":"{n, plural, one {# 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐧𝐜𝐞} other {# 𝐨𝐜𝐜𝐮𝐫𝐫𝐞𝐧𝐜𝐞𝐬}}"},"sidebar":{"updating":"𝐔𝐩𝐝𝐚𝐭𝐢𝐧𝐠 𝐝𝐨𝐜𝐮𝐜𝐦𝐞𝐧𝐭...","original":"𝐎𝐫𝐢𝐠𝐢𝐧𝐚𝐥 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 (𝐏𝐃𝐅) »","related":"𝐑𝐞𝐥𝐚𝐭𝐞𝐝 𝐀𝐫𝐭𝐢𝐜𝐥𝐞 »","contributed":"𝐂𝐨𝐧𝐭𝐫𝐢𝐛𝐮𝐭𝐞𝐝 𝐛𝐲 {name}","source":"𝐒𝐨𝐮𝐫𝐜𝐞: {source}","actions":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐀𝐜𝐭𝐢𝐨𝐧𝐬","share":"𝐒𝐡𝐚𝐫𝐞","shareDesc":"𝐂𝐫𝐞𝐚𝐭𝐞 𝐚𝐧 𝐞𝐦𝐛𝐞𝐝 𝐨𝐫 𝐬𝐡𝐚𝐫𝐞 𝐨𝐧 𝐬𝐨𝐜𝐢𝐚𝐥 𝐦𝐞𝐝𝐢𝐚.","annotate":"𝐀𝐧𝐧𝐨𝐭𝐚𝐭𝐞","annotateDesc":"𝐌𝐚𝐤𝐞 𝐚𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐨𝐧𝐬 𝐭𝐨 𝐤𝐞𝐞𝐩 𝐧𝐨𝐭𝐞𝐬 𝐨𝐧 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭.","redact":"𝐑𝐞𝐝𝐚𝐜𝐭","redactDesc":"𝐂𝐫𝐞𝐚𝐭𝐞 𝐫𝐞𝐝𝐚𝐜𝐭𝐢𝐨𝐧𝐬 𝐨𝐧 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐭𝐨 𝐡𝐢𝐝𝐞 𝐭𝐞𝐱𝐭. 𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐥𝐥 𝐫𝐞𝐩𝐫𝐨𝐜𝐞𝐬𝐬 𝐚𝐟𝐭𝐞𝐫𝐰𝐚𝐫𝐝𝐬.","modify":"𝐌𝐨𝐝𝐢𝐟𝐲 𝐏𝐚𝐠𝐞𝐬","modifyDesc":"𝐑𝐞𝐚𝐫𝐫𝐚𝐧𝐠𝐞, 𝐫𝐨𝐭𝐚𝐭𝐞, 𝐝𝐞𝐥𝐞𝐭𝐞, 𝐢𝐧𝐬𝐞𝐫𝐭, 𝐚𝐧𝐝 𝐬𝐩𝐥𝐢𝐭 𝐩𝐚𝐠𝐞𝐬.","info":"𝐄𝐝𝐢𝐭 𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐈𝐧𝐟𝐨","infoDesc":"𝐌𝐨𝐝𝐢𝐟𝐲 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐧𝐟𝐨𝐫𝐦𝐚𝐭𝐢𝐨𝐧 𝐥𝐢𝐤𝐞 𝐝𝐞𝐬𝐜𝐫𝐢𝐩𝐭𝐢𝐨𝐧 𝐚𝐧𝐝 𝐫𝐞𝐥𝐚𝐭𝐞𝐝 𝐔𝐑𝐋.","data":"𝐄𝐝𝐢𝐭 𝐓𝐚𝐠𝐬 𝐚𝐧𝐝 𝐃𝐚𝐭𝐚","dataDesc":"𝐀𝐝𝐝 𝐭𝐚𝐠𝐬 𝐚𝐧𝐝 𝐤𝐞𝐲/𝐯𝐚𝐥𝐮𝐞 𝐩𝐚𝐢𝐫𝐬 𝐭𝐨 𝐜𝐚𝐭𝐞𝐠𝐨𝐫𝐢𝐳𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭.","sections":"𝐄𝐝𝐢𝐭 𝐒𝐞𝐜𝐭𝐢𝐨𝐧𝐬","sectionsDesc":"𝐀𝐝𝐝 𝐬𝐞𝐜𝐭𝐢𝐨𝐧𝐬 𝐭𝐨 𝐨𝐫𝐠𝐚𝐧𝐢𝐳𝐞 𝐲𝐨𝐮𝐫 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐰𝐢𝐭𝐡 𝐚 𝐭𝐚𝐛𝐥𝐞 𝐨𝐟 𝐜𝐨𝐧𝐭𝐞𝐧𝐭𝐬.","privateNote":"𝐀𝐝𝐝 𝐏𝐫𝐢𝐯𝐚𝐭𝐞 𝐍𝐨𝐭𝐞","privateNoteDesc":"𝐌𝐚𝐤𝐞 𝐚𝐧𝐧𝐨𝐭𝐚𝐭𝐢𝐨𝐧𝐬 𝐭𝐨 𝐤𝐞𝐞𝐩 𝐧𝐨𝐭𝐞𝐬 𝐨𝐧 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭."},"viewer":{"notFound":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐧𝐨𝐭 𝐟𝐨𝐮𝐧𝐝","notFoundDesc":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐲𝐨𝐮 𝐫𝐞𝐪𝐮𝐞𝐬𝐭𝐞𝐝 𝐞𝐢𝐭𝐡𝐞𝐫 𝐝𝐨𝐞𝐬 𝐧𝐨𝐭 𝐞𝐱𝐢𝐬𝐭 𝐨𝐫 𝐲𝐨𝐮 𝐥𝐚𝐜𝐤 𝐩𝐞𝐫𝐦𝐢𝐬𝐬𝐢𝐨𝐧 𝐭𝐨 𝐚𝐜𝐜𝐞𝐬𝐬 𝐢𝐭","processing":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐢𝐬 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠","processingDesc":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐲𝐨𝐮 𝐫𝐞𝐪𝐮𝐞𝐬𝐭𝐞𝐝 𝐢𝐬 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠 𝐚𝐧𝐝 𝐰𝐢𝐥𝐥 𝐚𝐮𝐭𝐨𝐦𝐚𝐭𝐢𝐜𝐚𝐥𝐥𝐲 𝐫𝐞𝐟𝐫𝐞𝐬𝐡 𝐰𝐡𝐞𝐧 𝐢𝐭 𝐢𝐬 𝐫𝐞𝐚𝐝𝐲","error":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐡𝐚𝐬 𝐞𝐧𝐜𝐨𝐮𝐧𝐭𝐞𝐫𝐞𝐝 𝐚𝐧 𝐞𝐫𝐫𝐨𝐫","errorDesc":"𝐀 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠 𝐞𝐫𝐫𝐨𝐫 𝐡𝐚𝐬 𝐛𝐞𝐞𝐧 𝐞𝐧𝐜𝐨𝐮𝐧𝐭𝐞𝐫𝐞𝐝 𝐢𝐧 𝐭𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐲𝐨𝐮 𝐫𝐞𝐪𝐮𝐞𝐬𝐭𝐞𝐝","accessible":"𝐃𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐧𝐨𝐭 𝐚𝐜𝐜𝐞𝐬𝐬𝐢𝐛𝐥𝐞","accessibleDesc":"𝐓𝐡𝐞 𝐝𝐨𝐜𝐮𝐦𝐞𝐧𝐭 𝐲𝐨𝐮 𝐫𝐞𝐪𝐮𝐞𝐬𝐭𝐞𝐝 𝐢𝐬 𝐬𝐭𝐢𝐥𝐥 𝐩𝐫𝐨𝐜𝐞𝐬𝐬𝐢𝐧𝐠 𝐨𝐫 𝐲𝐨𝐮 𝐥𝐚𝐜𝐤 𝐩𝐞𝐫𝐦𝐢𝐬𝐬𝐢𝐨𝐧 𝐭𝐨 𝐚𝐜𝐜𝐞𝐬𝐬 𝐭𝐨 𝐢𝐭"}}')}}]);
-./public/src_langs_json_scriptBold_json.c23b05dcf0027954d6ec.js:11:module.exports = JSON.parse('{"common":{"emailAddress":"𝓔𝓶𝓪𝓲𝓵 𝓪𝓭𝓭𝓻𝓮𝓼𝓼","loading":"𝓛𝓸𝓪𝓭𝓲𝓷𝓰...","documentCloud":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭","home":"𝓗𝓸𝓶𝓮"},"homeTemplate":{"signedIn":"𝓢𝓲𝓰𝓷𝓮𝓭 𝓲𝓷 𝓪𝓼 {name}","signOut":"𝓢𝓲𝓰𝓷 𝓸𝓾𝓽","signIn":"𝓢𝓲𝓰𝓷 𝓲𝓷","signUp":"𝓢𝓲𝓰𝓷 𝓾𝓹","goToApp":"𝓖𝓸 𝓽𝓸 𝓪𝓹𝓹"},"accessToggle":{"public":"𝓝𝓸𝓽𝓮 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝓪𝓷𝔂𝓸𝓷𝓮 𝔀𝓲𝓽𝓱 𝓪𝓬𝓬𝓮𝓼𝓼 𝓽𝓸 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽.","collaborator":"𝓝𝓸𝓽𝓮 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝓪𝓷𝔂𝓸𝓷𝓮 𝔀𝓱𝓸 𝓬𝓪𝓷 𝓮𝓭𝓲𝓽 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽.","private":"𝓝𝓸𝓽𝓮 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝔂𝓸𝓾 𝓪𝓵𝓸𝓷𝓮.","publicName":"𝓟𝓾𝓫𝓵𝓲𝓬","collaboratorName":"𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻","privateName":"𝓟𝓻𝓲𝓿𝓪𝓽𝓮"},"accessIcon":{"private":"𝓟𝓻𝓲𝓿𝓪𝓽𝓮 𝓐𝓬𝓬𝓮𝓼𝓼","organization":"𝓟𝓻𝓲𝓿𝓪𝓽𝓮 𝓽𝓸 𝓨𝓸𝓾𝓻 𝓞𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","public":"𝓟𝓾𝓫𝓵𝓲𝓬 𝓐𝓬𝓬𝓮𝓼𝓼","privateExplanation":"𝓞𝓷𝓵𝔂 𝔂𝓸𝓾 𝓬𝓪𝓷 𝓿𝓲𝓮𝔀 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","organizationExplanation":"𝓞𝓷𝓵𝔂 𝓶𝓮𝓶𝓫𝓮𝓻𝓼 𝓸𝓯 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓬𝓪𝓷 𝓿𝓲𝓮𝔀 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","publicExplanation":"𝓐𝓷𝔂𝓸𝓷𝓮 𝓬𝓪𝓷 𝓼𝓮𝓪𝓻𝓬𝓱 𝓪𝓷𝓭 𝓿𝓲𝓮𝔀 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽"},"appearanceCustomizer":{"customizeAppearance":"𝓒𝓾𝓼𝓽𝓸𝓶𝓲𝔃𝓮 𝓐𝓹𝓹𝓮𝓪𝓻𝓪𝓷𝓬𝓮","hide":"𝓗𝓲𝓭𝓮 𝓱𝓮𝓵𝓹 𝓽𝓮𝔁𝓽","show":"𝓢𝓱𝓸𝔀 𝓱𝓮𝓵𝓹 𝓽𝓮𝔁𝓽"},"appearanceDimension":{"responsive":"𝓐𝓾𝓽𝓸𝓶𝓪𝓽𝓲𝓬 (𝓭𝓮𝓯𝓪𝓾𝓵𝓽)","fixed":"𝓕𝓲𝔁𝓮𝓭"},"calendar":{"jan":"𝓙𝓪𝓷𝓾𝓪𝓻𝔂","feb":"𝓕𝓮𝓫𝓻𝓾𝓪𝓻𝔂","mar":"𝓜𝓪𝓻𝓬𝓱","apr":"𝓐𝓹𝓻𝓲𝓵","may":"𝓜𝓪𝔂","jun":"𝓙𝓾𝓷𝓮","jul":"𝓙𝓾𝓵𝔂","aug":"𝓐𝓾𝓰𝓾𝓼𝓽","sep":"𝓢𝓮𝓹𝓽𝓮𝓶𝓫𝓮𝓻","oct":"𝓞𝓬𝓽𝓸𝓫𝓮𝓻","nov":"𝓝𝓸𝓿𝓮𝓶𝓫𝓮𝓻","dec":"𝓓𝓮𝓬𝓮𝓶𝓫𝓮𝓻","hourShortcode":"𝓗𝓗","minuteShortcode":"𝓜𝓜"},"dialog":{"cancel":"𝓒𝓪𝓷𝓬𝓮𝓵","delete":"𝓓𝓮𝓵𝓮𝓽𝓮","done":"𝓓𝓸𝓷𝓮","edit":"𝓔𝓭𝓲𝓽","remove":"𝓡𝓮𝓶𝓸𝓿𝓮","save":"𝓢𝓪𝓿𝓮","create":"𝓒𝓻𝓮𝓪𝓽𝓮","ok":"𝓞𝓴","update":"𝓤𝓹𝓭𝓪𝓽𝓮","dismiss":"𝓓𝓲𝓼𝓶𝓲𝓼𝓼","continue":"𝓒𝓸𝓷𝓽𝓲𝓷𝓾𝓮"},"dialogAccessDialog":{"changeAccess":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓪𝓬𝓬𝓮𝓼𝓼 𝓯𝓸𝓻 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","selectAccess":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓪𝓷 𝓪𝓬𝓬𝓮𝓼𝓼 𝓵𝓮𝓿𝓮𝓵 𝓯𝓸𝓻 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","public":"𝓟𝓾𝓫𝓵𝓲𝓬 𝓪𝓬𝓬𝓮𝓼𝓼","publicDesc":"𝓐𝓷𝔂𝓸𝓷𝓮 𝓸𝓷 𝓽𝓱𝓮 𝓲𝓷𝓽𝓮𝓻𝓷𝓮𝓽 𝓬𝓪𝓷 𝓼𝓮𝓪𝓻𝓬𝓱 𝓯𝓸𝓻 𝓪𝓷𝓭 𝓿𝓲𝓮𝔀 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽.","verifiedHelp":"𝓞𝓷𝓵𝔂 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝓾𝓼𝓮𝓻𝓼 𝓸𝓻 𝓶𝓮𝓶𝓫𝓮𝓻𝓼 𝓸𝓯 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷𝓼 𝓬𝓪𝓷 𝓶𝓪𝓴𝓮 𝓾𝓹𝓵𝓸𝓪𝓭𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓹𝓾𝓫𝓵𝓲𝓬. 𝓘𝓯 𝔂𝓸𝓾\'𝓻𝓮 𝓪 𝓳𝓸𝓾𝓻𝓷𝓪𝓵𝓲𝓼𝓽 𝓸𝓻 𝓸𝓽𝓱𝓮𝓻𝔀𝓲𝓼𝓮 𝔀𝓸𝓻𝓴 𝓲𝓷 𝓹𝓾𝓫𝓵𝓲𝓼𝓱𝓲𝓷𝓰 𝓿𝓮𝓽𝓽𝓮𝓭 𝓶𝓪𝓽𝓮𝓻𝓲𝓪𝓵𝓼 𝓽𝓸 𝓲𝓷𝓯𝓸𝓻𝓶 𝓽𝓱𝓮 𝓹𝓾𝓫𝓵𝓲𝓬, 𝓵𝓮𝓪𝓻𝓷 𝓶𝓸𝓻𝓮 𝓪𝓷𝓭 𝓻𝓮𝓺𝓾𝓮𝓼𝓽 𝓿𝓮𝓻𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷 𝓱𝓮𝓻𝓮.","privateToOrg":"𝓨𝓸𝓾 𝓬𝓪𝓷’𝓽 𝓬𝓱𝓪𝓷𝓰𝓮 𝓽𝓱𝓮 𝓪𝓬𝓬𝓮𝓼𝓼 𝓵𝓮𝓿𝓮𝓵 𝓽𝓸 “𝓟𝓻𝓲𝓿𝓪𝓽𝓮 𝓽𝓸 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷” 𝓫𝓮𝓬𝓪𝓾𝓼𝓮 {n, plural, one {𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼} other {𝓸𝓷𝓮 𝓸𝓻 𝓶𝓸𝓻𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓪𝓻𝓮}} 𝓪𝓼𝓼𝓸𝓬𝓲𝓪𝓽𝓮𝓭 𝔀𝓲𝓽𝓱 𝔂𝓸𝓾𝓻 𝓲𝓷𝓭𝓲𝓿𝓲𝓭𝓾𝓪𝓵 𝓪𝓬𝓬𝓸𝓾𝓷𝓽, 𝓷𝓸𝓽 𝓪𝓷 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷. 𝓣𝓸 𝓪𝓭𝓭 {n, plural, one {𝓲𝓽} other {𝓽𝓱𝓮𝓶}} 𝓽𝓸 𝓪𝓷 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷, 𝓼𝓮𝓵𝓮𝓬𝓽 {n, plural, one {𝓲𝓽} other {𝓽𝓱𝓮𝓶}} 𝓯𝓻𝓸𝓶 𝓽𝓱𝓮 𝓶𝓪𝓷𝓪𝓰𝓮𝓶𝓮𝓷𝓽 𝓿𝓲𝓮𝔀 𝓪𝓷𝓭 𝓬𝓵𝓲𝓬𝓴 “𝓒𝓱𝓪𝓷𝓰𝓮 𝓞𝔀𝓷𝓮𝓻.” 𝓨𝓸𝓾 𝓬𝓪𝓷 𝓳𝓸𝓲𝓷 𝓸𝓻 𝓬𝓻𝓮𝓪𝓽𝓮 𝓪𝓷 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓸𝓷 𝓽𝓱𝓲𝓼 𝓹𝓪𝓰𝓮.","private":"𝓟𝓻𝓲𝓿𝓪𝓽𝓮 𝓪𝓬𝓬𝓮𝓼𝓼","privateDesc":"𝓞𝓷𝓵𝔂 𝓹𝓮𝓸𝓹𝓵𝓮 𝔀𝓲𝓽𝓱 𝓮𝔁𝓹𝓵𝓲𝓬𝓲𝓽 𝓹𝓮𝓻𝓶𝓲𝓼𝓼𝓲𝓸𝓷 (𝓿𝓲𝓪 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓲𝓸𝓷) 𝓱𝓪𝓿𝓮 𝓪𝓬𝓬𝓮𝓼𝓼.","organization":"𝓟𝓻𝓲𝓿𝓪𝓽𝓮 𝓽𝓸 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","organizationDesc":"𝓞𝓷𝓵𝔂 𝓽𝓱𝓮 𝓹𝓮𝓸𝓹𝓵𝓮 𝓲𝓷 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓱𝓪𝓿𝓮 𝓪𝓬𝓬𝓮𝓼𝓼.","schedulePublication":"𝓢𝓬𝓱𝓮𝓭𝓾𝓵𝓮 𝓹𝓾𝓫𝓵𝓲𝓬𝓪𝓽𝓲𝓸𝓷","scheduleHelp":"𝓣𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓶𝓪𝓭𝓮 𝓹𝓾𝓫𝓵𝓲𝓬 𝓪𝓽 𝓽𝓱𝓮 𝓰𝓲𝓿𝓮𝓷 𝓭𝓪𝓽𝓮 𝓪𝓷𝓭 𝓽𝓲𝓶𝓮. 𝓟𝓾𝓫𝓵𝓲𝓬𝓪𝓽𝓲𝓸𝓷 𝓽𝓲𝓶𝓮 𝓲𝓼 𝓵𝓸𝓬𝓪𝓵{timezone}.","unchanged":"𝓐𝓬𝓬𝓮𝓼𝓼 𝓲𝓼 𝓾𝓷𝓬𝓱𝓪𝓷𝓰𝓮𝓭. 𝓢𝓮𝓵𝓮𝓬𝓽 𝓪 𝓭𝓲𝓯𝓯𝓮𝓻𝓮𝓷𝓽 𝓪𝓬𝓬𝓮𝓼𝓼 𝓵𝓮𝓿𝓮𝓵.","future":"𝓜𝓾𝓼𝓽 𝓼𝓮𝓵𝓮𝓬𝓽 𝓪 𝓽𝓲𝓶𝓮 𝓲𝓷 𝓽𝓱𝓮 𝓯𝓾𝓽𝓾𝓻𝓮","change":"𝓒𝓱𝓪𝓷𝓰𝓮"},"dialogCollaboratorDialog":{"confirm":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓻𝓮𝓶𝓸𝓿𝓮 𝓾𝓼𝓮𝓻","confirmMsg":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓻𝓮𝓶𝓸𝓿𝓮 {name} 𝓯𝓻𝓸𝓶 {title}. 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓","addCollaborators":"𝓐𝓭𝓭 𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼","invite":"𝓟𝓾𝓽 𝓲𝓷 𝓽𝓱𝓮 𝓮𝓶𝓪𝓲𝓵 𝓸𝓯 𝓪𝓷 𝓮𝔁𝓲𝓼𝓽𝓲𝓷𝓰 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓾𝓼𝓮𝓻 𝓫𝓮𝓵𝓸𝔀. 𝓘𝓯 𝓽𝓱𝓮𝔂 𝓭𝓸𝓷\'𝓽 𝓱𝓪𝓿𝓮 𝓪𝓷 𝓪𝓬𝓬𝓸𝓾𝓷𝓽, 𝓱𝓪𝓿𝓮 𝓽𝓱𝓮𝓶 𝓻𝓮𝓰𝓲𝓼𝓽𝓮𝓻 𝓱𝓮𝓻𝓮 𝓯𝓸𝓻 𝓯𝓻𝓮𝓮, 𝓪𝓷𝓭 𝓽𝓱𝓮𝓷 𝓪𝓼𝓴 𝓽𝓱𝓮𝓶 𝓽𝓸 𝓵𝓸𝓰 𝓲𝓷 𝓽𝓸 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓪𝓽 𝓵𝓮𝓪𝓼𝓽 𝓸𝓷𝓬𝓮.","admin":"𝓐𝓭𝓶𝓲𝓷","view":"𝓥𝓲𝓮𝔀","adminHelp":"𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝓬𝓪𝓷 𝓮𝓭𝓲𝓽 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓪𝓷𝓭 𝓲𝓽𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","editHelp":"𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝓬𝓪𝓷 𝓮𝓭𝓲𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓲𝓷 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽","viewHelp":"𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝓬𝓪𝓷 𝓿𝓲𝓮𝔀 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓲𝓷 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽","add":"𝓐𝓭𝓭","empty":"𝓨𝓸𝓾 𝓱𝓪𝓿𝓮 𝓷𝓸𝓽 𝔂𝓮𝓽 𝓪𝓭𝓭𝓮𝓭 𝓪𝓷𝔂 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝓽𝓸 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽. 𝓘𝓷𝓿𝓲𝓽𝓮 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝓽𝓸 𝓰𝓻𝓪𝓷𝓽 𝓸𝓽𝓱𝓮𝓻 𝓾𝓼𝓮𝓻𝓼 𝓪𝓬𝓬𝓮𝓼𝓼 𝓽𝓸 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓼𝓱𝓪𝓻𝓮𝓭 𝓲𝓷 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽. 𝓨𝓸𝓾 𝓬𝓪𝓷 𝓬𝓸𝓷𝓽𝓻𝓸𝓵 𝔀𝓱𝓮𝓽𝓱𝓮𝓻 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝓱𝓪𝓿𝓮 𝓪𝓬𝓬𝓮𝓼𝓼 𝓽𝓸 𝓿𝓲𝓮𝔀/𝓮𝓭𝓲𝓽 𝓽𝓱𝓮 𝓹𝓻𝓸𝓳𝓮𝓬𝓽’𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓸𝓻 𝓫𝓮 𝓪𝓷 𝓪𝓭𝓶𝓲𝓷 𝔀𝓲𝓽𝓱 𝓹𝓮𝓻𝓶𝓲𝓼𝓼𝓲𝓸𝓷𝓼 𝓽𝓸 𝓲𝓷𝓿𝓲𝓽𝓮 𝓸𝓽𝓱𝓮𝓻 𝓾𝓼𝓮𝓻𝓼 𝓪𝓷𝓭 𝓮𝓭𝓲𝓽 𝓽𝓱𝓮 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓲𝓽𝓼𝓮𝓵𝓯.","manageCollaborators":"𝓜𝓪𝓷𝓪𝓰𝓮 𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼","name":"𝓝𝓪𝓶𝓮","access":"𝓐𝓬𝓬𝓮𝓼𝓼","you":"(𝔂𝓸𝓾)"},"dialogDataDialog":{"confirm":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓻𝓮𝓶𝓸𝓿𝓮 𝓭𝓪𝓽𝓪 𝓹𝓸𝓲𝓷𝓽","removeMsg":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓻𝓮𝓶𝓸𝓿𝓮 𝓽𝓱𝓮 {key}{value} 𝓭𝓪𝓽𝓪 𝓹𝓸𝓲𝓷𝓽 𝓯𝓻𝓸𝓶 𝓽𝓱𝓮 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼. 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓","addData":"𝓐𝓭𝓭 𝓓𝓪𝓽𝓪 𝓯𝓸𝓻 {n, plural, one {𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","tag":"𝓣𝓪𝓰","value":"𝓥𝓪𝓵𝓾𝓮","key":"𝓚𝓮𝔂","keyValue":"𝓚𝓮𝔂 / 𝓥𝓪𝓵𝓾𝓮","tagInfo":"𝓐𝓭𝓭 𝓬𝓾𝓼𝓽𝓸𝓶 𝓽𝓪𝓰𝓼 𝓽𝓸 𝓬𝓪𝓽𝓮𝓰𝓸𝓻𝓲𝔃𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼.","eg":"𝓮.𝓰.","exampleTagReport":"𝓻𝓮𝓹𝓸𝓻𝓽","exampleTagLawsuit":"𝓵𝓪𝔀𝓼𝓾𝓲𝓽","exampleTagEmail":"𝓮𝓶𝓪𝓲𝓵","keyValueInfo":"𝓐𝓭𝓭 𝓬𝓾𝓼𝓽𝓸𝓶 𝓴𝓮𝔂 / 𝓿𝓪𝓵𝓾𝓮 𝓹𝓪𝓲𝓻𝓼 𝓯𝓸𝓻 𝓹𝓻𝓮𝓬𝓲𝓼𝓮 𝓬𝓪𝓽𝓮𝓰𝓸𝓻𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓸𝓯 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼.","exampleKVState":"𝓼𝓽𝓪𝓽𝓮:&𝓷𝓫𝓼𝓹;𝓒𝓪𝓵𝓲𝓯𝓸𝓻𝓷𝓲𝓪","exampleKVYear":"𝔂𝓮𝓪𝓻:&𝓷𝓫𝓼𝓹;𝟐𝟎𝟏𝟔","exampleKVType":"𝓽𝔂𝓹𝓮:&𝓷𝓫𝓼𝓹;𝓶𝓮𝓶𝓸","enterTag":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓽𝓪𝓰","enterKey":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓴𝓮𝔂","keyInvalid":"𝓚𝓮𝔂𝓼 𝓬𝓪𝓷 𝓸𝓷𝓵𝔂 𝓬𝓸𝓷𝓽𝓪𝓲𝓷 𝓵𝓮𝓽𝓽𝓮𝓻𝓼, 𝓷𝓾𝓶𝓫𝓮𝓻𝓼, 𝓾𝓷𝓭𝓮𝓻𝓼𝓬𝓸𝓻𝓮𝓼 (_), 𝓪𝓷𝓭 𝓭𝓪𝓼𝓱𝓮𝓼 (-)","emptyMsg":"𝓨𝓸𝓾 𝓱𝓪𝓿𝓮 𝓷𝓸𝓽 𝔂𝓮𝓽 𝓪𝓭𝓭𝓮𝓭 𝓪𝓷𝔂 𝓭𝓪𝓽𝓪 𝓽𝓸 𝓽𝓱𝓮 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼. 𝓐𝓭𝓭 𝓽𝓪𝓰𝓼 𝓪𝓷𝓭 𝓴𝓮𝔂/𝓿𝓪𝓵𝓾𝓮 𝓹𝓪𝓲𝓻𝓼 𝓽𝓸 𝓬𝓪𝓽𝓮𝓰𝓸𝓻𝓲𝔃𝓮 𝓪𝓷𝓭 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼. 𝓨𝓸𝓾 𝓬𝓪𝓷 𝓯𝓲𝓵𝓽𝓮𝓻 𝓪𝓷𝓭 𝓼𝓮𝓪𝓻𝓬𝓱 𝓸𝓷 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓭𝓪𝓽𝓪 𝓽𝓸 𝓰𝓲𝓿𝓮 𝔂𝓸𝓾 𝓹𝓸𝔀𝓮𝓻𝓯𝓾𝓵 𝓬𝓸𝓷𝓽𝓻𝓸𝓵 𝓸𝓿𝓮𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓶𝓪𝓷𝓪𝓰𝓮𝓶𝓮𝓷𝓽.","manageDocumentData":"𝓜𝓪𝓷𝓪𝓰𝓮 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓓𝓪𝓽𝓪","valueUnchanged":"𝓥𝓪𝓵𝓾𝓮 𝓻𝓮𝓶𝓪𝓲𝓷𝓼 𝓾𝓷𝓬𝓱𝓪𝓷𝓰𝓮𝓭","kvCannotBeEmpty":"𝓚𝓮𝔂/𝓿𝓪𝓵𝓾𝓮 𝓬𝓪𝓷𝓷𝓸𝓽 𝓫𝓮 𝓮𝓶𝓹𝓽𝔂"},"dialogReprocessDialog":{"title":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼","reprocessDocs":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓯𝓸𝓻𝓬𝓮 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}} 𝓽𝓸 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼 𝓹𝓪𝓰𝓮 𝓪𝓷𝓭 𝓲𝓶𝓪𝓰𝓮 𝓽𝓮𝔁𝓽. 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓","reprocessSingleDoc":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓯𝓸𝓻𝓬𝓮 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓽𝓸 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼 𝓹𝓪𝓰𝓮 𝓪𝓷𝓭 𝓲𝓶𝓪𝓰𝓮 𝓽𝓮𝔁𝓽. 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓","confirm":"𝓡𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼"},"dialogDeleteDialog":{"title":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼","deleteDocs":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓹𝓮𝓻𝓶𝓪𝓷𝓮𝓷𝓽𝓵𝔂 𝓭𝓮𝓵𝓮𝓽𝓮 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}. 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓"},"dialogCancelProcessingDialog":{"title":"𝓒𝓪𝓷𝓬𝓮𝓵 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰","deleteDocs":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓯𝓸𝓻𝓬𝓮 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}} 𝓽𝓸 𝓼𝓽𝓸𝓹 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰. 𝓐𝓯𝓽𝓮𝓻 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰 𝓱𝓪𝓼 𝓫𝓮𝓮𝓷 𝓼𝓽𝓸𝓹𝓹𝓮𝓭, 𝓪𝓷 𝓮𝓻𝓻𝓸𝓻 𝔀𝓲𝓵𝓵 𝓼𝓱𝓸𝔀 𝓪𝓯𝓽𝓮𝓻 𝔀𝓱𝓲𝓬𝓱 𝔂𝓸𝓾 𝓬𝓪𝓷 “𝓕𝓸𝓻𝓬𝓮 𝓡𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼” 𝓸𝓻 𝓭𝓮𝓵𝓮𝓽𝓮 𝓽𝓱𝓮 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}} 𝓾𝓼𝓲𝓷𝓰 𝓽𝓱𝓮 𝓔𝓭𝓲𝓽 𝓶𝓮𝓷𝓾. 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓"},"dialogDiagnosticDialog":{"staffOnlyInfo":"𝓢𝓽𝓪𝓯𝓯-𝓸𝓷𝓵𝔂 𝓲𝓷𝓯𝓸 𝓯𝓸𝓻 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","id":"𝓘𝓓","title":"𝓣𝓲𝓽𝓵𝓮","actions":"𝓐𝓬𝓽𝓲𝓸𝓷𝓼","debug":"𝓓𝓮𝓫𝓾𝓰","viewErrors":"𝓥𝓲𝓮𝔀 𝓮𝓻𝓻𝓸𝓻𝓼","viewS3":"𝓥𝓲𝓮𝔀 𝓲𝓷 𝓢𝟑"},"dialogDocumentEmbedDialog":{"responsive":"𝓡𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮","respOn":"𝓞𝓷 (𝓭𝓮𝓯𝓪𝓾𝓵𝓽)","respOnHelp":"𝓕𝓲𝓵𝓵 𝓽𝓱𝓮 𝔀𝓲𝓭𝓽𝓱 𝓸𝓯 𝓽𝓱𝓮 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓬𝓸𝓷𝓽𝓪𝓲𝓷𝓮𝓻 (𝓾𝓼𝓾𝓪𝓵𝓵𝔂 𝔀𝓸𝓻𝓴𝓼 𝓫𝓮𝓼𝓽)","respOff":"𝓞𝓯𝓯","respOffHelp":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓯𝓲𝓽 𝓽𝓱𝓮 𝓼𝓲𝔃𝓮𝓼 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓮𝓭 𝓫𝓮𝓵𝓸𝔀","width":"𝓦𝓲𝓭𝓽𝓱","widthAuto":"𝓦𝓲𝓵𝓵 𝓯𝓲𝓵𝓵 𝓽𝓱𝓮 𝓪𝓿𝓪𝓲𝓵𝓪𝓫𝓵𝓮 𝓼𝓹𝓪𝓬𝓮 𝓲𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼 𝓼𝓮𝓽 𝓽𝓸 𝓻𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮, 𝓸𝓽𝓱𝓮𝓻𝔀𝓲𝓼𝓮 𝓭𝓮𝓯𝓪𝓾𝓵𝓽𝓼 𝓽𝓸 𝟕𝟎𝟎𝓹𝔁","widthFixed":"𝓢𝓮𝓽 𝓪 𝓶𝓪𝔁𝓲𝓶𝓾𝓶 𝔀𝓲𝓭𝓽𝓱 𝓲𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼 𝓻𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮, 𝓸𝓻 𝓼𝓮𝓽 𝓪 𝓯𝓲𝔁𝓮𝓭 𝓼𝓲𝔃𝓮 𝓲𝓯 𝓷𝓸𝓽 𝓻𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮","height":"𝓗𝓮𝓲𝓰𝓱𝓽","heightAuto":"𝓣𝓱𝓮 𝓱𝓮𝓲𝓰𝓱𝓽 𝓲𝓼 𝓫𝓪𝓼𝓮𝓭 𝓸𝓷 𝓽𝓱𝓮 𝓼𝓲𝔃𝓮 𝓸𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽, 𝔀𝓲𝓽𝓱 𝓷𝓸 𝓶𝓪𝔁𝓲𝓶𝓾𝓶 𝓼𝓲𝔃𝓮. 𝓘𝓯 𝓻𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮, 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓼𝓮𝓽 𝓽𝓸 𝓽𝓱𝓮 𝓱𝓮𝓲𝓰𝓱𝓽 𝓸𝓯 𝓽𝓱𝓮 𝓫𝓻𝓸𝔀𝓼𝓮𝓻 𝔀𝓲𝓷𝓭𝓸𝔀 𝓶𝓲𝓷𝓾𝓼 𝟏𝟎𝟎𝓹𝔁","heightFixed":"𝓢𝓮𝓽 𝓪 𝓶𝓪𝔁𝓲𝓶𝓾𝓶 𝓱𝓮𝓲𝓰𝓱𝓽 𝓲𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼 𝓻𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮, 𝓸𝓻 𝓼𝓮𝓽 𝓪 𝓯𝓲𝔁𝓮𝓭 𝓼𝓲𝔃𝓮 𝓲𝓯 𝓷𝓸𝓽 𝓻𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮","sidebarBehavior":"𝓢𝓲𝓭𝓮𝓫𝓪𝓻 𝓫𝓮𝓱𝓪𝓿𝓲𝓸𝓻","sbResponsive":"𝓡𝓮𝓼𝓹𝓸𝓷𝓼𝓲𝓿𝓮 (𝓭𝓮𝓯𝓪𝓾𝓵𝓽)","sbResponsiveHelp":"𝓢𝓱𝓸𝔀 𝓼𝓲𝓭𝓮𝓫𝓪𝓻 𝓪𝓾𝓽𝓸𝓶𝓪𝓽𝓲𝓬𝓪𝓵𝓵𝔂 𝓸𝓷 𝓵𝓪𝓻𝓰𝓮 𝓼𝓬𝓻𝓮𝓮𝓷𝓼 𝓪𝓷𝓭 𝓱𝓲𝓭𝓮 𝓸𝓷 𝓶𝓸𝓫𝓲𝓵𝓮 𝓭𝓮𝓿𝓲𝓬𝓮𝓼. 𝓘𝓷 𝓮𝓶𝓫𝓮𝓭 𝓶𝓸𝓭𝓮, 𝓽𝓱𝓮 𝓼𝓲𝓭𝓮𝓫𝓪𝓻 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓱𝓲𝓭𝓭𝓮𝓷","hidden":"𝓗𝓲𝓭𝓭𝓮𝓷","visible":"𝓥𝓲𝓼𝓲𝓫𝓵𝓮","visibleDefault":"𝓥𝓲𝓼𝓲𝓫𝓵𝓮 (𝓭𝓮𝓯𝓪𝓾𝓵𝓽)","sbHiddenHelp":"𝓗𝓲𝓭𝓮 𝓽𝓱𝓮 𝓼𝓲𝓭𝓮𝓫𝓪𝓻 𝓫𝔂 𝓭𝓮𝓯𝓪𝓾𝓵𝓽","sbVisibleHelp":"𝓢𝓱𝓸𝔀 𝓽𝓱𝓮 𝓼𝓲𝓭𝓮𝓫𝓪𝓻 𝓫𝔂 𝓭𝓮𝓯𝓪𝓾𝓵𝓽","titleBehavior":"𝓣𝓲𝓽𝓵𝓮 𝓫𝓮𝓱𝓪𝓿𝓲𝓸𝓻","tVisibleHelp":"𝓓𝓲𝓼𝓹𝓵𝓪𝔂 𝓽𝓱𝓮 𝓽𝓲𝓽𝓵𝓮 𝓪𝓷𝓭 𝓪𝓽𝓽𝓻𝓲𝓫𝓾𝓽𝓲𝓸𝓷 𝓲𝓷 𝓽𝓱𝓮 𝓱𝓮𝓪𝓭𝓮𝓻 𝓸𝓯 𝓽𝓱𝓮 𝓿𝓲𝓮𝔀𝓮𝓻","tHiddenHelp":"𝓗𝓲𝓭𝓮 𝓽𝓱𝓮 𝓽𝓲𝓽𝓵𝓮 𝓲𝓷 𝓽𝓱𝓮 𝓱𝓮𝓪𝓭𝓮𝓻 𝓸𝓯 𝓽𝓱𝓮 𝓿𝓲𝓮𝔀𝓮𝓻 (𝓼𝓽𝓲𝓵𝓵 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓲𝓷 𝓽𝓱𝓮 𝓼𝓲𝓭𝓮𝓫𝓪𝓻)","pdfLink":"𝓟𝓓𝓕 𝓵𝓲𝓷𝓴","plVisibleHelp":"𝓢𝓱𝓸𝔀 𝓪 𝓵𝓲𝓷𝓴 𝓽𝓸 𝓽𝓱𝓮 𝓻𝓪𝔀 𝓟𝓓𝓕 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓷 𝓽𝓱𝓮 𝓼𝓲𝓭𝓮𝓫𝓪𝓻","plHiddenHelp":"𝓗𝓲𝓭𝓮 𝓽𝓱𝓮 𝓼𝓲𝓭𝓮𝓫𝓪𝓻 𝓟𝓓𝓕 𝓵𝓲𝓷𝓴 (𝓯𝓲𝓵𝓮 𝓲𝓼 𝓼𝓽𝓲𝓵𝓵 𝓪𝓬𝓬𝓮𝓼𝓼𝓲𝓫𝓵𝓮 𝓲𝓯 𝓽𝓱𝓮 𝓤𝓡𝓛 𝓲𝓼 𝓴𝓷𝓸𝔀𝓷)","fullscreenOption":"𝓕𝓾𝓵𝓵𝓼𝓬𝓻𝓮𝓮𝓷 𝓸𝓹𝓽𝓲𝓸𝓷","fsVisibleHelp":"𝓢𝓱𝓸𝔀 𝓪 𝓯𝓾𝓵𝓵𝓼𝓬𝓻𝓮𝓮𝓷 𝓲𝓬𝓸𝓷 𝓲𝓷 𝓽𝓱𝓮 𝓫𝓸𝓽𝓽𝓸𝓶-𝓻𝓲𝓰𝓱𝓽 𝓬𝓸𝓻𝓷𝓮𝓻","fsHiddenHelp":"𝓗𝓲𝓭𝓮 𝓽𝓱𝓮 𝓯𝓾𝓵𝓵𝓼𝓬𝓻𝓮𝓮𝓷 𝓸𝓹𝓽𝓲𝓸𝓷","textMode":"𝓣𝓮𝔁𝓽 𝓶𝓸𝓭𝓮","tmVisibleHelp":"𝓢𝓱𝓸𝔀 𝓪𝓷 𝓸𝓹𝓽𝓲𝓸𝓷 𝓽𝓸 𝓿𝓲𝓮𝔀 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽’𝓼 𝓽𝓮𝔁𝓽 𝓲𝓷 𝓽𝓱𝓮 𝓿𝓲𝓮𝔀 𝓭𝓻𝓸𝓹𝓭𝓸𝔀𝓷","tmHiddenHelp":"𝓗𝓲𝓭𝓮 𝓽𝓮𝔁𝓽 𝓶𝓸𝓭𝓮","contributedByFormat":"𝓒𝓸𝓷𝓽𝓻𝓲𝓫𝓾𝓽𝓮𝓭 𝓫𝔂 𝓯𝓸𝓻𝓶𝓪𝓽","cbfUserAndOrg":"𝓤𝓼𝓮𝓻 𝓪𝓷𝓭 𝓸𝓻𝓰 (𝓭𝓮𝓯𝓪𝓾𝓵𝓽)","cbfUserAndOrgHelp":"𝓢𝓱𝓸𝔀 𝓪 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽’𝓼 𝓪𝓽𝓽𝓻𝓲𝓫𝓾𝓽𝓲𝓸𝓷 𝓪𝓼 𝓽𝓱𝓮 𝓾𝓼𝓮𝓻 𝓷𝓪𝓶𝓮 𝓯𝓸𝓵𝓵𝓸𝔀𝓮𝓭 𝓫𝔂 𝓽𝓱𝓮 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","cbfOrgOnly":"𝓞𝓻𝓰 𝓸𝓷𝓵𝔂","cbfOrgOnlyHelp":"𝓐𝓽𝓽𝓻𝓲𝓫𝓾𝓽𝓮 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓽𝓸 𝓳𝓾𝓼𝓽 𝓽𝓱𝓮 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","share":"𝓢𝓱𝓪𝓻𝓮 “{title}”","embedDesc":"𝓒𝓸𝓹𝔂 𝓽𝓱𝓮 𝓗𝓣𝓜𝓛 𝓬𝓸𝓭𝓮 𝓽𝓸 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓽𝓱𝓲𝓷 𝓪𝓷 𝓪𝓻𝓽𝓲𝓬𝓵𝓮"},"dialogDocumentInformationDialog":{"editInformation":"𝓔𝓭𝓲𝓽 𝓘𝓷𝓯𝓸𝓻𝓶𝓪𝓽𝓲𝓸𝓷 𝓯𝓸𝓻 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}"},"dialogRedactDialog":{"title":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓻𝓮𝓭𝓪𝓬𝓽𝓲𝓸𝓷𝓼","description":"𝓐𝓻𝓮 𝔂𝓸𝓾 𝓼𝓾𝓻𝓮 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓻𝓮𝓭𝓪𝓬𝓽 𝓽𝓱𝓮 𝓬𝓾𝓻𝓻𝓮𝓷𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽❓ 𝓘𝓯 𝔂𝓸𝓾 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮, 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓿𝓲𝓮𝔀𝓮𝓻 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓲𝓷𝓪𝓬𝓬𝓮𝓼𝓼𝓲𝓫𝓵𝓮 𝓽𝓮𝓶𝓹𝓸𝓻𝓪𝓻𝓲𝓵𝔂 𝔀𝓱𝓲𝓵𝓮 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓮𝓼 𝔀𝓲𝓽𝓱 𝓽𝓱𝓮 𝓻𝓮𝓭𝓪𝓬𝓽𝓲𝓸𝓷𝓼 𝓲𝓷 𝓹𝓵𝓪𝓬𝓮. 𝓣𝓱𝓲𝓼 𝓬𝓱𝓪𝓷𝓰𝓮 𝓲𝓼 𝓲𝓻𝓻𝓮𝓿𝓮𝓻𝓼𝓲𝓫𝓵𝓮."},"dialogModifyDialog":{"title":"𝓐𝓹𝓹𝓵𝔂 𝓶𝓸𝓭𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷𝓼","description":"𝓐𝓻𝓮 𝔂𝓸𝓾 𝓼𝓾𝓻𝓮 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓶𝓸𝓭𝓲𝓯𝔂 𝓽𝓱𝓮 𝓬𝓾𝓻𝓻𝓮𝓷𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽❓ 𝓘𝓯 𝔂𝓸𝓾 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮, 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓿𝓲𝓮𝔀𝓮𝓻 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓲𝓷𝓪𝓬𝓬𝓮𝓼𝓼𝓲𝓫𝓵𝓮 𝓽𝓮𝓶𝓹𝓸𝓻𝓪𝓻𝓲𝓵𝔂 𝔀𝓱𝓲𝓵𝓮 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓮𝓼 𝔀𝓲𝓽𝓱 𝓽𝓱𝓮 𝓶𝓸𝓭𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷𝓼. 𝓣𝓱𝓲𝓼 𝓬𝓱𝓪𝓷𝓰𝓮 𝓲𝓼 𝓲𝓻𝓻𝓮𝓿𝓮𝓻𝓼𝓲𝓫𝓵𝓮.","closeTitle":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓬𝓵𝓸𝓼𝓮","closeWarning":"𝓨𝓸𝓾 𝔀𝓲𝓵𝓵 𝓵𝓸𝓼𝓮 𝓪𝓵𝓵 𝔂𝓸𝓾𝓻 𝓾𝓷𝓪𝓹𝓹𝓵𝓲𝓮𝓭 𝓶𝓸𝓭𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷𝓼. 𝓐𝓻𝓮 𝔂𝓸𝓾 𝓼𝓾𝓻𝓮 𝔂𝓸𝓾 𝔀𝓪𝓷𝓽 𝓽𝓸 𝓹𝓻𝓸𝓬𝓮𝓮𝓭❓"},"dialogDeleteNoteDialog":{"title":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓭𝓮𝓵𝓮𝓽𝓮","description":"𝓐𝓻𝓮 𝔂𝓸𝓾 𝓼𝓾𝓻𝓮 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓭𝓮𝓵𝓮𝓽𝓮 𝓽𝓱𝓮 𝓬𝓾𝓻𝓻𝓮𝓷𝓽 𝓷𝓸𝓽𝓮❓"},"dialogEditSectionsDialog":{"confirmDelete":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓭𝓮𝓵𝓮𝓽𝓮","proceedingWillRemove":"𝓟𝓻𝓸𝓬𝓮𝓮𝓭𝓲𝓷𝓰 𝔀𝓲𝓵𝓵 𝓻𝓮𝓶𝓸𝓿𝓮 𝓽𝓱𝓮 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓮𝓭 𝓼𝓮𝓬𝓽𝓲𝓸𝓷 (𝓹. {page} {title}). 𝓓𝓸 𝔂𝓸𝓾 𝔀𝓲𝓼𝓱 𝓽𝓸 𝓬𝓸𝓷𝓽𝓲𝓷𝓾𝓮❓","editSections":"𝓔𝓭𝓲𝓽 𝓢𝓮𝓬𝓽𝓲𝓸𝓷𝓼","manageSections":"𝓜𝓪𝓷𝓪𝓰𝓮 𝓼𝓮𝓬𝓽𝓲𝓸𝓷𝓼 𝓽𝓸 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓽𝓱 𝓪 𝓽𝓪𝓫𝓵𝓮 𝓸𝓯 𝓬𝓸𝓷𝓽𝓮𝓷𝓽𝓼.","pageAbbrevNo":"𝓹. {n}","pageAbbrev":"𝓹.","empty":"𝓨𝓸𝓾 𝓱𝓪𝓿𝓮 𝓷𝓸𝓽 𝓪𝓭𝓭𝓮𝓭 𝓪𝓷𝔂 𝓼𝓮𝓬𝓽𝓲𝓸𝓷𝓼","edit":"𝓔𝓭𝓲𝓽 𝓽𝓱𝓮 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓼𝓮𝓬𝓽𝓲𝓸𝓷","add":"𝓐𝓭𝓭 𝓪 𝓷𝓮𝔀 𝓼𝓮𝓬𝓽𝓲𝓸𝓷","title":"𝓣𝓲𝓽𝓵𝓮","missingTitle":"𝓟𝓵𝓮𝓪𝓼𝓮 𝓮𝓷𝓽𝓮𝓻 𝓪 𝓽𝓲𝓽𝓵𝓮","updateTitle":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓷𝓮𝔀 𝓽𝓲𝓽𝓵𝓮 𝓸𝓻 𝓹𝓪𝓰𝓮 𝓷𝓾𝓶𝓫𝓮𝓻","uniquePageNumber":"𝓨𝓸𝓾 𝓶𝓾𝓼𝓽 𝓮𝓷𝓽𝓮𝓻 𝓪 𝓾𝓷𝓲𝓺𝓾𝓮 𝓹𝓪𝓰𝓮 𝓷𝓾𝓶𝓫𝓮𝓻","invalidPageNumber":"𝓟𝓪𝓰𝓮 𝓷𝓾𝓶𝓫𝓮𝓻 𝓲𝓼 𝓲𝓷𝓿𝓪𝓵𝓲𝓭"},"dialogEmbedDialog":{"updatingDocument":"𝓤𝓹𝓭𝓪𝓽𝓲𝓷𝓰 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽...","makingPublic":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼 𝓬𝓾𝓻𝓻𝓮𝓷𝓽𝓵𝔂 𝓫𝓮𝓲𝓷𝓰 𝓶𝓪𝓭𝓮 𝓹𝓾𝓫𝓵𝓲𝓬. 𝓣𝓱𝓲𝓼 𝓶𝓪𝔂 𝓽𝓪𝓴𝓮 𝓪 𝓶𝓲𝓷𝓾𝓽𝓮 𝓸𝓻 𝓽𝔀𝓸.","wouldMakePublic":"𝓦𝓸𝓾𝓵𝓭 𝔂𝓸𝓾 𝓵𝓲𝓴𝓮 𝓽𝓸 𝓶𝓪𝓴𝓮 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓹𝓾𝓫𝓵𝓲𝓬 𝓫𝓮𝓯𝓸𝓻𝓮 𝓼𝓱𝓪𝓻𝓲𝓷𝓰❓","notPublic":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼 𝓷𝓸𝓽 𝓬𝓾𝓻𝓻𝓮𝓷𝓽𝓵𝔂 𝓹𝓾𝓫𝓵𝓲𝓬. 𝓘𝓯 𝔂𝓸𝓾 𝓮𝓶𝓫𝓮𝓭 𝓸𝓻 𝓵𝓲𝓷𝓴 𝓲𝓽, 𝓸𝓷𝓵𝔂 𝔂𝓸𝓾 𝓪𝓷𝓭 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓪𝓫𝓵𝓮 𝓽𝓸 𝓿𝓲𝓮𝔀 𝓲𝓽 𝓾𝓷𝓽𝓲𝓵 𝓲𝓽 𝓲𝓼 𝓶𝓪𝓭𝓮 𝓹𝓾𝓫𝓵𝓲𝓬. 𝓒𝓵𝓲𝓬𝓴 𝓫𝓮𝓵𝓸𝔀 𝔀𝓱𝓮𝓷 𝔂𝓸𝓾’𝓻𝓮 𝓻𝓮𝓪𝓭𝔂 𝓽𝓸 𝓹𝓾𝓫𝓵𝓲𝓼𝓱 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓽𝓸 𝓽𝓱𝓮 𝓹𝓾𝓫𝓵𝓲𝓬.","makePublic":"𝓜𝓪𝓴𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓹𝓾𝓫𝓵𝓲𝓬","leave":"𝓛𝓮𝓪𝓿𝓮 𝓪𝓼 𝓲𝓼","selectShare":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓼𝓱𝓪𝓻𝓮 𝓸𝓹𝓽𝓲𝓸𝓷","selectShareHelp":"𝓒𝓱𝓸𝓸𝓼𝓮 𝔀𝓱𝓮𝓽𝓱𝓮𝓻 𝓽𝓸 𝓼𝓱𝓪𝓻𝓮 𝓽𝓱𝓮 𝓮𝓷𝓽𝓲𝓻𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓸𝓻 𝓳𝓾𝓼𝓽 𝓪 𝓹𝓪𝓰𝓮 𝓸𝓻 𝓷𝓸𝓽𝓮.","shareDoc":"𝓢𝓱𝓪𝓻𝓮 𝓮𝓷𝓽𝓲𝓻𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","shareDocHelp":"𝓛𝓲𝓷𝓴 𝓸𝓻 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓮 𝓮𝓷𝓽𝓲𝓻𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽. (𝓣𝓱𝓲𝓼 𝓲𝓼 𝓽𝓱𝓮 𝓶𝓸𝓼𝓽 𝓬𝓸𝓶𝓶𝓸𝓷𝓵𝔂 𝓾𝓼𝓮𝓭 𝓼𝓱𝓪𝓻𝓮 𝓸𝓹𝓽𝓲𝓸𝓷.)","sharePage":"𝓢𝓱𝓪𝓻𝓮 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓬 𝓹𝓪𝓰𝓮","sharePageHelp":"𝓛𝓲𝓷𝓴 𝓸𝓻 𝓮𝓶𝓫𝓮𝓭 𝓪 𝓼𝓲𝓷𝓰𝓵𝓮 𝓹𝓪𝓰𝓮 𝓸𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽. 𝓤𝓼𝓮𝓯𝓾𝓵 𝓯𝓸𝓻 𝓱𝓲𝓰𝓱𝓵𝓲𝓰𝓱𝓽𝓲𝓷𝓰 𝓪 𝓹𝓪𝓰𝓮 𝓮𝔁𝓬𝓮𝓻𝓹𝓽.","shareNote":"𝓢𝓱𝓪𝓻𝓮 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓬 𝓷𝓸𝓽𝓮","shareNoteHelpHasNote":"𝓛𝓲𝓷𝓴 𝓸𝓻 𝓮𝓶𝓫𝓮𝓭 𝓪 𝓷𝓸𝓽𝓮 𝔀𝓲𝓽𝓱𝓲𝓷 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽. 𝓤𝓼𝓮𝓯𝓾𝓵 𝓯𝓸𝓻 𝓱𝓲𝓰𝓱𝓵𝓲𝓰𝓱𝓽𝓲𝓷𝓰 𝓪 𝓻𝓮𝓰𝓲𝓸𝓷 𝓸𝓯 𝓪 𝓹𝓪𝓰𝓮.","shareNoteHelpNoNote":"𝓞𝓷𝓬𝓮 𝔂𝓸𝓾 𝓪𝓭𝓭 𝓷𝓸𝓽𝓮𝓼 𝓽𝓸 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽, 𝓾𝓼𝓮 𝓽𝓱𝓲𝓼 𝓯𝓮𝓪𝓽𝓾𝓻𝓮 𝓽𝓸 𝓵𝓲𝓷𝓴 𝓸𝓻 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓮𝓶."},"dialogErrorDialog":{"errorOccurred":"𝓐𝓷 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭","unexpectedErrorOccurred":"𝓐𝓷 𝓾𝓷𝓮𝔁𝓹𝓮𝓬𝓽𝓮𝓭 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭","tryAgain":"𝓟𝓵𝓮𝓪𝓼𝓮 𝓽𝓻𝔂 𝓪𝓰𝓪𝓲𝓷 𝓵𝓪𝓽𝓮𝓻.","close":"𝓒𝓵𝓸𝓼𝓮","refresh":"𝓡𝓮𝓯𝓻𝓮𝓼𝓱"},"dialogNoteEmbedDialog":{"embedNote":"𝓔𝓶𝓫𝓮𝓭 𝓪 𝓷𝓸𝓽𝓮 𝓸𝓯 “{title}”","embedDesc":"𝓒𝓸𝓹𝔂 𝓽𝓱𝓮 𝓗𝓣𝓜𝓛 𝓬𝓸𝓭𝓮 𝓽𝓸 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓲𝓼 𝓷𝓸𝓽𝓮 𝔀𝓲𝓽𝓱𝓲𝓷 𝓪𝓷 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓸𝓻 𝓹𝓸𝓼𝓽:"},"dialogPageEmbedDialog":{"embedPage":"𝓔𝓶𝓫𝓮𝓭 𝓪 𝓹𝓪𝓰𝓮 𝓸𝓯 “{title}”","embedDesc":"𝓒𝓸𝓹𝔂 𝓽𝓱𝓮 𝓗𝓣𝓜𝓛 𝓬𝓸𝓭𝓮 𝓽𝓸 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓲𝓼 𝓹𝓪𝓰𝓮 𝔀𝓲𝓽𝓱𝓲𝓷 𝓪𝓷 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓸𝓻 𝓹𝓸𝓼𝓽:","selectPage":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓽𝓱𝓮 𝓹𝓪𝓰𝓮 𝓽𝓸 𝓮𝓶𝓫𝓮𝓭:","page":"𝓟𝓪𝓰𝓮 {n} (𝓬𝓾𝓻𝓻𝓮𝓷𝓽𝓵𝔂 𝓿𝓲𝓼𝓲𝓫𝓵𝓮)","otherPage":"𝓞𝓽𝓱𝓮𝓻 𝓹𝓪𝓰𝓮","enterPageNumber":"𝓔𝓷𝓽𝓮𝓻 𝓽𝓱𝓮 𝓹𝓪𝓰𝓮 𝓷𝓾𝓶𝓫𝓮𝓻 𝓽𝓸 𝓮𝓶𝓫𝓮𝓭:"},"dialogProjectAccessDialog":{"changeAccessFor":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓪𝓬𝓬𝓮𝓼𝓼 𝓯𝓸𝓻 {name}","selectAccess":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓪𝓷 𝓪𝓬𝓬𝓮𝓼𝓼 𝓵𝓮𝓿𝓮𝓵 𝓫𝓮𝓵𝓸𝔀 𝓯𝓸𝓻 {name} 𝓲𝓷 {title}","adminAccess":"𝓐𝓭𝓶𝓲𝓷 𝓐𝓬𝓬𝓮𝓼𝓼","editAccess":"𝓔𝓭𝓲𝓽 𝓐𝓬𝓬𝓮𝓼𝓼","viewAccess":"𝓥𝓲𝓮𝔀 𝓐𝓬𝓬𝓮𝓼𝓼","adminHelp":"𝓣𝓱𝓲𝓼 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻 𝓬𝓪𝓷 𝓮𝓭𝓲𝓽 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓪𝓷𝓭 𝓲𝓽𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼. 𝓣𝓱𝓮 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻 𝓬𝓪𝓷 𝓲𝓷𝓿𝓲𝓽𝓮 𝓾𝓼𝓮𝓻𝓼, 𝓭𝓮𝓵𝓮𝓽𝓮 𝓾𝓼𝓮𝓻𝓼, 𝓪𝓷𝓭 𝓻𝓮𝓶𝓸𝓿𝓮 𝓽𝓱𝓮 𝓹𝓻𝓸𝓳𝓮𝓬𝓽.","editHelp":"𝓣𝓱𝓲𝓼 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻 𝓬𝓪𝓷 𝓮𝓭𝓲𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓲𝓷 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓫𝓾𝓽 𝓬𝓪𝓷𝓷𝓸𝓽 𝓮𝓭𝓲𝓽 𝓽𝓱𝓮 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓲𝓽𝓼𝓮𝓵𝓯.","viewHelp":"𝓣𝓱𝓲𝓼 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻 𝓬𝓪𝓷 𝓿𝓲𝓮𝔀 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓲𝓷 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓫𝓾𝓽 𝓬𝓪𝓷𝓷𝓸𝓽 𝓮𝓭𝓲𝓽 𝓽𝓱𝓮𝓶 𝓸𝓻 𝓽𝓱𝓮 𝓹𝓻𝓸𝓳𝓮𝓬𝓽.","invalidAccess":"𝓐𝓬𝓬𝓮𝓼𝓼 𝓲𝓼 𝓪𝓵𝓻𝓮𝓪𝓭𝔂 𝓼𝓮𝓽 𝓽𝓸 {access}. 𝓢𝓮𝓵𝓮𝓬𝓽 𝓪 𝓭𝓲𝓯𝓯𝓮𝓻𝓮𝓷𝓽 𝓪𝓬𝓬𝓮𝓼𝓼 𝓵𝓮𝓿𝓮𝓵.","changeAccess":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓪𝓬𝓬𝓮𝓼𝓼"},"dialogOwnerDialog":{"selectUser":"𝓤𝓼𝓮𝓻 𝓶𝓾𝓼𝓽 𝓫𝓮 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭","selectOrg":"𝓞𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓶𝓾𝓼𝓽 𝓫𝓮 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭","changeOwner":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓸𝔀𝓷𝓮𝓻 𝓯𝓸𝓻 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","accessWarning":"𝓦𝓪𝓻𝓷𝓲𝓷𝓰: 𝓨𝓸𝓾 𝓶𝓪𝔂 𝓵𝓸𝓼𝓽 𝓪𝓬𝓬𝓮𝓼𝓼 𝓽𝓸 𝓽𝓱𝓮 𝓼𝓹𝓮𝓬𝓲𝓯𝓲𝓮𝓭 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}} 𝓪𝓼 𝓪 𝓻𝓮𝓼𝓾𝓵𝓽 𝓸𝓯 𝓬𝓱𝓪𝓷𝓰𝓲𝓷𝓰 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓸𝔀𝓷𝓮𝓻","user":"𝓤𝓼𝓮𝓻:","filterUsers":"𝓣𝔂𝓹𝓮 𝓽𝓸 𝓯𝓲𝓵𝓽𝓮𝓻 𝓾𝓼𝓮𝓻𝓼...","filterOrgs":"𝓣𝔂𝓹𝓮 𝓽𝓸 𝓯𝓲𝓵𝓽𝓮𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷𝓼..."},"dialogProjectDialog":{"confirmDelete":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓭𝓮𝓵𝓮𝓽𝓮","deleteProject":"𝓐𝓻𝓮 𝔂𝓸𝓾 𝓼𝓾𝓻𝓮 𝔂𝓸𝓾 𝔀𝓪𝓷𝓽 𝓽𝓸 𝓭𝓮𝓵𝓮𝓽𝓮 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 ({project})❓","editProject":"𝓔𝓭𝓲𝓽 𝓟𝓻𝓸𝓳𝓮𝓬𝓽","createProject":"𝓒𝓻𝓮𝓪𝓽𝓮 𝓝𝓮𝔀 𝓟𝓻𝓸𝓳𝓮𝓬𝓽","title":"𝓣𝓲𝓽𝓵𝓮...","projectDesc":"𝓟𝓻𝓸𝓳𝓮𝓬𝓽 𝓓𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷 (𝓸𝓹𝓽𝓲𝓸𝓷𝓪𝓵)","manageCollabs":"𝓜𝓪𝓷𝓪𝓰𝓮 𝓒𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓸𝓻𝓼","share":"𝓢𝓱𝓪𝓻𝓮 / 𝓔𝓶𝓫𝓮𝓭 𝓟𝓻𝓸𝓳𝓮𝓬𝓽","enterTitle":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓽𝓲𝓽𝓵𝓮","changeTitle":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓽𝓱𝓮 𝓽𝓲𝓽𝓵𝓮 𝓸𝓻 𝓭𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷"},"dialogProjectEmbedDialog":{"share":"𝓢𝓱𝓪𝓻𝓮 “{title}”","embedDesc":"𝓒𝓸𝓹𝔂 𝓽𝓱𝓮 𝓗𝓣𝓜𝓛 𝓬𝓸𝓭𝓮 𝓽𝓸 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓽𝓱𝓲𝓷 𝓪𝓷 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓸𝓻 𝓹𝓸𝓼𝓽:","invalid":"𝓘𝓷𝓿𝓪𝓵𝓲𝓭 𝓹𝓻𝓸𝓳𝓮𝓬𝓽","cannotEmbed":"𝓒𝓪𝓷𝓷𝓸𝓽 𝓮𝓶𝓫𝓮𝓭 𝓽𝓱𝓲𝓼 𝓹𝓻𝓸𝓳𝓮𝓬𝓽, 𝓪𝓼 𝓲𝓽 𝓭𝓸𝓮𝓼 𝓷𝓸𝓽 𝓪𝓹𝓹𝓮𝓪𝓻 𝓽𝓸 𝓮𝔁𝓲𝓼𝓽."},"htmlEditor":{"preview":"𝓟𝓻𝓮𝓿𝓲𝓮𝔀:"},"image":{"error":"𝓐𝓷 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭. 𝓣𝓻𝔂 𝓻𝓮𝓯𝓻𝓮𝓼𝓱𝓲𝓷𝓰 𝓽𝓱𝓮 𝓹𝓪𝓰𝓮"},"omniselect":{"filter":"𝓣𝔂𝓹𝓮 𝓽𝓸 𝓯𝓲𝓵𝓽𝓮𝓻 𝓵𝓪𝓷𝓰𝓾𝓪𝓰𝓮","noResults":"𝓝𝓸 𝓻𝓮𝓼𝓾𝓵𝓽𝓼. 𝓒𝓵𝓲𝓬𝓴 𝓽𝓸 𝓬𝓵𝓮𝓪𝓻 𝓯𝓲𝓵𝓽𝓮𝓻."},"shareOptions":{"errorText":"𝓐𝓷 𝓾𝓷𝓮𝔁𝓹𝓮𝓬𝓽𝓮𝓭 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭. 𝓟𝓵𝓮𝓪𝓼𝓮 𝓽𝓻𝔂 𝓪𝓰𝓪𝓲𝓷 𝓵𝓪𝓽𝓮𝓻.","copyHtml":"𝓒𝓸𝓹𝔂 𝓗𝓣𝓜𝓛 𝓬𝓸𝓭𝓮","addShortcode":"𝓐𝓭𝓭 𝓽𝓱𝓲𝓼 𝓼𝓱𝓸𝓻𝓽𝓬𝓸𝓭𝓮 𝓽𝓸 𝔂𝓸𝓾𝓻 𝓦𝓸𝓻𝓭𝓟𝓻𝓮𝓼𝓼 𝓬𝓸𝓷𝓽𝓮𝓷𝓽 —","pluginRequired":"𝓹𝓵𝓾𝓰𝓲𝓷 𝓻𝓮𝓺𝓾𝓲𝓻𝓮𝓭","copyShortcode":"𝓒𝓸𝓹𝔂 𝓼𝓱𝓸𝓻𝓽𝓬𝓸𝓭𝓮","copyUrl":"𝓒𝓸𝓹𝔂 𝓤𝓡𝓛"},"specialMessage":{"contactUs":"𝓒𝓸𝓷𝓽𝓪𝓬𝓽 𝓾𝓼 𝔀𝓲𝓽𝓱 𝓫𝓾𝓰 𝓻𝓮𝓹𝓸𝓻𝓽𝓼, 𝓺𝓾𝓮𝓼𝓽𝓲𝓸𝓷𝓼, 𝓪𝓷𝓭 𝓼𝓾𝓰𝓰𝓮𝓼𝓽𝓲𝓸𝓷𝓼."},"uploadOptions":{"documentLang":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓵𝓪𝓷𝓰𝓾𝓪𝓰𝓮:","forceOcr":"𝓕𝓸𝓻𝓬𝓮 𝓞𝓒𝓡:"},"actionBar":{"selectDocs":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓼𝓸𝓶𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓽𝓸 𝓻𝓮𝓿𝓮𝓪𝓵 𝓮𝓭𝓲𝓽 𝓪𝓬𝓽𝓲𝓸𝓷𝓼","noPerms":"𝓨𝓸𝓾 𝓭𝓸 𝓷𝓸𝓽 𝓱𝓪𝓿𝓮 𝓹𝓮𝓻𝓶𝓲𝓼𝓼𝓲𝓸𝓷 𝓽𝓸 𝓮𝓭𝓲𝓽 𝓪𝓵𝓵 𝓸𝓯 𝓽𝓱𝓮 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","editMenu":"𝓔𝓭𝓲𝓽","projectsMenu":"𝓟𝓻𝓸𝓳𝓮𝓬𝓽𝓼"},"authSection":{"help":"𝓗𝓮𝓵𝓹","language":"𝓛𝓪𝓷𝓰𝓾𝓪𝓰𝓮","tips":"𝓣𝓲𝓹𝓼 𝓪𝓷𝓭 𝓣𝓻𝓲𝓬𝓴𝓼","searchDocs":"𝓢𝓮𝓪𝓻𝓬𝓱 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓪𝓽𝓲𝓸𝓷","apiDocs":"𝓐𝓟𝓘 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓪𝓽𝓲𝓸𝓷","emailUs":"𝓔𝓶𝓪𝓲𝓵 𝓤𝓼","acctSettings":"𝓐𝓬𝓬𝓸𝓾𝓷𝓽 𝓢𝓮𝓽𝓽𝓲𝓷𝓰𝓼","signOut":"𝓢𝓲𝓰𝓷 𝓸𝓾𝓽","changeOrg":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","personalAcct":"𝓟𝓮𝓻𝓼𝓸𝓷𝓪𝓵 𝓐𝓬𝓬𝓸𝓾𝓷𝓽","signIn":"𝓢𝓲𝓰𝓷 𝓲𝓷"},"documents":{"yourDocuments":"𝓨𝓸𝓾𝓻 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","searchResults":"𝓢𝓮𝓪𝓻𝓬𝓱 𝓡𝓮𝓼𝓾𝓵𝓽𝓼","accessDocuments":"𝓨𝓸𝓾𝓻 {access}𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","nameDocuments":"{name}\'𝓼 {access}𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","allDocuments":"𝓐𝓵𝓵 {access}𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","mustBeVerified":"𝓨𝓸𝓾 𝓶𝓾𝓼𝓽 𝓫𝓮 𝓪 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝓳𝓸𝓾𝓻𝓷𝓪𝓵𝓲𝓼𝓽 𝓽𝓸 𝓾𝓹𝓵𝓸𝓪𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","upload":"𝓤𝓹𝓵𝓸𝓪𝓭","dropFile":"𝓓𝓻𝓸𝓹 𝓯𝓲𝓵𝓮 𝓽𝓸 𝓾𝓹𝓵𝓸𝓪𝓭"},"document":{"open":"𝓞𝓹𝓮𝓷","updating":"𝓤𝓹𝓭𝓪𝓽𝓲𝓷𝓰 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽...","processing":"𝓟𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰","processingError":"𝓐𝓷 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭 𝓽𝓻𝔂𝓲𝓷𝓰 𝓽𝓸 𝓹𝓻𝓸𝓬𝓮𝓼𝓼 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","remove":"𝓡𝓮𝓶𝓸𝓿𝓮","improper":"𝓨𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓪𝓼 𝓾𝓹𝓵𝓸𝓪𝓭𝓮𝓭 𝓲𝓶𝓹𝓻𝓸𝓹𝓮𝓻𝓵𝔂","project":"𝓟𝓻𝓸𝓳𝓮𝓬𝓽","totalMatchingPages":"{n} 𝓸𝓯 {m} 𝓹𝓪𝓰𝓮𝓼 𝓶𝓪𝓽𝓬𝓱𝓲𝓷𝓰 𝓽𝓱𝓮 𝓺𝓾𝓮𝓻𝔂","showAll":"𝓢𝓱𝓸𝔀 𝓪𝓵𝓵","matchingPages":"{n} 𝓹𝓪𝓰𝓮𝓼 𝓶𝓪𝓽𝓬𝓱𝓲𝓷𝓰 𝓽𝓱𝓮 𝓺𝓾𝓮𝓻𝔂","pageAbbrev":"𝓹.","pageCount":"{n, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}}","source":"𝓢𝓸𝓾𝓻𝓬𝓮"},"documentThumbnail":{"pages":"𝓹𝓪𝓰𝓮𝓼","loading":"𝓛𝓸𝓪𝓭𝓲𝓷𝓰 𝓹𝓻𝓸𝓰𝓻𝓮𝓼𝓼 𝓲𝓷𝓯𝓸𝓻𝓶𝓪𝓽𝓲𝓸𝓷..."},"mainContainer":{"error":"𝓔𝓻𝓻𝓸𝓻","errorMsg":"𝓦𝓮 𝓬𝓸𝓾𝓵𝓭 𝓷𝓸𝓽 𝓻𝓮𝓪𝓬𝓱 𝓽𝓱𝓮 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓼𝓮𝓻𝓿𝓮𝓻. 𝓟𝓵𝓮𝓪𝓼𝓮 𝓽𝓻𝔂 𝓻𝓮𝓯𝓻𝓮𝓼𝓱𝓲𝓷𝓰 𝓽𝓱𝓮 𝓹𝓪𝓰𝓮 𝓵𝓪𝓽𝓮𝓻.","refresh":"𝓡𝓮𝓯𝓻𝓮𝓼𝓱"},"editMenu":{"editDocInfo":"𝓔𝓭𝓲𝓽 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓘𝓷𝓯𝓸𝓻𝓶𝓪𝓽𝓲𝓸𝓷","changeAccess":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓐𝓬𝓬𝓮𝓼𝓼","editDocData":"𝓔𝓭𝓲𝓽 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓓𝓪𝓽𝓪","cancelProcessing":"𝓒𝓪𝓷𝓬𝓮𝓵 𝓟𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰","forceReprocess":"𝓕𝓸𝓻𝓬𝓮 𝓡𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼","entities":"𝓔𝓷𝓽𝓲𝓽𝓲𝓮𝓼 𝓑𝓔𝓣𝓐","changeOwner":"𝓒𝓱𝓪𝓷𝓰𝓮 𝓞𝔀𝓷𝓮𝓻","delete":"𝓓𝓮𝓵𝓮𝓽𝓮","diagnosticInfo":"𝓓𝓲𝓪𝓰𝓷𝓸𝓼𝓽𝓲𝓬 𝓘𝓷𝓯𝓸"},"metaFields":{"defaultFieldInvalidText":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓪𝓵𝓻𝓮𝓪𝓭𝔂 𝓱𝓪𝓼 𝓽𝓱𝓲𝓼 {fieldName}","titleFieldTitle":"𝓣𝓲𝓽𝓵𝓮","titleFieldName":"𝓷𝓪𝓶𝓮","titleFieldNameUppercase":"𝓝𝓪𝓶𝓮","titleFieldHeader":"𝓡𝓮𝓷𝓪𝓶𝓮 {n, plural, one {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","titleFieldDescription":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓷𝓪𝓶𝓮 𝓫𝓮𝓵𝓸𝔀 𝓯𝓸𝓻 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","titleFieldButton":"𝓡𝓮𝓷𝓪𝓶𝓮","titleFieldInvalidSameName":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓪𝓵𝓻𝓮𝓪𝓭𝔂 𝓱𝓪𝓼 𝓽𝓱𝓲𝓼 𝓷𝓪𝓶𝓮","titleFieldInvalidEmptyName":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓿𝓪𝓵𝓲𝓭 𝓷𝓪𝓶𝓮","sourceFieldTitle":"𝓢𝓸𝓾𝓻𝓬𝓮","sourceFieldName":"𝓼𝓸𝓾𝓻𝓬𝓮","sourceFieldNameUppercase":"𝓢𝓸𝓾𝓻𝓬𝓮","sourceFieldHeader":"𝓔𝓭𝓲𝓽 𝓼𝓸𝓾𝓻𝓬𝓮 𝓯𝓸𝓻 {n, plural, one {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","sourceFieldDescription":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓼𝓸𝓾𝓻𝓬𝓮 𝓫𝓮𝓵𝓸𝔀 𝓯𝓸𝓻 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","sourceFieldButton":"𝓔𝓭𝓲𝓽","descriptionFieldTitle":"𝓓𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷","descriptionFieldName":"𝓭𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷","descriptionFieldNameUppercase":"𝓓𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷","descriptionFieldHeader":"𝓔𝓭𝓲𝓽 𝓭𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷 𝓯𝓸𝓻 {n, plural, one {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","descriptionFieldDescription":"𝓔𝓷𝓽𝓮𝓻 𝓽𝓱𝓮 𝓭𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷 𝓫𝓮𝓵𝓸𝔀 𝓯𝓸𝓻 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","descriptionFieldButton":"𝓔𝓭𝓲𝓽","relatedArticleFieldTitle":"𝓡𝓮𝓵𝓪𝓽𝓮𝓭 𝓐𝓻𝓽𝓲𝓬𝓵𝓮 𝓤𝓡𝓛","relatedArticleFieldName":"𝓻𝓮𝓵𝓪𝓽𝓮𝓭 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓤𝓡𝓛","relatedArticleFieldNameUppercase":"𝓡𝓮𝓵𝓪𝓽𝓮𝓭 𝓐𝓻𝓽𝓲𝓬𝓵𝓮 𝓤𝓡𝓛","relatedArticleFieldHeader":"𝓔𝓭𝓲𝓽 𝓽𝓱𝓮 𝓻𝓮𝓵𝓪𝓽𝓮𝓭 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓤𝓡𝓛 𝓯𝓸𝓻 {n, plural, one {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","relatedArticleFieldDescription":"𝓔𝓷𝓽𝓮𝓻 𝓽𝓱𝓮 𝓻𝓮𝓵𝓪𝓽𝓮𝓭 𝓪𝓻𝓽𝓲𝓬𝓵𝓮 𝓤𝓡𝓛 𝓫𝓮𝓵𝓸𝔀 𝓯𝓸𝓻 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","relatedArticleFieldButton":"𝓔𝓭𝓲𝓽","publishedUrlFieldTitle":"𝓟𝓾𝓫𝓵𝓲𝓼𝓱𝓮𝓭 𝓤𝓡𝓛","publishedUrlFieldName":"𝓹𝓾𝓫𝓵𝓲𝓼𝓱𝓮𝓭 𝓤𝓡𝓛","publishedUrlFieldNameUppercase":"𝓟𝓾𝓫𝓵𝓲𝓼𝓱𝓮𝓭 𝓤𝓡𝓛","publishedUrlFieldHeader":"𝓔𝓭𝓲𝓽 𝓽𝓱𝓮 𝓹𝓾𝓫𝓵𝓲𝓼𝓱𝓮𝓭 𝓤𝓡𝓛 𝓯𝓸𝓻 {n, plural, one {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","publishedUrlFieldDescription":"𝓔𝓷𝓽𝓮𝓻 𝓽𝓱𝓮 𝓹𝓾𝓫𝓵𝓲𝓼𝓱𝓮𝓭 𝓤𝓡𝓛 𝓫𝓮𝓵𝓸𝔀 𝓯𝓸𝓻 𝓽𝓱𝓮 {n, plural, one {𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓼𝓮𝓵𝓮𝓬𝓽𝓮𝓭 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}","publishedUrlFieldButton":"𝓔𝓭𝓲𝓽"},"projectsMenu":{"newProject":"+ 𝓝𝓮𝔀 𝓟𝓻𝓸𝓳𝓮𝓬𝓽","projMembership":"𝓟𝓻𝓸𝓳𝓮𝓬𝓽 𝓜𝓮𝓶𝓫𝓮𝓻𝓼𝓱𝓲𝓹","selectDocs":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓽𝓸 𝓹𝓵𝓪𝓬𝓮 𝓽𝓱𝓮𝓶 𝓲𝓷 𝓹𝓻𝓸𝓳𝓮𝓬𝓽𝓼","createProj":"𝓒𝓻𝓮𝓪𝓽𝓮 𝓪 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓽𝓸 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓮 𝓪𝓷𝓭 𝓼𝓱𝓪𝓻𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼"},"noDocuments":{"noSearchResults":"𝓝𝓸 𝓼𝓮𝓪𝓻𝓬𝓱 𝓻𝓮𝓼𝓾𝓵𝓽𝓼","queryNoResults":"𝓨𝓸𝓾𝓻 𝓼𝓮𝓪𝓻𝓬𝓱 𝓺𝓾𝓮𝓻𝔂 𝓻𝓮𝓽𝓾𝓻𝓷𝓮𝓭 𝓷𝓸 𝓻𝓮𝓼𝓾𝓵𝓽𝓼. 𝓣𝓻𝔂 𝓪𝓰𝓪𝓲𝓷 𝔀𝓲𝓽𝓱 𝓪 𝓫𝓻𝓸𝓪𝓭𝓮𝓻 𝓼𝓮𝓪𝓻𝓬𝓱 𝓺𝓾𝓮𝓻𝔂.","welcome":"𝓦𝓮𝓵𝓬𝓸𝓶𝓮 𝓽𝓸 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭❗","verify1":"𝓝𝓸𝓽𝓮 𝓽𝓱𝓪𝓽 𝓬𝓾𝓻𝓻𝓮𝓷𝓽𝓵𝔂 𝔂𝓸𝓾𝓻 𝓪𝓬𝓬𝓸𝓾𝓷𝓽 𝓲𝓼 𝓷𝓸𝓽 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝓽𝓸 𝓾𝓹𝓵𝓸𝓪𝓭. 𝓨𝓸𝓾 𝓬𝓪𝓷 𝓼𝓮𝓪𝓻𝓬𝓱 𝓽𝓱𝓻𝓸𝓾𝓰𝓱 𝓽𝓱𝓮 𝓹𝓾𝓫𝓵𝓲𝓬 𝓻𝓮𝓹𝓸𝓼𝓲𝓽𝓸𝓻𝔂, 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝔂𝓸𝓾\'𝓻𝓮 𝓲𝓷𝓽𝓮𝓻𝓮𝓼𝓽𝓮𝓭 𝓲𝓷 𝓲𝓷𝓽𝓸 𝓹𝓻𝓸𝓳𝓮𝓬𝓽𝓼, 𝓵𝓮𝓪𝓿𝓮 𝓹𝓻𝓲𝓿𝓪𝓽𝓮 𝓷𝓸𝓽𝓮𝓼, 𝓪𝓷𝓭 𝓬𝓸𝓵𝓵𝓪𝓫𝓸𝓻𝓪𝓽𝓮 𝓸𝓷 𝓮𝓭𝓲𝓽𝓲𝓷𝓰 𝓪𝓷𝓭 𝓪𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓷𝓰 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓸𝓽𝓱𝓮𝓻 𝓾𝓼𝓮𝓻𝓼 𝓲𝓷𝓿𝓲𝓽𝓮 𝔂𝓸𝓾 𝓽𝓸.","verify2":"𝓘𝓯 𝔂𝓸𝓾’𝓭 𝓵𝓲𝓴𝓮 𝓽𝓸 𝓾𝓹𝓵𝓸𝓪𝓭 𝓸𝓻 𝓹𝓾𝓫𝓵𝓲𝓼𝓱 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓪𝓷𝓭 𝔂𝓸𝓾\'𝓻𝓮 𝓪 𝔀𝓸𝓻𝓴𝓲𝓷𝓰 𝓳𝓸𝓾𝓻𝓷𝓪𝓵𝓲𝓼𝓽 𝓸𝓻 𝓸𝓽𝓱𝓮𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓲𝓷𝓽𝓮𝓻𝓮𝓼𝓽𝓮𝓭 𝓲𝓷 𝓹𝓾𝓫𝓵𝓲𝓼𝓱𝓲𝓷𝓰 𝓹𝓻𝓲𝓶𝓪𝓻𝔂 𝓼𝓸𝓾𝓻𝓬𝓮 𝓶𝓪𝓽𝓮𝓻𝓲𝓪𝓵𝓼 𝓲𝓷 𝓽𝓱𝓮 𝓹𝓾𝓫𝓵𝓲𝓬 𝓲𝓷𝓽𝓮𝓻𝓮𝓼𝓽, 𝔂𝓸𝓾\'𝓵𝓵 𝓷𝓮𝓮𝓭 𝓽𝓸 𝓱𝓪𝓿𝓮 𝔂𝓸𝓾𝓻 𝓪𝓬𝓬𝓸𝓾𝓷𝓽 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝓸𝓻 𝓪𝓭𝓭𝓮𝓭 𝓽𝓸 𝓪 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷. 𝓣𝓱𝓲𝓼 𝓲𝓼 𝓪 𝓼𝓲𝓶𝓹𝓵𝓮 𝓹𝓻𝓸𝓬𝓮𝓼𝓼:","verify3":"𝓕𝓲𝓻𝓼𝓽, 𝓼𝓮𝓮 𝓲𝓯 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓪𝓵𝓻𝓮𝓪𝓭𝔂 𝓮𝔁𝓲𝓼𝓽𝓼 𝓪𝓷𝓭, 𝓲𝓯 𝔂𝓸𝓾 𝓯𝓲𝓷𝓭 𝓲𝓽, 𝓬𝓵𝓲𝓬𝓴 \\"𝓡𝓮𝓺𝓾𝓮𝓼𝓽 𝓽𝓸 𝓙𝓸𝓲𝓷\\" 𝓸𝓷 𝓲𝓽𝓼 𝓹𝓪𝓰𝓮.","verify4":"𝓘𝓯 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷 𝓱𝓪𝓼 𝓷𝓸𝓽 𝓫𝓮𝓮𝓷 𝓿𝓮𝓻𝓲𝓯𝓲𝓮𝓭 𝔂𝓮𝓽, 𝓸𝓻 𝓲𝓯 𝔂𝓸𝓾\'𝓻𝓮 𝓪 𝓯𝓻𝓮𝓮𝓵𝓪𝓷𝓬𝓮𝓻, 𝓻𝓮𝓺𝓾𝓮𝓼𝓽 𝓿𝓮𝓻𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷 𝓱𝓮𝓻𝓮. 𝓡𝓮𝓺𝓾𝓮𝓼𝓽𝓼 𝓾𝓼𝓾𝓪𝓵𝓵𝔂 𝓽𝓪𝓴𝓮 𝓽𝔀𝓸 𝓫𝓾𝓼𝓲𝓷𝓮𝓼𝓼 𝓭𝓪𝔂𝓼 𝓽𝓸 𝓹𝓻𝓸𝓬𝓮𝓼𝓼.","uploadFirst":"𝓤𝓹𝓵𝓸𝓪𝓭 𝔂𝓸𝓾𝓻 𝓯𝓲𝓻𝓼𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","upload1":"𝓤𝓹𝓵𝓸𝓪𝓭 𝓪 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓯𝓲𝓵𝓮 𝓽𝓸 𝓰𝓮𝓽 𝓼𝓽𝓪𝓻𝓽𝓮𝓭 𝓾𝓼𝓲𝓷𝓰 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭. 𝓨𝓸𝓾 𝓬𝓪𝓷 𝓭𝓻𝓪𝓰 𝓽𝓱𝓮 𝓯𝓲𝓵𝓮 𝓲𝓷𝓽𝓸 𝓽𝓱𝓲𝓼 𝔀𝓲𝓷𝓭𝓸𝔀, 𝓸𝓻 𝓬𝓵𝓲𝓬𝓴 𝓸𝓷 𝓽𝓱𝓮 𝓫𝓵𝓾𝓮 “𝓤𝓹𝓵𝓸𝓪𝓭” 𝓫𝓾𝓽𝓽𝓸𝓷 𝓪𝓫𝓸𝓿𝓮.","upload2":"𝓞𝓷𝓬𝓮 𝔂𝓸𝓾 𝓾𝓹𝓵𝓸𝓪𝓭 𝓪 𝓯𝓲𝓵𝓮, 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝔀𝓲𝓵𝓵 𝓹𝓻𝓸𝓬𝓮𝓼𝓼 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓪𝓷𝓭 𝓮𝔁𝓽𝓻𝓪𝓬𝓽 𝓲𝓽𝓼 𝓬𝓸𝓷𝓽𝓮𝓷𝓽𝓼. 𝓘𝓽 𝓶𝓪𝔂 𝓽𝓪𝓴𝓮 𝓪 𝓯𝓮𝔀 𝓶𝓲𝓷𝓾𝓽𝓮𝓼 𝓯𝓸𝓻 𝓽𝓱𝓲𝓼 𝓽𝓸 𝓬𝓸𝓶𝓹𝓵𝓮𝓽𝓮, 𝓫𝓾𝓽 𝓸𝓷𝓬𝓮 𝓲𝓽’𝓼 𝓭𝓸𝓷𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓸𝓹𝓽𝓲𝓶𝓲𝔃𝓮𝓭 𝓯𝓸𝓻 𝓪𝓷𝓪𝓵𝔂𝓼𝓲𝓼 𝓪𝓷𝓭 𝓼𝓱𝓪𝓻𝓲𝓷𝓰 𝓸𝓷 𝓽𝓱𝓮 𝔀𝓮𝓫."},"paginator":{"of":"𝓸𝓯","document":"{n, plural, one {𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}"},"processingBar":{"doneProcessing":"𝓓𝓸𝓷𝓮 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰","processingDocuments":"𝓟𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰 {n, plural, one {𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽} other {# 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼}}"},"searchBar":{"tips":"𝓢𝓮𝓪𝓻𝓬𝓱 𝓽𝓲𝓹𝓼: 𝓪𝓭𝓭 𝓯𝓲𝓵𝓽𝓮𝓻𝓼 𝓫𝔂 𝓽𝔂𝓹𝓲𝓷𝓰 𝓾𝓼𝓮𝓻:, 𝓹𝓻𝓸𝓳𝓮𝓬𝓽:, 𝓸𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷:, 𝓮𝓽𝓬. 𝓤𝓼𝓮 𝓼𝓸𝓻𝓽: 𝓽𝓸 𝓸𝓻𝓭𝓮𝓻 𝓻𝓮𝓼𝓾𝓵𝓽𝓼.","learnMore":"𝓛𝓮𝓪𝓻𝓷 𝓶𝓸𝓻𝓮","search":"𝓢𝓮𝓪𝓻𝓬𝓱"},"searchLink":{"search":"𝓢𝓮𝓪𝓻𝓬𝓱 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓬𝓸𝓵𝓵𝓮𝓬𝓽𝓲𝓸𝓷"},"projects":{"header":"𝓟𝓻𝓸𝓳𝓮𝓬𝓽𝓼","allDocuments":"𝓐𝓵𝓵 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","yourDocuments":"𝓨𝓸𝓾𝓻 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","yourPubDocuments":"𝓨𝓸𝓾𝓻 𝓟𝓾𝓫𝓵𝓲𝓬 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","orgDocuments":"{name}’𝓼 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼","newProject":"+ 𝓝𝓮𝔀 𝓟𝓻𝓸𝓳𝓮𝓬𝓽","createProject":"𝓒𝓻𝓮𝓪𝓽𝓮 𝔂𝓸𝓾𝓻 𝓯𝓲𝓻𝓼𝓽 𝓹𝓻𝓸𝓳𝓮𝓬𝓽 𝓫𝔂 𝓬𝓵𝓲𝓬𝓴𝓲𝓷𝓰 “𝓝𝓮𝔀 𝓟𝓻𝓸𝓳𝓮𝓬𝓽” 𝓪𝓫𝓸𝓿𝓮."},"uploadDialog":{"docUpload":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓤𝓹𝓵𝓸𝓪𝓭","docUploadProj":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓤𝓹𝓵𝓸𝓪𝓭 𝓽𝓸 {title}","beginUpload":"𝓑𝓮𝓰𝓲𝓷 𝓾𝓹𝓵𝓸𝓪𝓭","pdfSizeWarning":"𝓨𝓸𝓾 𝓬𝓪𝓷 𝓸𝓷𝓵𝔂 𝓾𝓹𝓵𝓸𝓪𝓭 𝓟𝓓𝓕 𝓯𝓲𝓵𝓮𝓼 𝓾𝓷𝓭𝓮𝓻 {size}.","nonPdfSizeWarning":"𝓨𝓸𝓾 𝓬𝓪𝓷 𝓸𝓷𝓵𝔂 𝓾𝓹𝓵𝓸𝓪𝓭 𝓷𝓸𝓷-𝓟𝓓𝓕 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓯𝓲𝓵𝓮𝓼 𝓾𝓷𝓭𝓮𝓻 {size}.","fileReady":"{n, plural, one {𝓯𝓲𝓵𝓮} other {𝓯𝓲𝓵𝓮𝓼}} 𝓻𝓮𝓪𝓭𝔂 𝓽𝓸 𝓾𝓹𝓵𝓸𝓪𝓭","fileLimitWarning":"𝓨𝓸𝓾 𝓬𝓪𝓷 𝓸𝓷𝓵𝔂 𝓾𝓹𝓵𝓸𝓪𝓭 {limit} 𝓯𝓲𝓵𝓮𝓼 𝓪𝓽 𝓸𝓷𝓬𝓮.","moreOptions":"𝓜𝓸𝓻𝓮 𝓸𝓹𝓽𝓲𝓸𝓷𝓼","selectFiles":"+ 𝓢𝓮𝓵𝓮𝓬𝓽 𝓯𝓲𝓵𝓮𝓼","dragDrop":"𝓓𝓻𝓪𝓰 𝓪𝓷𝓭 𝓭𝓻𝓸𝓹 𝓯𝓲𝓵𝓮𝓼 𝓱𝓮𝓻𝓮","publicMsg":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓹𝓾𝓫𝓵𝓲𝓬𝓵𝔂 𝓿𝓲𝓼𝓲𝓫𝓵𝓮.","collabMsg":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝔂𝓸𝓾𝓻 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷.","privateMsg":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝔂𝓸𝓾 𝓪𝓵𝓸𝓷𝓮.","collabName":"𝓞𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","submitting":"𝓐𝓵𝓶𝓸𝓼𝓽 𝓭𝓸𝓷𝓮... 𝓼𝓾𝓫𝓶𝓲𝓽𝓽𝓲𝓷𝓰 𝓾𝓹𝓵𝓸𝓪𝓭𝓮𝓭 𝓯𝓲𝓵𝓮𝓼 𝓯𝓸𝓻 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰 ({percent})","uploading":"𝓤𝓹𝓵𝓸𝓪𝓭𝓲𝓷𝓰 ... ({uploaded}/{length})","gettingInfo":"𝓖𝓮𝓽𝓽𝓲𝓷𝓰 𝓾𝓹𝓵𝓸𝓪𝓭 𝓲𝓷𝓯𝓸𝓻𝓶𝓪𝓽𝓲𝓸𝓷 ({percent})","pleaseLeaveOpen":"𝓟𝓵𝓮𝓪𝓼𝓮 𝓵𝓮𝓪𝓿𝓮 𝓽𝓱𝓲𝓼 𝓹𝓪𝓰𝓮 𝓸𝓹𝓮𝓷 𝔀𝓱𝓲𝓵𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼 𝓾𝓹𝓵𝓸𝓪𝓭. 𝓣𝓱𝓲𝓼 𝓭𝓲𝓪𝓵𝓸𝓰 𝔀𝓲𝓵𝓵 𝓪𝓾𝓽𝓸𝓶𝓪𝓽𝓲𝓬𝓪𝓵𝓵𝔂 𝓬𝓵𝓸𝓼𝓮 𝔀𝓱𝓮𝓷 𝓽𝓱𝓮𝔂 𝓱𝓪𝓿𝓮 𝓯𝓲𝓷𝓲𝓼𝓱𝓮𝓭 𝓾𝓹𝓵𝓸𝓪𝓭𝓲𝓷𝓰.","errorHeading":"𝓔𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭 𝔀𝓱𝓲𝓵𝓮 𝓾𝓹𝓵𝓸𝓪𝓭𝓲𝓷𝓰","errorMsg":"𝓦𝓮 𝓯𝓪𝓲𝓵𝓮𝓭 𝓽𝓸 {errorMessage}. 𝓟𝓵𝓮𝓪𝓼𝓮 𝓽𝓻𝔂 𝓪𝓰𝓪𝓲𝓷 𝓵𝓪𝓽𝓮𝓻.","editDocInfo":"𝓔𝓭𝓲𝓽 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓷𝓯𝓸𝓻𝓶𝓪𝓽𝓲𝓸𝓷:","untitled":"𝓤𝓷𝓽𝓲𝓽𝓵𝓮𝓭","uploadFiles":"𝓤𝓹𝓵𝓸𝓪𝓭 𝓪𝓭𝓭𝓲𝓽𝓲𝓸𝓷𝓪𝓵 𝓯𝓲𝓵𝓮𝓼","selectMore":"+ 𝓢𝓮𝓵𝓮𝓬𝓽 𝓶𝓸𝓻𝓮 𝓯𝓲𝓵𝓮𝓼","dragDropMore":"𝓓𝓻𝓪𝓰 𝓪𝓷𝓭 𝓭𝓻𝓸𝓹 𝓪𝓭𝓭𝓲𝓽𝓲𝓸𝓷𝓪𝓵 𝓯𝓲𝓵𝓮𝓼 𝓱𝓮𝓻𝓮"},"embedNote":{"viewTheNote":"𝓥𝓲𝓮𝔀 𝓽𝓱𝓮 𝓷𝓸𝓽𝓮 ‘{title}‘ 𝓲𝓷 𝓲𝓽𝓼 𝓸𝓻𝓲𝓰𝓲𝓷𝓪𝓵 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓬𝓸𝓷𝓽𝓮𝔁𝓽 𝓸𝓷 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓲𝓷 𝓪 𝓷𝓮𝔀 𝔀𝓲𝓷𝓭𝓸𝔀 𝓸𝓻 𝓽𝓪𝓫","viewDoc":"𝓥𝓲𝓮𝔀 𝓽𝓱𝓮 𝓮𝓷𝓽𝓲𝓻𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓽𝓱 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭"},"embedPage":{"viewDoc":"𝓥𝓲𝓮𝔀 𝓮𝓷𝓽𝓲𝓻𝓮 {title} 𝓸𝓷 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓲𝓷 𝓷𝓮𝔀 𝔀𝓲𝓷𝓭𝓸𝔀 𝓸𝓻 𝓽𝓪𝓫","pageOf":"𝓟𝓪𝓰𝓮 {page} 𝓸𝓯 {title}","gotoDocCloud":"𝓖𝓸 𝓽𝓸 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓲𝓷 𝓷𝓮𝔀 𝔀𝓲𝓷𝓭𝓸𝔀 𝓸𝓻 𝓽𝓪𝓫"},"entities":{"back":"𝓑𝓪𝓬𝓴","page":"𝓟𝓪𝓰𝓮","of":"𝓸𝓯","totalEntityResult":"{n, plural, one {# 𝓽𝓸𝓽𝓪𝓵 𝓮𝓷𝓽𝓲𝓽𝔂 𝓻𝓮𝓼𝓾𝓵𝓽} other {# 𝓽𝓸𝓽𝓪𝓵 𝓮𝓷𝓽𝓲𝓽𝔂 𝓻𝓮𝓼𝓾𝓵𝓽𝓼}} ","filter":"𝓕𝓲𝓵𝓽𝓮𝓻","applyFilters":"𝓐𝓹𝓹𝓵𝔂 𝓯𝓲𝓵𝓽𝓮𝓻𝓼","kind":"𝓚𝓲𝓷𝓭","clear":"𝓒𝓵𝓮𝓪𝓻","person":"𝓟𝓮𝓻𝓼𝓸𝓷","org":"𝓞𝓻𝓰𝓪𝓷𝓲𝔃𝓪𝓽𝓲𝓸𝓷","location":"𝓛𝓸𝓬𝓪𝓽𝓲𝓸𝓷","event":"𝓔𝓿𝓮𝓷𝓽","workOfArt":"𝓦𝓸𝓻𝓴 𝓸𝓯 𝓐𝓻𝓽","consumerGood":"𝓒𝓸𝓷𝓼𝓾𝓶𝓮𝓻 𝓖𝓸𝓸𝓭","address":"𝓐𝓭𝓭𝓻𝓮𝓼𝓼","date":"𝓓𝓪𝓽𝓮","number":"𝓝𝓾𝓶𝓫𝓮𝓻","phoneNumber":"𝓟𝓱𝓸𝓷𝓮 𝓝𝓾𝓶𝓫𝓮𝓻","price":"𝓟𝓻𝓲𝓬𝓮","unknown":"𝓤𝓷𝓴𝓷𝓸𝔀𝓷","other":"𝓞𝓽𝓱𝓮𝓻","occurrences":"𝓞𝓬𝓬𝓾𝓻𝓻𝓮𝓷𝓬𝓮𝓼","proper":"𝓟𝓻𝓸𝓹𝓮𝓻","common":"𝓒𝓸𝓶𝓶𝓸𝓷","advanced":"𝓐𝓭𝓿𝓪𝓷𝓬𝓮𝓭","relevanceThreshold":"𝓡𝓮𝓵𝓮𝓿𝓪𝓷𝓬𝓮 𝓽𝓱𝓻𝓮𝓼𝓱𝓸𝓵𝓭:","knowledgeGraph":"𝓚𝓷𝓸𝔀𝓵𝓮𝓭𝓰𝓮 𝓰𝓻𝓪𝓹𝓱:","hasKG":"𝓗𝓪𝓼 𝓪 𝓴𝓷𝓸𝔀𝓵𝓮𝓭𝓰𝓮 𝓰𝓻𝓪𝓹𝓱 𝓘𝓓","noKG":"𝓓𝓸𝓮𝓼 𝓷𝓸𝓽 𝓱𝓪𝓿𝓮 𝓪 𝓴𝓷𝓸𝔀𝓵𝓮𝓭𝓰𝓮 𝓰𝓻𝓪𝓹𝓱 𝓘𝓓","wikiUrl":"𝓦𝓲𝓴𝓲𝓹𝓮𝓭𝓲𝓪 𝓤𝓡𝓛:","hasWiki":"𝓗𝓪𝓼 𝓪 𝓦𝓲𝓴𝓲𝓹𝓮𝓭𝓲𝓪 𝓤𝓡𝓛","noWiki":"𝓓𝓸𝓮𝓼 𝓷𝓸𝓽 𝓱𝓪𝓿𝓮 𝓪 𝓦𝓲𝓴𝓲𝓹𝓮𝓭𝓲𝓪 𝓤𝓡𝓛","occurrence":"{n, plural, zero {} one {# 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓷𝓬𝓮} other {# 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓷𝓬𝓮𝓼}}","wikipedia":"𝓦𝓲𝓴𝓲𝓹𝓮𝓭𝓲𝓪","entityExtraction":"𝓔𝓷𝓽𝓲𝓽𝔂 𝓮𝔁𝓽𝓻𝓪𝓬𝓽𝓲𝓸𝓷 𝓯𝓸𝓻 “{title}”","extractingEntities":"𝓔𝔁𝓽𝓻𝓪𝓬𝓽𝓲𝓷𝓰 𝓮𝓷𝓽𝓲𝓽𝓲𝓮𝓼...","welcome":"𝓦𝓮𝓵𝓬𝓸𝓶𝓮 𝓽𝓸 𝓮𝓷𝓽𝓲𝓽𝔂 𝓮𝔁𝓽𝓻𝓪𝓬𝓽𝓲𝓸𝓷❗ 𝓣𝓱𝓲𝓼 𝓯𝓮𝓪𝓽𝓾𝓻𝓮 𝓲𝓼 𝓿𝓮𝓻𝔂 𝓶𝓾𝓬𝓱 𝓲𝓷 𝓹𝓻𝓸𝓰𝓻𝓮𝓼𝓼 𝓫𝓾𝓽 𝔀𝓮 𝔀𝓪𝓷𝓽 𝓲𝓽 𝓲𝓷 𝔂𝓸𝓾𝓻 𝓱𝓪𝓷𝓭𝓼 𝓮𝓪𝓻𝓵𝔂 𝓽𝓸 𝔀𝓮𝓵𝓬𝓸𝓶𝓮 𝓪𝓷𝔂 𝓯𝓮𝓮𝓭𝓫𝓪𝓬𝓴 𝔂𝓸𝓾 𝓶𝓲𝓰𝓱𝓽 𝓱𝓪𝓿𝓮.","manual":"𝓡𝓲𝓰𝓱𝓽 𝓷𝓸𝔀 𝓽𝓱𝓮 𝓹𝓻𝓸𝓬𝓮𝓼𝓼 𝓯𝓸𝓻 𝓮𝔁𝓽𝓻𝓪𝓬𝓽𝓲𝓷𝓰 𝓮𝓷𝓽𝓲𝓽𝓲𝓮𝓼 𝓲𝓼 𝓶𝓪𝓷𝓾𝓪𝓵. 𝓣𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓱𝓪𝓼 𝓷𝓸𝓽 𝓱𝓪𝓭 𝓮𝓷𝓽𝓲𝓽𝓲𝓮𝓼 𝓮𝔁𝓽𝓻𝓪𝓬𝓽𝓮𝓭 𝔂𝓮𝓽, 𝓼𝓸 𝓬𝓵𝓲𝓬𝓴 𝓫𝓮𝓵𝓸𝔀 𝓽𝓸 𝓰𝓮𝓽 𝓼𝓽𝓪𝓻𝓽𝓮𝓭.","error":"𝓐𝓷 𝓾𝓷𝓮𝔁𝓹𝓮𝓬𝓽𝓮𝓭 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭","extract":"𝓔𝔁𝓽𝓻𝓪𝓬𝓽 𝓮𝓷𝓽𝓲𝓽𝓲𝓮𝓼","noEntities":"𝓣𝓱𝓮𝓻𝓮 𝓪𝓻𝓮 𝓷𝓸 𝓮𝓷𝓽𝓲𝓽𝓲𝓮𝓼. 𝓣𝓱𝓲𝓼 𝓬𝓸𝓾𝓵𝓭 𝓱𝓪𝓹𝓹𝓮𝓷 𝓲𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓭𝓸𝓮𝓼𝓷’𝓽 𝓱𝓪𝓿𝓮 𝓽𝓮𝔁𝓽, 𝓲𝓼 𝓷𝓸𝓷-𝓔𝓷𝓰𝓵𝓲𝓼𝓱 (𝓸𝓷𝓵𝔂 𝓔𝓷𝓰𝓵𝓲𝓼𝓱 𝓲𝓼 𝓼𝓾𝓹𝓹𝓸𝓻𝓽𝓮𝓭 𝓯𝓸𝓻 𝓷𝓸𝔀), 𝓸𝓻 𝓼𝓸𝓶𝓮 𝓮𝓻𝓻𝓸𝓻 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓭.","starting":"𝓢𝓽𝓪𝓻𝓽𝓲𝓷𝓰 𝓮𝔁𝓽𝓪𝓬𝓽𝓲𝓸𝓷..."},"home":{"about":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓒𝓵𝓸𝓾𝓭 𝓲𝓼 𝓪𝓷 𝓪𝓵𝓵-𝓲𝓷-𝓸𝓷𝓮 𝓹𝓵𝓪𝓽𝓯𝓸𝓻𝓶 𝓯𝓸𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼: 𝓾𝓹𝓵𝓸𝓪𝓭, 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓮, 𝓪𝓷𝓪𝓵𝔂𝔃𝓮, 𝓪𝓷𝓷𝓸𝓽𝓪𝓽𝓮, 𝓼𝓮𝓪𝓻𝓬𝓱, 𝓪𝓷𝓭 𝓮𝓶𝓫𝓮𝓭.","viewPublicDocs":"𝓥𝓲𝓮𝔀 𝓹𝓾𝓫𝓵𝓲𝓬 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽𝓼"},"annotation":{"title":"𝓐𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓸𝓷 𝓣𝓲𝓽𝓵𝓮","description":"𝓐𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓸𝓷 𝓓𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷 (𝓸𝓹𝓽𝓲𝓸𝓷𝓪𝓵)","unchanged":"𝓝𝓸𝓽𝓮 𝓻𝓮𝓶𝓪𝓲𝓷𝓼 𝓾𝓷𝓬𝓱𝓪𝓷𝓰𝓮𝓭","noTitle":"𝓔𝓷𝓽𝓮𝓻 𝓪 𝓽𝓲𝓽𝓵𝓮 𝓯𝓸𝓻 𝓽𝓱𝓮 𝓪𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓸𝓷","org":"𝓣𝓱𝓲𝓼 𝓷𝓸𝓽𝓮 𝓲𝓼 𝓸𝓷𝓵𝔂 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝔂𝓸𝓾 𝓪𝓷𝓭 𝓸𝓽𝓱𝓮𝓻𝓼 𝔀𝓲𝓽𝓱 𝓮𝓭𝓲𝓽 𝓪𝓬𝓬𝓮𝓼𝓼 𝓽𝓸 𝓽𝓱𝓲𝓼 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","private":"𝓣𝓱𝓲𝓼 𝓹𝓻𝓲𝓿𝓪𝓽𝓮 𝓷𝓸𝓽𝓮 𝓲𝓼 𝓸𝓷𝓵𝔂 𝓿𝓲𝓼𝓲𝓫𝓵𝓮 𝓽𝓸 𝔂𝓸𝓾","by":"𝓐𝓷𝓷𝓸𝓽𝓪𝓽𝓮𝓭 𝓫𝔂 {name}","byOrg":"𝓐𝓷𝓷𝓸𝓽𝓪𝓽𝓮𝓭 𝓫𝔂 {name}, {org}","addPageNote":"𝓐𝓭𝓭 𝓹𝓪𝓰𝓮 𝓷𝓸𝓽𝓮"},"viewDropdown":{"document":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽","plainText":"𝓟𝓵𝓪𝓲𝓷 𝓣𝓮𝔁𝓽","thumbnail":"𝓣𝓱𝓾𝓶𝓫𝓷𝓪𝓲𝓵","notes":"𝓝𝓸𝓽𝓮𝓼","search":"𝓢𝓮𝓪𝓻𝓬𝓱 𝓡𝓮𝓼𝓾𝓵𝓽𝓼"},"zoom":{"fitWidth":"𝓕𝓲𝓽 𝔀𝓲𝓭𝓽𝓱","fitHeight":"𝓕𝓲𝓽 𝓱𝓮𝓲𝓰𝓱𝓽"},"titleHeader":{"contributedBy":"𝓒𝓸𝓷𝓽𝓻𝓲𝓫𝓾𝓽𝓮𝓭 𝓫𝔂 {name}"},"annotatePane":{"annotateDocument":"𝓐𝓷𝓷𝓸𝓽𝓪𝓽𝓮 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽","desc":"𝓗𝓲𝓰𝓱𝓵𝓲𝓰𝓱𝓽 𝓪 𝓹𝓸𝓻𝓽𝓲𝓸𝓷 𝓸𝓯 𝓽𝓱𝓮 𝓹𝓪𝓰𝓮, 𝓸𝓻 𝓬𝓵𝓲𝓬𝓴 𝓫𝓮𝓽𝔀𝓮𝓮𝓷 𝓹𝓪𝓰𝓮𝓼 𝓽𝓸 𝓬𝓻𝓮𝓪𝓽𝓮 𝓪 𝓷𝓸𝓽𝓮."},"modifyPane":{"pagesSelected":"{n, plural, one {# 𝓟𝓪𝓰𝓮} other {# 𝓟𝓪𝓰𝓮𝓼}} 𝓢𝓮𝓵𝓮𝓬𝓽𝓮𝓭","applyModifications":"𝓐𝓹𝓹𝓵𝔂 𝓜𝓸𝓭𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷𝓼","duplicate":"𝓓𝓾𝓹𝓵𝓲𝓬𝓪𝓽𝓮","move":"𝓜𝓸𝓿𝓮","unselect":"𝓤𝓷𝓼𝓮𝓵𝓮𝓬𝓽","remove":"𝓡𝓮𝓶𝓸𝓿𝓮","insertPages":"𝓘𝓷𝓼𝓮𝓻𝓽 {n, plural, one {# 𝓟𝓪𝓰𝓮} other {# 𝓟𝓪𝓰𝓮𝓼}}","pagesPending":"{n, plural, one {# 𝓟𝓪𝓰𝓮} other {# 𝓟𝓪𝓰𝓮𝓼}} 𝓟𝓮𝓷𝓭𝓲𝓷𝓰 𝓘𝓷𝓼𝓮𝓻𝓽𝓲𝓸𝓷","insertBegin":"𝓘𝓷𝓼𝓮𝓻𝓽 {n, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}} 𝓪𝓽 𝓫𝓮𝓰𝓲𝓷𝓷𝓲𝓷𝓰.","insertEnd":"𝓘𝓷𝓼𝓮𝓻𝓽 {n, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}} 𝓪𝓽 𝓮𝓷𝓭.","insertBetween":"𝓘𝓷𝓼𝓮𝓻𝓽 {n, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}} 𝓲𝓷 𝓫𝓮𝓽𝔀𝓮𝓮𝓷 𝓹𝓪𝓰𝓮 {p0} 𝓪𝓷𝓭 {p1}.","click":"𝓒𝓵𝓲𝓬𝓴 𝓲𝓷-𝓫𝓮𝓽𝔀𝓮𝓮𝓷 𝓹𝓪𝓰𝓮𝓼 𝓫𝓮𝓵𝓸𝔀 𝓽𝓸 𝓶𝓪𝓻𝓴 𝔀𝓱𝓮𝓻𝓮 𝓽𝓸 𝓹𝓪𝓼𝓽𝓮 {n, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}}.","insert":"𝓘𝓷𝓼𝓮𝓻𝓽","insertAtEnd":"𝓘𝓷𝓼𝓮𝓻𝓽 𝓪𝓽 𝓮𝓷𝓭","insertPosition":"𝓘𝓷𝓼𝓮𝓻𝓽 𝓹𝓪𝓰𝓮𝓼 𝓪𝓽 𝓹𝓸𝓼𝓲𝓽𝓲𝓸𝓷","insertOtherDoc":"𝓘𝓷𝓼𝓮𝓻𝓽 𝓯𝓻𝓸𝓶 𝓸𝓽𝓱𝓮𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽","modifyPages":"𝓜𝓸𝓭𝓲𝓯𝔂 𝓟𝓪𝓰𝓮𝓼","select":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓹𝓪𝓰𝓮𝓼 𝓫𝓮𝓵𝓸𝔀 𝓽𝓸 𝓪𝓹𝓹𝓵𝔂 𝓶𝓸𝓭𝓲𝓯𝓲𝓬𝓪𝓽𝓲𝓸𝓷𝓼 (𝓹𝓪𝓰𝓮 𝓻𝓸𝓽𝓪𝓽𝓲𝓸𝓷, 𝓻𝓮𝓪𝓻𝓻𝓪𝓷𝓰𝓲𝓷𝓰, 𝓪𝓷𝓭 𝓭𝓮𝓵𝓮𝓽𝓲𝓸𝓷). 𝓒𝓵𝓲𝓬𝓴 𝓲𝓷-𝓫𝓮𝓽𝔀𝓮𝓮𝓷 𝓹𝓪𝓰𝓮𝓼 𝓽𝓸 𝓲𝓷𝓼𝓮𝓻𝓽.","undo":"𝓤𝓷𝓭𝓸","redo":"𝓡𝓮𝓭𝓸"},"redactPane":{"redactDoc":"𝓡𝓮𝓭𝓪𝓬𝓽 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽","desc":"𝓒𝓵𝓲𝓬𝓴 𝓪𝓷𝓭 𝓭𝓻𝓪𝓰 𝓽𝓸 𝓭𝓻𝓪𝔀 𝓪 𝓫𝓵𝓪𝓬𝓴 𝓻𝓮𝓬𝓽𝓪𝓷𝓰𝓵𝓮 𝓸𝓿𝓮𝓻 𝓮𝓪𝓬𝓱 𝓹𝓸𝓻𝓽𝓲𝓸𝓷 𝓸𝓯 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔂𝓸𝓾’𝓭 𝓵𝓲𝓴𝓮 𝓽𝓸 𝓻𝓮𝓭𝓪𝓬𝓽. 𝓐𝓼𝓼𝓸𝓬𝓲𝓪𝓽𝓮𝓭 𝓽𝓮𝔁𝓽 𝔀𝓲𝓵𝓵 𝓫𝓮 𝓻𝓮𝓶𝓸𝓿𝓮𝓭 𝔀𝓱𝓮𝓷 𝔂𝓸𝓾 𝓼𝓪𝓿𝓮 𝔂𝓸𝓾𝓻 𝓻𝓮𝓭𝓪𝓬𝓽𝓲𝓸𝓷𝓼.","confirm":"𝓒𝓸𝓷𝓯𝓲𝓻𝓶 𝓡𝓮𝓭𝓪𝓬𝓽𝓲𝓸𝓷𝓼","undo":"𝓤𝓷𝓭𝓸"},"searchPane":{"yourQuery":"𝓨𝓸𝓾𝓻 𝓺𝓾𝓮𝓻𝔂 {search} 𝔀𝓪𝓼 𝓯𝓸𝓾𝓷𝓭 𝓸𝓷 {n, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}}"},"selectNotePane":{"selectNote":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓪 𝓷𝓸𝓽𝓮","desc":"𝓢𝓮𝓵𝓮𝓬𝓽 𝓽𝓱𝓮 𝓪𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓸𝓷 𝓽𝓱𝓪𝓽 𝔂𝓸𝓾 𝔀𝓪𝓷𝓽 𝓽𝓸 𝓼𝓱𝓪𝓻𝓮."},"searchResults":{"resultPages":"{results, plural, one {# 𝓻𝓮𝓼𝓾𝓵𝓽} other {# 𝓻𝓮𝓼𝓾𝓵𝓽𝓼}} 𝓪𝓬𝓻𝓸𝓼𝓼 {pages, plural, one {# 𝓹𝓪𝓰𝓮} other {# 𝓹𝓪𝓰𝓮𝓼}}","noSearchResults":"𝓝𝓸 𝓼𝓮𝓪𝓻𝓬𝓱 𝓻𝓮𝓼𝓾𝓵𝓽𝓼. 𝓣𝓻𝔂 𝓪𝓰𝓪𝓲𝓷 𝔀𝓲𝓽𝓱 𝓪 𝓫𝓻𝓸𝓪𝓭𝓮𝓻 𝓺𝓾𝓮𝓻𝔂.","occurrences":"{n, plural, one {# 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓷𝓬𝓮} other {# 𝓸𝓬𝓬𝓾𝓻𝓻𝓮𝓷𝓬𝓮𝓼}}"},"sidebar":{"updating":"𝓤𝓹𝓭𝓪𝓽𝓲𝓷𝓰 𝓭𝓸𝓬𝓾𝓬𝓶𝓮𝓷𝓽...","original":"𝓞𝓻𝓲𝓰𝓲𝓷𝓪𝓵 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 (𝓟𝓓𝓕) »","related":"𝓡𝓮𝓵𝓪𝓽𝓮𝓭 𝓐𝓻𝓽𝓲𝓬𝓵𝓮 »","contributed":"𝓒𝓸𝓷𝓽𝓻𝓲𝓫𝓾𝓽𝓮𝓭 𝓫𝔂 {name}","source":"𝓢𝓸𝓾𝓻𝓬𝓮: {source}","actions":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓐𝓬𝓽𝓲𝓸𝓷𝓼","share":"𝓢𝓱𝓪𝓻𝓮","shareDesc":"𝓒𝓻𝓮𝓪𝓽𝓮 𝓪𝓷 𝓮𝓶𝓫𝓮𝓭 𝓸𝓻 𝓼𝓱𝓪𝓻𝓮 𝓸𝓷 𝓼𝓸𝓬𝓲𝓪𝓵 𝓶𝓮𝓭𝓲𝓪.","annotate":"𝓐𝓷𝓷𝓸𝓽𝓪𝓽𝓮","annotateDesc":"𝓜𝓪𝓴𝓮 𝓪𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓸𝓷𝓼 𝓽𝓸 𝓴𝓮𝓮𝓹 𝓷𝓸𝓽𝓮𝓼 𝓸𝓷 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽.","redact":"𝓡𝓮𝓭𝓪𝓬𝓽","redactDesc":"𝓒𝓻𝓮𝓪𝓽𝓮 𝓻𝓮𝓭𝓪𝓬𝓽𝓲𝓸𝓷𝓼 𝓸𝓷 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓽𝓸 𝓱𝓲𝓭𝓮 𝓽𝓮𝔁𝓽. 𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓵𝓵 𝓻𝓮𝓹𝓻𝓸𝓬𝓮𝓼𝓼 𝓪𝓯𝓽𝓮𝓻𝔀𝓪𝓻𝓭𝓼.","modify":"𝓜𝓸𝓭𝓲𝓯𝔂 𝓟𝓪𝓰𝓮𝓼","modifyDesc":"𝓡𝓮𝓪𝓻𝓻𝓪𝓷𝓰𝓮, 𝓻𝓸𝓽𝓪𝓽𝓮, 𝓭𝓮𝓵𝓮𝓽𝓮, 𝓲𝓷𝓼𝓮𝓻𝓽, 𝓪𝓷𝓭 𝓼𝓹𝓵𝓲𝓽 𝓹𝓪𝓰𝓮𝓼.","info":"𝓔𝓭𝓲𝓽 𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓘𝓷𝓯𝓸","infoDesc":"𝓜𝓸𝓭𝓲𝓯𝔂 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓷𝓯𝓸𝓻𝓶𝓪𝓽𝓲𝓸𝓷 𝓵𝓲𝓴𝓮 𝓭𝓮𝓼𝓬𝓻𝓲𝓹𝓽𝓲𝓸𝓷 𝓪𝓷𝓭 𝓻𝓮𝓵𝓪𝓽𝓮𝓭 𝓤𝓡𝓛.","data":"𝓔𝓭𝓲𝓽 𝓣𝓪𝓰𝓼 𝓪𝓷𝓭 𝓓𝓪𝓽𝓪","dataDesc":"𝓐𝓭𝓭 𝓽𝓪𝓰𝓼 𝓪𝓷𝓭 𝓴𝓮𝔂/𝓿𝓪𝓵𝓾𝓮 𝓹𝓪𝓲𝓻𝓼 𝓽𝓸 𝓬𝓪𝓽𝓮𝓰𝓸𝓻𝓲𝔃𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽.","sections":"𝓔𝓭𝓲𝓽 𝓢𝓮𝓬𝓽𝓲𝓸𝓷𝓼","sectionsDesc":"𝓐𝓭𝓭 𝓼𝓮𝓬𝓽𝓲𝓸𝓷𝓼 𝓽𝓸 𝓸𝓻𝓰𝓪𝓷𝓲𝔃𝓮 𝔂𝓸𝓾𝓻 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔀𝓲𝓽𝓱 𝓪 𝓽𝓪𝓫𝓵𝓮 𝓸𝓯 𝓬𝓸𝓷𝓽𝓮𝓷𝓽𝓼.","privateNote":"𝓐𝓭𝓭 𝓟𝓻𝓲𝓿𝓪𝓽𝓮 𝓝𝓸𝓽𝓮","privateNoteDesc":"𝓜𝓪𝓴𝓮 𝓪𝓷𝓷𝓸𝓽𝓪𝓽𝓲𝓸𝓷𝓼 𝓽𝓸 𝓴𝓮𝓮𝓹 𝓷𝓸𝓽𝓮𝓼 𝓸𝓷 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽."},"viewer":{"notFound":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓷𝓸𝓽 𝓯𝓸𝓾𝓷𝓭","notFoundDesc":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔂𝓸𝓾 𝓻𝓮𝓺𝓾𝓮𝓼𝓽𝓮𝓭 𝓮𝓲𝓽𝓱𝓮𝓻 𝓭𝓸𝓮𝓼 𝓷𝓸𝓽 𝓮𝔁𝓲𝓼𝓽 𝓸𝓻 𝔂𝓸𝓾 𝓵𝓪𝓬𝓴 𝓹𝓮𝓻𝓶𝓲𝓼𝓼𝓲𝓸𝓷 𝓽𝓸 𝓪𝓬𝓬𝓮𝓼𝓼 𝓲𝓽","processing":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓲𝓼 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰","processingDesc":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔂𝓸𝓾 𝓻𝓮𝓺𝓾𝓮𝓼𝓽𝓮𝓭 𝓲𝓼 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰 𝓪𝓷𝓭 𝔀𝓲𝓵𝓵 𝓪𝓾𝓽𝓸𝓶𝓪𝓽𝓲𝓬𝓪𝓵𝓵𝔂 𝓻𝓮𝓯𝓻𝓮𝓼𝓱 𝔀𝓱𝓮𝓷 𝓲𝓽 𝓲𝓼 𝓻𝓮𝓪𝓭𝔂","error":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓱𝓪𝓼 𝓮𝓷𝓬𝓸𝓾𝓷𝓽𝓮𝓻𝓮𝓭 𝓪𝓷 𝓮𝓻𝓻𝓸𝓻","errorDesc":"𝓐 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰 𝓮𝓻𝓻𝓸𝓻 𝓱𝓪𝓼 𝓫𝓮𝓮𝓷 𝓮𝓷𝓬𝓸𝓾𝓷𝓽𝓮𝓻𝓮𝓭 𝓲𝓷 𝓽𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔂𝓸𝓾 𝓻𝓮𝓺𝓾𝓮𝓼𝓽𝓮𝓭","accessible":"𝓓𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝓷𝓸𝓽 𝓪𝓬𝓬𝓮𝓼𝓼𝓲𝓫𝓵𝓮","accessibleDesc":"𝓣𝓱𝓮 𝓭𝓸𝓬𝓾𝓶𝓮𝓷𝓽 𝔂𝓸𝓾 𝓻𝓮𝓺𝓾𝓮𝓼𝓽𝓮𝓭 𝓲𝓼 𝓼𝓽𝓲𝓵𝓵 𝓹𝓻𝓸𝓬𝓮𝓼𝓼𝓲𝓷𝓰 𝓸𝓻 𝔂𝓸𝓾 𝓵𝓪𝓬𝓴 𝓹𝓮𝓻𝓶𝓲𝓼𝓼𝓲𝓸𝓷 𝓽𝓸 𝓪𝓬𝓬𝓮𝓼𝓼 𝓽𝓸 𝓲𝓽"}}');
-./public/8568.30b8be767d4a96d9026c.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="889f61d7-b594-4f1d-a4d8-05b68045747b",e._sentryDebugIdIdentifier="sentry-dbid-889f61d7-b594-4f1d-a4d8-05b68045747b")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[8568],{1248:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"liamE sserdda","loading":"...gnidaoL","documentCloud":"duolCtnemucoD","home":"emoH"},"homeTemplate":{"signedIn":"dengiS ni sa {name}","signOut":"ngiS tuo","signIn":"ngiS ni","signUp":"ngiS pu","goToApp":"oG ot ppa"},"accessToggle":{"public":"etoN lliw eb elbisiv ot enoyna htiw ssecca ot eht .tnemucod","collaborator":"etoN lliw eb elbisiv ot enoyna ohw nac tide siht .tnemucod","private":"etoN lliw eb elbisiv ot uoy .enola","publicName":"cilbuP","collaboratorName":"rotaroballoC","privateName":"etavirP"},"accessIcon":{"private":"etavirP sseccA","organization":"etavirP ot ruoY noitazinagrO","public":"cilbuP sseccA","privateExplanation":"ylnO uoy nac weiv siht tnemucod","organizationExplanation":"ylnO srebmem fo ruoy noitazinagro nac weiv siht tnemucod","publicExplanation":"enoynA nac hcraes dna weiv siht tnemucod"},"appearanceCustomizer":{"customizeAppearance":"ezimotsuC ecnaraeppA","hide":"ediH pleh txet","show":"wohS pleh txet"},"appearanceDimension":{"responsive":"citamotuA )tluafed(","fixed":"dexiF"},"calendar":{"jan":"yraunaJ","feb":"yraurbeF","mar":"hcraM","apr":"lirpA","may":"yaM","jun":"enuJ","jul":"yluJ","aug":"tsuguA","sep":"rebmetpeS","oct":"rebotcO","nov":"rebmevoN","dec":"rebmeceD","hourShortcode":"HH","minuteShortcode":"MM"},"dialog":{"cancel":"lecnaC","delete":"eteleD","done":"enoD","edit":"tidE","remove":"evomeR","save":"evaS","create":"etaerC","ok":"kO","update":"etadpU","dismiss":"ssimsiD","continue":"eunitnoC"},"dialogAccessDialog":{"changeAccess":"egnahC ssecca rof {n, plural, one {tnemucod} other {# stnemucod}}","selectAccess":"tceleS na ssecca level rof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}","public":"cilbuP ssecca","publicDesc":"enoynA no eht tenretni nac hcraes rof dna weiv eht .tnemucod","verifiedHelp":"ylnO deifirev sresu ro srebmem fo deifirev snoitazinagro nac ekam dedaolpu stnemucod .cilbup fI er\'uoy a tsilanruoj ro esiwrehto krow ni gnihsilbup dettev slairetam ot mrofni eht ,cilbup nrael erom dna tseuqer noitacifirev .ereh","privateToOrg":"uoY t’nac egnahc eht ssecca level ot etavirP“ ot ruoy ”noitazinagro esuaceb {n, plural, one {siht tnemucod si} other {eno ro erom stnemucod era}} detaicossa htiw ruoy laudividni ,tnuocca ton na .noitazinagro oT dda {n, plural, one {ti} other {meht}} ot na ,noitazinagro tceles {n, plural, one {ti} other {meht}} morf eht tnemeganam weiv dna kcilc egnahC“ ”.renwO uoY nac nioj ro etaerc na noitazinagro no siht .egap","private":"etavirP ssecca","privateDesc":"ylnO elpoep htiw ticilpxe noissimrep aiv( )noitaroballoc evah .ssecca","organization":"etavirP ot ruoy noitazinagro","organizationDesc":"ylnO eht elpoep ni ruoy noitazinagro evah .ssecca","schedulePublication":"eludehcS noitacilbup","scheduleHelp":"sihT tnemucod lliw eb edam cilbup ta eht nevig etad dna .emit noitacilbuP emit si lacol{timezone}.","unchanged":"sseccA si .degnahcnu tceleS a tnereffid ssecca .level","future":"tsuM tceles a emit ni eht erutuf","change":"egnahC"},"dialogCollaboratorDialog":{"confirm":"mrifnoC evomer resu","confirmMsg":"gnideecorP lliw evomer {name} morf {title}. oD uoy hsiw ot ?eunitnoc","addCollaborators":"ddA srotaroballoC","invite":"tuP ni eht liame fo na gnitsixe duolCtnemucoD resu .woleb fI yeht t\'nod evah na ,tnuocca evah meht retsiger ereh rof eerf, dna neht ksa meht ot gol ni ot duolCtnemucoD ta tsael .ecno","admin":"nimdA","view":"weiV","adminHelp":"srotaroballoC nac tide siht tcejorp dna sti stnemucod","editHelp":"srotaroballoC nac tide stnemucod ni siht tcejorp","viewHelp":"srotaroballoC nac weiv stnemucod ni siht tcejorp","add":"ddA","empty":"uoY evah ton tey dedda yna srotaroballoc ot siht .tcejorp etivnI srotaroballoc ot tnarg rehto sresu ssecca ot eht stnemucod derahs ni siht .tcejorp uoY nac lortnoc rehtehw srotaroballoc evah ssecca ot tide/weiv eht s’tcejorp stnemucod ro eb na nimda htiw snoissimrep ot etivni rehto sresu dna tide eht tcejorp .flesti","manageCollaborators":"eganaM srotaroballoC","name":"emaN","access":"sseccA","you":")uoy("},"dialogDataDialog":{"confirm":"mrifnoC evomer atad tniop","removeMsg":"gnideecorP lliw evomer eht {key}{value} atad tniop morf eht deificeps .stnemucod oD uoy hsiw ot ?eunitnoc","addData":"ddA ataD rof {n, plural, one {tnemucoD} other {# stnemucoD}}","tag":"gaT","value":"eulaV","key":"yeK","keyValue":"yeK / eulaV","tagInfo":"ddA motsuc sgat ot ezirogetac ruoy .stnemucod","eg":".g.e","exampleTagReport":"troper","exampleTagLawsuit":"tiuswal","exampleTagEmail":"liame","keyValueInfo":"ddA motsuc yek / eulav sriap rof esicerp noitazirogetac fo ruoy .stnemucod","exampleKVState":"ainrofilaC;psbn&:etats","exampleKVYear":"6102;psbn&:raey","exampleKVType":"omem;psbn&:epyt","enterTag":"retnE a gat","enterKey":"retnE a yek","keyInvalid":"syeK nac ylno niatnoc ,srettel ,srebmun serocsrednu ,)_( dna sehsad )-(","emptyMsg":"uoY evah ton tey dedda yna atad ot eht deificeps .stnemucod ddA sgat dna eulav/yek sriap ot ezirogetac dna ezinagro ruoy .stnemucod uoY nac retlif dna hcraes no tnemucod atad ot evig uoy lufrewop lortnoc revo tnemucod .tnemeganam","manageDocumentData":"eganaM tnemucoD ataD","valueUnchanged":"eulaV sniamer degnahcnu","kvCannotBeEmpty":"eulav/yeK tonnac eb ytpme"},"dialogReprocessDialog":{"title":"mrifnoC ssecorper","reprocessDocs":"gnideecorP lliw ecrof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}} ot ssecorper egap dna egami .txet oD uoy hsiw ot ?eunitnoc","reprocessSingleDoc":"gnideecorP lliw ecrof eht tnemucod ot ssecorper egap dna egami .txet oD uoy hsiw ot ?eunitnoc","confirm":"ssecorpeR"},"dialogDeleteDialog":{"title":"mrifnoC ssecorper","deleteDocs":"gnideecorP lliw yltnenamrep eteled eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}. oD uoy hsiw ot ?eunitnoc"},"dialogCancelProcessingDialog":{"title":"lecnaC gnissecorp","deleteDocs":"gnideecorP lliw ecrof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}} ot pots .gnissecorp retfA gnissecorp sah neeb ,deppots na rorre lliw wohs retfa hcihw uoy nac ecroF“ ”ssecorpeR ro eteled eht {n, plural, one {tnemucod} other {stnemucod}} gnisu eht tidE .unem oD uoy hsiw ot ?eunitnoc"},"dialogDiagnosticDialog":{"staffOnlyInfo":"ylno-ffatS ofni rof detceles {n, plural, one {tnemucod} other {# stnemucod}}","id":"DI","title":"eltiT","actions":"snoitcA","debug":"gubeD","viewErrors":"weiV srorre","viewS3":"weiV ni 3S"},"dialogDocumentEmbedDialog":{"responsive":"evisnopseR","respOn":"nO )tluafed(","respOnHelp":"lliF eht htdiw fo eht elcitra reniatnoc yllausu( skrow )tseb","respOff":"ffO","respOffHelp":"ehT tnemucod lliw tif eht sezis deificeps woleb","width":"htdiW","widthAuto":"lliW llif eht elbaliava ecaps fi eht tnemucod si tes ot ,evisnopser esiwrehto stluafed ot xp007","widthFixed":"teS a mumixam htdiw fi eht tnemucod si ,evisnopser ro tes a dexif ezis fi ton evisnopser","height":"thgieH","heightAuto":"ehT thgieh si desab no eht ezis fo eht ,tnemucod htiw on mumixam .ezis fI ,evisnopser lliw eb tes ot eht thgieh fo eht resworb wodniw sunim xp001","heightFixed":"teS a mumixam thgieh fi eht tnemucod si ,evisnopser ro tes a dexif ezis fi ton evisnopser","sidebarBehavior":"rabediS roivaheb","sbResponsive":"evisnopseR )tluafed(","sbResponsiveHelp":"wohS rabedis yllacitamotua no egral sneercs dna edih no elibom .secived nI debme ,edom eht rabedis lliw eb neddih","hidden":"neddiH","visible":"elbisiV","visibleDefault":"elbisiV )tluafed(","sbHiddenHelp":"ediH eht rabedis yb tluafed","sbVisibleHelp":"wohS eht rabedis yb tluafed","titleBehavior":"eltiT roivaheb","tVisibleHelp":"yalpsiD eht eltit dna noitubirtta ni eht redaeh fo eht reweiv","tHiddenHelp":"ediH eht eltit ni eht redaeh fo eht reweiv llits( elbisiv ni eht )rabedis","pdfLink":"FDP knil","plVisibleHelp":"wohS a knil ot eht war FDP tnemucod ni eht rabedis","plHiddenHelp":"ediH eht rabedis FDP knil elif( si llits elbissecca fi eht LRU si )nwonk","fullscreenOption":"neercslluF noitpo","fsVisibleHelp":"wohS a neercslluf noci ni eht thgir-mottob renroc","fsHiddenHelp":"ediH eht neercslluf noitpo","textMode":"txeT edom","tmVisibleHelp":"wohS na noitpo ot weiv eht s’tnemucod txet ni eht weiv nwodpord","tmHiddenHelp":"ediH txet edom","contributedByFormat":"detubirtnoC yb tamrof","cbfUserAndOrg":"resU dna gro )tluafed(","cbfUserAndOrgHelp":"wohS a s’tnemucod noitubirtta sa eht resu eman dewollof yb eht noitazinagro","cbfOrgOnly":"grO ylno","cbfOrgOnlyHelp":"etubirttA eht tnemucod ot tsuj eht noitazinagro","share":"erahS “{title}”","embedDesc":"ypoC eht LMTH edoc ot debme siht tnemucod nihtiw na elcitra"},"dialogDocumentInformationDialog":{"editInformation":"tidE noitamrofnI rof {n, plural, one {tnemucod} other {# stnemucod}}"},"dialogRedactDialog":{"title":"mrifnoC snoitcader","description":"erA uoy erus uoy hsiw ot tcader eht tnerruc ?tnemucod fI uoy ,eunitnoc eht tnemucod reweiv lliw eb elbisseccani yliraropmet elihw eht tnemucod sessecorper htiw eht snoitcader ni .ecalp sihT egnahc si .elbisreverri"},"dialogModifyDialog":{"title":"ylppA snoitacifidom","description":"erA uoy erus uoy hsiw ot yfidom eht tnerruc ?tnemucod fI uoy ,eunitnoc eht tnemucod reweiv lliw eb elbisseccani yliraropmet elihw eht tnemucod sessecorper htiw eht .snoitacifidom sihT egnahc si .elbisreverri","closeTitle":"mrifnoC esolc","closeWarning":"uoY lliw esol lla ruoy deilppanu .snoitacifidom erA uoy erus uoy tnaw ot ?deecorp"},"dialogDeleteNoteDialog":{"title":"mrifnoC eteled","description":"erA uoy erus uoy hsiw ot eteled eht tnerruc ?eton"},"dialogEditSectionsDialog":{"confirmDelete":"mrifnoC eteled","proceedingWillRemove":"gnideecorP lliw evomer eht deificeps noitces .p( {page} {title}.) oD uoy hsiw ot ?eunitnoc","editSections":"tidE snoitceS","manageSections":"eganaM snoitces ot ezinagro ruoy tnemucod htiw a elbat fo .stnetnoc","pageAbbrevNo":".p {n}","pageAbbrev":".p","empty":"uoY evah ton dedda yna snoitces","edit":"tidE eht detceles noitces","add":"ddA a wen noitces","title":"eltiT","missingTitle":"esaelP retne a eltit","updateTitle":"retnE a wen eltit ro egap rebmun","uniquePageNumber":"uoY tsum retne a euqinu egap rebmun","invalidPageNumber":"egaP rebmun si dilavni"},"dialogEmbedDialog":{"updatingDocument":"gnitadpU ...tnemucod","makingPublic":"ehT tnemucod si yltnerruc gnieb edam .cilbup sihT yam ekat a etunim ro .owt","wouldMakePublic":"dluoW uoy ekil ot ekam siht tnemucod cilbup erofeb ?gnirahs","notPublic":"ehT tnemucod si ton yltnerruc .cilbup fI uoy debme ro knil ,ti ylno uoy dna srotaroballoc lliw eb elba ot weiv ti litnu ti si edam .cilbup kcilC woleb nehw er’uoy ydaer ot hsilbup siht tnemucod ot eht .cilbup","makePublic":"ekaM tnemucod cilbup","leave":"evaeL sa si","selectShare":"tceleS erahs noitpo","selectShareHelp":"esoohC rehtehw ot erahs eht eritne tnemucod ro tsuj a egap ro .eton","shareDoc":"erahS eritne tnemucod","shareDocHelp":"kniL ro debme eht eritne .tnemucod sihT( si eht tsom ylnommoc desu erahs ).noitpo","sharePage":"erahS cificeps egap","sharePageHelp":"kniL ro debme a elgnis egap fo eht .tnemucod lufesU rof gnithgilhgih a egap .tprecxe","shareNote":"erahS cificeps eton","shareNoteHelpHasNote":"kniL ro debme a eton nihtiw eht .tnemucod lufesU rof gnithgilhgih a noiger fo a .egap","shareNoteHelpNoNote":"ecnO uoy dda seton ot eht ,tnemucod esu siht erutaef ot knil ro debme .meht"},"dialogErrorDialog":{"errorOccurred":"nA rorre derrucco","unexpectedErrorOccurred":"nA detcepxenu rorre derrucco","tryAgain":"esaelP yrt niaga .retal","close":"esolC","refresh":"hserfeR"},"dialogNoteEmbedDialog":{"embedNote":"debmE a eton fo “{title}”","embedDesc":"ypoC eht LMTH edoc ot debme siht eton nihtiw na elcitra ro :tsop"},"dialogPageEmbedDialog":{"embedPage":"debmE a egap fo “{title}”","embedDesc":"ypoC eht LMTH edoc ot debme siht egap nihtiw na elcitra ro :tsop","selectPage":"tceleS eht egap ot :debme","page":"egaP {n} yltnerruc( )elbisiv","otherPage":"rehtO egap","enterPageNumber":"retnE eht egap rebmun ot :debme"},"dialogProjectAccessDialog":{"changeAccessFor":"egnahC ssecca rof {name}","selectAccess":"tceleS na ssecca level woleb rof {name} ni {title}","adminAccess":"nimdA sseccA","editAccess":"tidE sseccA","viewAccess":"weiV sseccA","adminHelp":"sihT rotaroballoc nac tide siht tcejorp dna sti .stnemucod ehT rotaroballoc nac etivni ,sresu eteled ,sresu dna evomer eht .tcejorp","editHelp":"sihT rotaroballoc nac tide stnemucod ni siht tcejorp tub tonnac tide eht tcejorp .flesti","viewHelp":"sihT rotaroballoc nac weiv stnemucod ni siht tcejorp tub tonnac tide meht ro eht .tcejorp","invalidAccess":"sseccA si ydaerla tes ot {access}. tceleS a tnereffid ssecca .level","changeAccess":"egnahC ssecca"},"dialogOwnerDialog":{"selectUser":"resU tsum eb detceles","selectOrg":"noitazinagrO tsum eb detceles","changeOwner":"egnahC renwo rof {n, plural, one {tnemucod} other {# stnemucod}}","accessWarning":":gninraW uoY yam tsol ssecca ot eht deificeps {n, plural, one {tnemucod} other {# stnemucod}} sa a tluser fo gnignahc eht tnemucod renwo","user":":resU","filterUsers":"epyT ot retlif ...sresu","filterOrgs":"epyT ot retlif ...snoitazinagro"},"dialogProjectDialog":{"confirmDelete":"mrifnoC eteled","deleteProject":"erA uoy erus uoy tnaw ot eteled siht tcejorp ({project}?)","editProject":"tidE tcejorP","createProject":"etaerC weN tcejorP","title":"...eltiT","projectDesc":"tcejorP noitpircseD )lanoitpo(","manageCollabs":"eganaM srotaroballoC","share":"erahS / debmE tcejorP","enterTitle":"retnE a eltit","changeTitle":"egnahC eht eltit ro noitpircsed"},"dialogProjectEmbedDialog":{"share":"erahS “{title}”","embedDesc":"ypoC eht LMTH edoc ot debme siht tnemucod nihtiw na elcitra ro :tsop","invalid":"dilavnI tcejorp","cannotEmbed":"tonnaC debme siht ,tcejorp sa ti seod ton raeppa ot .tsixe"},"htmlEditor":{"preview":":weiverP"},"image":{"error":"nA rorre .derrucco yrT gnihserfer eht egap"},"omniselect":{"filter":"epyT ot retlif egaugnal","noResults":"oN .stluser kcilC ot raelc .retlif"},"shareOptions":{"errorText":"nA detcepxenu rorre .derrucco esaelP yrt niaga .retal","copyHtml":"ypoC LMTH edoc","addShortcode":"ddA siht edoctrohs ot ruoy sserPdroW tnetnoc —","pluginRequired":"nigulp deriuqer","copyShortcode":"ypoC edoctrohs","copyUrl":"ypoC LRU"},"specialMessage":{"contactUs":"tcatnoC su htiw gub ,stroper ,snoitseuq dna .snoitseggus"},"uploadOptions":{"documentLang":"tnemucoD :egaugnal","forceOcr":"ecroF :RCO"},"actionBar":{"selectDocs":"tceleS emos stnemucod ot laever tide snoitca","noPerms":"uoY od ton evah noissimrep ot tide lla fo eht detceles stnemucod","editMenu":"tidE","projectsMenu":"stcejorP"},"authSection":{"help":"pleH","language":"egaugnaL","tips":"spiT dna skcirT","searchDocs":"hcraeS noitatnemucoD","apiDocs":"IPA noitatnemucoD","emailUs":"liamE sU","acctSettings":"tnuoccA sgnitteS","signOut":"ngiS tuo","changeOrg":"egnahC noitazinagro","personalAcct":"lanosreP tnuoccA","signIn":"ngiS ni"},"documents":{"yourDocuments":"ruoY stnemucoD","searchResults":"hcraeS stluseR","accessDocuments":"ruoY {access}stnemucoD","nameDocuments":"{name}s\' {access}stnemucoD","allDocuments":"llA {access}stnemucoD","mustBeVerified":"uoY tsum eb a deifirev tsilanruoj ot daolpu stnemucod","upload":"daolpU","dropFile":"porD elif ot daolpu"},"document":{"open":"nepO","updating":"gnitadpU ...tnemucod","processing":"gnissecorP","processingError":"nA rorre derrucco gniyrt ot ssecorp ruoy tnemucod","remove":"evomeR","improper":"ruoY tnemucod saw dedaolpu ylreporpmi","project":"tcejorP","totalMatchingPages":"{n} fo {m} segap gnihctam eht yreuq","showAll":"wohS lla","matchingPages":"{n} segap gnihctam eht yreuq","pageAbbrev":".p","pageCount":"{n, plural, one {# egap} other {# segap}}","source":"ecruoS"},"documentThumbnail":{"pages":"segap","loading":"gnidaoL ssergorp ...noitamrofni"},"mainContainer":{"error":"rorrE","errorMsg":"eW dluoc ton hcaer eht duolCtnemucoD .revres esaelP yrt gnihserfer eht egap .retal","refresh":"hserfeR"},"editMenu":{"editDocInfo":"tidE tnemucoD noitamrofnI","changeAccess":"egnahC sseccA","editDocData":"tidE tnemucoD ataD","cancelProcessing":"lecnaC gnissecorP","forceReprocess":"ecroF ssecorpeR","entities":"seititnE ATEB","changeOwner":"egnahC renwO","delete":"eteleD","diagnosticInfo":"citsongaiD ofnI"},"metaFields":{"defaultFieldInvalidText":"ehT tnemucod ydaerla sah siht {fieldName}","titleFieldTitle":"eltiT","titleFieldName":"eman","titleFieldNameUppercase":"emaN","titleFieldHeader":"emaneR {n, plural, one {# tnemucod} other {# stnemucod}}","titleFieldDescription":"retnE a eman woleb rof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}","titleFieldButton":"emaneR","titleFieldInvalidSameName":"ehT tnemucod ydaerla sah siht eman","titleFieldInvalidEmptyName":"retnE a dilav eman","sourceFieldTitle":"ecruoS","sourceFieldName":"ecruos","sourceFieldNameUppercase":"ecruoS","sourceFieldHeader":"tidE ecruos rof {n, plural, one {# tnemucod} other {# stnemucod}}","sourceFieldDescription":"retnE a ecruos woleb rof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}","sourceFieldButton":"tidE","descriptionFieldTitle":"noitpircseD","descriptionFieldName":"noitpircsed","descriptionFieldNameUppercase":"noitpircseD","descriptionFieldHeader":"tidE noitpircsed rof {n, plural, one {# tnemucod} other {# stnemucod}}","descriptionFieldDescription":"retnE eht noitpircsed woleb rof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}","descriptionFieldButton":"tidE","relatedArticleFieldTitle":"detaleR elcitrA LRU","relatedArticleFieldName":"detaler elcitra LRU","relatedArticleFieldNameUppercase":"detaleR elcitrA LRU","relatedArticleFieldHeader":"tidE eht detaler elcitra LRU rof {n, plural, one {# tnemucod} other {# stnemucod}}","relatedArticleFieldDescription":"retnE eht detaler elcitra LRU woleb rof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}","relatedArticleFieldButton":"tidE","publishedUrlFieldTitle":"dehsilbuP LRU","publishedUrlFieldName":"dehsilbup LRU","publishedUrlFieldNameUppercase":"dehsilbuP LRU","publishedUrlFieldHeader":"tidE eht dehsilbup LRU rof {n, plural, one {# tnemucod} other {# stnemucod}}","publishedUrlFieldDescription":"retnE eht dehsilbup LRU woleb rof eht {n, plural, one {detceles tnemucod} other {# detceles stnemucod}}","publishedUrlFieldButton":"tidE"},"projectsMenu":{"newProject":"+ weN tcejorP","projMembership":"tcejorP pihsrebmeM","selectDocs":"tceleS stnemucod ot ecalp meht ni stcejorp","createProj":"etaerC a tcejorp ot ezinagro dna erahs stnemucod"},"noDocuments":{"noSearchResults":"oN hcraes stluser","queryNoResults":"ruoY hcraes yreuq denruter on .stluser yrT niaga htiw a redaorb hcraes .yreuq","welcome":"emocleW ot !duolCtnemucoD","verify1":"etoN taht yltnerruc ruoy tnuocca si ton deifirev ot daolpu. uoY nac hcraes hguorht eht cilbup ,yrotisoper ezinagro stnemucod er\'uoy detseretni ni otni ,stcejorp evael etavirp ,seton dna etaroballoc no gnitide dna gnitatonna stnemucod rehto sresu etivni uoy .ot","verify2":"fI d’uoy ekil ot daolpu ro hsilbup stnemucod dna er\'uoy a gnikrow tsilanruoj ro rehto noitazinagro detseretni ni gnihsilbup yramirp ecruos slairetam ni eht cilbup ,tseretni ll\'uoy deen ot evah ruoy tnuocca deifirev ro dedda ot a deifirev .noitazinagro sihT si a elpmis :ssecorp","verify3":",tsriF ees fi ruoy noitazinagro ydaerla stsixe ,dna fi uoy dnif ,ti kcilc tseuqeR\\" ot \\"nioJ no sti .egap","verify4":"fI ruoy noitazinagro sah ton neeb deifirev ,tey ro fi er\'uoy a ,recnaleerf tseuqer noitacifirev ereh. stseuqeR yllausu ekat owt ssenisub syad ot .ssecorp","uploadFirst":"daolpU ruoy tsrif tnemucod","upload1":"daolpU a tnemucod elif ot teg detrats gnisu .duolCtnemucoD uoY nac gard eht elif otni siht ,wodniw ro kcilc no eht eulb ”daolpU“ nottub .evoba","upload2":"ecnO uoy daolpu a ,elif duolCtnemucoD lliw ssecorp eht tnemucod dna tcartxe sti .stnetnoc tI yam ekat a wef setunim rof siht ot ,etelpmoc tub ecno s’ti enod ruoy tnemucod lliw eb dezimitpo rof sisylana dna gnirahs no eht .bew"},"paginator":{"of":"fo","document":"{n, plural, one {tnemucoD} other {stnemucoD}}"},"processingBar":{"doneProcessing":"enoD gnissecorp","processingDocuments":"gnissecorP {n, plural, one {tnemucod} other {# stnemucod}}"},"searchBar":{"tips":"hcraeS :spit dda sretlif yb gnipyt :resu, :tcejorp, ro :noitazinagro, .cte esU :tros ot redro .stluser","learnMore":"nraeL erom","search":"hcraeS"},"searchLink":{"search":"hcraeS siht tnemucod noitcelloc"},"projects":{"header":"stcejorP","allDocuments":"llA stnemucoD","yourDocuments":"ruoY stnemucoD","yourPubDocuments":"ruoY cilbuP stnemucoD","orgDocuments":"{name}s’ stnemucoD","newProject":"+ weN tcejorP","createProject":"etaerC ruoy tsrif tcejorp yb gnikcilc weN“ ”tcejorP .evoba"},"uploadDialog":{"docUpload":"tnemucoD daolpU","docUploadProj":"tnemucoD daolpU ot {title}","beginUpload":"nigeB daolpu","pdfSizeWarning":"uoY nac ylno daolpu FDP selif rednu {size}.","nonPdfSizeWarning":"uoY nac ylno daolpu FDP-non tnemucod selif rednu {size}.","fileReady":"{n, plural, one {elif} other {selif}} ydaer ot daolpu","fileLimitWarning":"uoY nac ylno daolpu {limit} selif ta .ecno","moreOptions":"eroM snoitpo","selectFiles":"+ tceleS selif","dragDrop":"garD dna pord selif ereh","publicMsg":"tnemucoD lliw eb ylcilbup .elbisiv","collabMsg":"tnemucoD lliw eb elbisiv ot ruoy .noitazinagro","privateMsg":"tnemucoD lliw eb elbisiv ot uoy .enola","collabName":"noitazinagrO","submitting":"tsomlA ...enod gnittimbus dedaolpu selif rof gnissecorp ({percent})","uploading":"gnidaolpU ... ({uploaded}/{length})","gettingInfo":"gnitteG daolpu noitamrofni ({percent})","pleaseLeaveOpen":"esaelP evael siht egap nepo elihw ruoy stnemucod .daolpu sihT golaid lliw yllacitamotua esolc nehw yeht evah dehsinif .gnidaolpu","errorHeading":"rorrE derrucco elihw gnidaolpu","errorMsg":"eW deliaf ot {errorMessage}. esaelP yrt niaga .retal","editDocInfo":"tidE tnemucod :noitamrofni","untitled":"deltitnU","uploadFiles":"daolpU lanoitidda selif","selectMore":"+ tceleS erom selif","dragDropMore":"garD dna pord lanoitidda selif ereh"},"embedNote":{"viewTheNote":"weiV eht eton ‘{title}‘ ni sti lanigiro tnemucod txetnoc no duolCtnemucoD ni a wen wodniw ro bat","viewDoc":"weiV eht eritne tnemucod htiw duolCtnemucoD"},"embedPage":{"viewDoc":"weiV eritne {title} no duolCtnemucoD ni wen wodniw ro bat","pageOf":"egaP {page} fo {title}","gotoDocCloud":"oG ot duolCtnemucoD ni wen wodniw ro bat"},"entities":{"back":"kcaB","page":"egaP","of":"fo","totalEntityResult":"{n, plural, one {# latot ytitne tluser} other {# latot ytitne stluser}} ","filter":"retliF","applyFilters":"ylppA sretlif","kind":"dniK","clear":"raelC","person":"nosreP","org":"noitazinagrO","location":"noitacoL","event":"tnevE","workOfArt":"kroW fo trA","consumerGood":"remusnoC dooG","address":"sserddA","date":"etaD","number":"rebmuN","phoneNumber":"enohP rebmuN","price":"ecirP","unknown":"nwonknU","other":"rehtO","occurrences":"secnerruccO","proper":"reporP","common":"nommoC","advanced":"decnavdA","relevanceThreshold":"ecnaveleR :dlohserht","knowledgeGraph":"egdelwonK :hparg","hasKG":"saH a egdelwonk hparg DI","noKG":"seoD ton evah a egdelwonk hparg DI","wikiUrl":"aidepikiW :LRU","hasWiki":"saH a aidepikiW LRU","noWiki":"seoD ton evah a aidepikiW LRU","occurrence":"{n, plural, zero {} one {# ecnerrucco} other {# secnerrucco}}","wikipedia":"aidepikiW","entityExtraction":"ytitnE noitcartxe rof “{title}”","extractingEntities":"gnitcartxE ...seititne","welcome":"emocleW ot ytitne !noitcartxe sihT erutaef si yrev hcum ni ssergorp tub ew tnaw ti ni ruoy sdnah ylrae ot emoclew yna kcabdeef uoy thgim .evah","manual":"thgiR won eht ssecorp rof gnitcartxe seititne si .launam sihT tnemucod sah ton dah seititne detcartxe ,tey os kcilc woleb ot teg .detrats","error":"nA detcepxenu rorre derrucco","extract":"tcartxE seititne","noEntities":"erehT era on .seititne sihT dluoc neppah fi eht tnemucod t’nseod evah ,txet si hsilgnE-non ylno( hsilgnE si detroppus rof ,)won ro emos rorre .derrucco","starting":"gnitratS ...noitcatxe"},"home":{"about":"duolCtnemucoD si na eno-ni-lla mroftalp rof :stnemucod ,daolpu ,ezinagro ,ezylana ,etatonna ,hcraes dna .debme","viewPublicDocs":"weiV cilbup stnemucod"},"annotation":{"title":"noitatonnA eltiT","description":"noitatonnA noitpircseD )lanoitpo(","unchanged":"etoN sniamer degnahcnu","noTitle":"retnE a eltit rof eht noitatonna","org":"sihT eton si ylno elbisiv ot uoy dna srehto htiw tide ssecca ot siht tnemucod","private":"sihT etavirp eton si ylno elbisiv ot uoy","by":"detatonnA yb {name}","byOrg":"detatonnA yb {name}, {org}","addPageNote":"ddA egap eton"},"viewDropdown":{"document":"tnemucoD","plainText":"nialP txeT","thumbnail":"lianbmuhT","notes":"setoN","search":"hcraeS stluseR"},"zoom":{"fitWidth":"tiF htdiw","fitHeight":"tiF thgieh"},"titleHeader":{"contributedBy":"detubirtnoC yb {name}"},"annotatePane":{"annotateDocument":"etatonnA tnemucoD","desc":"thgilhgiH a noitrop fo eht ,egap ro kcilc neewteb segap ot etaerc a .eton"},"modifyPane":{"pagesSelected":"{n, plural, one {# egaP} other {# segaP}} detceleS","applyModifications":"ylppA snoitacifidoM","duplicate":"etacilpuD","move":"evoM","unselect":"tcelesnU","remove":"evomeR","insertPages":"tresnI {n, plural, one {# egaP} other {# segaP}}","pagesPending":"{n, plural, one {# egaP} other {# segaP}} gnidneP noitresnI","insertBegin":"tresnI {n, plural, one {# egap} other {# segap}} ta .gninnigeb","insertEnd":"tresnI {n, plural, one {# egap} other {# segap}} ta .dne","insertBetween":"tresnI {n, plural, one {# egap} other {# segap}} ni neewteb egap {p0} dna {p1}.","click":"kcilC neewteb-ni segap woleb ot kram erehw ot etsap {n, plural, one {# egap} other {# segap}}.","insert":"tresnI","insertAtEnd":"tresnI ta dne","insertPosition":"tresnI segap ta noitisop","insertOtherDoc":"tresnI morf rehto tnemucod","modifyPages":"yfidoM segaP","select":"tceleS segap woleb ot ylppa snoitacifidom egap( ,noitator ,gnignarraer dna .)noiteled kcilC neewteb-ni segap ot .tresni","undo":"odnU","redo":"odeR"},"redactPane":{"redactDoc":"tcadeR tnemucoD","desc":"kcilC dna gard ot ward a kcalb elgnatcer revo hcae noitrop fo eht tnemucod d’uoy ekil ot .tcader detaicossA txet lliw eb devomer nehw uoy evas ruoy .snoitcader","confirm":"mrifnoC snoitcadeR","undo":"odnU"},"searchPane":{"yourQuery":"ruoY yreuq {search} saw dnuof no {n, plural, one {# egap} other {# segap}}"},"selectNotePane":{"selectNote":"tceleS a eton","desc":"tceleS eht noitatonna taht uoy tnaw ot .erahs"},"searchResults":{"resultPages":"{results, plural, one {# tluser} other {# stluser}} ssorca {pages, plural, one {# egap} other {# segap}}","noSearchResults":"oN hcraes .stluser yrT niaga htiw a redaorb .yreuq","occurrences":"{n, plural, one {# ecnerrucco} other {# secnerrucco}}"},"sidebar":{"updating":"gnitadpU ...tnemcucod","original":"lanigirO tnemucoD )FDP( »","related":"detaleR elcitrA »","contributed":"detubirtnoC yb {name}","source":":ecruoS {source}","actions":"tnemucoD snoitcA","share":"erahS","shareDesc":"etaerC na debme ro erahs no laicos .aidem","annotate":"etatonnA","annotateDesc":"ekaM snoitatonna ot peek seton no eht .tnemucod","redact":"tcadeR","redactDesc":"etaerC snoitcader no eht tnemucod ot edih .txet ehT tnemucod lliw ssecorper .sdrawretfa","modify":"yfidoM segaP","modifyDesc":",egnarraeR ,etator ,eteled ,tresni dna tilps .segap","info":"tidE tnemucoD ofnI","infoDesc":"yfidoM tnemucod noitamrofni ekil noitpircsed dna detaler .LRU","data":"tidE sgaT dna ataD","dataDesc":"ddA sgat dna eulav/yek sriap ot ezirogetac ruoy .tnemucod","sections":"tidE snoitceS","sectionsDesc":"ddA snoitces ot ezinagro ruoy tnemucod htiw a elbat fo .stnetnoc","privateNote":"ddA etavirP etoN","privateNoteDesc":"ekaM snoitatonna ot peek seton no eht .tnemucod"},"viewer":{"notFound":"tnemucoD ton dnuof","notFoundDesc":"ehT tnemucod uoy detseuqer rehtie seod ton tsixe ro uoy kcal noissimrep ot ssecca ti","processing":"tnemucoD si gnissecorp","processingDesc":"ehT tnemucod uoy detseuqer si gnissecorp dna lliw yllacitamotua hserfer nehw ti si ydaer","error":"tnemucoD sah deretnuocne na rorre","errorDesc":"A gnissecorp rorre sah neeb deretnuocne ni eht tnemucod uoy detseuqer","accessible":"tnemucoD ton elbissecca","accessibleDesc":"ehT tnemucod uoy detseuqer si llits gnissecorp ro uoy kcal noissimrep ot ssecca ot ti"}}')}}]);
-./public/6816.60c69c5aff88ea9bba1f.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="270d3843-35d9-489d-95d5-cc8df712657f",e._sentryDebugIdIdentifier="sentry-dbid-270d3843-35d9-489d-95d5-cc8df712657f")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[6816],{6816:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"E-mail адрес","loading":"Загрузка...","documentCloud":"DocumentCloud","home":"Главная"},"homeTemplate":{"signedIn":"Вы вошли как {name}","signOut":"Выйти","signIn":"Войти","signUp":"Регистрация","goToApp":"В приложение"},"accessToggle":{"public":"Заметка будет видна всем, у кого есть доступ к документу.","collaborator":"Заметка будет видна всем, кто может редактировать этот документ.","private":"Заметка будет видна только вам.","publicName":"Публичное","collaboratorName":"Соавтор","privateName":"Приватное"},"accessIcon":{"private":"Приватный доступ","organization":"Приватно для вашей организации","public":"Публичный доступ","privateExplanation":"Только вы можете просматривать этот документ","organizationExplanation":"Только члены вашей организации могут просматривать этот документ","publicExplanation":"Кто угодно может найти и просматривать этот документ"},"appearanceCustomizer":{"customizeAppearance":"Настройка внешнего вида","hide":"Скрыть текст справки","show":"Показывать текст справки"},"appearanceDimension":{"responsive":"Автоматически (по умолчанию)","fixed":"Закреплено"},"calendar":{"jan":"Январь","feb":"Февраль","mar":"Март","apr":"Апрель","may":"Май","jun":"Июнь","jul":"Июль","aug":"Август","sep":"Сентябрь","oct":"Октябрь","nov":"Ноябрь","dec":"Декабрь","hourShortcode":"ЧЧ","minuteShortcode":"MM"},"dialog":{"cancel":"Отменить","delete":"Удалить","done":"Готово","edit":"Редактировать","remove":"Удалить","save":"Сохранить","create":"Создать","ok":"OK","update":"Обновить","dismiss":"Скрыть","continue":"Продолжить","dispatch":"Отправить"},"dialogAccessDialog":{"changeAccess":"Изменить доступ к {n, plural, one {документу} few {# документам} many {# документам} other {# документов}}","selectAccess":"Выбрать уровень доступа для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","public":"Публичный доступ","publicDesc":"Кто угодно в Интернете может найти и просматривать документ.","verifiedHelp":"Только верифицированные пользователи или члены верифицированных организаций могут делать загруженные документы публичными. Если вы журналист или каким-либо иным образом работаете над публикацией проверенных материалов для информирования общественности, узнайте больше и запросите верификацию здесь.","privateToOrg":"Вы не можете изменить уровень доступа на \\"Приватно для вашей организации\\", потому что {n, plural, one {этот документ} other {один или более документов}} связаны с вашим индивидуальным аккаунтом, а не с организацией. Чтобы добавить {n, plural, one {его} other {их}} в организацию, выберите {n, plural, one {его} other {их}} в панели управления и нажмите \\"Сменить владельца\\".На этой странице вы можете присоединиться к организации или создать ее.","private":"Приватный доступ","privateDesc":"Только люди с явным разрешением (через соавторство) имеют доступ.","organization":"Приватно для вашей организации","organizationDesc":"Только люди в вашей организации имеют доступ.","schedulePublication":"Запланировать публикацию","scheduleHelp":"Этот документ будет опубликован в указанную дату и время. Время публикации локальное{timezone}.","noindexTitle":"Скрыть от поисковых систем и поиска DocumentCloud","noindexHelp":"Если вы включите эту опцию, то поисковым системам, таким как Google, будет предложено не индексировать этот документ. Кроме того, документ не будет отображаться в поисках из DocumentCloud для пользователей, которые не вошли в систему.","unchanged":"Доступ не изменен. Выберите другой уровень доступа.","future":"Необходимо выбрать время в будущем","change":"Изменить","changeNoindex":"Измените видимость для поисковых систем и DocumentCloud для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"dialogCollaboratorDialog":{"confirm":"Подтвердить удаление пользователя","confirmMsg":"Если вы продолжите, то удалите {name} из {title}. Вы хотите продолжить?","addCollaborators":"Добавить соавторов","invite":"Введите адрес электронной почты существующего пользователя DocumentCloud. Если у них нет аккаунта, пусть они зарегистрируются бесплатно здесь, и попросите их войти в DocumentCloud по крайней мере один раз.","admin":"Администратор","view":"Просмотр","adminHelp":"Соавторы могут редактировать этот проект и его документы","editHelp":"Соавторы могут редактировать документы в этом проекте","viewHelp":"Соавторы могут просматривать документы в этом проекте","add":"Добавить","empty":"Вы еще не добавили каких-либо соавторов в этот проект. Пригласите соавторов, чтобы предоставить другим пользователям доступ к документам в этом проекте. Вы можете контролировать, имеют ли соавторы доступ к просмотру и редактированию документов проекта или возможности быть администратором с правами на приглашение других пользователей и редактирование самого проекта.","manageCollaborators":"Управление соавторами","name":"Имя","access":"Доступ","you":"(вы)"},"dialogDataDialog":{"confirm":"Подтвердите удаление точки данных","removeMsg":"Если продолжите, вы удалите точку данных {key}{value} из указанных документов. Вы хотите продолжить?","addData":"Добавьте данные для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}","tag":"Тег","value":"Значение","key":"Ключ","keyValue":"Ключ / Значение","tagInfo":"Добавьте пользовательские теги для категоризации ваших документов.","eg":"например","exampleTagReport":"жалоба","exampleTagLawsuit":"иск","exampleTagEmail":"e-mail","keyValueInfo":"Добавьте пользовательскую пару ключ / значение для точной категоризации ваших документов.","exampleKVState":"штат: Калифорния","exampleKVYear":"год: 2016","exampleKVType":"тип: примечание","enterTag":"Введите тег","enterKey":"Введите ключ","keyInvalid":"Ключи могут содержать только буквы, цифры, подчеркивания (_) и дефисы (-)","emptyMsg":"Вы еще не добавили никаких данных в указанные документы. Добавьте теги и пары ключ/значение, чтобы классифицировать и упорядочить ваши документы. Вы можете фильтровать и искать данные документа, что дает вам возможность контролировать управление документацией.","manageDocumentData":"Управление данными документа","valueUnchanged":"Значение остается неизменным","kvCannotBeEmpty":"Ключ/значение не может быть пустым"},"dialogReprocessDialog":{"title":"Подтвердить повторную обработку","reprocessDocs":"Если вы продолжите, это заставит {n, plural, one {выбранный документ} few {# выбранных документа} many {# выбранных документов} other {# выбранных документов}} повторно обработать страницу и текст изображения. Вы хотите продолжить?","reprocessSingleDoc":"Если вы продолжите, это заставит документ повторно обработать страницу и текст изображения. Вы хотите продолжить?","confirm":"Повторная обработка"},"dialogDeleteDialog":{"title":"Подтвердить повторную обработку","deleteDocs":"Если вы продолжите, это окончательно удалит {n, plural, one {выбранный документ} few {# выбранных документа} many {# выбранных документов} other {# выбранных документов}}. Вы хотите продолжить?"},"dialogCancelProcessingDialog":{"title":"Отменить обработку","deleteDocs":"Если вы продолжите, это прервет обработку {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}. Когда обработка остановится, появится ошибка, после которой вы можете подвергнуть \\"принудительной повторной обработке\\" или удалить {n, plural, one {документ} other {документы}} используя меню \\"Редактировать\\". Вы хотите продолжить?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Информация о выбранном {n, plural, one {документе} few {# документах} many {# документах} other {# документах}}, доступная только персоналу","id":"ID","title":"Заголовок","actions":"Действия","debug":"Отладка","viewErrors":"Просмотр ошибок","viewS3":"Просмотр в S3"},"dialogDocumentEmbedDialog":{"responsive":"Адаптивный","respOn":"Вкл (по умолчанию)","respOnHelp":"Заполнить ширину контейнера статьи (обычно работает лучше всего)","respOff":"Выкл","respOffHelp":"Документ будет соответствовать указанным ниже размерам","width":"Ширина","widthAuto":"Заполнит доступное место, если документ настроен как адаптивный, иначе значение по умолчанию будет 700px","widthFixed":"Установите максимальную ширину, если документ адаптивный, или установите фиксированный размер, если не адаптивный","height":"Высота","heightAuto":"Высота зависит от размера документа, без максимального размера. Если адаптивный, он будет соответствовать высоте окна браузера минус 100px","heightFixed":"Установите максимальную высоту, если документ адаптивный, или установите фиксированный размер, если не адаптивный","sidebarBehavior":"Поведение боковой панели","sbResponsive":"Адаптивно (по умолчанию)","sbResponsiveHelp":"Автоматически показывать боковую панель на больших экранах и скрывать на мобильных устройствах. В режиме вставки боковая панель будет скрыта","hidden":"Скрытое","visible":"Видимое","visibleDefault":"Видимое (по умолчанию)","sbHiddenHelp":"Скрыть боковую панель по умолчанию","sbVisibleHelp":"Показывать боковую панель по умолчанию","titleBehavior":"Параметры заголовка","tVisibleHelp":"Отображать заголовок и авторство в шапке программы просмотра","tHiddenHelp":"Скрывать заголовок в шапке программы просмотра (все еще виден в боковой панели)","pdfLink":"PDF ссылка","plVisibleHelp":"Показать ссылку на необработанный PDF-документ в боковой панели","plHiddenHelp":"Скрыть PDF ссылку на боковой панели (файл все еще доступен, если URL-адрес известен)","fullscreenOption":"Функция полноэкранного режима","fsVisibleHelp":"Показывать значок полноэкранного режима в правом нижнем углу","fsHiddenHelp":"Скрыть опцию полноэкранного режима","textMode":"Текстовый режим","tmVisibleHelp":"Показывать опцию для просмотра текста документа в раскрывающемся окне","tmHiddenHelp":"Скрыть текстовый режим","contributedByFormat":"Внесено в формате","cbfUserAndOrg":"Пользователь и организация (по умолчанию)","cbfUserAndOrgHelp":"Показывать авторство документа как имя пользователя, за которым следует организация","cbfOrgOnly":"Только организация","cbfOrgOnlyHelp":"Присвоить документ только организации","share":"Поделиться “{title}”","embedDesc":"Скопируйте HTML-код, чтобы вставить этот документ в статью"},"dialogDocumentInformationDialog":{"editInformation":"Редактировать информацию для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Установите параметры для выбранного дополнения для запуска {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"dialogRedactDialog":{"title":"Подтвердить исправления","description":"Вы уверены, что хотите исправить текущий документ? Если вы продолжите, программа просмотра документов будет временно недоступна, пока документ повторно обрабатывается с исправлениями. Это изменение необратимо."},"dialogModifyDialog":{"title":"Применить изменения","description":"Вы уверены, что хотите изменить текущий документ? Если вы продолжите, программа просмотра документов будет временно недоступна во время повторной обработки документа с модификациями. Это изменение необратимо.","closeTitle":"Подтвердить закрытие","closeWarning":"Вы потеряете все несохранённые изменения. Вы уверены, что хотите продолжить?"},"dialogDeleteNoteDialog":{"title":"Подтвердить удаление","description":"Вы уверены, что хотите удалить текущую заметку?"},"dialogEditSectionsDialog":{"confirmDelete":"Подтвердить удаление","proceedingWillRemove":"Если вы продолжите, это удалит указанный раздел (стр. {page} {title}). Вы хотите продолжить?","editSections":"Редактировать разделы","manageSections":"Управляйте разделами для организации документа и содержания.","pageAbbrevNo":"стр. {n}","pageAbbrev":"стр.","empty":"Вы пока не добавили ни одного раздела","edit":"Редактировать выбранный раздел","add":"Добавить новый раздел","title":"Заголовок","missingTitle":"Пожалуйста, введите заголовок","updateTitle":"Введите новый заголовок или номер страницы","uniquePageNumber":"Вы должны ввести уникальный номер страницы","invalidPageNumber":"Номер страницы недействителен"},"dialogEmbedDialog":{"updatingDocument":"Обновление документа...","makingPublic":"Документ в настоящее время публикуется. Это может занять пару минут.","wouldMakePublic":"Вы хотите сделать этот документ публичным перед тем, как поделиться?","notPublic":"В настоящее время этот документ не является публичным. Если вы вставляете или привязываете его к ссылке, только вы и соавторы смогут увидеть его до тех пор, пока он не станет публичным. Нажмите ниже, когда вы будете готовы открыть этот документ для публики.","makePublic":"Сделать документ публичным","leave":"Оставить как есть","selectShare":"Выберите опцию общего доступа","selectShareHelp":"Выберите, поделиться всем документом или просто страницей, или заметкой.","shareDoc":"Поделиться всем документом","shareDocHelp":"Ссылка или вставка всего документа. (Это наиболее часто используемый вариант общего доступа.)","sharePage":"Поделиться конкретной страницей","sharePageHelp":"Привязать к ссылке или вставить одну страницу документа. Полезно для выделения фрагментов страницы.","shareNote":"Поделиться конкретной заметкой","shareNoteHelpHasNote":"Привяжите к ссылке или вставьте заметку в документ. Полезно для выделения региона страницы.","shareNoteHelpNoNote":"Как только вы добавите заметки к документу, используйте эту функцию, чтобы привязать их к ссылке или вставить."},"dialogErrorDialog":{"errorOccurred":"Произошла ошибка","unexpectedErrorOccurred":"Произошла непредвиденная ошибка","tryAgain":"Пожалуйста, попробуйте позже.","close":"Закрыть","refresh":"Обновить"},"dialogNoteEmbedDialog":{"embedNote":"Вставить заметку \\"{title}\\"","embedDesc":"Скопируйте HTML-код для вставки этой заметки в статью или пост:"},"dialogPageEmbedDialog":{"embedPage":"Вставить страницу \\"{title}\\"","embedDesc":"Скопируйте HTML-код для вставки этой страницы в статью или пост:","selectPage":"Выберите страницу для вставки:","page":"Страница {n} (сейчас видна)","otherPage":"Другая страница","enterPageNumber":"Введите номер страницы для вставки:"},"dialogProjectAccessDialog":{"changeAccessFor":"Изменить доступ для {name}","selectAccess":"Выберите уровень доступа ниже для {name} в {title}","adminAccess":"Доступ администратора","editAccess":"Редактировать доступ","viewAccess":"Доступ к просмотру","adminHelp":"Этот соавтор может редактировать этот проект и его документы. Соавтор может приглашать пользователей, удалять пользователей и удалить проект.","editHelp":"Этот соавтор может редактировать документы в этом проекте, но не может редактировать сам проект.","viewHelp":"Этот соавтор может редактировать документы в этом проекте, но не может редактировать сам проект.","invalidAccess":"Доступ уже установлен на {access}. Выберите другой уровень доступа.","changeAccess":"Изменить доступ"},"dialogOwnerDialog":{"selectUser":"Необходимо выбрать пользователя","selectOrg":"Необходимо выбрать организацию","changeOwner":"Сменить владельца для {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}","accessWarning":"Внимание: Вы можете потерять доступ к указанному {n, plural, one {документу} few {# документам} many {# документам} other {# документам}} в результате смены владельца документа","user":"Пользователь:","filterUsers":"Начните печатать для фильтрации пользователей...","filterOrgs":"Начните печатать для фильтрации организаций..."},"dialogProjectDialog":{"confirmDelete":"Подтвердить удаление","deleteProject":"Вы уверены, что хотите удалить этот проект ({project})?","editProject":"Редактировать проект","createProject":"Создать новый проект","title":"Заголовок...","projectDesc":"Описание проекта (необязательно)","manageCollabs":"Управление соавторами","share":"Поделиться / Вставить проект","enterTitle":"Введите заголовок","changeTitle":"Изменить заголовок или описание"},"dialogProjectEmbedDialog":{"share":"Поделиться “{title}”","embedDesc":"Скопируйте HTML-код для вставки этого документа в статью или пост:","invalid":"Неверный проект","cannotEmbed":"Невозможно вставить этот проект, так как он не существует."},"htmlEditor":{"preview":"Предпросмотр:"},"image":{"error":"Возникла ошибка. Попробуйте перезагрузить страницу"},"omniselect":{"filter":"Начните печатать для фильтрации языка","noResults":"Нет результатов. Нажмите, чтобы очистить фильтр."},"shareOptions":{"errorText":"Произошла неожиданная ошибка. Пожалуйста, попробуйте позже.","copyHtml":"Скопировать HTML код","addShortcode":"Добавьте этот шорткод к своему WordPress контенту —","pluginRequired":"требуется плагин","copyShortcode":"Скопировать шорткод","copyUrl":"Копировать URL"},"specialMessage":{"contactUs":"Свяжитесь с намидля сообщений об ошибках, вопросов и предложений."},"uploadOptions":{"documentLang":"Язык документа:","forceOcr":"Принудительный OCR:"},"actionBar":{"selectDocs":"Выберите документы, чтобы открыть действия по редактированию","noPerms":"У вас нет прав доступа для редактирования всех выбранных документов","editMenu":"Редактировать","projectsMenu":"Проекты","addOnsMenu":"Дополнения"},"authSection":{"help":"Справка","language":"Язык","tips":"Советы и подсказки","searchDocs":"Поиск документации","apiDocs":"Документация API","emailUs":"Напишите нам","acctSettings":"Настройки аккаунта","signOut":"Выйти","changeOrg":"Изменить организацию","personalAcct":"Личный аккаунт","signIn":"Войти","uploadEmail":"Загрузить через e-mail"},"documents":{"yourDocuments":"Ваши документы","searchResults":"Результаты поиска","accessDocuments":"Ваши {access}документы","nameDocuments":"Документы {name} {access}","allDocuments":"Все {access}документы","mustBeVerified":"Вы должны быть верифицированным журналистом, чтобы загружать документы","upload":"Загрузка","dropFile":"Перетащите файл для загрузки"},"document":{"open":"Открыть","updating":"Обновление документа...","processing":"Обработка","processingError":"Произошла ошибка при попытке обработать ваш документ","remove":"Удалить","improper":"Ваш документ был загружен неправильно","project":"Проект","totalMatchingPages":"{n} из {m} страниц соответствуют запросу","showAll":"Показать все","matchingPages":"{n} страниц соответствуют запросу","pageAbbrev":"стр.","pageCount":"{n, plural, one {# страница} few {# страницы} many {# страниц} other {# страниц}}","source":"Источник","noteCount":"{n, plural, one {# заметка} few {# заметки} many {# заметок} other {# заметок}}"},"documentThumbnail":{"pages":"страницы","loading":"Загрузка информации о прогрессе..."},"mainContainer":{"error":"Ошибка","errorMsg":"Не получилось подключиться к серверу DocumentCloud. Пожалуйста, попробуйте обновить страницу позже.","refresh":"Обновить"},"editMenu":{"editDocInfo":"Редактировать информацию о документе","changeAccess":"Изменить доступ","editDocData":"Редактировать данные документа","cancelProcessing":"Отменить обработку","forceReprocess":"Принудительная повторная обработка","entities":"Субъекты BETA","changeOwner":"Cменить владельца","delete":"Удалить","diagnosticInfo":"Информация о диагностике"},"metaFields":{"defaultFieldInvalidText":"Документ уже имеет это {fieldName}","titleFieldTitle":"Заголовок","titleFieldName":"название","titleFieldNameUppercase":"Название","titleFieldHeader":"Переименовать {n, plural, one {# документ} few {# документа} many {# документов} other {# документов}}","titleFieldDescription":"Введите название ниже для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","titleFieldButton":"Переименовать","titleFieldInvalidSameName":"Документ уже имеет это название","titleFieldInvalidEmptyName":"Введите корректное название","sourceFieldTitle":"Источник","sourceFieldName":"источник","sourceFieldNameUppercase":"Источник","sourceFieldHeader":"Редактировать источник для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","sourceFieldDescription":"Введите источник ниже для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","sourceFieldButton":"Редактировать","descriptionFieldTitle":"Описание","descriptionFieldName":"описание","descriptionFieldNameUppercase":"Описание","descriptionFieldHeader":"Редактировать описание для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","descriptionFieldDescription":"Введите описание ниже для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","descriptionFieldButton":"Редактировать","relatedArticleFieldTitle":"URL-адрес связанной статьи","relatedArticleFieldName":"URL-адрес связанной статьи","relatedArticleFieldNameUppercase":"URL-адрес связанной статьи","relatedArticleFieldHeader":"Отредактируйте URL-адрес связанной статьи для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","relatedArticleFieldDescription":"Введите ниже URL-адрес связанной статьи для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","relatedArticleFieldButton":"Редактировать","publishedUrlFieldTitle":"Опубликованный URL-адрес","publishedUrlFieldName":"опубликованный URL-адрес","publishedUrlFieldNameUppercase":"Опубликованный URL-адрес","publishedUrlFieldHeader":"Отредактируйте опубликованный URL-адрес для {n, plural, one {# документа} few {# документов} many {# документов} other {# документов}}","publishedUrlFieldDescription":"Введите ниже опубликованный URL-адрес для {n, plural, one {выбранного документа} few {# выбранных документов} many {# выбранных документов} other {# выбранных документов}}","publishedUrlFieldButton":"Редактирование"},"projectsMenu":{"newProject":"+ Новый проект","projMembership":"Членство в проекте","selectDocs":"Выберите документы, чтобы поместить их в проекты","createProj":"Создать проект для организации и обмена документами"},"addonsMenu":{"newAddon":"Запросить новое дополнение от персонала","selectDocs":"Выбрать документы для отправки их в дополнения","addonsList":"Список дополнений","createAddon":"Выбрать больше документов для использования дополнений","addon":"Дополнение","learnMore":"Узнать больше о дополнениях","browseAll":"Просмотреть все дополнения"},"noDocuments":{"noSearchResults":"Поиск не дал результатов","queryNoResults":"Ваш поисковый запрос не дал результатов. Попробуйте еще раз с более широким поисковым запросом.","welcome":"Добро пожаловать в DocumentCloud!","verify1":"Обратите внимание, что в настоящее время ваш аккаунт не верифицирован, чтобы загружать. Вы можете искать в публичной базе, организовывать интересующие вас документы в проектах, оставлять приватные заметки и сотрудничать в редактировании и аннотировании документов по приглашению.","verify2":"Если вы хотите загрузить или опубликовать документы, и вы работающий журналист или другая организация, заинтересованная в публикации исходных материалов в общественных интересах, вам нужно верифицировать свой аккаунт или добавить его в верифицированную организацию. Это простой процесс:","verify3":"Сначала проверьте, существует ли ваша организация, и, если вы нашли ее, нажмите \\"Запрос на присоединение\\" на ее странице.","verify4":"Если ваша организация еще не верифицирована, или вы фрилансер, запросите верификацию здесь. Обработка запросов обычно занимает два рабочих дня.","uploadFirst":"Загрузите ваш первый документ","upload1":"Загрузите файл документа, чтобы начать использовать DocumentCloud. Вы можете перетащить файл в это окно, или нажмите на синюю кнопку \\"Загрузить\\" выше.","upload2":"После загрузки файла, DocumentCloud будет обрабатывать документ и извлекать его содержимое. Это может занять несколько минут, но как только он будет готов, ваш документ будет оптимизирован для анализа и распространения в Интернете.","requestVerificationAction":"Запросить верификацию для загрузки"},"paginator":{"of":"из","document":"{n, plural, one {документ} few {документа} many {документов} other {документов}}"},"processingBar":{"doneProcessing":"Обработка выполнена","processingDocuments":"Обработка {n, plural, one {документа} few {# документов} many {# документов} other {# документов}}"},"searchBar":{"tips":"Подсказки для поиска: добавьте фильтры набрав пользователя:, проект:, или организацию:, и т.д. Используйте сортировку: для упорядочивания результатов.","learnMore":"Узнать больше","search":"Поиск"},"searchLink":{"search":"Поиск в этой коллекции документов"},"projects":{"header":"Проекты","allDocuments":"Все Документы","yourDocuments":"Ваши документы","yourPubDocuments":"Ваши публичные документы","orgDocuments":"Документы {name}","newProject":"+ Новый проект","createProject":"Создайте свой первый проект, нажав на кнопку \\"Новый проект\\" выше."},"uploadDialog":{"docUpload":"Загрузка документа","docUploadProj":"Загрузка документа в {title}","beginUpload":"Начать загрузку","pdfSizeWarning":"Вы можете загрузить только PDF файлы менее {size}.","nonPdfSizeWarning":"Вы можете загрузить только не PDF файлы менее {size}.","fileReady":"{n, plural, one {файл} few {файла} many {файлов} other {файлов}} готовы к загрузке","fileLimitWarning":"Вы можете загрузить только {limit} файлов за раз.","moreOptions":"Больше опций","selectFiles":"+ Выбрать файлы","dragDrop":"Перетащите файлы сюда","publicMsg":"Документ будет доступен к публичному просмотру.","collabMsg":"Документ будет виден вашей организации.","privateMsg":"Заметка будет видна только вам.","collabName":"Организация","submitting":"Почти готово... отправка загруженных файлов для обработки ({percent})","uploading":"Загрузка ... ({uploaded}/{length})","gettingInfo":"Получение информации о загрузке ({percent})","pleaseLeaveOpen":"Пожалуйста, оставьте эту страницу открытой, пока ваши документы загружаются. Это диалоговое окно будет автоматически закрыто по окончанию загрузки.","errorHeading":"Произошла ошибка при загрузке","errorMsg":"Не удалось {errorMessage}. Пожалуйста, повторите попытку позже.","editDocInfo":"Редактировать информацию о документе:","untitled":"Без названия","uploadFiles":"Загрузить дополнительные файлы","selectMore":"+ Выбрать больше файлов","dragDropMore":"Перетащите дополнительные файлы сюда"},"embedNote":{"viewTheNote":"Посмотреть заметку ‘{title}‘ в исходном контексте документа на DocumentCloud в новом окне или вкладке","viewDoc":"Просмотр всего документа с помощью DocumentCloud"},"embedPage":{"viewDoc":"Просмотр всего {title} на DocumentCloud в новом окне или вкладке","pageOf":"Страница {page} из {title}","gotoDocCloud":"Перейти на DocumentCloud в новом окне или вкладке"},"entities":{"back":"Назад","page":"Страница","of":"из","totalEntityResult":"Всего {n, plural, one {# результат} few {# результата} many {# результатов} other {# всего результатов}} ","filter":"Фильтр","applyFilters":"Применить фильтры","kind":"Тип","clear":"Очистить","person":"Лицо","org":"Организация","location":"Местоположение","event":"Событие","workOfArt":"Произведение искусства","consumerGood":"Потребительские товары","address":"Адрес","date":"Дата","number":"Номер","phoneNumber":"Номер телефона","price":"Цена","unknown":"Неизвестно","other":"Другое","occurrences":"Случаи","proper":"Надлежащие","common":"Обычные","advanced":"Дополнительно","relevanceThreshold":"Порог релевантности:","knowledgeGraph":"База знаний:","hasKG":"Имеет ID базы знаний","noKG":"Не имеет ID базы знаний","wikiUrl":"URL-адрес на Википедии:","hasWiki":"Имеет URL-адрес на Википедии","noWiki":"Не имеет URL-адреса на Википедии","occurrence":"{n, plural, one {# случай} few {# случая} many {# случаев} other {# случаев}}","wikipedia":"Википедия","entityExtraction":"Извлечение субъекта для “{title}”","extractingEntities":"Извлечение субъектов...","welcome":"Добро пожаловать в извлечение субъектов! Эта функция находится в процессе разработки, но мы хотим, чтобы она была у вас как можно раньше, поэтому рады услышать любые ваши отзывы.","manual":"Сейчас процесс извлечения субъектов в ручном режиме. В этом документе еще не были извлечены субъекты, поэтому нажмите ниже, чтобы начать.","error":"Произошла непредвиденная ошибка","extract":"Извлечение субъектов","noEntities":"Нет субъектов. Это могло произойти, если в документе нет текста, он не на английском (сейчас поддерживается только английский язык), или произошла ошибка.","starting":"Запуск извлечения..."},"home":{"about":"DocumentCloud - это универсальная платформа для документов: загрузка, организация, анализ, аннотация, поиск и вставка.","viewPublicDocs":"Просмотр публичных документов"},"annotation":{"title":"Заголовок аннотации","description":"Описание аннотации (необязательно)","unchanged":"Примечание остается неизменным","noTitle":"Введите название заметки","org":"Эта заметка видна только вам и другим лицам с доступом к редактированию этого документа","private":"Эта приватная заметка видна только вам","by":"Аннотировано {name}","byOrg":"Аннотировано {name}, {org}","addPageNote":"Добавить заметку к странице"},"viewDropdown":{"document":"Документ","plainText":"Обычный текст","thumbnail":"Миниатюра","notes":"Заметки","search":"Результаты поиска"},"zoom":{"fitWidth":"Подгонять ширину","fitHeight":"Подгонять высоту"},"titleHeader":{"contributedBy":"Внесено {name}"},"annotatePane":{"annotateDocument":"Аннотация документа","desc":"Выделите часть страницы или щелкните между страницами, чтобы создать заметку."},"modifyPane":{"pagesSelected":"{n, plural, one {# страница} few {# страницы} many {# страниц} other {# Pages}} выбраны","applyModifications":"Применить изменения","duplicate":"Дублировать","move":"Переместить","rotate":"Повернуть","unselect":"Отменить выбор","remove":"Удалить","insertPages":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}}","pagesPending":"{n, plural, one {# страница} few {# страницы} many {# страниц} other {# страниц}} в ожидании вставки","insertBegin":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}} в начале.","insertEnd":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}} в конце.","insertBetween":"Вставить {n, plural, one {# страницу} few {# страницы} many {# страницы} other {# страницы}} между страницами {p0} и {p1}.","click":"Нажмите ниже между страницами, чтобы отметить где вставить {n, plural, one {# страницу} few {# страницы} many {# страниц} other {# страниц}}.","insert":"Вставить","insertAtEnd":"Вставить в конце","insertPosition":"Вставить страницы в позиции","insertOtherDoc":"Вставить из другого документа","modifyPages":"Изменить страницы","select":"Выберите страницы ниже, чтобы применить изменения (поворот страницы, изменение порядка и удаление). Нажмите между страницами для вставки.","undo":"Отменить","redo":"Повторить"},"redactPane":{"redactDoc":"Исправить документ","desc":"Нажмите и перетащите, чтобы нарисовать чёрный прямоугольник на каждой части документа, который вы хотели бы отредактировать. Связанный текст будет удален, когда вы сохраните ваши исправления.","confirm":"Подтвердить исправления","undo":"Отменить"},"searchPane":{"yourQuery":"Ваш запрос {search} был найден на {n, plural, one {# странице} few {# страницах} many {# страницах} other {# страницах}}"},"selectNotePane":{"selectNote":"Выбрать заметку","desc":"Выберите аннотацию, которой вы хотите поделиться."},"searchResults":{"resultPages":"{results, plural, one {# результат} few {# результата} many {# результатов} other {# результатов}} на {pages, plural, one {# странице} few {# страницах} many {# страницах} other {# страницах}}","noSearchResults":"Нет результатов поиска. Попробуйте еще раз с более широким запросом.","occurrences":"{n, plural, one {# случай} few {# случая} many {# случаев} other {# случаев}}"},"sidebar":{"updating":"Обновление документа...","original":"Оригинальный документ (PDF) »","related":"Связанная статья »","contributed":"Внесено {name}","source":"Источник: {source}","actions":"Действия с документом","share":"Поделиться","shareDesc":"Создайте вставку или поделитесь в социальных сетях.","annotate":"Аннотация","annotateDesc":"Сделайте аннотации для хранения заметок в документе.","redact":"Исправить","redactDesc":"Создайте исправления в документе, чтобы скрыть текст. После этого документ будет повторно обрабатываться.","modify":"Изменить страницы","modifyDesc":"Перестановка, поворот, удаление, вставка и разделение страниц.","info":"Изменить информацию о документе","infoDesc":"Изменить информацию о документе, такую как описание и связанный с ним URL-адрес.","data":"Редактировать теги и данные","dataDesc":"Добавьте теги и пары ключ/значение для категоризации документа.","sections":"Редактировать разделы","sectionsDesc":"Добавьте разделы, чтобы упорядочить документ и содержание.","privateNote":"Добавить приватную заметку","privateNoteDesc":"Сделать аннотации для хранения заметок в документе."},"viewer":{"notFound":"Документ не найден","notFoundDesc":"Документ, который вы запросили, не существует или у вас нет разрешения на доступ к нему","processing":"Обработка документа","processingDesc":"Документ, который вы запросили сейчас обрабатывается и автоматически обновится, когда он будет готов","error":"В документе произошла ошибка","errorDesc":"Произошла ошибка обработки в запрошенном вами документе","accessible":"Документ недоступен","accessibleDesc":"Запрошенный вами документ все еще обрабатывается или у вас нет разрешения на доступ к нему"},"addonDispatchDialog":{"select":"Выберите, какие документы вы хотите запустить с этим дополнением:","queryNoSelected":"Это дополнение попробует запуститься с {n, plural, one {# документом} few {# документами} many {# документами} other {# документов}}, которые сейчас включены в результаты поиска. Чтобы запустить его только с выбранными документами, отмените это и выберите некоторые из них, затем снова выберите дополнение.","noSelected":"Вы должны выбрать некоторые документы для запуска. Отмените это и выберите некоторые из них, затем снова выберите дополнение.","runSelected":"Это дополнение попробует запуститься с {n, plural, one {# выбранным документом} few {# выбранными документами} many {# выбранными документами} other {# выбранными документами}}.","runQuery":"Это дополнение попробует запуститься с {n, plural, one {# документом} few {# документами} many {# документами} other {# документами}}, которые сейчас включены в результаты поиска.","labelSelected":"{n, plural, one {# выбранный документ} few {# выбранных документа} many {# выбранных документов} other {#выбранных документов}}","labelQuery":"{n, plural, one {# документ} few {# документа} many {# документов} other {# документов}} из текущих результатов поиска","learnMore":"Узнать больше.","hideAddons":"Скрыть запланированные дополнения","showRuns":"Показать заупски","hideRuns":"Скрыть запуски","showAddons":"Показать запланированные дополнения ({n})","runSchedule":"Запуск по расписанию:","disable":"Отключить"},"addonBrowserDialog":{"searchPlaceholder":"Поиск...","active":"Активно","inactive":"Неактивно","next":"Далее","previous":"Назад"},"uploadEmailDialog":{"uploadEmailAddress":"Загрузить через e-mail","bodyText":"Вы можете загрузить документы на свой аккаунт, отправив их на специальный адрес электронной почты в виде вложений. По соображениям безопасности этот email отображается только один раз. Пожалуйста, скопируйте его в безопасное место: он будет принимать вложения с любого аккаунта электронной почты. Вы можете сгенерировать новый адрес для загрузки в любое время (который отключит старый) или полностью отключить эту функцию. Документы загружаются приватно.
\n","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","module.exports = \"\"","import { Svue } from \"svue\";\n\nconst DOCUMENTCLOUD_TOKEN_STORAGE_KEY = \"documentcloud_token\";\n\nexport const SQUARELET_URL = process.env.SQUARELET_BASE;\nexport const SIGN_IN_URL = process.env.DC_BASE + process.env.DC_LOGIN;\nexport const SIGN_UP_URL =\n process.env.SQUARELET_BASE +\n process.env.SQUARELET_SIGNUP +\n encodeURIComponent(window.location.href);\nexport const SIGN_OUT_URL = process.env.DC_BASE + process.env.DC_LOGOUT;\n\nexport const auth = new Svue({\n data() {\n return {\n signingIn: false,\n key: null,\n };\n },\n computed: {\n isAuthenticated(key) {\n return key !== null;\n },\n },\n});\n\nexport function login() {\n setToken(true);\n}\n\nexport function logout() {\n // TODO: use some Squarelet method and have a finally clause of removeToken()\n // for now, we just \"forget\" we're logged in\n removeToken();\n}\n\n// Token methods\nfunction initialize() {\n try {\n const storedData = localStorage.getItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n if (storedData === null) {\n // Logged in\n return;\n }\n if (storedData !== null) {\n const key = JSON.parse(storedData);\n setToken(key);\n return;\n }\n } catch (e) {\n removeToken();\n return;\n }\n\n removeToken();\n return;\n}\n\nfunction setToken(key) {\n // Set the token state.\n try {\n localStorage.setItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY, JSON.stringify(key));\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = key;\n}\n\nfunction removeToken() {\n try {\n localStorage.removeItem(DOCUMENTCLOUD_TOKEN_STORAGE_KEY);\n } catch (e) {\n // Ignore if local storage is not available\n }\n\n auth.key = null;\n}\n\n// Initialize the token\ninitialize();\n","const languageCodes = process.env.LANGUAGE_CODES.split(\"|\");\nconst languageNames = process.env.LANGUAGE_NAMES.split(\"|\");\nexport const defaultLanguage = process.env.DEFAULT_LANGUAGE;\n\nfunction makeLanguagePairs(codes, names) {\n const results = [];\n for (let i = 0; i < codes.length; i++) {\n results.push([codes[i], names[i]]);\n }\n results.sort((a, b) => (a[1] > b[1] ? 1 : a[1] < b[1] ? -1 : 0));\n return results;\n}\n\nexport const languages = makeLanguagePairs(languageCodes, languageNames);\n\nconst textractLanguageCodes = [\"eng\", \"spa\", \"ita\", \"por\", \"fra\", \"deu\"];\nexport const textractLanguages = languages.filter((l) =>\n textractLanguageCodes.indexOf(l[0]) != -1\n);\n","const docTitleLimit = process.env.DOCUMENT_TITLE_CHAR_LIMIT;\nconst docSourceLimit = process.env.DOCUMENT_SOURCE_CHAR_LIMIT;\nconst docDescriptionLimit = process.env.DOCUMENT_DESCRIPTION_CHAR_LIMIT;\nconst relatedArticleLimit = process.env.RELATED_ARTICLE_URL_CHAR_LIMIT;\nconst publishedUrlLimit = process.env.PUBLISHED_URL_CHAR_LIMIT;\n\nexport const metaDialogs = [\n {\n menuTitle: \"metaFields.titleFieldTitle\",\n charLimit: docTitleLimit,\n fieldAccessor: (x) => x.title,\n fieldName: \"metaFields.titleFieldName\",\n fieldNameUppercase: \"metaFields.titleFieldNameUppercase\",\n apiField: \"title\",\n headerText: \"metaFields.titleFieldHeader\",\n explainerText: \"metaFields.titleFieldDescription\",\n buttonText: \"metaFields.titleFieldButton\",\n fieldValid: (value, initial) => value != initial && value.trim().length > 0,\n fieldInvalidText: (value, initial) =>\n value == initial\n ? \"metaFields.titleFieldInvalidSameName\"\n : value.trim().length == 0\n ? \"metaFields.titleFieldInvalidEmptyName\"\n : \"\",\n disabled: (numSelected) => numSelected != 1,\n },\n {\n menuTitle: \"metaFields.sourceFieldTitle\",\n charLimit: docSourceLimit,\n fieldAccessor: (x) => x.source,\n fieldName: \"metaFields.sourceFieldName\",\n fieldNameUppercase: \"metaFields.sourceFieldNameUppercase\",\n apiField: \"source\",\n headerText: \"metaFields.sourceFieldHeader\",\n explainerText: \"metaFields.sourceFieldDescription\",\n buttonText: \"metaFields.sourceFieldButton\",\n },\n {\n menuTitle: \"metaFields.descriptionFieldTitle\",\n charLimit: docDescriptionLimit,\n fieldAccessor: (x) => x.description,\n fieldName: \"metaFields.descriptionFieldName\",\n fieldNameUppercase: \"metaFields.descriptionFieldNameUppercase\",\n apiField: \"description\",\n headerText: \"metaFields.descriptionFieldHeader\",\n explainerText: \"metaFields.descriptionFieldDescription\",\n isTextArea: true,\n buttonText: \"metaFields.descriptionFieldButton\",\n },\n {\n menuTitle: \"metaFields.relatedArticleFieldTitle\",\n charLimit: relatedArticleLimit,\n fieldAccessor: (x) => x.relatedArticleUrl,\n fieldName: \"rmetaFields.relatedArticleFieldName\",\n fieldNameUppercase: \"metaFields.relatedArticleFieldNameUppercase\",\n apiField: \"related_article\",\n headerText: \"metaFields.relatedArticleFieldHeader\",\n explainerText: \"metaFields.relatedArticleFieldDescription\",\n buttonText: \"metaFields.relatedArticleFieldButton\",\n },\n {\n menuTitle: \"metaFields.publishedUrlFieldTitle\",\n charLimit: publishedUrlLimit,\n fieldAccessor: (x) => x.publishedUrl,\n fieldName: \"metaFields.publishedUrlFieldName\",\n fieldNameUppercase: \"metaFields.publishedUrlFieldNameUppercase\",\n apiField: \"published_url\",\n headerText: \"metaFields.publishedUrlFieldHeader\",\n explainerText: \"metaFields.publishedUrlFieldDescription\",\n buttonText: \"metaFields.publishedUrlFieldButton\",\n },\n];\n","import { timeoutify } from \"@/util/closure.js\";\n\nexport function informSize(\n element,\n useScrollDimension = true,\n updateStyleProps = false,\n) {\n // Inform a parent window about an embed size\n const update = () => {\n window.parent.postMessage(\n {\n width: Math.max(\n useScrollDimension ? element.scrollWidth : 0,\n element.offsetWidth,\n ),\n height: Math.max(\n useScrollDimension ? element.scrollHeight : 0,\n element.offsetHeight,\n ),\n updateStyleProps,\n },\n \"*\",\n );\n };\n\n // Trigger event now and any time the window resizes\n window.addEventListener(\"resize\", timeoutify(update));\n update();\n}\n\nexport function setupResizeEvent(iframe) {\n window.addEventListener(\"message\", (event) => {\n if (event.source == iframe.contentWindow) {\n const { width, height, updateStyleProps } = event.data;\n if (width != null) {\n iframe.width = width;\n }\n if (height != null) {\n iframe.height = height;\n if (updateStyleProps) {\n // Set max height\n const existingMaxHeight = parseFloat(\n iframe.dataset.cachemaxheight || iframe.style.maxHeight,\n );\n const existingMinHeight = parseFloat(\n iframe.dataset.cacheminheight || iframe.style.minHeight,\n );\n if (\n !isNaN(existingMaxHeight) &&\n existingMaxHeight != null &&\n !isNaN(existingMinHeight) &&\n existingMinHeight != null\n ) {\n // Cache original maxheight\n iframe.dataset.cachemaxheight = existingMaxHeight;\n iframe.dataset.cacheminheight = existingMinHeight;\n iframe.style.maxHeight =\n \"\" + Math.min(existingMaxHeight, height) + \"px\";\n iframe.style.minHeight =\n \"\" + Math.max(existingMinHeight, height) + \"px\";\n } else {\n iframe.style.maxHeight = \"\" + height + \"px\";\n iframe.style.minHeight = \"\" + height + \"px\";\n }\n }\n }\n }\n });\n}\n","export function smoothify(fn) {\n let timer = null;\n\n return (...args) => {\n if (timer != null) {\n cancelAnimationFrame(timer);\n timer = null;\n }\n\n timer = requestAnimationFrame(() => {\n timer = null;\n fn(...args);\n });\n };\n}\n\nexport function timeoutify(fn, timeout = 100) {\n let timer = null;\n\n return (...args) => {\n if (timer != null) {\n clearTimeout(timer);\n timer = null;\n }\n\n timer = setTimeout(() => {\n timer = null;\n fn(...args);\n }, timeout);\n };\n}\n\nexport function ignoreFirst(closure) {\n // Ignore first invocation of a function\n let first = true;\n return (...args) => {\n if (first) {\n first = false;\n } else {\n closure(...args);\n }\n };\n}\n"],"names":["toString","author","name","repository","usage","active","addon","date_format","created_at","progress","includes","uuid","rating","comment","message","file_url","status","me","newPage","nopadding","homeLink","toUrl","$orgsAndUsers","small","inline","has","input","label","placeholder","options","selected","value","valueToName","reduce","m","opt","set","Map","nameToValue","get","e","values","organization","n","monthly_ai_credits","language","forceOcr","ocrEngine","hasTextract","feature_level","languageName","languages","code","find","defaultLanguageName","ocrEngines","async","selectLanguages","REM","publishedUrl","trim","length","Math","floor","id","slugId","thumbnail","viewable","pending","document","embed","dialog","noteCount","publicNote","orgNote","privateNote","emit","pick","realProgress","$documents","realProgressMap","pagesProcessed","pagesProcessedMap","pageCount","pageCountMap","dispatch","checkbox","checked","indeterminate","disabled","results","count","onlyPage","hasPrev","hasNext","search","start","end","rawResults","hasResults","manager","data","documents","layout","computed","hasDocuments","allSelected","every","doc","selectedMap","someSelected","hasSelection","noneSelected","removeSelected","changeAccessSelected","numSelected","accessEditDocuments","slice","changeOwnerSelected","ownerEditDocuments","reprocessSelected","reprocessDocuments","cancelProcessSelected","editDataSelected","showDiagnosticsSelected","diagnosticsOpen","showMailkeySelected","mailkeyOpen","menuTitle","metaDialogs","isStaff","processing","allProcessing","canChangeOwner","visible","$layout","filter","userId","publicAccess","organizations","indexOf","orgId","docs","documentInfoOpen","meta","metaOpen","editMetaSelected","title","project","scope","caption","addRemoveableProjects","alphabetizedProjects","projects","sort","a","b","localeCompare","$projects","addonURL","window","plausible","q","push","arguments","alphabetizedAddons","$pinned","loggedIn","selectionEditable","loading","outerHeight","editVisible","detail","forEach","selectAll","closed","langs","triggerWindowResize","dispatchEvent","Event","change","org","updateLanguage","$locale","localStorage","setItem","list","individual","currentOrg","orgs","selfOrgs","individualOrg","documentTypes","split","map","x","toLowerCase","filterFiles","files","file","endsWith","dragging","leave","Array","from","handleFiles","dataTransfer","source","createdAt","format","userName","userOrgString","description","error","nofile","projectIds","highlights","noteHighlights","readable","dataPoints","editAccess","projectsById","text","type","page","passages","relativePageUrl","aspect","pageNumber","note","isPageNote","titlePassages","hlContent","relativeNoteUrl","notes","some","access","expandHighlights","closeHighlights","closeNoteHighlights","shiftKey","highlightsActive","trimmedHighlights","moreToExpand","key","params","oneUserSearch","noStatus","noAccess","isVerified","doneProcessing","processingProgress","numProcessing","dismissed","subscribe","link","contact","version","endpoint","URL","base","resp","fetch","ok","content","json","load","show","showContact","delete","done","uploadMode","size","secondary","multiselect","join","picker","click","fileList","i","limit","errorMessage","allUploaded","percent","uploaded","index","setDismissable","initialFiles","uploadFiles","uploadAdditional","LIMIT","parseInt","PDF_SIZE_LIMIT","DOCUMENT_SIZE_LIMIT","numUploaded","tooManyFiles","tooManyBigFiles","createProgress","processProgress","uploadInProgress","newFiles","hasTooBigPdf","hasTooBigDocument","newFile","isPdf","removeFile","uploadProject","$search","oneProjectSearch","displayFiles","total","createProgressPercent","processProgressPercent","uploading","goodDocuments","newName","$_","projectEmbedTitle","projectEmbedId","duration","query","projectEmbedSearchBar","containerElem","containerWidth","containerHeight","preUploadFiles","anonymousClosed","newTitle","isSearch","oneOrZeroAccesses","oneAccessSearch","user","usersById","projs","oneOrgSearch","orgsById","isAllSearch","languageOptions","sortCompletions","info","feed","validSorts","fieldValid","example","fieldMatch","match","valid","field","transform","startsWith","completions","highlightLetters","score","completionScore","completion","lastPos","char","charAt","idx","completionFilter","candidates","candidate","fieldAliases","account","group","order","alias","mirror","compact","forceInput","bubbles","target","selectionStart","selectionEnd","completionCache","asyncComplete","fieldPost","then","mappedOrgs","mappedUsers","isMe","orgsAndUsers","mappedUser","unshift","mapped","triggerCompletion","deleteChars","individualSelection","setPreserveSpace","insert","restoreSelectionPosition","substr","setSelectionRange","preserveSpace","preserveSpaceOnKeyPress","preserveSpaceIndex","handleCursor","space","fieldPreIndex","completionX","setCompletionX","allChunks","highlight","concat","pos","highlightIdx","children","completionLeft","firstChild","getBoundingClientRect","completionRight","right","escPressed","completionIndex","transformedQuery","selectionAtEnd","searchPre","searchPost","showCompletions","test","fieldRaw","fieldPre","processedCompletions","processCompletions","selectedCompletion","noCompletion","autocomplete","ensureValidity","String","fromCharCode","keyCode","which","preventDefault","unsubscribe","filePickerUser","router","route","resolvedRoute","props","module","exports","DOCUMENTCLOUD_TOKEN_STORAGE_KEY","SQUARELET_URL","SIGN_IN_URL","SIGN_UP_URL","encodeURIComponent","location","href","SIGN_OUT_URL","auth","signingIn","isAuthenticated","setToken","JSON","stringify","removeToken","removeItem","storedData","getItem","parse","initialize","languageCodes","languageNames","defaultLanguage","codes","names","makeLanguagePairs","textractLanguageCodes","textractLanguages","l","charLimit","fieldAccessor","fieldName","fieldNameUppercase","apiField","headerText","explainerText","buttonText","initial","fieldInvalidText","isTextArea","relatedArticleUrl","informSize","element","useScrollDimension","updateStyleProps","update","parent","postMessage","width","max","scrollWidth","offsetWidth","height","scrollHeight","offsetHeight","addEventListener","timeoutify","fn","timeout","timer","args","clearTimeout","setTimeout"],"sourceRoot":""}
-./public/2838.7873a4df353a8863eda1.js:1:!function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:{},n=(new Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="19a098da-088f-42a0-8163-4dd52d5aef76",e._sentryDebugIdIdentifier="sentry-dbid-19a098da-088f-42a0-8163-4dd52d5aef76")}catch(e){}}(),(self.webpackChunkdocumentcloud_frontend=self.webpackChunkdocumentcloud_frontend||[]).push([[2838],{2838:function(module){module.exports=JSON.parse('{"common":{"emailAddress":"Email адреса","loading":"Завантаження...","documentCloud":"DocumentCloud","home":"Головна"},"homeTemplate":{"signedIn":"Ви увійшли як {name}","signOut":"Вийти","signIn":"Увійти","signUp":"Реєстрація","goToApp":"В додаток"},"accessToggle":{"public":"Нотатка буде доступна для перегляду всім, хто має доступ до документа.","collaborator":"Нотатка буде доступна для перегляду всім, хто може редагувати цей документ.","private":"Нотатка буде доступна для перегляду тільки вам.","publicName":"Публічне","collaboratorName":"Співавтор","privateName":"Приватне"},"accessIcon":{"private":"Приватний доступ","organization":"Приватно для вашої організації","public":"Публічний доступ","privateExplanation":"Лише ви можете переглядати цей документ","organizationExplanation":"Тільки члени вашої організації можуть переглядати цей документ","publicExplanation":"Будь-хто може знайти та переглянути цей документ"},"appearanceCustomizer":{"customizeAppearance":"Налаштувати вигляд","hide":"Приховати довідковий текст","show":"Показати довідковий текст"},"appearanceDimension":{"responsive":"Автоматично (за замовчуванням)","fixed":"Закріплено"},"calendar":{"jan":"Січень","feb":"Лютий","mar":"Березень","apr":"Квітень","may":"Травень","jun":"Червень","jul":"Липень","aug":"Серпень","sep":"Вересень","oct":"Жовтень","nov":"Листопад","dec":"Грудень","hourShortcode":"ГГ","minuteShortcode":"ХХ"},"dialog":{"cancel":"Скасувати","delete":"Видалити","done":"Готово","edit":"Редагувати","remove":"Видалити","save":"Зберегти","create":"Створити","ok":"Ок","update":"Оновити","dismiss":"Закрити","continue":"Продовжити","dispatch":"Відправити"},"dialogAccessDialog":{"changeAccess":"Змінити доступ для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","selectAccess":"Обрати рівень доступу для {n, plural, one {вибраного документа} few {# вибраних документів} many {# вибраних документів} other {# вибраних документів}}","public":"Публічний доступ","publicDesc":"Будь-хто в інтернеті може знайти та переглянути документ.","verifiedHelp":"Тільки перевірені користувачі або члени перевірених організацій можуть робити завантажені документи публічними. Якщо ви журналіст, або ж іншим чином працюєте у публікації перевірених матеріалів, щоб інформувати громадськість, дізнайтеся більше і надішліть запит на верифікацію тут.","privateToOrg":"Ви не можете змінити рівень доступу на \\"Приватно для вашої організації\\", оскільки {n, plural, one {цей документ} other {один чи більше документів}} пов’язано з вашим індивідуальним обліковим записом, а не з організацією. Щоб додати {n, plural, one {його} other {їх}} до організації, виберіть {n, plural, one {його} other {їх}} у вікні керування та натисніть \\"Змінити власника\\". Ви можете приєднатися або створити організацію на цій сторінці.","private":"Приватний доступ","privateDesc":"Лише люди з явним дозволом (через співавторство) мають доступ.","organization":"Приватно для вашої організації","organizationDesc":"Лише люди у вашій організації мають доступ.","schedulePublication":"Запланувати публікацію","scheduleHelp":"Цей документ стане публічним у задану дату та час. Час публікації локально{timezone}.","noindexTitle":"Приховати від пошукових систем та пошуку DocumentCloud","noindexHelp":"Якщо ви увімкнете цю опцію, пошуковим системам на зразок Google буде повідомлено, що вони не повинні індексувати цей документ. Також, документ не буде відображатися в пошуку з DocumentCloud для користувачів, які не ввійшли до системи.","unchanged":"Доступ не змінено. Оберіть інший рівень доступу.","future":"Необхідно вибрати час у майбутньому","change":"Змінити","changeNoindex":"Змінити видимість для пошукових систем та пошуку DocumentCloud для {n, plural, one {документу} few {# документів} many {# документів} other {# документів}}"},"dialogCollaboratorDialog":{"confirm":"Підтвердити видалення користувача","confirmMsg":"Продовжуючи, ви видалите {name} з {title}. Продовжити?","addCollaborators":"Додати співавторів","invite":"Додати до імейла існуючого користувача DocumentCloud нижче. Якщо вони не зареєстровані, попросіть їх зареєструватися безкоштовно тут, а потім увійти в DocumentCloud принаймні один раз.","admin":"Адміністратор","view":"Перегляд","adminHelp":"Співавтори можуть редагувати цей проект та його документи","editHelp":"Співробітники можуть редагувати документи в цьому проекті","viewHelp":"Співавтори можуть переглядати документи в цьому проекті","add":"Додати","empty":"Ви ще не додали жодного співавтора до цього проекту. Запросіть співавторів, щоб надати доступ іншим користувачам до документів, доступних у цьому проекті. Ви можете контролювати, чи мають співавтори доступ до перегляду/редагування документів проекту або бути адміністратором з дозволами на запрошення інших користувачів і редагування самого проекту.","manageCollaborators":"Керувати співавторами","name":"Ім’я","access":"Доступ","you":"(ви)"},"dialogDataDialog":{"confirm":"Підтвердження видалення точки даних","removeMsg":"Продовження видалить {key}{value} точку даних з зазначених документів. Бажаєте продовжити?","addData":"Додайте дані для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","tag":"Тег","value":"Значення","key":"Ключ","keyValue":"Ключ / Значення","tagInfo":"Додайте користувацькі теги, щоб розділити ваші документи на категорії.","eg":"напр.","exampleTagReport":"звіт","exampleTagLawsuit":"судовий процес","exampleTagEmail":"електронна пошта","keyValueInfo":"Додайте пару користувацьких ключів / значень для точної категоризації ваших документів.","exampleKVState":"штат: Каліфорнія","exampleKVYear":"рік 2016","exampleKVType":"тип: пам\'ятка","enterTag":"Ввести тег","enterKey":"Ввести ключ","keyInvalid":"Ключі можуть містити лише літери, цифри, підкреслення (_) та тире (-)","emptyMsg":"Ви ще не додали жодних даних до зазначених документів. Додайте теги та пари ключ/значення для розділу на категорії та організації ваших документів. Ви можете фільтрувати і шукати дані документів, щоб надасть вам потужний контроль над керуванням документами.","manageDocumentData":"Керування даними документа","valueUnchanged":"Значення залишається незміненим","kvCannotBeEmpty":"Ключ/значення не може бути порожнім"},"dialogReprocessDialog":{"title":"Підтвердження повторної обробки","reprocessDocs":"Продовження змусить {n, plural, one {обраний документ} few {# обрані документи} many {# обраних документів} other {# обрані документи}} повторно обробити сторінку та текст зображення. Продовжити?","reprocessSingleDoc":"Продовження призведе до того, що документ повторно обробить сторінку та текст зображення. Бажаєте продовжити?","confirm":"Повторна обробка"},"dialogDeleteDialog":{"title":"Підтвердження повторної обробки","deleteDocs":"Продовження остаточно видалить {n, plural, one {обраний документ} few {# обрані документи} many {# обрані документи} other {# обрані документи}}Ви хочете продовжити?"},"dialogCancelProcessingDialog":{"title":"Скасування повторної обробки","deleteDocs":"Продовження змусить {n, plural, one {обраний документ} other {# обрані документи}} припинити обробку. Після припинення обробки з’явиться повідомлення про помилку, після чого ви можете \\"Примусово повторно обробити\\" або видалити {n, plural, one {документ} other {документи}} за допомогою меню редагування. Ви бажаєте продовжити?"},"dialogDiagnosticDialog":{"staffOnlyInfo":"Інформація, що доступна лише персоналу для вибраного {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","id":"Ідентифікатор","title":"Заголовок","actions":"Дії","debug":"Налагодження","viewErrors":"Переглянути помилки","viewS3":"Перегляд в S3"},"dialogDocumentEmbedDialog":{"responsive":"Адаптивне","respOn":"Ввімкнено (за замовчуванням)","respOnHelp":"Заповнити ширину вікна статті (зазвичай працює найкраще)","respOff":"Вимкнено","respOffHelp":"Документ відповідатиме розмірам зазначеним нижче","width":"Ширина","widthAuto":"Заповнить доступний простір, якщо документ налаштований бути адаптивним, інакше розмір буде за замовчуванням 700px","widthFixed":"Встановіть максимальну ширину, якщо документ адаптивний або встановіть фіксований розмір, якщо він не адаптивний","height":"Висота","heightAuto":"Висота базується на розмірах документа, без максимального розміру. Якщо він адаптивний, його висота буде встановлена по висоті вікна браузера мінус 100px","heightFixed":"Встановіть максимальну ширину, якщо документ адаптивний або встановіть фіксований розмір, якщо він не адаптивний","sidebarBehavior":"Налаштування бічної панелі","sbResponsive":"Адаптивне (за замовчуванням)","sbResponsiveHelp":"Показувати бічну панель автоматично на великих екранах і приховувати на мобільних пристроях. У режимі вбудовування бічна панель буде прихована","hidden":"Приховане","visible":"Видиме","visibleDefault":"Видиме (за замовчуванням)","sbHiddenHelp":"Приховувати бічну панель за замовчуванням","sbVisibleHelp":"Показувати бічну панель за замовчуванням","titleBehavior":"Налаштування заголовка","tVisibleHelp":"Відображати назву та авторство в заголовку переглядача","tHiddenHelp":"Приховати назву у заголовку переглядача (залишиться видимою на бічній панелі)","pdfLink":"Посилання на PDF","plVisibleHelp":"Показувати посилання на сирий PDF-документ в бічній панелі","plHiddenHelp":"Приховати посилання на PDF в бічній панелі (файл все ще доступний, якщо URL відомий)","fullscreenOption":"Повноекранний режим","fsVisibleHelp":"Показувати іконку повноекранного режиму в правому нижньому куті","fsHiddenHelp":"Приховати опцію повноекранного режиму","textMode":"Текстовий режим","tmVisibleHelp":"Показувати опцію перегляду тексту документа в випадаючому списку перегляду","tmHiddenHelp":"Приховати текстовий режим","contributedByFormat":"Внесено за форматом","cbfUserAndOrg":"Користувач та організація (за замовчуванням)","cbfUserAndOrgHelp":"Показати авторство документа як ім\'я користувача за яким слідує організація","cbfOrgOnly":"Лише організація","cbfOrgOnlyHelp":"Внесіть документ лише для організації","share":"Поділитися \\"{title}\\"","embedDesc":"Скопіюйте HTML-код для вставки цього документа у статтю"},"dialogDocumentInformationDialog":{"editInformation":"Додайте дані для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}"},"dialogAddonDispatchDialog":{"setAddonParameters":"Встановіть параметри для вибраного доповнення для запуску на {n, plural, one {документі} few {# документах} many {# документах} other {# документах}}"},"dialogRedactDialog":{"title":"Підтвердження редакцій","description":"Ви впевнені, що бажаєте відредагувати поточний документ? Якщо ви продовжите, переглядач документів буде тимчасово недоступний, поки документ буде повторно оброблено з редагуванням. Ця зміна є незворотною."},"dialogModifyDialog":{"title":"Застосувати зміни","description":"Ви впевнені, що бажаєте модифікувати поточний документ? Якщо ви продовжите, переглядач документів буде тимчасово недоступний, поки документ буде повторно оброблено з модифікаціями. Ця зміна є незворотною.","closeTitle":"Підтвердити закриття","closeWarning":"Ви втратите всі незбережені модифікації. Ви впевнені, що хочете продовжити?"},"dialogDeleteNoteDialog":{"title":"Підтвердити видалення","description":"Ви впевнені, що хочете видалити поточну нотатку?"},"dialogEditSectionsDialog":{"confirmDelete":"Підтвердити видалення","proceedingWillRemove":"Якщо ви продовжите, буде видалено вказаний розділ (с. {page} {title}). Ви бажаєте продовжити?","editSections":"Редагувати розділи","manageSections":"Керуйте розділами для організації документа за допомогою таблиці вмісту.","pageAbbrevNo":"с. {n}","pageAbbrev":"с.","empty":"Ви не додали жодного розділу","edit":"Редагувати обраний розділ","add":"Додати новий розділ","title":"Заголовок","missingTitle":"Будь ласка, введіть заголовок","updateTitle":"Введіть новий заголовок або номер сторінки","uniquePageNumber":"Ви повинні ввести унікальний номер сторінки","invalidPageNumber":"Неправильний номер сторінки"},"dialogEmbedDialog":{"updatingDocument":"Оновлення документа...","makingPublic":"Наразі документ оприлюднюється. Це може зайняти кілька хвилин.","wouldMakePublic":"Ви хотіли б зробити цей документ публічним перед тим, як поділитись?","notPublic":"Документ на цей час не є публічним. Якщо ви вставляєте його або посилання на нього, лише ви та співавтори зможете переглядати його до тих пір, поки він не стане публічним. Натисніть нижче, коли ви готові опублікувати цей документ.","makePublic":"Зробити документ публічним","leave":"Залишити як є","selectShare":"Виберіть параметри опції \\"поділитися\\"","selectShareHelp":"Виберіть, чи слід поділитись усім документом, чи лише сторінкою, чи нотаткою.","shareDoc":"Поділитися усім документом","shareDocHelp":"Посилання або вставлення всього документа. (Це найпоширеніший параметр опції \\"поділитися\\".)","sharePage":"Поділитися конкретною сторінкою","sharePageHelp":"Посилання або вставлення однієї сторінки документа. Корисно для виділення уривка сторінки.","shareNote":"Поділитися конкретною нотаткою","shareNoteHelpHasNote":"Посилання або вставлення нотатки в документ. Корисно для виділення області сторінки.","shareNoteHelpNoNote":"Як тільки ви додасте нотатки до документа, використовуйте цю функцію для посилання або їх вставки."},"dialogErrorDialog":{"errorOccurred":"Сталася помилка","unexpectedErrorOccurred":"Сталася неочікувана помилка","tryAgain":"Будь ласка, спробуйте ще раз пізніше.","close":"Закрити","refresh":"Оновити"},"dialogNoteEmbedDialog":{"embedNote":"Вставити нотатку з “{title}”","embedDesc":"Скопіюйте HTML-код для вставки цієї нотатки у статтю або пост:"},"dialogPageEmbedDialog":{"embedPage":"Вставити сторінку з “{title}”","embedDesc":"Скопіюйте HTML-код для вставки цієї сторінки у статтю або пост:","selectPage":"Виберіть сторінку для вставки:","page":"Сторінка {n} (наразі видима)","otherPage":"Інша сторінка","enterPageNumber":"Введіть номер сторінки для вставки:"},"dialogProjectAccessDialog":{"changeAccessFor":"Змінити доступ для {name}","selectAccess":"Виберіть рівень доступу нижче для {name} в {title}","adminAccess":"Доступ адміністратора","editAccess":"Доступ до редагування","viewAccess":"Доступ до перегляду","adminHelp":"Цей співавтор може редагувати цей проект та його документи. Співавтор може запрошувати користувачів, видаляти користувачів і видаляти проект.","editHelp":"Цей співавтор може редагувати документи у цьому проекті, але не може редагувати сам проект.","viewHelp":"Цей співавтор може переглядати документи у цьому проекті, але не може редагувати їх або проект.","invalidAccess":"Доступ вже встановлено на {access}. Виберіть інший рівень доступу.","changeAccess":"Змінити доступ"},"dialogOwnerDialog":{"selectUser":"Потрібно вибрати користувача","selectOrg":"Потрібно вибрати організацію","changeOwner":"Змінити власника для {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}","accessWarning":"Попередження: Ви можете втратити доступ до вказаного {n, plural, one {документа} few {# документів} many {# документів} other {# документів}} в результаті зміни власника документа","user":"Користувач:","filterUsers":"Введіть для фільтрування користувачів...","filterOrgs":"Введіть для фільтрування організацій..."},"dialogProjectDialog":{"confirmDelete":"Підтвердити видалення","deleteProject":"Ви дійсно бажаєте видалити цей ({project})?","editProject":"Редагувати проект","createProject":"Створити новий проект","title":"Заголовок...","projectDesc":"Опис проєкту (необов\'язково)","manageCollabs":"Керувати співавторами","share":"Поділитись / Вставити проект","enterTitle":"Введіть назву","changeTitle":"Змінити назву або опис"},"dialogProjectEmbedDialog":{"share":"Поділитися \\"{title}\\"","embedDesc":"Скопіюйте HTML-код для вставки цього документа у статтю або пост:","invalid":"Недійсний проект","cannotEmbed":"Неможливо вставити цей проект, бо він не існує."},"htmlEditor":{"preview":"Перегляд:"},"image":{"error":"Сталася помилка. Спробуйте оновити сторінку"},"omniselect":{"filter":"Введіть для фільтрування мови","noResults":"Немає результатів. Натисніть, щоб очистити фільтр."},"shareOptions":{"errorText":"Сталася неочікувана помилка. Будь ласка, спробуйте пізніше.","copyHtml":"Скопіювати HTML код","addShortcode":"Додати цей короткий код до вмісту WordPress —","pluginRequired":"потрібен плагін","copyShortcode":"Скопіювати короткий код","copyUrl":"Скопіювати URL"},"specialMessage":{"contactUs":"Зв\'яжіться з нами з повідомленнями про помилки, питаннями та пропозиціями."},"uploadOptions":{"documentLang":"Мова документа:","forceOcr":"Примусовий OCR:"},"actionBar":{"selectDocs":"Виберіть декілька документів, щоб виявити дії редагування","noPerms":"Ви не маєте дозволу на редагування всіх вибраних документів","editMenu":"Редагувати","projectsMenu":"Проекти","addOnsMenu":"Додатки"},"authSection":{"help":"Допомога","language":"Мова","tips":"Поради та підказки","searchDocs":"Пошук документації","apiDocs":"Документація API","emailUs":"Напишіть нам","acctSettings":"Налаштування облікового запису","signOut":"Вийти","changeOrg":"Змінити організацію","personalAcct":"Особистий акаунт","signIn":"Увійти","uploadEmail":"Вивантажити через email"},"documents":{"yourDocuments":"Ваші документи","searchResults":"Результати пошуку","accessDocuments":"Ваші {access}документи","nameDocuments":"Документи {name} {access}","allDocuments":"Всі {access}документи","mustBeVerified":"Ви повинні бути верифікованим журналістом, щоб завантажувати документи","upload":"Завантажити","dropFile":"Перетягніть файл, щоб завантажити"},"document":{"open":"Відкрити","updating":"Оновлення документа...","processing":"Обробка","processingError":"Сталася помилка при спробі обробки документа","remove":"Видалити","improper":"Ваш документ було завантажено неправильно","project":"Проект","totalMatchingPages":"{n} з {m} сторінок відповідають запиту","showAll":"Показати все","matchingPages":"{n} сторінок відповідають запиту","pageAbbrev":"с.","pageCount":"{n, plural, one {# сторінка} other {# сторінок}}","source":"Джерело","noteCount":"{n, plural, one {# нотатка} other {# нотаток}}"},"documentThumbnail":{"pages":"сторінки","loading":"Завантаження інформації про прогрес..."},"mainContainer":{"error":"Помилка","errorMsg":"Не вдалося зв’язатися з сервером DocumentCloud. Будь ласка, спробуйте оновити сторінку пізніше.","refresh":"Оновити"},"editMenu":{"editDocInfo":"Редагувати інформацію документа","changeAccess":"Змінити доступ","editDocData":"Редагувати дані документа","cancelProcessing":"Скасувати обробку","forceReprocess":"Примусова повторна обробка","entities":"Особибета-версія","changeOwner":"Змінити власника","delete":"Видалити","diagnosticInfo":"Діагностична інформація"},"metaFields":{"defaultFieldInvalidText":"Цей документ вже має цей {fieldName}","titleFieldTitle":"Заголовок","titleFieldName":"назва","titleFieldNameUppercase":"Назва","titleFieldHeader":"Перейменувати {n, plural, one {# документ} few {# документа} other {# документів}}","titleFieldDescription":"Введіть ім\'я для {n, plural, one {обраний документ} few {# документа} other {# обраних документів}}","titleFieldButton":"Перейменувати","titleFieldInvalidSameName":"Цей документ вже має це ім\'я","titleFieldInvalidEmptyName":"Введіть дійсну назву","sourceFieldTitle":"Джерело","sourceFieldName":"джерело","sourceFieldNameUppercase":"Джерело","sourceFieldHeader":"Редагувати джерело для {n, plural, one {# документа} other {# документів}}","sourceFieldDescription":"Введіть джерело для {n, plural, one {обраного документа} other {# обраних документів}}","sourceFieldButton":"Редагувати","descriptionFieldTitle":"Опис","descriptionFieldName":"опис","descriptionFieldNameUppercase":"Опис","descriptionFieldHeader":"Редагуйте опис для {n, plural, one {# документа} other {# документів}}","descriptionFieldDescription":"Введіть опис {n, plural, one {обраного документа} other {# обраних документів}}","descriptionFieldButton":"Редагування","relatedArticleFieldTitle":"URL пов\'язаної статті","relatedArticleFieldName":"URL пов\'язаної статті","relatedArticleFieldNameUppercase":"URL пов\'язаної статті","relatedArticleFieldHeader":"Введіть URL-адресу пов\'язаної статті для {n, plural, one {вибраного документу} few {# вибраних документів} many {# вибраних документів} other {# вибраних документів}}","relatedArticleFieldDescription":"Введіть URL-адресу пов\'язаної статті нижче для {n, plural, one {вибраного документу} few {# вибраних документів} many {# вибраних документів} other {# вибраних документів}}","relatedArticleFieldButton":"Редагувати","publishedUrlFieldTitle":"Опубліковане URL","publishedUrlFieldName":"опубліковане URL","publishedUrlFieldNameUppercase":"Опубліковане URL","publishedUrlFieldHeader":"Редагувати опубліковану URL-адресу для {n, plural, one {# документа} few {# документів} many {# документів} other {# документів} other {# документів}}","publishedUrlFieldDescription":"Введіть опубліковану URL-адресу для {n, plural, one {обраного документа} few {# обраних документів} many {# обраних документів} other {# обраних документів}}","publishedUrlFieldButton":"Редагувати"},"projectsMenu":{"newProject":"+ Новий проект","projMembership":"Членство в проекті","selectDocs":"Виберіть документи, щоб розмістити їх в проектах","createProj":"Створити проект для організації та поширення документів"},"addonsMenu":{"newAddon":"Запросити новий додаток від персоналу","selectDocs":"Виберіть документи, щоб надіслати їх в додатках","addonsList":"Список додатків","createAddon":"Виберіть більше документів для використання додатків","addon":"Додаток","learnMore":"Дізнатися більше про додатки","browseAll":"Показати всі доповнення"},"noDocuments":{"noSearchResults":"Нічого не знайдено","queryNoResults":"Ваш пошуковий запит не дав результатів. Спробуйте ще раз з більш широким пошуковим запитом.","welcome":"Ласкаво просимо до DocumentCloud!","verify1":"Зауважте, що на даний момент ваш обліковий запис не веріфіковано для завантаження. Ви можете здійснювати пошук через публічну базу, організовувати цікаві для вас документи в проекти, залишати приватні нотатки і співпрацювати над редагуванням та анотацією документів, до яких вас запрошують інші користувачі.","verify2":"Якщо ви хочете завантажити або опублікувати документи, а також ви працюючий журналіст або інша організація зацікавлена у публікації первинних матеріалів у громадських інтересах, вам потрібно буде веріфікувати ваш обліковий запис або додати до веріфікованої організації. Це простий процес:","verify3":"Спочатку подивіться чи ваша організація вже існує, і, якщо ви її знайдете, натисніть \\"Запит на приєднання\\" на її сторінці.","verify4":"Якщо вашу організацію ще не веріфіковано, або якщо ви фрілансер, запитайте веріфікацію тут. Запит зазвичай займає два робочих дні для обробки.","uploadFirst":"Завантажте ваш перший документ","upload1":"Завантажте файл документа, щоб почати користуватися DocumentCloud. Ви можете перетягнути файл у це вікно, або натиснути на синю кнопку “Завантажити” вище.","upload2":"Як тільки ви завантажите файл, DocumentCloud обробить документ і вилучить його вміст. Це може зайняти кілька хвилин, але як тільки це буде зроблено, ваш документ буде оптимізований для аналізу та поширення в Інтернеті.","requestVerificationAction":"Запросити верифікацію для завантаження"},"paginator":{"of":"із","document":"{n, plural, one {документ} other {документів}}"},"processingBar":{"doneProcessing":"Обробка виконана","processingDocuments":"Обробка {n, plural, one {документа} few {# документів} many {# документів} other {# документів}}"},"searchBar":{"tips":"Поради для пошуку: додайте фільтри вводячи користувача, проект:, чи організацію, і т.д. Використайте тип:, щоб упорядкувати результати.","learnMore":"Дізнатися більше","search":"Пошук"},"searchLink":{"search":"Пошук цій збірці документів"},"projects":{"header":"Проекти","allDocuments":"Всі документи","yourDocuments":"Ваші документи","yourPubDocuments":"Ваші публічні документи","orgDocuments":"Документи {name}","newProject":"+ Новий проект","createProject":"Створіть свій перший проект, натиснувши «Новий проект» вище."},"uploadDialog":{"docUpload":"Завантаження документа","docUploadProj":"Завантаження документа в {title}","beginUpload":"Почати завантаження","pdfSizeWarning":"Ви можете завантажувати лише PDF-файли менше {size}.","nonPdfSizeWarning":"Ви можете завантажувати лише не PDF-файли менше {size}.","fileReady":"{n, plural, one {файл} few {файли} many {файли} other {файли}} готові до завантаження","fileLimitWarning":"Ви можете завантажити тільки {limit} файлів за один раз.","moreOptions":"Інші параметри","selectFiles":"+ Вибрати файли","dragDrop":"Перетягніть файли сюди","publicMsg":"Документ буде загальнодоступним.","collabMsg":"Документ буде доступний для перегляду вашій організації.","privateMsg":"Документ буде доступний для перегляду тільки вам.","collabName":"Організація","submitting":"Майже готово... подання завантажених файлів для обробки ({percent})","uploading":"Завантаження... ({uploaded}/{length})","gettingInfo":"Отримання інформації щодо вивантаження ({percent})","pleaseLeaveOpen":"Будь ласка, залишіть цю сторінку відкритою, під час завантаження документів. Це вікно буде автоматично закрите по завершенню завантаження.","errorHeading":"Сталася помилка під час завантаження","errorMsg":"Не вдалося {errorMessage}. Будь ласка, спробуйте ще раз пізніше.","editDocInfo":"Редагувати інформацію документа:","untitled":"Без назви","uploadFiles":"Завантажити додаткові файли","selectMore":"+ Вибрати більше файлів","dragDropMore":"Перетягніть додаткові файли сюди"},"embedNote":{"viewTheNote":"Переглянути нотатку \'{title}\' в її оригінальному документі на DocumentCloud в новому вікні або вкладці","viewDoc":"Переглянути весь документ з DocumentCloud"},"embedPage":{"viewDoc":"Переглянути {title} повністю на DocumentCloud у новому вікні або вкладці","pageOf":"Сторінка {page} з {title}","gotoDocCloud":"Перейти до DocumentCloud у новому вікні або вкладці"},"entities":{"back":"Назад","page":"Сторінка","of":"із","totalEntityResult":"{n, plural, one {# підсумок осіб} other {# підсумків осіб}} ","filter":"Фільтр","applyFilters":"Застосувати фільтри","kind":"Тип","clear":"Очистити","person":"Особа","org":"Організація","location":"Розташування","event":"Подія","workOfArt":"Витвір мистецтва","consumerGood":"Споживчий товар","address":"Адреса","date":"Дата","number":"Кількість","phoneNumber":"Номер телефону","price":"Ціна","unknown":"Невідомо","other":"Інше","occurrences":"Випадки","proper":"Належні","common":"Загальні","advanced":"Додатково","relevanceThreshold":"Поріг відповідності:","knowledgeGraph":"База знань:","hasKG":"Має ідентифікатор бази знань","noKG":"Не має ідентифікатора бази знань","wikiUrl":"URL-адреса на Вікіпедії:","hasWiki":"Має URL-адресу на Вікіпедії","noWiki":"Немає URL-адресу на Вікіпедії","occurrence":"{n, plural, one {# випадок} other {# випадків}}","wikipedia":"Wikipedia","entityExtraction":"Вилучити особу для “{title}”","extractingEntities":"Вилучення осіб...","welcome":"Ласкаво просимо до функції вилучення осіб! Ця функція ще доробляється, але ми хочемо, щоб вона була у ваших руках раніше, тому раді будь-яким відгукам, які ви маєте.","manual":"Зараз процес вилучання осіб здійснюється вручну. У цьому документі ще не було вилучено осіб, тому натисніть нижче, щоб розпочати роботу.","error":"Сталась непередбачена помилка","extract":"Вилучити осіб","noEntities":"Немає осіб. Це може статися, якщо у документі немає тексту, він неанглійською (лише англійська мовна функція підтримується зараз), або відбулася помилка.","starting":"Запуск вилучення..."},"home":{"about":"DocumentCloud — це універсальна платформа для документів: завантаження, упорядкування, аналіз, анотування, пошук і вбудовування.","viewPublicDocs":"Перегляд публічних документів"},"annotation":{"title":"Заголовок анотації","description":"Опис анотації (необов\'язково)","unchanged":"Нотатка залишається без змін","noTitle":"Введіть заголовок для анотації","org":"Ця нотатка видима лише вам та іншим з доступом до редагування цього документа","private":"Ця приватна нотатка видима лише вам","by":"Примітка від {name}","byOrg":"Примітка від {name}, {org}","addPageNote":"Додати нотатку до сторінки"},"viewDropdown":{"document":"Документ","plainText":"Звичайний текст","thumbnail":"Мініатюра","notes":"Нотатки","search":"Результати пошуку"},"zoom":{"fitWidth":"Вмістити за шириною","fitHeight":"Вмістити за висотою"},"titleHeader":{"contributedBy":"Внесено {name}"},"annotatePane":{"annotateDocument":"Анотувати документ","desc":"Виділіть частину сторінки або клацніть між сторінками, щоб створити нотатку."},"modifyPane":{"pagesSelected":"{n, plural, one {# сторінка} other {# сторінки}} вибрано","applyModifications":"Застосувати зміни","duplicate":"Дублювати","move":"Перемістити","rotate":"Повернути","unselect":"Зняти віділення","remove":"Видалити","insertPages":"Вставити {n, plural, one {# cторінкe} few {# сторінки} many {# сторінок} other {# сторінок}}","pagesPending":"{n, plural, one {# сторінка} few {# сторінки} many {# сторінок} other {# сторінок}} в очікуванні вставки","insertBegin":"Вставити {n, plural, one {# сторінку} other {# сторінок}} на початку.","insertEnd":"Вставити {n, plural, one {# сторінку} few {# сторінки} many {# сторінок} other {# сторінок}}.","insertBetween":"Вставити {n, plural, one {# сторінку} few {# сторінки} many {# сторінок} other {# сторінки}} між сторінкою {p0} і {p1}.","click":"Натисніть між сторінками, щоб відмітити, де вставити {n, plural, one {# сторінку} few {# сторінки} many {# сторінок} other {# сторінок}}.","insert":"Вставити","insertAtEnd":"Вставити в кінці","insertPosition":"Вставляти сторінки в положення","insertOtherDoc":"Вставити з іншого документа","modifyPages":"Змінити сторінки","select":"Виберіть сторінки нижче, щоб застосувати зміни (поворот сторінки, перевпорядкування та видалення). Натисніть між сторінками, щоб вставити.","undo":"Відмінити","redo":"Повторити"},"redactPane":{"redactDoc":"Редакція документа","desc":"Натисніть і перетягніть, щоб намалювати чорний прямокутник над кожною частиною документа, який ви хочете відредагувати. Пов’язаний текст буде видалено, коли ви збережете редакції.","confirm":"Підтвердження редакцій","undo":"Відмінити"},"searchPane":{"yourQuery":"Ваш запит {search} був знайдений на {n, plural, one {# сторінці} few {# сторінках} many {# сторінках} other {# сторінках}}"},"selectNotePane":{"selectNote":"Виберіть нотатку","desc":"Виберіть примітку, якою хочете поділитися."},"searchResults":{"resultPages":"{results, plural, one {# результат} few {# результата} many {# результатів} other {# результат}} на {pages, plural, one {# сторінці} few {# сторінках} many {# сторінках} other {# сторінках}}","noSearchResults":"Пошук не дав результатів. Спробуйте ще раз з ширшим запитом.","occurrences":"{n, plural, one {випадок} other {віпадків}}"},"sidebar":{"updating":"Оновлення документа...","original":"Оригінальний документ (PDF)","related":"Пов\'язана стаття »","contributed":"Внесено {name}","source":"Джерело: {source}","actions":"Дії документа","share":"Поділитися","shareDesc":"Створіть вставку або поділиться в соціальних мережах.","annotate":"Аннотації","annotateDesc":"Зробити анотації для збереження нотаток на документі.","redact":"Редакція","redactDesc":"Відредагуйте документ, щоб приховати текст. Після цього документ буде повторно оброблено.","modify":"Змінити сторінки","modifyDesc":"Переставити, повернути, видалити, вставити та розділити сторінки.","info":"Редагувати інформацію документа","infoDesc":"Змінити інформацію про документ, такі як опис і пов\'язану URL-адресу.","data":"Редагувати теги та дані","dataDesc":"Додайте теги та пари ключ/значення для категоризації документа.","sections":"Редагувати розділи","sectionsDesc":"Додавайте розділи для організації документа за допомогою таблиці вмісту.","privateNote":"Додати приватну нотатку","privateNoteDesc":"Зробити анотації для збереження нотаток у документі."},"viewer":{"notFound":"Документ не знайдено","notFoundDesc":"Запитаний вами документ або не існує, або у вас немає дозволу на доступ до нього","processing":"Документ обробляється","processingDesc":"Документ, який ви запитали, обробляється і автоматично оновиться, коли він буде готовий","error":"З документом сталася помилка","errorDesc":"Сталася помилка обробки в документі, який ви запитували","accessible":"Документ недоступний","accessibleDesc":"Запитаний документ досі обробляється, або вам не вистачає дозволу на доступ до нього"},"addonDispatchDialog":{"select":"Виберіть, з якими документами ви хочете запустити цей додаток:","queryNoSelected":"Цей додаток спробує запуститися з {n, plural, one {# документом} other {# документами}} наразі включених до ваших результатів пошуку. Щоб запустити його лише з вибраними документами, скасуйте це і виберіть деякі з них - потім знову виберіть додаток.","noSelected":"Ви повинні вибрати деякі документи, щоб запустити їх. Скасуйте цей та виберіть деякі з них, а потім виберіть додаток знову.","runSelected":"Цей додаток спробує запуститися з {n, plural, one {# наразі обраним документом} other {наразі обраними документами}}.","runQuery":"Цей додаток спробує запуститися з {n, plural, one {# документом} other {# документами}} наразі включеними до ваших результатів пошуку.","labelSelected":"{n, plural, one {# обраний наразі документ} few {# обраних наразі документа} many {# обраних наразі документів} other {# обраних наразі документів}}","labelQuery":"{n, plural, one {# документ} few {# документа} many {# документів} other {# документів}} з поточних результатів пошуку","learnMore":"Дізнатися більше.","hideAddons":"Сховати заплановані додатки","showRuns":"Показати запуски","hideRuns":"Приховати запуски","showAddons":"Показати заплановані додатки ({n})","runSchedule":"Запуск за розкладом:","disable":"Вимкнути"},"addonBrowserDialog":{"searchPlaceholder":"Пошук...","active":"Активне","inactive":"Неактивне","next":"Далі","previous":"Назад"},"uploadEmailDialog":{"uploadEmailAddress":"Вивантажити через email","bodyText":"Ви можете завантажити документи до вашого аккаунту, відправивши їх на спеціальний email в якості вкладених файлів. З міркувань безпеки цей email відображається вам лише один раз. Скопіюйте його в захищене розташування: він прийме вкладення з будь-якого облікового запису електронної пошти. Ви можете згенерувати нову адресу завантаження у будь-який час (який відключить попередній) або взагалі вимкнути цю функцію. Документи завантажуються як приватні.
Ми будемо раді вашим відгукам та хотіли б почути про випадки креативного використання на info@documentcloud.org.","createMsg":"Електронну адресу для завантаження успішно створено: {mailkey}@uploads.documentcloud.org","destroyMsg":"Будь-який email для завантаження була видалена з вашого облікового запису","disable":"Вимкнути завантаження через email"}}')}}]);