diff --git a/plugins/cache-on-save/cache-on-save.php b/plugins/cache-on-save/cache-on-save.php index a89886a..75b5cf0 100644 --- a/plugins/cache-on-save/cache-on-save.php +++ b/plugins/cache-on-save/cache-on-save.php @@ -13,7 +13,10 @@ class CacheOnSavePlugin extends Plugin // Runs before add-page-by-form's onFormProcessed (page write), so it // can inject the write target and abort the submit by failing validation. 'onFormValidationProcessed' => ['onFormValidationProcessed', 0], - 'onFormProcessed' => ['onFormProcessed', 0], + // Priority -100 so this runs AFTER add-page-by-form's onFormProcessed + // (priority 0) has created the page and copied the uploaded files — + // we reorder those files, then clear the page-tree cache. + 'onFormProcessed' => ['onFormProcessed', -100], ]; } @@ -63,14 +66,146 @@ class CacheOnSavePlugin extends Plugin return '/' . $trip . '/dailies'; } + /** + * The photo order the user arranged in the form, sent explicitly by + * post-form.js as a JSON array of filenames in the dedicated + * data[photo_order] input. FilePond does not re-sequence its own submitted + * inputs on reorder, so this is the only reliable source of the drag order. + * Read straight from $_POST as a top-level key (not under data[]), so Grav's + * form never captures it and it never lands in the entry frontmatter. + */ + private function orderFromPost(): array + { + $raw = $_POST['photo_order'] ?? null; + if (!is_string($raw) || $raw === '') { + return []; + } + $decoded = json_decode($raw, true); + if (!is_array($decoded)) { + return []; + } + $names = []; + foreach ($decoded as $name) { + if (is_string($name) && $name !== '') { + $names[] = basename(str_replace('\\', '/', $name)); + } + } + return $names; + } + public function onFormProcessed(Event $event): void { $form = $event['form']; - if (!$form) { + if (!$form || $form->getName() !== 'new-entry') { return; } - if ($form->getName() === 'new-entry') { - $this->grav['cache']->deleteAll(); + + // Reorder the just-copied photos to match the order the user arranged in + // the form (FilePond drag). Best-effort: any failure logs and is skipped + // so a post is never lost over cosmetics. + try { + $this->reorderPhotos(); + } catch (\Throwable $e) { + $this->grav['log']->warning('cache-on-save: photo reorder skipped — ' . $e->getMessage()); + } + + $this->grav['cache']->deleteAll(); + } + + /** + * Rename the uploaded photos to photo-1..N in the submitted (drag) order. + * + * The published entry lists media in filename order and treats the first as + * the hero (see partials/entry-journal + entry-story), so a deterministic + * photo-N naming is what makes the arranged order stick. copyFiles() writes + * each file under its unsanitised client filename, and post-form.js sends the + * drag order via the top-level `photo_order` POST key (orderFromPost) — so we + * can map each on-disk file to its final photo-N slot. + */ + private function reorderPhotos(): void + { + $names = $this->orderFromPost(); + if (count($names) < 1) { + return; // nothing uploaded + } + + $activeTrip = $this->grav['config']->get('site.active_trip'); + $activeTrip = is_string($activeTrip) ? trim($activeTrip) : ''; + if ($activeTrip === '') { + return; + } + $slug = preg_replace('#^/?trips/#', '', trim($activeTrip, '/')); + $slug = preg_replace('#/.*$#', '', $slug); + + $dir = $this->findEntryFolder($slug, $names); + if ($dir === null) { + return; // couldn't confidently locate the new entry folder + } + + // Two-phase rename via temp names so a target (photo-2.jpg) can't clobber + // a not-yet-moved source of the same name. + $planned = []; + $i = 1; + foreach ($names as $name) { + $src = $dir . DIRECTORY_SEPARATOR . $name; + if (!is_file($src)) { + continue; // skip anything not actually on disk + } + $ext = strtolower(pathinfo($name, PATHINFO_EXTENSION)) ?: 'jpg'; + $tmp = $dir . DIRECTORY_SEPARATOR . '.reorder-tmp-' . $i . '.' . $ext; + $final = $dir . DIRECTORY_SEPARATOR . 'photo-' . $i . '.' . $ext; + if ($src === $final) { + $i++; + continue; // already correctly named + } + @rename($src, $tmp); + $planned[] = [$tmp, $final]; + $i++; + } + foreach ($planned as [$tmp, $final]) { + if (is_file($tmp)) { + @rename($tmp, $final); + } } } + + /** + * Locate the freshly-created entry folder: the child of the active trip's + * dailies directory that contains all of the uploaded files. Matching by the + * exact uploaded filenames avoids re-deriving add-page-by-form's slug logic. + */ + private function findEntryFolder(string $slug, array $names): ?string + { + $pagesRoot = rtrim(USER_DIR, '/\\') . '/pages'; + $dailies = null; + foreach (glob($pagesRoot . '/*trips*', GLOB_ONLYDIR) ?: [] as $tripsDir) { + foreach (glob($tripsDir . '/*', GLOB_ONLYDIR) ?: [] as $tripDir) { + $base = basename($tripDir); + if ($base === $slug || preg_match('/(^|\.)' . preg_quote($slug, '/') . '$/', $base)) { + $found = glob($tripDir . '/*dailies*', GLOB_ONLYDIR) ?: []; + if ($found) { + $dailies = $found[0]; + break 2; + } + } + } + } + if ($dailies === null) { + return null; + } + + foreach (glob($dailies . '/*', GLOB_ONLYDIR) ?: [] as $child) { + $allPresent = true; + foreach ($names as $name) { + if (!is_file($child . DIRECTORY_SEPARATOR . $name)) { + $allPresent = false; + break; + } + } + if ($allPresent) { + return $child; + } + } + return null; + } } diff --git a/themes/intotheeast/css-compiled/post-form.css b/themes/intotheeast/css-compiled/post-form.css index 50d53e8..23cad62 100644 --- a/themes/intotheeast/css-compiled/post-form.css +++ b/themes/intotheeast/css-compiled/post-form.css @@ -1,4 +1,4 @@ -.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor .CodeMirror-line::selection,.cm-fat-cursor .CodeMirror-line>span::selection,.cm-fat-cursor .CodeMirror-line>span>span::selection{background:0 0}.cm-fat-cursor .CodeMirror-line::-moz-selection,.cm-fat-cursor .CodeMirror-line>span::-moz-selection,.cm-fat-cursor .CodeMirror-line>span>span::-moz-selection{background:0 0}.cm-fat-cursor{caret-color:transparent}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;inset:-50px 0 0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error,.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:#ff96004d}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:0;position:relative;z-index:0}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none;outline:0}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;inset:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors,.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:#ff06}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:0 0}.EasyMDEContainer{display:block}.CodeMirror-rtl pre{direction:rtl}.EasyMDEContainer.sided--no-fullscreen{display:flex;flex-direction:row;flex-wrap:wrap}.EasyMDEContainer .CodeMirror{box-sizing:border-box;height:auto;border:1px solid #ced4da;border-bottom-left-radius:4px;border-bottom-right-radius:4px;padding:10px;font:inherit;z-index:0;word-wrap:break-word}.EasyMDEContainer .CodeMirror-scroll{cursor:text}.EasyMDEContainer .CodeMirror-fullscreen{background:#fff;position:fixed!important;inset:50px 0 0;height:auto;z-index:8;border-right:none!important;border-bottom-right-radius:0!important}.EasyMDEContainer .CodeMirror-sided{width:50%!important}.EasyMDEContainer.sided--no-fullscreen .CodeMirror-sided{border-right:none!important;border-bottom-right-radius:0;position:relative;flex:1 1 auto}.EasyMDEContainer .CodeMirror-placeholder{opacity:.5}.EasyMDEContainer .CodeMirror-focused .CodeMirror-selected{background:#d9d9d9}.editor-toolbar{position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;padding:9px 10px;border-top:1px solid #ced4da;border-left:1px solid #ced4da;border-right:1px solid #ced4da;border-top-left-radius:4px;border-top-right-radius:4px}.editor-toolbar.fullscreen{width:100%;height:50px;padding-top:10px;padding-bottom:10px;box-sizing:border-box;background:#fff;border:0;position:fixed;top:0;left:0;opacity:1;z-index:9}.editor-toolbar.fullscreen:before{width:20px;height:50px;background:-moz-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,#fff),color-stop(100%,rgba(255,255,255,0)));background:-webkit-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:-o-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:linear-gradient(to right,#fff 0,#fff0);position:fixed;top:0;left:0;margin:0;padding:0}.editor-toolbar.fullscreen:after{width:20px;height:50px;background:-moz-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,0)),color-stop(100%,#fff));background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:-o-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:-ms-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:linear-gradient(to right,#fff0 0,#fff);position:fixed;top:0;right:0;margin:0;padding:0}.EasyMDEContainer.sided--no-fullscreen .editor-toolbar{width:100%}.editor-toolbar .easymde-dropdown,.editor-toolbar button{background:0 0;display:inline-block;text-align:center;text-decoration:none!important;height:30px;margin:0;padding:0;border:1px solid transparent;border-radius:3px;cursor:pointer}.editor-toolbar button{font-weight:700;min-width:30px;padding:0 6px;white-space:nowrap}.editor-toolbar button.active,.editor-toolbar button:hover{background:#fcfcfc;border-color:#95a5a6}.editor-toolbar i.separator{display:inline-block;width:0;border-left:1px solid #d9d9d9;border-right:1px solid #fff;color:transparent;text-indent:-10px;margin:0 6px}.editor-toolbar button:after{font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:65%;vertical-align:text-bottom;position:relative;top:2px}.editor-toolbar button.heading-1:after{content:"1"}.editor-toolbar button.heading-2:after{content:"2"}.editor-toolbar button.heading-3:after{content:"3"}.editor-toolbar button.heading-bigger:after{content:"\25b2"}.editor-toolbar button.heading-smaller:after{content:"\25bc"}.editor-toolbar.disabled-for-preview button:not(.no-disable){opacity:.6;pointer-events:none}@media only screen and (max-width:700px){.editor-toolbar i.no-mobile{display:none}}.editor-statusbar{padding:8px 10px;font-size:12px;color:#959694;text-align:right}.EasyMDEContainer.sided--no-fullscreen .editor-statusbar{width:100%}.editor-statusbar span{display:inline-block;min-width:4em;margin-left:1em}.editor-statusbar .lines:before{content:"lines: "}.editor-statusbar .words:before{content:"words: "}.editor-statusbar .characters:before{content:"characters: "}.editor-preview-full{position:absolute;width:100%;height:100%;top:0;left:0;z-index:7;overflow:auto;display:none;box-sizing:border-box}.editor-preview-side{position:fixed;bottom:0;width:50%;top:50px;right:0;z-index:9;overflow:auto;display:none;box-sizing:border-box;border:1px solid #ddd;word-wrap:break-word}.editor-preview-active-side{display:block}.EasyMDEContainer.sided--no-fullscreen .editor-preview-active-side{flex:1 1 auto;height:auto;position:static}.editor-preview-active{display:block}.editor-preview{padding:10px;background:#fafafa}.editor-preview>p{margin-top:0}.editor-preview pre{background:#eee;margin-bottom:10px}.editor-preview table td,.editor-preview table th{border:1px solid #ddd;padding:5px}.cm-s-easymde .cm-tag{color:#63a35c}.cm-s-easymde .cm-attribute{color:#795da3}.cm-s-easymde .cm-string{color:#183691}.cm-s-easymde .cm-header-1{font-size:calc(1.375rem + 1.5vw)}.cm-s-easymde .cm-header-2{font-size:calc(1.325rem + .9vw)}.cm-s-easymde .cm-header-3{font-size:calc(1.3rem + .6vw)}.cm-s-easymde .cm-header-4{font-size:calc(1.275rem + .3vw)}.cm-s-easymde .cm-header-5{font-size:1.25rem}.cm-s-easymde .cm-header-6{font-size:1rem}.cm-s-easymde .cm-header-1,.cm-s-easymde .cm-header-2,.cm-s-easymde .cm-header-3,.cm-s-easymde .cm-header-4,.cm-s-easymde .cm-header-5,.cm-s-easymde .cm-header-6{margin-bottom:.5rem;line-height:1.2}.cm-s-easymde .cm-comment{background:#0000000d;border-radius:2px}.cm-s-easymde .cm-link{color:#7f8c8d}.cm-s-easymde .cm-url{color:#aab2b3}.cm-s-easymde .cm-quote{color:#7f8c8d;font-style:italic}.editor-toolbar .easymde-dropdown{position:relative;background:linear-gradient(to bottom right,#fff 0 84%,#333 50% 100%);border-radius:0;border:1px solid #fff}.editor-toolbar .easymde-dropdown:hover{background:linear-gradient(to bottom right,#fff 0 84%,#333 50% 100%)}.easymde-dropdown-content{display:block;visibility:hidden;position:absolute;background-color:#f9f9f9;box-shadow:0 8px 16px #0003;padding:8px;z-index:2;top:30px}.easymde-dropdown:active .easymde-dropdown-content,.easymde-dropdown:focus .easymde-dropdown-content,.easymde-dropdown:focus-within .easymde-dropdown-content{visibility:visible}.easymde-dropdown-content button{display:block}span[data-img-src]:after{content:"";background-image:var(--bg-image);display:block;max-height:100%;max-width:100%;background-size:contain;height:0;padding-top:var(--height);width:var(--width);background-repeat:no-repeat}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word){background:#ff000026}.editor-toolbar .mde-btn:before{font-style:normal;font-weight:400;font-family:inherit}.editor-toolbar .mde-bold:before{content:"B";font-weight:700}.editor-toolbar .mde-italic:before{content:"I";font-style:italic}.editor-toolbar .mde-ul:before{content:"\2022\2002\2014"}.editor-toolbar .mde-link:before{content:"\1f517"}.editor-toolbar .mde-preview:before{content:"\1f441"}.EasyMDEContainer .CodeMirror{min-height:180px}.photo-convert-status:empty{display:none}.photo-convert-status{font-size:var(--text-sm);margin-top:var(--space-2)}.photo-reauth-hint{display:none;font-size:var(--text-sm);color:var(--color-ink-muted);margin-top:var(--space-2)}.photo-reauth-hint.is-shown{display:block}.post-form-wrap select{width:100%;font-family:var(--font-ui);font-size:var(--text-base);padding:.875rem 2.5rem .875rem 1rem;min-height:44px;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas);color:var(--color-ink);-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2390887E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}.post-form-wrap select:focus{outline:2px solid var(--color-accent);outline-offset:1px;border-color:var(--color-accent)}.post-form-wrap input[type=number]{width:100%;font-family:var(--font-ui);font-size:var(--text-base);padding:.875rem 1rem;min-height:44px;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas);color:var(--color-ink);-webkit-appearance:none;appearance:none}.post-form-wrap input[type=number]:focus{outline:2px solid var(--color-accent);outline-offset:1px;border-color:var(--color-accent)}.more-options{margin-bottom:var(--space-5);border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas)}.more-options__summary{cursor:pointer;padding:.875rem 1rem;min-height:44px;display:flex;align-items:center;font-family:var(--font-ui);font-size:var(--text-sm);font-weight:600;color:var(--color-ink);list-style:none;user-select:none}.more-options__summary::-webkit-details-marker{display:none}.more-options__summary:before{content:"\25b8";margin-right:var(--space-2);color:var(--color-ink-muted);transition:transform .15s}.more-options[open] .more-options__summary:before{transform:rotate(90deg)}.more-options[open] .more-options__summary{border-bottom:1px solid var(--color-border)}.more-options>.form-field{padding:0 1rem}.more-options>.form-field:first-of-type{padding-top:var(--space-4)}.more-options>.form-field:last-child{padding-bottom:var(--space-4);margin-bottom:0}.btn-action.is-loading{position:relative;color:transparent;pointer-events:none}.btn-action.is-loading:after{content:"";position:absolute;top:50%;left:50%;width:16px;height:16px;margin:-8px 0 0 -8px;border:2px solid var(--color-ink-muted);border-top-color:var(--color-accent);border-radius:50%;animation:post-spin .7s linear infinite}.btn-action[disabled]{opacity:.5;cursor:not-allowed}@keyframes post-spin{to{transform:rotate(360deg)}}.post-form-wrap .notices{padding:1rem 1.1rem;border-radius:var(--radius-md);font-size:var(--text-base);margin:0 0 var(--space-5);background:var(--color-canvas);color:var(--color-ink);border-left:4px solid var(--color-accent)}.post-form-wrap .notices p{margin:0}.post-form-wrap .notices.error,.post-form-wrap .notices.red{border-left-color:var(--color-error)}.post-form-wrap .notices.success,.post-form-wrap .notices.green{border-left-color:var(--color-accent)}.post-success{margin:0 0 var(--space-5);padding:1.1rem;border-radius:var(--radius-md);background:var(--color-accent-light);border:1px solid var(--color-accent)}.post-success__title{font-family:var(--font-ui);font-size:var(--text-md);font-weight:600;color:var(--color-ink);margin:0 0 var(--space-3)}.post-success__actions{display:flex;flex-wrap:wrap;gap:var(--space-3)}.post-success__view{flex:1;min-width:140px;text-align:center;padding:.8rem 1rem;min-height:44px;border-radius:var(--radius-md);background:var(--color-accent);color:var(--color-accent-on);font-weight:600;text-decoration:none}.post-success__again{flex:1;min-width:140px;text-align:center;padding:.8rem 1rem;min-height:44px;border-radius:var(--radius-md);background:transparent;color:var(--color-ink);border:1px solid var(--color-border);font-weight:600;text-decoration:none}.filepond--credits,.filepond--image-preview-overlay{display:none!important}.filepond--item[data-filepond-item-state=processing-complete] .filepond--file-info,.filepond--item[data-filepond-item-state=processing-complete] .filepond--file-status{opacity:0}.filepond--item[data-filepond-item-state=processing-complete]:after{content:"\2713";position:absolute;top:8px;right:8px;z-index:5;width:24px;height:24px;line-height:24px;text-align:center;border-radius:50%;background:var(--color-accent);color:#fff;font-size:15px;font-weight:700;box-shadow:0 1px 3px #00000059;pointer-events:none}.photos-collapse{margin-bottom:var(--space-5);border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas)}.photos-collapse__summary{cursor:pointer;padding:.875rem 1rem;min-height:44px;display:flex;align-items:center;font-family:var(--font-ui);font-size:var(--text-sm);font-weight:600;color:var(--color-ink);list-style:none;user-select:none}.photos-collapse__summary::-webkit-details-marker{display:none}.photos-collapse__summary:before{content:"\25b8";margin-right:var(--space-2);color:var(--color-ink-muted);transition:transform .15s}.photos-collapse[open] .photos-collapse__summary:before{transform:rotate(90deg)}.photos-collapse[open] .photos-collapse__summary{border-bottom:1px solid var(--color-border)}.photos-collapse>:not(summary){padding-left:1rem;padding-right:1rem}.photos-collapse[open] .filepond--root,.photos-collapse[open] .filepond-root{margin:var(--space-4) 0}.photos-collapse[open]>.photo-convert-status:last-child,.photos-collapse[open]>.photo-reauth-hint:last-child{padding-bottom:var(--space-4)}.EasyMDEContainer .CodeMirror{background:var(--color-canvas);color:var(--color-ink);border:1px solid var(--color-border);border-radius:0 0 var(--radius-md) var(--radius-md);font-family:var(--font-ui);font-size:var(--text-base);line-height:var(--leading-normal);padding:var(--space-1)}.EasyMDEContainer .CodeMirror-cursor{border-color:var(--color-ink)}.EasyMDEContainer .CodeMirror-selected{background:var(--color-accent-light)!important}.EasyMDEContainer .editor-toolbar{background:var(--color-surface-raised);border:1px solid var(--color-border);border-bottom:none;border-radius:var(--radius-md) var(--radius-md) 0 0;opacity:1}.EasyMDEContainer .editor-toolbar button{color:var(--color-ink)!important;min-width:34px;height:34px}.EasyMDEContainer .editor-toolbar button:hover,.EasyMDEContainer .editor-toolbar button.active{background:var(--color-accent-light);border-color:var(--color-border)}.EasyMDEContainer .editor-toolbar i.separator{border-color:var(--color-border)}.EasyMDEContainer .editor-preview,.EasyMDEContainer .editor-preview-side{background:var(--color-canvas);color:var(--color-ink)}.EasyMDEContainer .editor-preview a{color:var(--color-accent)} +.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-gutter-filler,.CodeMirror-scrollbar-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid #000;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor .CodeMirror-line::selection,.cm-fat-cursor .CodeMirror-line>span::selection,.cm-fat-cursor .CodeMirror-line>span>span::selection{background:0 0}.cm-fat-cursor .CodeMirror-line::-moz-selection,.cm-fat-cursor .CodeMirror-line>span::-moz-selection,.cm-fat-cursor .CodeMirror-line>span>span::-moz-selection{background:0 0}.cm-fat-cursor{caret-color:transparent}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;inset:-50px 0 0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-type,.cm-s-default .cm-variable-3{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error,.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:#ff96004d}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:#fff}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:0;position:relative;z-index:0}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-gutter-filler,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-vscrollbar{position:absolute;z-index:6;display:none;outline:0}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;inset:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-code{outline:0}.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber,.CodeMirror-scroll,.CodeMirror-sizer{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors,.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:#ff06}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:""}span.CodeMirror-selectedtext{background:0 0}.EasyMDEContainer{display:block}.CodeMirror-rtl pre{direction:rtl}.EasyMDEContainer.sided--no-fullscreen{display:flex;flex-direction:row;flex-wrap:wrap}.EasyMDEContainer .CodeMirror{box-sizing:border-box;height:auto;border:1px solid #ced4da;border-bottom-left-radius:4px;border-bottom-right-radius:4px;padding:10px;font:inherit;z-index:0;word-wrap:break-word}.EasyMDEContainer .CodeMirror-scroll{cursor:text}.EasyMDEContainer .CodeMirror-fullscreen{background:#fff;position:fixed!important;inset:50px 0 0;height:auto;z-index:8;border-right:none!important;border-bottom-right-radius:0!important}.EasyMDEContainer .CodeMirror-sided{width:50%!important}.EasyMDEContainer.sided--no-fullscreen .CodeMirror-sided{border-right:none!important;border-bottom-right-radius:0;position:relative;flex:1 1 auto}.EasyMDEContainer .CodeMirror-placeholder{opacity:.5}.EasyMDEContainer .CodeMirror-focused .CodeMirror-selected{background:#d9d9d9}.editor-toolbar{position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none;padding:9px 10px;border-top:1px solid #ced4da;border-left:1px solid #ced4da;border-right:1px solid #ced4da;border-top-left-radius:4px;border-top-right-radius:4px}.editor-toolbar.fullscreen{width:100%;height:50px;padding-top:10px;padding-bottom:10px;box-sizing:border-box;background:#fff;border:0;position:fixed;top:0;left:0;opacity:1;z-index:9}.editor-toolbar.fullscreen:before{width:20px;height:50px;background:-moz-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,#fff),color-stop(100%,rgba(255,255,255,0)));background:-webkit-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:-o-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:-ms-linear-gradient(left,#fff 0,rgba(255,255,255,0) 100%);background:linear-gradient(to right,#fff 0,#fff0);position:fixed;top:0;left:0;margin:0;padding:0}.editor-toolbar.fullscreen:after{width:20px;height:50px;background:-moz-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:-webkit-gradient(linear,left top,right top,color-stop(0,rgba(255,255,255,0)),color-stop(100%,#fff));background:-webkit-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:-o-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:-ms-linear-gradient(left,rgba(255,255,255,0) 0,#fff 100%);background:linear-gradient(to right,#fff0 0,#fff);position:fixed;top:0;right:0;margin:0;padding:0}.EasyMDEContainer.sided--no-fullscreen .editor-toolbar{width:100%}.editor-toolbar .easymde-dropdown,.editor-toolbar button{background:0 0;display:inline-block;text-align:center;text-decoration:none!important;height:30px;margin:0;padding:0;border:1px solid transparent;border-radius:3px;cursor:pointer}.editor-toolbar button{font-weight:700;min-width:30px;padding:0 6px;white-space:nowrap}.editor-toolbar button.active,.editor-toolbar button:hover{background:#fcfcfc;border-color:#95a5a6}.editor-toolbar i.separator{display:inline-block;width:0;border-left:1px solid #d9d9d9;border-right:1px solid #fff;color:transparent;text-indent:-10px;margin:0 6px}.editor-toolbar button:after{font-family:Arial,Helvetica Neue,Helvetica,sans-serif;font-size:65%;vertical-align:text-bottom;position:relative;top:2px}.editor-toolbar button.heading-1:after{content:"1"}.editor-toolbar button.heading-2:after{content:"2"}.editor-toolbar button.heading-3:after{content:"3"}.editor-toolbar button.heading-bigger:after{content:"\25b2"}.editor-toolbar button.heading-smaller:after{content:"\25bc"}.editor-toolbar.disabled-for-preview button:not(.no-disable){opacity:.6;pointer-events:none}@media only screen and (max-width:700px){.editor-toolbar i.no-mobile{display:none}}.editor-statusbar{padding:8px 10px;font-size:12px;color:#959694;text-align:right}.EasyMDEContainer.sided--no-fullscreen .editor-statusbar{width:100%}.editor-statusbar span{display:inline-block;min-width:4em;margin-left:1em}.editor-statusbar .lines:before{content:"lines: "}.editor-statusbar .words:before{content:"words: "}.editor-statusbar .characters:before{content:"characters: "}.editor-preview-full{position:absolute;width:100%;height:100%;top:0;left:0;z-index:7;overflow:auto;display:none;box-sizing:border-box}.editor-preview-side{position:fixed;bottom:0;width:50%;top:50px;right:0;z-index:9;overflow:auto;display:none;box-sizing:border-box;border:1px solid #ddd;word-wrap:break-word}.editor-preview-active-side{display:block}.EasyMDEContainer.sided--no-fullscreen .editor-preview-active-side{flex:1 1 auto;height:auto;position:static}.editor-preview-active{display:block}.editor-preview{padding:10px;background:#fafafa}.editor-preview>p{margin-top:0}.editor-preview pre{background:#eee;margin-bottom:10px}.editor-preview table td,.editor-preview table th{border:1px solid #ddd;padding:5px}.cm-s-easymde .cm-tag{color:#63a35c}.cm-s-easymde .cm-attribute{color:#795da3}.cm-s-easymde .cm-string{color:#183691}.cm-s-easymde .cm-header-1{font-size:calc(1.375rem + 1.5vw)}.cm-s-easymde .cm-header-2{font-size:calc(1.325rem + .9vw)}.cm-s-easymde .cm-header-3{font-size:calc(1.3rem + .6vw)}.cm-s-easymde .cm-header-4{font-size:calc(1.275rem + .3vw)}.cm-s-easymde .cm-header-5{font-size:1.25rem}.cm-s-easymde .cm-header-6{font-size:1rem}.cm-s-easymde .cm-header-1,.cm-s-easymde .cm-header-2,.cm-s-easymde .cm-header-3,.cm-s-easymde .cm-header-4,.cm-s-easymde .cm-header-5,.cm-s-easymde .cm-header-6{margin-bottom:.5rem;line-height:1.2}.cm-s-easymde .cm-comment{background:#0000000d;border-radius:2px}.cm-s-easymde .cm-link{color:#7f8c8d}.cm-s-easymde .cm-url{color:#aab2b3}.cm-s-easymde .cm-quote{color:#7f8c8d;font-style:italic}.editor-toolbar .easymde-dropdown{position:relative;background:linear-gradient(to bottom right,#fff 0 84%,#333 50% 100%);border-radius:0;border:1px solid #fff}.editor-toolbar .easymde-dropdown:hover{background:linear-gradient(to bottom right,#fff 0 84%,#333 50% 100%)}.easymde-dropdown-content{display:block;visibility:hidden;position:absolute;background-color:#f9f9f9;box-shadow:0 8px 16px #0003;padding:8px;z-index:2;top:30px}.easymde-dropdown:active .easymde-dropdown-content,.easymde-dropdown:focus .easymde-dropdown-content,.easymde-dropdown:focus-within .easymde-dropdown-content{visibility:visible}.easymde-dropdown-content button{display:block}span[data-img-src]:after{content:"";background-image:var(--bg-image);display:block;max-height:100%;max-width:100%;background-size:contain;height:0;padding-top:var(--height);width:var(--width);background-repeat:no-repeat}.CodeMirror .cm-spell-error:not(.cm-url):not(.cm-comment):not(.cm-tag):not(.cm-word){background:#ff000026}.editor-toolbar .mde-btn:before{font-style:normal;font-weight:400;font-family:inherit}.editor-toolbar .mde-bold:before{content:"B";font-weight:700}.editor-toolbar .mde-italic:before{content:"I";font-style:italic}.editor-toolbar .mde-ul:before{content:"\2022\2002\2014"}.editor-toolbar .mde-link:before{content:"\1f517"}.editor-toolbar .mde-preview:before{content:"\1f441"}.EasyMDEContainer .CodeMirror{min-height:180px}.photo-convert-status:empty{display:none}.photo-convert-status{font-size:var(--text-sm);margin-top:var(--space-2)}.photo-reauth-hint{display:none;font-size:var(--text-sm);color:var(--color-ink-muted);margin-top:var(--space-2)}.photo-reauth-hint.is-shown{display:block}.post-form-wrap select{width:100%;font-family:var(--font-ui);font-size:var(--text-base);padding:.875rem 2.5rem .875rem 1rem;min-height:44px;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas);color:var(--color-ink);-webkit-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2390887E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 1rem center}.post-form-wrap select:focus{outline:2px solid var(--color-accent);outline-offset:1px;border-color:var(--color-accent)}.post-form-wrap input[type=number]{width:100%;font-family:var(--font-ui);font-size:var(--text-base);padding:.875rem 1rem;min-height:44px;border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas);color:var(--color-ink);-webkit-appearance:none;appearance:none}.post-form-wrap input[type=number]:focus{outline:2px solid var(--color-accent);outline-offset:1px;border-color:var(--color-accent)}.more-options{margin-bottom:var(--space-5);border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas)}.more-options__summary{cursor:pointer;padding:.875rem 1rem;min-height:44px;display:flex;align-items:center;font-family:var(--font-ui);font-size:var(--text-sm);font-weight:600;color:var(--color-ink);list-style:none;user-select:none}.more-options__summary::-webkit-details-marker{display:none}.more-options__summary:before{content:"\25b8";margin-right:var(--space-2);color:var(--color-ink-muted);transition:transform .15s}.more-options[open] .more-options__summary:before{transform:rotate(90deg)}.more-options[open] .more-options__summary{border-bottom:1px solid var(--color-border)}.more-options>.form-field{padding:0 1rem}.more-options>.form-field:first-of-type{padding-top:var(--space-4)}.more-options>.form-field:last-child{padding-bottom:var(--space-4);margin-bottom:0}.btn-action.is-loading{position:relative;color:transparent;pointer-events:none}.btn-action.is-loading:after{content:"";position:absolute;top:50%;left:50%;width:16px;height:16px;margin:-8px 0 0 -8px;border:2px solid var(--color-ink-muted);border-top-color:var(--color-accent);border-radius:50%;animation:post-spin .7s linear infinite}.btn-action[disabled]{opacity:.5;cursor:not-allowed}@keyframes post-spin{to{transform:rotate(360deg)}}.post-form-wrap .notices{padding:1rem 1.1rem;border-radius:var(--radius-md);font-size:var(--text-base);margin:0 0 var(--space-5);background:var(--color-canvas);color:var(--color-ink);border-left:4px solid var(--color-accent)}.post-form-wrap .notices p{margin:0}.post-form-wrap .notices.error,.post-form-wrap .notices.red{border-left-color:var(--color-error)}.post-form-wrap .notices.success,.post-form-wrap .notices.green{border-left-color:var(--color-accent)}.post-success{margin:0 0 var(--space-5);padding:1.1rem;border-radius:var(--radius-md);background:var(--color-accent-light);border:1px solid var(--color-accent)}.post-success__title{font-family:var(--font-ui);font-size:var(--text-md);font-weight:600;color:var(--color-ink);margin:0 0 var(--space-3)}.post-success__actions{display:flex;flex-wrap:wrap;gap:var(--space-3)}.post-success__view{flex:1;min-width:140px;text-align:center;padding:.8rem 1rem;min-height:44px;border-radius:var(--radius-md);background:var(--color-accent);color:var(--color-accent-on);font-weight:600;text-decoration:none}.post-success__again{flex:1;min-width:140px;text-align:center;padding:.8rem 1rem;min-height:44px;border-radius:var(--radius-md);background:transparent;color:var(--color-ink);border:1px solid var(--color-border);font-weight:600;text-decoration:none}.filepond--credits{display:none!important}.filepond--root{font-family:var(--font-ui);font-size:var(--text-base)}.filepond--panel-root{background-color:var(--color-canvas);border:1px solid var(--color-border);border-radius:var(--radius-md)}.filepond--drop-label,.filepond--drop-label label{color:var(--color-ink-muted)}.filepond--label-action{color:var(--color-accent);text-decoration-color:var(--color-accent)}.filepond--item-panel{background-color:var(--color-surface-raised);border-radius:var(--radius-md)}.filepond--drip-blob{background-color:var(--color-accent)}.filepond--file{color:var(--color-ink)}.filepond--file-action-button{color:var(--color-ink);background-color:#00000073}.filepond--file-action-button:hover{background-color:#000000a6}.filepond--image-preview-overlay{display:none!important}.filepond--item[data-filepond-item-state=processing-complete] .filepond--file-info,.filepond--item[data-filepond-item-state=processing-complete] .filepond--file-status{opacity:0}.filepond--item[data-filepond-item-state=processing-complete]:after{content:"\2713";position:absolute;top:8px;right:8px;z-index:5;width:24px;height:24px;line-height:24px;text-align:center;border-radius:50%;background:var(--color-accent);color:#fff;font-size:15px;font-weight:700;box-shadow:0 1px 3px #00000059;pointer-events:none}.photos-collapse{margin-bottom:var(--space-5);border:1px solid var(--color-border);border-radius:var(--radius-md);background:var(--color-canvas)}.photos-collapse__summary{cursor:pointer;padding:.875rem 1rem;min-height:44px;display:flex;align-items:center;font-family:var(--font-ui);font-size:var(--text-sm);font-weight:600;color:var(--color-ink);list-style:none;user-select:none}.photos-collapse__summary::-webkit-details-marker{display:none}.photos-collapse__summary:before{content:"\25b8";margin-right:var(--space-2);color:var(--color-ink-muted);transition:transform .15s}.photos-collapse[open] .photos-collapse__summary:before{transform:rotate(90deg)}.photos-collapse[open] .photos-collapse__summary{border-bottom:1px solid var(--color-border)}.photos-collapse>:not(summary){padding-left:1rem;padding-right:1rem}.photos-collapse[open] .filepond--root,.photos-collapse[open] .filepond-root{margin:var(--space-4) 0}.photos-collapse[open]>.photo-convert-status:last-child,.photos-collapse[open]>.photo-reauth-hint:last-child{padding-bottom:var(--space-4)}.EasyMDEContainer .CodeMirror{background:var(--color-canvas);color:var(--color-ink);border:1px solid var(--color-border);border-radius:0 0 var(--radius-md) var(--radius-md);font-family:var(--font-ui);font-size:var(--text-base);line-height:var(--leading-normal);padding:var(--space-1)}.EasyMDEContainer .CodeMirror-cursor{border-color:var(--color-ink)}.EasyMDEContainer .CodeMirror-selected{background:var(--color-accent-light)!important}.EasyMDEContainer .editor-toolbar{background:var(--color-surface-raised);border:1px solid var(--color-border);border-bottom:none;border-radius:var(--radius-md) var(--radius-md) 0 0;opacity:1}.EasyMDEContainer .editor-toolbar button{color:var(--color-ink)!important;min-width:34px;height:34px}.EasyMDEContainer .editor-toolbar button:hover,.EasyMDEContainer .editor-toolbar button.active{background:var(--color-accent-light);border-color:var(--color-border)}.EasyMDEContainer .editor-toolbar i.separator{border-color:var(--color-border)}.EasyMDEContainer .editor-preview,.EasyMDEContainer .editor-preview-side{background:var(--color-canvas);color:var(--color-ink)}.EasyMDEContainer .editor-preview a{color:var(--color-accent)} /*! Bundled license information: easymde/dist/easymde.min.css: diff --git a/themes/intotheeast/js/post/post-form.js b/themes/intotheeast/js/post/post-form.js index 5f88ff1..a4519d3 100644 --- a/themes/intotheeast/js/post/post-form.js +++ b/themes/intotheeast/js/post/post-form.js @@ -1,59 +1,59 @@ -import{a as ms,b as Ye,c as _c}from"./chunk-ZWRDP37E.js";var ct=Ye((Ko,Xo)=>{(function(a,c){typeof Ko=="object"&&typeof Xo<"u"?Xo.exports=c():typeof define=="function"&&define.amd?define(c):(a=a||self,a.CodeMirror=c())})(Ko,function(){"use strict";var a=navigator.userAgent,c=navigator.platform,d=/gecko\/\d/i.test(a),l=/MSIE \d/.test(a),u=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(a),g=/Edge\/(\d+)/.exec(a),f=l||u||g,p=f&&(l?document.documentMode||6:+(g||u)[1]),b=!g&&/WebKit\//.test(a),C=b&&/Qt\/\d+\.\d+/.test(a),D=!g&&/Chrome\/(\d+)/.exec(a),E=D&&+D[1],T=/Opera\//.test(a),M=/Apple Computer/.test(navigator.vendor),z=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(a),I=/PhantomJS/.test(a),F=M&&(/Mobile\/\w+/.test(a)||navigator.maxTouchPoints>2),B=/Android/.test(a),N=F||B||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(a),R=F||/Mac/.test(c),H=/\bCrOS\b/.test(a),_=/win/i.test(c),X=T&&a.match(/Version\/(\d*\.\d*)/);X&&(X=Number(X[1])),X&&X>=15&&(T=!1,b=!0);var K=R&&(C||T&&(X==null||X<12.11)),ge=d||f&&p>=9;function G(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var ue=function(e,t){var i=e.className,r=G(t).exec(i);if(r){var n=i.slice(r.index+r[0].length);e.className=i.slice(0,r.index)+(n?r[1]+n:"")}};function ae(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function de(e,t){return ae(e).appendChild(t)}function A(e,t,i,r){var n=document.createElement(e);if(i&&(n.className=i),r&&(n.style.cssText=r),typeof t=="string")n.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return s+(t-o);s+=h-o,s+=i-s%i,o=h+1}}var Je=function(){this.id=null,this.f=null,this.time=0,this.handler=tt(this.onTimeout,this)};Je.prototype.onTimeout=function(e){e.id=0,e.time<=+new Date?e.f():setTimeout(e.handler,e.time-+new Date)},Je.prototype.set=function(e,t){this.f=t;var i=+new Date+e;(!this.id||i=t)return r+Math.min(s,t-n);if(n+=o-r,n+=i-n%i,r=o+1,n>=t)return r}}var yt=[""];function Pt(e){for(;yt.length<=e;)yt.push(me(yt)+" ");return yt[e]}function me(e){return e[e.length-1]}function bt(e,t){for(var i=[],r=0;r"\x80"&&(e.toUpperCase()!=e.toLowerCase()||Eu.test(e))}function Fi(e,t){return t?t.source.indexOf("\\w")>-1&&On(e)?!0:t.test(e):On(e)}function ca(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var Au=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function Hn(e){return e.charCodeAt(0)>=768&&Au.test(e)}function da(e,t,i){for(;(i<0?t>0:ti?-1:1;;){if(t==i)return t;var n=(t+i)/2,o=r<0?Math.ceil(n):Math.floor(n);if(o==t)return e(o)?t:i;e(o)?i=o:t=o+r}}function Lu(e,t,i,r){if(!e)return r(t,i,"ltr",0);for(var n=!1,o=0;ot||t==i&&s.to==t)&&(r(Math.max(s.from,t),Math.min(s.to,i),s.level==1?"rtl":"ltr",o),n=!0)}n||r(t,i,"ltr")}var Gr=null;function Kr(e,t,i){var r;Gr=null;for(var n=0;nt)return n;o.to==t&&(o.from!=o.to&&i=="before"?r=n:Gr=n),o.from==t&&(o.from!=o.to&&i!="before"?r=n:Gr=n)}return r??Gr}var Tu=function(){var e="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",t="nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";function i(m){return m<=247?e.charAt(m):1424<=m&&m<=1524?"R":1536<=m&&m<=1785?t.charAt(m-1536):1774<=m&&m<=2220?"r":8192<=m&&m<=8203?"w":m==8204?"b":"L"}var r=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,n=/[stwN]/,o=/[LRr]/,s=/[Lb1n]/,h=/[1n]/;function v(m,x,w){this.level=m,this.from=x,this.to=w}return function(m,x){var w=x=="ltr"?"L":"R";if(m.length==0||x=="ltr"&&!r.test(m))return!1;for(var L=m.length,S=[],O=0;O-1&&(r[t]=n.slice(0,o).concat(n.slice(o+1)))}}}function Ie(e,t){var i=Rn(e,t);if(i.length)for(var r=Array.prototype.slice.call(arguments,2),n=0;n0}function mr(e){e.prototype.on=function(t,i){oe(this,t,i)},e.prototype.off=function(t,i){ht(this,t,i)}}function it(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function ga(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function Pn(e){return e.defaultPrevented!=null?e.defaultPrevented:e.returnValue==!1}function Xr(e){it(e),ga(e)}function _n(e){return e.target||e.srcElement}function va(e){var t=e.which;return t==null&&(e.button&1?t=1:e.button&2?t=3:e.button&4&&(t=2)),R&&e.ctrlKey&&t==1&&(t=3),t}var Mu=function(){if(f&&p<9)return!1;var e=A("div");return"draggable"in e||"dragDrop"in e}(),Wn;function Bu(e){if(Wn==null){var t=A("span","\u200B");de(e,A("span",[t,document.createTextNode("x")])),e.firstChild.offsetHeight!=0&&(Wn=t.offsetWidth<=1&&t.offsetHeight>2&&!(f&&p<8))}var i=Wn?A("span","\u200B"):A("span","\xA0",null,"display: inline-block; width: 1px; margin-right: -1px");return i.setAttribute("cm-text",""),i}var qn;function Nu(e){if(qn!=null)return qn;var t=de(e,document.createTextNode("A\u062EA")),i=W(t,0,1).getBoundingClientRect(),r=W(t,1,2).getBoundingClientRect();return ae(e),!i||i.left==i.right?!1:qn=r.right-i.right<3}var Un=` +import{a as ms,b as Ye,c as _c}from"./chunk-ZWRDP37E.js";var ct=Ye((Ko,Xo)=>{(function(a,c){typeof Ko=="object"&&typeof Xo<"u"?Xo.exports=c():typeof define=="function"&&define.amd?define(c):(a=a||self,a.CodeMirror=c())})(Ko,function(){"use strict";var a=navigator.userAgent,c=navigator.platform,d=/gecko\/\d/i.test(a),l=/MSIE \d/.test(a),u=/Trident\/(?:[7-9]|\d{2,})\..*rv:(\d+)/.exec(a),g=/Edge\/(\d+)/.exec(a),f=l||u||g,p=f&&(l?document.documentMode||6:+(g||u)[1]),y=!g&&/WebKit\//.test(a),C=y&&/Qt\/\d+\.\d+/.test(a),D=!g&&/Chrome\/(\d+)/.exec(a),S=D&&+D[1],F=/Opera\//.test(a),M=/Apple Computer/.test(navigator.vendor),z=/Mac OS X 1\d\D([8-9]|\d\d)\D/.test(a),I=/PhantomJS/.test(a),A=M&&(/Mobile\/\w+/.test(a)||navigator.maxTouchPoints>2),B=/Android/.test(a),N=A||B||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(a),R=A||/Mac/.test(c),H=/\bCrOS\b/.test(a),_=/win/i.test(c),X=F&&a.match(/Version\/(\d*\.\d*)/);X&&(X=Number(X[1])),X&&X>=15&&(F=!1,y=!0);var K=R&&(C||F&&(X==null||X<12.11)),ge=d||f&&p>=9;function G(e){return new RegExp("(^|\\s)"+e+"(?:$|\\s)\\s*")}var ue=function(e,t){var i=e.className,r=G(t).exec(i);if(r){var n=i.slice(r.index+r[0].length);e.className=i.slice(0,r.index)+(n?r[1]+n:"")}};function ae(e){for(var t=e.childNodes.length;t>0;--t)e.removeChild(e.firstChild);return e}function de(e,t){return ae(e).appendChild(t)}function L(e,t,i,r){var n=document.createElement(e);if(i&&(n.className=i),r&&(n.style.cssText=r),typeof t=="string")n.appendChild(document.createTextNode(t));else if(t)for(var o=0;o=t)return s+(t-o);s+=h-o,s+=i-s%i,o=h+1}}var Je=function(){this.id=null,this.f=null,this.time=0,this.handler=tt(this.onTimeout,this)};Je.prototype.onTimeout=function(e){e.id=0,e.time<=+new Date?e.f():setTimeout(e.handler,e.time-+new Date)},Je.prototype.set=function(e,t){this.f=t;var i=+new Date+e;(!this.id||i=t)return r+Math.min(s,t-n);if(n+=o-r,n+=i-n%i,r=o+1,n>=t)return r}}var bt=[""];function Pt(e){for(;bt.length<=e;)bt.push(me(bt)+" ");return bt[e]}function me(e){return e[e.length-1]}function yt(e,t){for(var i=[],r=0;r"\x80"&&(e.toUpperCase()!=e.toLowerCase()||Eu.test(e))}function Fi(e,t){return t?t.source.indexOf("\\w")>-1&&On(e)?!0:t.test(e):On(e)}function ca(e){for(var t in e)if(e.hasOwnProperty(t)&&e[t])return!1;return!0}var Au=/[\u0300-\u036f\u0483-\u0489\u0591-\u05bd\u05bf\u05c1\u05c2\u05c4\u05c5\u05c7\u0610-\u061a\u064b-\u065e\u0670\u06d6-\u06dc\u06de-\u06e4\u06e7\u06e8\u06ea-\u06ed\u0711\u0730-\u074a\u07a6-\u07b0\u07eb-\u07f3\u0816-\u0819\u081b-\u0823\u0825-\u0827\u0829-\u082d\u0900-\u0902\u093c\u0941-\u0948\u094d\u0951-\u0955\u0962\u0963\u0981\u09bc\u09be\u09c1-\u09c4\u09cd\u09d7\u09e2\u09e3\u0a01\u0a02\u0a3c\u0a41\u0a42\u0a47\u0a48\u0a4b-\u0a4d\u0a51\u0a70\u0a71\u0a75\u0a81\u0a82\u0abc\u0ac1-\u0ac5\u0ac7\u0ac8\u0acd\u0ae2\u0ae3\u0b01\u0b3c\u0b3e\u0b3f\u0b41-\u0b44\u0b4d\u0b56\u0b57\u0b62\u0b63\u0b82\u0bbe\u0bc0\u0bcd\u0bd7\u0c3e-\u0c40\u0c46-\u0c48\u0c4a-\u0c4d\u0c55\u0c56\u0c62\u0c63\u0cbc\u0cbf\u0cc2\u0cc6\u0ccc\u0ccd\u0cd5\u0cd6\u0ce2\u0ce3\u0d3e\u0d41-\u0d44\u0d4d\u0d57\u0d62\u0d63\u0dca\u0dcf\u0dd2-\u0dd4\u0dd6\u0ddf\u0e31\u0e34-\u0e3a\u0e47-\u0e4e\u0eb1\u0eb4-\u0eb9\u0ebb\u0ebc\u0ec8-\u0ecd\u0f18\u0f19\u0f35\u0f37\u0f39\u0f71-\u0f7e\u0f80-\u0f84\u0f86\u0f87\u0f90-\u0f97\u0f99-\u0fbc\u0fc6\u102d-\u1030\u1032-\u1037\u1039\u103a\u103d\u103e\u1058\u1059\u105e-\u1060\u1071-\u1074\u1082\u1085\u1086\u108d\u109d\u135f\u1712-\u1714\u1732-\u1734\u1752\u1753\u1772\u1773\u17b7-\u17bd\u17c6\u17c9-\u17d3\u17dd\u180b-\u180d\u18a9\u1920-\u1922\u1927\u1928\u1932\u1939-\u193b\u1a17\u1a18\u1a56\u1a58-\u1a5e\u1a60\u1a62\u1a65-\u1a6c\u1a73-\u1a7c\u1a7f\u1b00-\u1b03\u1b34\u1b36-\u1b3a\u1b3c\u1b42\u1b6b-\u1b73\u1b80\u1b81\u1ba2-\u1ba5\u1ba8\u1ba9\u1c2c-\u1c33\u1c36\u1c37\u1cd0-\u1cd2\u1cd4-\u1ce0\u1ce2-\u1ce8\u1ced\u1dc0-\u1de6\u1dfd-\u1dff\u200c\u200d\u20d0-\u20f0\u2cef-\u2cf1\u2de0-\u2dff\u302a-\u302f\u3099\u309a\ua66f-\ua672\ua67c\ua67d\ua6f0\ua6f1\ua802\ua806\ua80b\ua825\ua826\ua8c4\ua8e0-\ua8f1\ua926-\ua92d\ua947-\ua951\ua980-\ua982\ua9b3\ua9b6-\ua9b9\ua9bc\uaa29-\uaa2e\uaa31\uaa32\uaa35\uaa36\uaa43\uaa4c\uaab0\uaab2-\uaab4\uaab7\uaab8\uaabe\uaabf\uaac1\uabe5\uabe8\uabed\udc00-\udfff\ufb1e\ufe00-\ufe0f\ufe20-\ufe26\uff9e\uff9f]/;function Hn(e){return e.charCodeAt(0)>=768&&Au.test(e)}function da(e,t,i){for(;(i<0?t>0:ti?-1:1;;){if(t==i)return t;var n=(t+i)/2,o=r<0?Math.ceil(n):Math.floor(n);if(o==t)return e(o)?t:i;e(o)?i=o:t=o+r}}function Lu(e,t,i,r){if(!e)return r(t,i,"ltr",0);for(var n=!1,o=0;ot||t==i&&s.to==t)&&(r(Math.max(s.from,t),Math.min(s.to,i),s.level==1?"rtl":"ltr",o),n=!0)}n||r(t,i,"ltr")}var Gr=null;function Kr(e,t,i){var r;Gr=null;for(var n=0;nt)return n;o.to==t&&(o.from!=o.to&&i=="before"?r=n:Gr=n),o.from==t&&(o.from!=o.to&&i!="before"?r=n:Gr=n)}return r??Gr}var Tu=function(){var e="bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN",t="nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111";function i(m){return m<=247?e.charAt(m):1424<=m&&m<=1524?"R":1536<=m&&m<=1785?t.charAt(m-1536):1774<=m&&m<=2220?"r":8192<=m&&m<=8203?"w":m==8204?"b":"L"}var r=/[\u0590-\u05f4\u0600-\u06ff\u0700-\u08ac]/,n=/[stwN]/,o=/[LRr]/,s=/[Lb1n]/,h=/[1n]/;function v(m,x,w){this.level=m,this.from=x,this.to=w}return function(m,x){var w=x=="ltr"?"L":"R";if(m.length==0||x=="ltr"&&!r.test(m))return!1;for(var T=m.length,E=[],O=0;O-1&&(r[t]=n.slice(0,o).concat(n.slice(o+1)))}}}function Ie(e,t){var i=Rn(e,t);if(i.length)for(var r=Array.prototype.slice.call(arguments,2),n=0;n0}function mr(e){e.prototype.on=function(t,i){oe(this,t,i)},e.prototype.off=function(t,i){ht(this,t,i)}}function it(e){e.preventDefault?e.preventDefault():e.returnValue=!1}function ga(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0}function Pn(e){return e.defaultPrevented!=null?e.defaultPrevented:e.returnValue==!1}function Xr(e){it(e),ga(e)}function _n(e){return e.target||e.srcElement}function va(e){var t=e.which;return t==null&&(e.button&1?t=1:e.button&2?t=3:e.button&4&&(t=2)),R&&e.ctrlKey&&t==1&&(t=3),t}var Mu=function(){if(f&&p<9)return!1;var e=L("div");return"draggable"in e||"dragDrop"in e}(),Wn;function Bu(e){if(Wn==null){var t=L("span","\u200B");de(e,L("span",[t,document.createTextNode("x")])),e.firstChild.offsetHeight!=0&&(Wn=t.offsetWidth<=1&&t.offsetHeight>2&&!(f&&p<8))}var i=Wn?L("span","\u200B"):L("span","\xA0",null,"display: inline-block; width: 1px; margin-right: -1px");return i.setAttribute("cm-text",""),i}var qn;function Nu(e){if(qn!=null)return qn;var t=de(e,document.createTextNode("A\u062EA")),i=W(t,0,1).getBoundingClientRect(),r=W(t,1,2).getBoundingClientRect();return ae(e),!i||i.left==i.right?!1:qn=r.right-i.right<3}var Un=` b`.split(/\n/).length!=3?function(e){for(var t=0,i=[],r=e.length;t<=r;){var n=e.indexOf(` -`,t);n==-1&&(n=e.length);var o=e.slice(t,e.charAt(n-1)=="\r"?n-1:n),s=o.indexOf("\r");s!=-1?(i.push(o.slice(0,s)),t+=s+1):(i.push(o),t=n+1)}return i}:function(e){return e.split(/\r\n?|\n/)},Iu=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch{return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch{}return!t||t.parentElement()!=e?!1:t.compareEndPoints("StartToEnd",t)!=0},zu=function(){var e=A("div");return"oncopy"in e?!0:(e.setAttribute("oncopy","return;"),typeof e.oncopy=="function")}(),jn=null;function Ou(e){if(jn!=null)return jn;var t=de(e,A("span","x")),i=t.getBoundingClientRect(),r=W(t,0,1).getBoundingClientRect();return jn=Math.abs(i.left-r.left)>1}var Gn={},yr={};function Hu(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Gn[e]=t}function Ru(e,t){yr[e]=t}function Ei(e){if(typeof e=="string"&&yr.hasOwnProperty(e))e=yr[e];else if(e&&typeof e.name=="string"&&yr.hasOwnProperty(e.name)){var t=yr[e.name];typeof t=="string"&&(t={name:t}),e=fa(t,e),e.name=t.name}else{if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Ei("application/xml");if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Ei("application/json")}return typeof e=="string"?{name:e}:e||{name:"null"}}function Kn(e,t){t=Ei(t);var i=Gn[t.name];if(!i)return Kn(e,"text/plain");var r=i(e,t);if(br.hasOwnProperty(t.name)){var n=br[t.name];for(var o in n)n.hasOwnProperty(o)&&(r.hasOwnProperty(o)&&(r["_"+o]=r[o]),r[o]=n[o])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var s in t.modeProps)r[s]=t.modeProps[s];return r}var br={};function Pu(e,t){var i=br.hasOwnProperty(e)?br[e]:br[e]={};dt(t,i)}function Vt(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var i={};for(var r in t){var n=t[r];n instanceof Array&&(n=n.concat([])),i[r]=n}return i}function Xn(e,t){for(var i;e.innerMode&&(i=e.innerMode(t),!(!i||i.mode==e));)t=i.state,e=i.mode;return i||{mode:e,state:t}}function ma(e,t,i){return e.startState?e.startState(t,i):!0}var ze=function(e,t,i){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=i};ze.prototype.eol=function(){return this.pos>=this.string.length},ze.prototype.sol=function(){return this.pos==this.lineStart},ze.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},ze.prototype.next=function(){if(this.post},ze.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},ze.prototype.skipToEnd=function(){this.pos=this.string.length},ze.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},ze.prototype.backUp=function(e){this.pos-=e},ze.prototype.column=function(){return this.lastColumnPos0?null:(o&&t!==!1&&(this.pos+=o[0].length),o)}},ze.prototype.current=function(){return this.string.slice(this.start,this.pos)},ze.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},ze.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},ze.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};function re(e,t){if(t-=e.first,t<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var i=e;!i.lines;)for(var r=0;;++r){var n=i.children[r],o=n.chunkSize();if(t=e.first&&ti?q(i,re(e,i).text.length):_u(t,re(e,t.line).text.length)}function _u(e,t){var i=e.ch;return i==null||i>t?q(e.line,t):i<0?q(e.line,0):e}function ba(e,t){for(var i=[],r=0;rthis.maxLookAhead&&(this.maxLookAhead=e),t},Et.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},Et.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},Et.fromSaved=function(e,t,i){return t instanceof Ti?new Et(e,Vt(e.mode,t.state),i,t.lookAhead):new Et(e,Vt(e.mode,t),i)},Et.prototype.save=function(e){var t=e!==!1?Vt(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new Ti(t,this.maxLookAhead):t};function xa(e,t,i,r){var n=[e.state.modeGen],o={};Fa(e,t.text,e.doc.mode,i,function(m,x){return n.push(m,x)},o,r);for(var s=i.state,h=function(m){i.baseTokens=n;var x=e.state.overlays[m],w=1,L=0;i.state=!0,Fa(e,t.text,x.mode,i,function(S,O){for(var P=w;LS&&n.splice(w,1,S,n[w+1],j),w+=2,L=Math.min(S,j)}if(O)if(x.opaque)n.splice(P,w-P,S,"overlay "+O),w=P+2;else for(;Pe.options.maxHighlightLength&&Vt(e.doc.mode,r.state),o=xa(e,t,r);n&&(r.state=n),t.stateAfter=r.save(!n),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),i===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function Zr(e,t,i){var r=e.doc,n=e.display;if(!r.mode.startState)return new Et(r,!0,t);var o=Wu(e,t,i),s=o>r.first&&re(r,o-1).stateAfter,h=s?Et.fromSaved(r,s,o):new Et(r,ma(r.mode),o);return r.iter(o,t,function(v){$n(e,v.text,h);var m=h.line;v.stateAfter=m==t-1||m%5==0||m>=n.viewFrom&&mt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}var wa=function(e,t,i){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=i};function ka(e,t,i,r){var n=e.doc,o=n.mode,s;t=ce(n,t);var h=re(n,t.line),v=Zr(e,t.line,i),m=new ze(h.text,e.options.tabSize,v),x;for(r&&(x=[]);(r||m.pose.options.maxHighlightLength?(h=!1,s&&$n(e,t,r,x.pos),x.pos=t.length,w=null):w=Sa(Vn(i,x,r.state,L),o),L){var S=L[0].name;S&&(w="m-"+(w?S+" "+w:S))}if(!h||m!=w){for(;vs;--h){if(h<=o.first)return o.first;var v=re(o,h-1),m=v.stateAfter;if(m&&(!i||h+(m instanceof Ti?m.lookAhead:0)<=o.modeFrontier))return h;var x=Re(v.text,null,e.options.tabSize);(n==null||r>x)&&(n=h-1,r=x)}return n}function qu(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontieri;r--){var n=re(e,r).stateAfter;if(n&&(!(n instanceof Ti)||r+n.lookAhead=t:o.to>t);(r||(r=[])).push(new Mi(s,o.from,v?null:o.to))}}return r}function Yu(e,t,i){var r;if(e)for(var n=0;n=t:o.to>t);if(h||o.from==t&&s.type=="bookmark"&&(!i||o.marker.insertLeft)){var v=o.from==null||(s.inclusiveLeft?o.from<=t:o.from0&&h)for(var $=0;$0)){var x=[v,1],w=fe(m.from,h.from),L=fe(m.to,h.to);(w<0||!s.inclusiveLeft&&!w)&&x.push({from:m.from,to:h.from}),(L>0||!s.inclusiveRight&&!L)&&x.push({from:h.to,to:m.to}),n.splice.apply(n,x),v+=x.length-3}}return n}function La(e){var t=e.markedSpans;if(t){for(var i=0;it)&&(!r||to(r,o.marker)<0)&&(r=o.marker)}return r}function Na(e,t,i,r,n){var o=re(e,t),s=Bt&&o.markedSpans;if(s)for(var h=0;h=0&&w<=0||x<=0&&w>=0)&&(x<=0&&(v.marker.inclusiveRight&&n.inclusiveLeft?fe(m.to,i)>=0:fe(m.to,i)>0)||x>=0&&(v.marker.inclusiveRight&&n.inclusiveLeft?fe(m.from,r)<=0:fe(m.from,r)<0)))return!0}}}function xt(e){for(var t;t=Ba(e);)e=t.find(-1,!0).line;return e}function Ju(e){for(var t;t=Ii(e);)e=t.find(1,!0).line;return e}function $u(e){for(var t,i;t=Ii(e);)e=t.find(1,!0).line,(i||(i=[])).push(e);return i}function ro(e,t){var i=re(e,t),r=xt(i);return i==r?t:xe(r)}function Ia(e,t){if(t>e.lastLine())return t;var i=re(e,t),r;if(!Wt(e,i))return t;for(;r=Ii(i);)i=r.find(1,!0).line;return xe(i)+1}function Wt(e,t){var i=Bt&&t.markedSpans;if(i){for(var r=void 0,n=0;nt.maxLineLength&&(t.maxLineLength=n,t.maxLine=r)})}var xr=function(e,t,i){this.text=e,Ta(this,t),this.height=i?i(this):1};xr.prototype.lineNo=function(){return xe(this)},mr(xr);function Vu(e,t,i,r){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),e.order!=null&&(e.order=null),La(e),Ta(e,i);var n=r?r(e):1;n!=e.height&&Ft(e,n)}function ef(e){e.parent=null,La(e)}var tf={},rf={};function za(e,t){if(!e||/^\s*$/.test(e))return null;var i=t.addModeClass?rf:tf;return i[e]||(i[e]=e.replace(/\S+/g,"cm-$&"))}function Oa(e,t){var i=U("span",null,null,b?"padding-right: .1px":null),r={pre:U("pre",[i],"CodeMirror-line"),content:i,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var n=0;n<=(t.rest?t.rest.length:0);n++){var o=n?t.rest[n-1]:t.line,s=void 0;r.pos=0,r.addToken=of,Nu(e.display.measure)&&(s=Mt(o,e.doc.direction))&&(r.addToken=lf(r.addToken,s)),r.map=[];var h=t!=e.display.externalMeasured&&xe(o);sf(o,r,Da(e,o,h)),o.styleClasses&&(o.styleClasses.bgClass&&(r.bgClass=vt(o.styleClasses.bgClass,r.bgClass||"")),o.styleClasses.textClass&&(r.textClass=vt(o.styleClasses.textClass,r.textClass||""))),r.map.length==0&&r.map.push(0,0,r.content.appendChild(Bu(e.display.measure))),n==0?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(b){var v=r.content.lastChild;(/\bcm-tab\b/.test(v.className)||v.querySelector&&v.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return Ie(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=vt(r.pre.className,r.textClass||"")),r}function nf(e){var t=A("span","\u2022","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function of(e,t,i,r,n,o,s){if(t){var h=e.splitSpaces?af(t,e.trailingSpace):t,v=e.cm.state.specialChars,m=!1,x;if(!v.test(t))e.col+=t.length,x=document.createTextNode(h),e.map.push(e.pos,e.pos+t.length,x),f&&p<9&&(m=!0),e.pos+=t.length;else{x=document.createDocumentFragment();for(var w=0;;){v.lastIndex=w;var L=v.exec(t),S=L?L.index-w:t.length-w;if(S){var O=document.createTextNode(h.slice(w,w+S));f&&p<9?x.appendChild(A("span",[O])):x.appendChild(O),e.map.push(e.pos,e.pos+S,O),e.col+=S,e.pos+=S}if(!L)break;w+=S+1;var P=void 0;if(L[0]==" "){var j=e.cm.options.tabSize,Y=j-e.col%j;P=x.appendChild(A("span",Pt(Y),"cm-tab")),P.setAttribute("role","presentation"),P.setAttribute("cm-text"," "),e.col+=Y}else L[0]=="\r"||L[0]==` -`?(P=x.appendChild(A("span",L[0]=="\r"?"\u240D":"\u2424","cm-invalidchar")),P.setAttribute("cm-text",L[0]),e.col+=1):(P=e.cm.options.specialCharPlaceholder(L[0]),P.setAttribute("cm-text",L[0]),f&&p<9?x.appendChild(A("span",[P])):x.appendChild(P),e.col+=1);e.map.push(e.pos,e.pos+1,P),e.pos++}}if(e.trailingSpace=h.charCodeAt(t.length-1)==32,i||r||n||m||o||s){var Q=i||"";r&&(Q+=r),n&&(Q+=n);var Z=A("span",[x],Q,o);if(s)for(var $ in s)s.hasOwnProperty($)&&$!="style"&&$!="class"&&Z.setAttribute($,s[$]);return e.content.appendChild(Z)}e.content.appendChild(x)}}function af(e,t){if(e.length>1&&!/ /.test(e))return e;for(var i=t,r="",n=0;nm&&w.from<=m));L++);if(w.to>=x)return e(i,r,n,o,s,h,v);e(i,r.slice(0,w.to-m),n,o,null,h,v),o=null,r=r.slice(w.to-m),m=w.to}}}function Ha(e,t,i,r){var n=!r&&i.widgetNode;n&&e.map.push(e.pos,e.pos+t,n),!r&&e.cm.display.input.needsContentAttribute&&(n||(n=e.content.appendChild(document.createElement("span"))),n.setAttribute("cm-marker",i.id)),n&&(e.cm.display.input.setUneditable(n),e.content.appendChild(n)),e.pos+=t,e.trailingSpace=!1}function sf(e,t,i){var r=e.markedSpans,n=e.text,o=0;if(!r){for(var s=1;sv||pe.collapsed&&ie.to==v&&ie.from==v)){if(ie.to!=null&&ie.to!=v&&S>ie.to&&(S=ie.to,P=""),pe.className&&(O+=" "+pe.className),pe.css&&(L=(L?L+";":"")+pe.css),pe.startStyle&&ie.from==v&&(j+=" "+pe.startStyle),pe.endStyle&&ie.to==S&&($||($=[])).push(pe.endStyle,ie.to),pe.title&&((Q||(Q={})).title=pe.title),pe.attributes)for(var Ce in pe.attributes)(Q||(Q={}))[Ce]=pe.attributes[Ce];pe.collapsed&&(!Y||to(Y.marker,pe)<0)&&(Y=ie)}else ie.from>v&&S>ie.from&&(S=ie.from)}if($)for(var Ge=0;Ge<$.length;Ge+=2)$[Ge+1]==S&&(P+=" "+$[Ge]);if(!Y||Y.from==v)for(var Le=0;Le=h)break;for(var ft=Math.min(h,S);;){if(x){var at=v+x.length;if(!Y){var Oe=at>ft?x.slice(0,ft-v):x;t.addToken(t,Oe,w?w+O:O,j,v+Oe.length==S?P:"",L,Q)}if(at>=ft){x=x.slice(ft-v),v=ft;break}v=at,j=""}x=n.slice(o,o=i[m++]),w=za(i[m++],t.cm.options)}}}function Ra(e,t,i){this.line=t,this.rest=$u(t),this.size=this.rest?xe(me(this.rest))-i+1:1,this.node=this.text=null,this.hidden=Wt(e,t)}function Oi(e,t,i){for(var r=[],n,o=t;o2&&o.push((v.bottom+m.top)/2-i.top)}}o.push(i.bottom-i.top)}}function Ga(e,t,i){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};if(e.rest){for(var r=0;ri)return{map:e.measure.maps[n],cache:e.measure.caches[n],before:!0}}}function bf(e,t){t=xt(t);var i=xe(t),r=e.display.externalMeasured=new Ra(e.doc,t,i);r.lineN=i;var n=r.built=Oa(e,r);return r.text=n.pre,de(e.display.lineMeasure,n.pre),r}function Ka(e,t,i,r){return Lt(e,Cr(e,t),i,r)}function so(e,t){if(t>=e.display.viewFrom&&t=i.lineN&&tt)&&(o=v-h,n=o-1,t>=v&&(s="right")),n!=null){if(r=e[m+2],h==v&&i==(r.insertLeft?"left":"right")&&(s=i),i=="left"&&n==0)for(;m&&e[m-2]==e[m-3]&&e[m-1].insertLeft;)r=e[(m-=3)+2],s="left";if(i=="right"&&n==v-h)for(;m=0&&(i=e[n]).left==i.right;n--);return i}function Df(e,t,i,r){var n=Ya(t.map,i,r),o=n.node,s=n.start,h=n.end,v=n.collapse,m;if(o.nodeType==3){for(var x=0;x<4;x++){for(;s&&Hn(t.line.text.charAt(n.coverStart+s));)--s;for(;n.coverStart+h0&&(v=r="right");var w;e.options.lineWrapping&&(w=o.getClientRects()).length>1?m=w[r=="right"?w.length-1:0]:m=o.getBoundingClientRect()}if(f&&p<9&&!s&&(!m||!m.left&&!m.right)){var L=o.parentNode.getClientRects()[0];L?m={left:L.left,right:L.left+kr(e.display),top:L.top,bottom:L.bottom}:m=Xa}for(var S=m.top-t.rect.top,O=m.bottom-t.rect.top,P=(S+O)/2,j=t.view.measure.heights,Y=0;Y=r.text.length?(v=r.text.length,m="before"):v<=0&&(v=0,m="after"),!h)return s(m=="before"?v-1:v,m=="before");function x(O,P,j){var Y=h[P],Q=Y.level==1;return s(j?O-1:O,Q!=j)}var w=Kr(h,v,m),L=Gr,S=x(v,w,m=="before");return L!=null&&(S.other=x(v,L,m!="before")),S}function el(e,t){var i=0;t=ce(e.doc,t),e.options.lineWrapping||(i=kr(e.display)*t.ch);var r=re(e.doc,t.line),n=Nt(r)+Hi(e.display);return{left:i,right:i,top:n,bottom:n+r.height}}function fo(e,t,i,r,n){var o=q(e,t,i);return o.xRel=n,r&&(o.outside=r),o}function co(e,t,i){var r=e.doc;if(i+=e.display.viewOffset,i<0)return fo(r.first,0,null,-1,-1);var n=tr(r,i),o=r.first+r.size-1;if(n>o)return fo(r.first+r.size-1,re(r,o).text.length,null,1,1);t<0&&(t=0);for(var s=re(r,n);;){var h=wf(e,s,n,t,i),v=Qu(s,h.ch+(h.xRel>0||h.outside>0?1:0));if(!v)return h;var m=v.find(1);if(m.line==n)return m;s=re(r,n=m.line)}}function tl(e,t,i,r){r-=uo(t);var n=t.text.length,o=jr(function(s){return Lt(e,i,s-1).bottom<=r},n,0);return n=jr(function(s){return Lt(e,i,s).top>r},o,n),{begin:o,end:n}}function rl(e,t,i,r){i||(i=Cr(e,t));var n=Ri(e,t,Lt(e,i,r),"line").top;return tl(e,t,i,n)}function ho(e,t,i,r){return e.bottom<=i?!1:e.top>i?!0:(r?e.left:e.right)>t}function wf(e,t,i,r,n){n-=Nt(t);var o=Cr(e,t),s=uo(t),h=0,v=t.text.length,m=!0,x=Mt(t,e.doc.direction);if(x){var w=(e.options.lineWrapping?Sf:kf)(e,t,i,o,x,r,n);m=w.level!=1,h=m?w.from:w.to-1,v=m?w.to:w.from-1}var L=null,S=null,O=jr(function(ne){var ie=Lt(e,o,ne);return ie.top+=s,ie.bottom+=s,ho(ie,r,n,!1)?(ie.top<=n&&ie.left<=r&&(L=ne,S=ie),!0):!1},h,v),P,j,Y=!1;if(S){var Q=r-S.left=$.bottom?1:0}return O=da(t.text,O,1),fo(i,O,j,Y,r-P)}function kf(e,t,i,r,n,o,s){var h=jr(function(w){var L=n[w],S=L.level!=1;return ho(Dt(e,q(i,S?L.to:L.from,S?"before":"after"),"line",t,r),o,s,!0)},0,n.length-1),v=n[h];if(h>0){var m=v.level!=1,x=Dt(e,q(i,m?v.from:v.to,m?"after":"before"),"line",t,r);ho(x,o,s,!0)&&x.top>s&&(v=n[h-1])}return v}function Sf(e,t,i,r,n,o,s){var h=tl(e,t,r,s),v=h.begin,m=h.end;/\s/.test(t.text.charAt(m-1))&&m--;for(var x=null,w=null,L=0;L=m||S.to<=v)){var O=S.level!=1,P=Lt(e,r,O?Math.min(m,S.to)-1:Math.max(v,S.from)).right,j=Pj)&&(x=S,w=j)}}return x||(x=n[n.length-1]),x.fromm&&(x={from:x.from,to:m,level:x.level}),x}var ir;function wr(e){if(e.cachedTextHeight!=null)return e.cachedTextHeight;if(ir==null){ir=A("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)ir.appendChild(document.createTextNode("x")),ir.appendChild(A("br"));ir.appendChild(document.createTextNode("x"))}de(e.measure,ir);var i=ir.offsetHeight/50;return i>3&&(e.cachedTextHeight=i),ae(e.measure),i||1}function kr(e){if(e.cachedCharWidth!=null)return e.cachedCharWidth;var t=A("span","xxxxxxxxxx"),i=A("pre",[t],"CodeMirror-line-like");de(e.measure,i);var r=t.getBoundingClientRect(),n=(r.right-r.left)/10;return n>2&&(e.cachedCharWidth=n),n||10}function po(e){for(var t=e.display,i={},r={},n=t.gutters.clientLeft,o=t.gutters.firstChild,s=0;o;o=o.nextSibling,++s){var h=e.display.gutterSpecs[s].className;i[h]=o.offsetLeft+o.clientLeft+n,r[h]=o.clientWidth}return{fixedPos:go(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:i,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function go(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function il(e){var t=wr(e.display),i=e.options.lineWrapping,r=i&&Math.max(5,e.display.scroller.clientWidth/kr(e.display)-3);return function(n){if(Wt(e.doc,n))return 0;var o=0;if(n.widgets)for(var s=0;s0&&(m=re(e.doc,v.line).text).length==v.ch){var x=Re(m,m.length,e.options.tabSize)-m.length;v=q(v.line,Math.max(0,Math.round((o-ja(e.display).left)/kr(e.display))-x))}return v}function or(e,t){if(t>=e.display.viewTo||(t-=e.display.viewFrom,t<0))return null;for(var i=e.display.view,r=0;rt)&&(n.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=n.viewTo)Bt&&ro(e.doc,t)n.viewFrom?Ut(e):(n.viewFrom+=r,n.viewTo+=r);else if(t<=n.viewFrom&&i>=n.viewTo)Ut(e);else if(t<=n.viewFrom){var o=_i(e,i,i+r,1);o?(n.view=n.view.slice(o.index),n.viewFrom=o.lineN,n.viewTo+=r):Ut(e)}else if(i>=n.viewTo){var s=_i(e,t,t,-1);s?(n.view=n.view.slice(0,s.index),n.viewTo=s.lineN):Ut(e)}else{var h=_i(e,t,t,-1),v=_i(e,i,i+r,1);h&&v?(n.view=n.view.slice(0,h.index).concat(Oi(e,h.lineN,v.lineN)).concat(n.view.slice(v.index)),n.viewTo+=r):Ut(e)}var m=n.externalMeasured;m&&(i=n.lineN&&t=r.viewTo)){var o=r.view[or(e,t)];if(o.node!=null){var s=o.changes||(o.changes=[]);Fe(s,i)==-1&&s.push(i)}}}function Ut(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function _i(e,t,i,r){var n=or(e,t),o,s=e.display.view;if(!Bt||i==e.doc.first+e.doc.size)return{index:n,lineN:i};for(var h=e.display.viewFrom,v=0;v0){if(n==s.length-1)return null;o=h+s[n].size-t,n++}else o=h-t;t+=o,i+=o}for(;ro(e.doc,i)!=i;){if(n==(r<0?0:s.length-1))return null;i+=r*s[n-(r<0?1:0)].size,n+=r}return{index:n,lineN:i}}function Ff(e,t,i){var r=e.display,n=r.view;n.length==0||t>=r.viewTo||i<=r.viewFrom?(r.view=Oi(e,t,i),r.viewFrom=t):(r.viewFrom>t?r.view=Oi(e,t,r.viewFrom).concat(r.view):r.viewFromi&&(r.view=r.view.slice(0,or(e,i)))),r.viewTo=i}function nl(e){for(var t=e.display.view,i=0,r=0;r=e.display.viewTo||v.to().line0?s:e.defaultCharWidth())+"px"}if(r.other){var h=i.appendChild(A("div","\xA0","CodeMirror-cursor CodeMirror-secondarycursor"));h.style.display="",h.style.left=r.other.left+"px",h.style.top=r.other.top+"px",h.style.height=(r.other.bottom-r.other.top)*.85+"px"}}function Wi(e,t){return e.top-t.top||e.left-t.left}function Ef(e,t,i){var r=e.display,n=e.doc,o=document.createDocumentFragment(),s=ja(e.display),h=s.left,v=Math.max(r.sizerWidth,rr(e)-r.sizer.offsetLeft)-s.right,m=n.direction=="ltr";function x(Z,$,ne,ie){$<0&&($=0),$=Math.round($),ie=Math.round(ie),o.appendChild(A("div",null,"CodeMirror-selected","position: absolute; left: "+Z+`px; +`,t);n==-1&&(n=e.length);var o=e.slice(t,e.charAt(n-1)=="\r"?n-1:n),s=o.indexOf("\r");s!=-1?(i.push(o.slice(0,s)),t+=s+1):(i.push(o),t=n+1)}return i}:function(e){return e.split(/\r\n?|\n/)},Iu=window.getSelection?function(e){try{return e.selectionStart!=e.selectionEnd}catch{return!1}}:function(e){var t;try{t=e.ownerDocument.selection.createRange()}catch{}return!t||t.parentElement()!=e?!1:t.compareEndPoints("StartToEnd",t)!=0},zu=function(){var e=L("div");return"oncopy"in e?!0:(e.setAttribute("oncopy","return;"),typeof e.oncopy=="function")}(),jn=null;function Ou(e){if(jn!=null)return jn;var t=de(e,L("span","x")),i=t.getBoundingClientRect(),r=W(t,0,1).getBoundingClientRect();return jn=Math.abs(i.left-r.left)>1}var Gn={},br={};function Hu(e,t){arguments.length>2&&(t.dependencies=Array.prototype.slice.call(arguments,2)),Gn[e]=t}function Ru(e,t){br[e]=t}function Ei(e){if(typeof e=="string"&&br.hasOwnProperty(e))e=br[e];else if(e&&typeof e.name=="string"&&br.hasOwnProperty(e.name)){var t=br[e.name];typeof t=="string"&&(t={name:t}),e=fa(t,e),e.name=t.name}else{if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+xml$/.test(e))return Ei("application/xml");if(typeof e=="string"&&/^[\w\-]+\/[\w\-]+\+json$/.test(e))return Ei("application/json")}return typeof e=="string"?{name:e}:e||{name:"null"}}function Kn(e,t){t=Ei(t);var i=Gn[t.name];if(!i)return Kn(e,"text/plain");var r=i(e,t);if(yr.hasOwnProperty(t.name)){var n=yr[t.name];for(var o in n)n.hasOwnProperty(o)&&(r.hasOwnProperty(o)&&(r["_"+o]=r[o]),r[o]=n[o])}if(r.name=t.name,t.helperType&&(r.helperType=t.helperType),t.modeProps)for(var s in t.modeProps)r[s]=t.modeProps[s];return r}var yr={};function Pu(e,t){var i=yr.hasOwnProperty(e)?yr[e]:yr[e]={};dt(t,i)}function Vt(e,t){if(t===!0)return t;if(e.copyState)return e.copyState(t);var i={};for(var r in t){var n=t[r];n instanceof Array&&(n=n.concat([])),i[r]=n}return i}function Xn(e,t){for(var i;e.innerMode&&(i=e.innerMode(t),!(!i||i.mode==e));)t=i.state,e=i.mode;return i||{mode:e,state:t}}function ma(e,t,i){return e.startState?e.startState(t,i):!0}var ze=function(e,t,i){this.pos=this.start=0,this.string=e,this.tabSize=t||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=i};ze.prototype.eol=function(){return this.pos>=this.string.length},ze.prototype.sol=function(){return this.pos==this.lineStart},ze.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},ze.prototype.next=function(){if(this.post},ze.prototype.eatSpace=function(){for(var e=this.pos;/[\s\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>e},ze.prototype.skipToEnd=function(){this.pos=this.string.length},ze.prototype.skipTo=function(e){var t=this.string.indexOf(e,this.pos);if(t>-1)return this.pos=t,!0},ze.prototype.backUp=function(e){this.pos-=e},ze.prototype.column=function(){return this.lastColumnPos0?null:(o&&t!==!1&&(this.pos+=o[0].length),o)}},ze.prototype.current=function(){return this.string.slice(this.start,this.pos)},ze.prototype.hideFirstChars=function(e,t){this.lineStart+=e;try{return t()}finally{this.lineStart-=e}},ze.prototype.lookAhead=function(e){var t=this.lineOracle;return t&&t.lookAhead(e)},ze.prototype.baseToken=function(){var e=this.lineOracle;return e&&e.baseToken(this.pos)};function re(e,t){if(t-=e.first,t<0||t>=e.size)throw new Error("There is no line "+(t+e.first)+" in the document.");for(var i=e;!i.lines;)for(var r=0;;++r){var n=i.children[r],o=n.chunkSize();if(t=e.first&&ti?q(i,re(e,i).text.length):_u(t,re(e,t.line).text.length)}function _u(e,t){var i=e.ch;return i==null||i>t?q(e.line,t):i<0?q(e.line,0):e}function ya(e,t){for(var i=[],r=0;rthis.maxLookAhead&&(this.maxLookAhead=e),t},Et.prototype.baseToken=function(e){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=e;)this.baseTokenPos+=2;var t=this.baseTokens[this.baseTokenPos+1];return{type:t&&t.replace(/( |^)overlay .*/,""),size:this.baseTokens[this.baseTokenPos]-e}},Et.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},Et.fromSaved=function(e,t,i){return t instanceof Ti?new Et(e,Vt(e.mode,t.state),i,t.lookAhead):new Et(e,Vt(e.mode,t),i)},Et.prototype.save=function(e){var t=e!==!1?Vt(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new Ti(t,this.maxLookAhead):t};function xa(e,t,i,r){var n=[e.state.modeGen],o={};Fa(e,t.text,e.doc.mode,i,function(m,x){return n.push(m,x)},o,r);for(var s=i.state,h=function(m){i.baseTokens=n;var x=e.state.overlays[m],w=1,T=0;i.state=!0,Fa(e,t.text,x.mode,i,function(E,O){for(var P=w;TE&&n.splice(w,1,E,n[w+1],j),w+=2,T=Math.min(E,j)}if(O)if(x.opaque)n.splice(P,w-P,E,"overlay "+O),w=P+2;else for(;Pe.options.maxHighlightLength&&Vt(e.doc.mode,r.state),o=xa(e,t,r);n&&(r.state=n),t.stateAfter=r.save(!n),t.styles=o.styles,o.classes?t.styleClasses=o.classes:t.styleClasses&&(t.styleClasses=null),i===e.doc.highlightFrontier&&(e.doc.modeFrontier=Math.max(e.doc.modeFrontier,++e.doc.highlightFrontier))}return t.styles}function Zr(e,t,i){var r=e.doc,n=e.display;if(!r.mode.startState)return new Et(r,!0,t);var o=Wu(e,t,i),s=o>r.first&&re(r,o-1).stateAfter,h=s?Et.fromSaved(r,s,o):new Et(r,ma(r.mode),o);return r.iter(o,t,function(v){$n(e,v.text,h);var m=h.line;v.stateAfter=m==t-1||m%5==0||m>=n.viewFrom&&mt.start)return o}throw new Error("Mode "+e.name+" failed to advance stream.")}var Ca=function(e,t,i){this.start=e.start,this.end=e.pos,this.string=e.current(),this.type=t||null,this.state=i};function ka(e,t,i,r){var n=e.doc,o=n.mode,s;t=ce(n,t);var h=re(n,t.line),v=Zr(e,t.line,i),m=new ze(h.text,e.options.tabSize,v),x;for(r&&(x=[]);(r||m.pose.options.maxHighlightLength?(h=!1,s&&$n(e,t,r,x.pos),x.pos=t.length,w=null):w=Sa(Vn(i,x,r.state,T),o),T){var E=T[0].name;E&&(w="m-"+(w?E+" "+w:E))}if(!h||m!=w){for(;vs;--h){if(h<=o.first)return o.first;var v=re(o,h-1),m=v.stateAfter;if(m&&(!i||h+(m instanceof Ti?m.lookAhead:0)<=o.modeFrontier))return h;var x=Re(v.text,null,e.options.tabSize);(n==null||r>x)&&(n=h-1,r=x)}return n}function qu(e,t){if(e.modeFrontier=Math.min(e.modeFrontier,t),!(e.highlightFrontieri;r--){var n=re(e,r).stateAfter;if(n&&(!(n instanceof Ti)||r+n.lookAhead=t:o.to>t);(r||(r=[])).push(new Mi(s,o.from,v?null:o.to))}}return r}function Yu(e,t,i){var r;if(e)for(var n=0;n=t:o.to>t);if(h||o.from==t&&s.type=="bookmark"&&(!i||o.marker.insertLeft)){var v=o.from==null||(s.inclusiveLeft?o.from<=t:o.from0&&h)for(var $=0;$0)){var x=[v,1],w=fe(m.from,h.from),T=fe(m.to,h.to);(w<0||!s.inclusiveLeft&&!w)&&x.push({from:m.from,to:h.from}),(T>0||!s.inclusiveRight&&!T)&&x.push({from:h.to,to:m.to}),n.splice.apply(n,x),v+=x.length-3}}return n}function La(e){var t=e.markedSpans;if(t){for(var i=0;it)&&(!r||to(r,o.marker)<0)&&(r=o.marker)}return r}function Na(e,t,i,r,n){var o=re(e,t),s=Bt&&o.markedSpans;if(s)for(var h=0;h=0&&w<=0||x<=0&&w>=0)&&(x<=0&&(v.marker.inclusiveRight&&n.inclusiveLeft?fe(m.to,i)>=0:fe(m.to,i)>0)||x>=0&&(v.marker.inclusiveRight&&n.inclusiveLeft?fe(m.from,r)<=0:fe(m.from,r)<0)))return!0}}}function xt(e){for(var t;t=Ba(e);)e=t.find(-1,!0).line;return e}function Ju(e){for(var t;t=Ii(e);)e=t.find(1,!0).line;return e}function $u(e){for(var t,i;t=Ii(e);)e=t.find(1,!0).line,(i||(i=[])).push(e);return i}function ro(e,t){var i=re(e,t),r=xt(i);return i==r?t:xe(r)}function Ia(e,t){if(t>e.lastLine())return t;var i=re(e,t),r;if(!Wt(e,i))return t;for(;r=Ii(i);)i=r.find(1,!0).line;return xe(i)+1}function Wt(e,t){var i=Bt&&t.markedSpans;if(i){for(var r=void 0,n=0;nt.maxLineLength&&(t.maxLineLength=n,t.maxLine=r)})}var xr=function(e,t,i){this.text=e,Ta(this,t),this.height=i?i(this):1};xr.prototype.lineNo=function(){return xe(this)},mr(xr);function Vu(e,t,i,r){e.text=t,e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null),e.order!=null&&(e.order=null),La(e),Ta(e,i);var n=r?r(e):1;n!=e.height&&Ft(e,n)}function ef(e){e.parent=null,La(e)}var tf={},rf={};function za(e,t){if(!e||/^\s*$/.test(e))return null;var i=t.addModeClass?rf:tf;return i[e]||(i[e]=e.replace(/\S+/g,"cm-$&"))}function Oa(e,t){var i=U("span",null,null,y?"padding-right: .1px":null),r={pre:U("pre",[i],"CodeMirror-line"),content:i,col:0,pos:0,cm:e,trailingSpace:!1,splitSpaces:e.getOption("lineWrapping")};t.measure={};for(var n=0;n<=(t.rest?t.rest.length:0);n++){var o=n?t.rest[n-1]:t.line,s=void 0;r.pos=0,r.addToken=of,Nu(e.display.measure)&&(s=Mt(o,e.doc.direction))&&(r.addToken=lf(r.addToken,s)),r.map=[];var h=t!=e.display.externalMeasured&&xe(o);sf(o,r,Da(e,o,h)),o.styleClasses&&(o.styleClasses.bgClass&&(r.bgClass=vt(o.styleClasses.bgClass,r.bgClass||"")),o.styleClasses.textClass&&(r.textClass=vt(o.styleClasses.textClass,r.textClass||""))),r.map.length==0&&r.map.push(0,0,r.content.appendChild(Bu(e.display.measure))),n==0?(t.measure.map=r.map,t.measure.cache={}):((t.measure.maps||(t.measure.maps=[])).push(r.map),(t.measure.caches||(t.measure.caches=[])).push({}))}if(y){var v=r.content.lastChild;(/\bcm-tab\b/.test(v.className)||v.querySelector&&v.querySelector(".cm-tab"))&&(r.content.className="cm-tab-wrap-hack")}return Ie(e,"renderLine",e,t.line,r.pre),r.pre.className&&(r.textClass=vt(r.pre.className,r.textClass||"")),r}function nf(e){var t=L("span","\u2022","cm-invalidchar");return t.title="\\u"+e.charCodeAt(0).toString(16),t.setAttribute("aria-label",t.title),t}function of(e,t,i,r,n,o,s){if(t){var h=e.splitSpaces?af(t,e.trailingSpace):t,v=e.cm.state.specialChars,m=!1,x;if(!v.test(t))e.col+=t.length,x=document.createTextNode(h),e.map.push(e.pos,e.pos+t.length,x),f&&p<9&&(m=!0),e.pos+=t.length;else{x=document.createDocumentFragment();for(var w=0;;){v.lastIndex=w;var T=v.exec(t),E=T?T.index-w:t.length-w;if(E){var O=document.createTextNode(h.slice(w,w+E));f&&p<9?x.appendChild(L("span",[O])):x.appendChild(O),e.map.push(e.pos,e.pos+E,O),e.col+=E,e.pos+=E}if(!T)break;w+=E+1;var P=void 0;if(T[0]==" "){var j=e.cm.options.tabSize,Y=j-e.col%j;P=x.appendChild(L("span",Pt(Y),"cm-tab")),P.setAttribute("role","presentation"),P.setAttribute("cm-text"," "),e.col+=Y}else T[0]=="\r"||T[0]==` +`?(P=x.appendChild(L("span",T[0]=="\r"?"\u240D":"\u2424","cm-invalidchar")),P.setAttribute("cm-text",T[0]),e.col+=1):(P=e.cm.options.specialCharPlaceholder(T[0]),P.setAttribute("cm-text",T[0]),f&&p<9?x.appendChild(L("span",[P])):x.appendChild(P),e.col+=1);e.map.push(e.pos,e.pos+1,P),e.pos++}}if(e.trailingSpace=h.charCodeAt(t.length-1)==32,i||r||n||m||o||s){var Q=i||"";r&&(Q+=r),n&&(Q+=n);var Z=L("span",[x],Q,o);if(s)for(var $ in s)s.hasOwnProperty($)&&$!="style"&&$!="class"&&Z.setAttribute($,s[$]);return e.content.appendChild(Z)}e.content.appendChild(x)}}function af(e,t){if(e.length>1&&!/ /.test(e))return e;for(var i=t,r="",n=0;nm&&w.from<=m));T++);if(w.to>=x)return e(i,r,n,o,s,h,v);e(i,r.slice(0,w.to-m),n,o,null,h,v),o=null,r=r.slice(w.to-m),m=w.to}}}function Ha(e,t,i,r){var n=!r&&i.widgetNode;n&&e.map.push(e.pos,e.pos+t,n),!r&&e.cm.display.input.needsContentAttribute&&(n||(n=e.content.appendChild(document.createElement("span"))),n.setAttribute("cm-marker",i.id)),n&&(e.cm.display.input.setUneditable(n),e.content.appendChild(n)),e.pos+=t,e.trailingSpace=!1}function sf(e,t,i){var r=e.markedSpans,n=e.text,o=0;if(!r){for(var s=1;sv||pe.collapsed&&ie.to==v&&ie.from==v)){if(ie.to!=null&&ie.to!=v&&E>ie.to&&(E=ie.to,P=""),pe.className&&(O+=" "+pe.className),pe.css&&(T=(T?T+";":"")+pe.css),pe.startStyle&&ie.from==v&&(j+=" "+pe.startStyle),pe.endStyle&&ie.to==E&&($||($=[])).push(pe.endStyle,ie.to),pe.title&&((Q||(Q={})).title=pe.title),pe.attributes)for(var we in pe.attributes)(Q||(Q={}))[we]=pe.attributes[we];pe.collapsed&&(!Y||to(Y.marker,pe)<0)&&(Y=ie)}else ie.from>v&&E>ie.from&&(E=ie.from)}if($)for(var Ge=0;Ge<$.length;Ge+=2)$[Ge+1]==E&&(P+=" "+$[Ge]);if(!Y||Y.from==v)for(var Le=0;Le=h)break;for(var ft=Math.min(h,E);;){if(x){var at=v+x.length;if(!Y){var Oe=at>ft?x.slice(0,ft-v):x;t.addToken(t,Oe,w?w+O:O,j,v+Oe.length==E?P:"",T,Q)}if(at>=ft){x=x.slice(ft-v),v=ft;break}v=at,j=""}x=n.slice(o,o=i[m++]),w=za(i[m++],t.cm.options)}}}function Ra(e,t,i){this.line=t,this.rest=$u(t),this.size=this.rest?xe(me(this.rest))-i+1:1,this.node=this.text=null,this.hidden=Wt(e,t)}function Oi(e,t,i){for(var r=[],n,o=t;o2&&o.push((v.bottom+m.top)/2-i.top)}}o.push(i.bottom-i.top)}}function Ga(e,t,i){if(e.line==t)return{map:e.measure.map,cache:e.measure.cache};if(e.rest){for(var r=0;ri)return{map:e.measure.maps[n],cache:e.measure.caches[n],before:!0}}}function yf(e,t){t=xt(t);var i=xe(t),r=e.display.externalMeasured=new Ra(e.doc,t,i);r.lineN=i;var n=r.built=Oa(e,r);return r.text=n.pre,de(e.display.lineMeasure,n.pre),r}function Ka(e,t,i,r){return Lt(e,wr(e,t),i,r)}function so(e,t){if(t>=e.display.viewFrom&&t=i.lineN&&tt)&&(o=v-h,n=o-1,t>=v&&(s="right")),n!=null){if(r=e[m+2],h==v&&i==(r.insertLeft?"left":"right")&&(s=i),i=="left"&&n==0)for(;m&&e[m-2]==e[m-3]&&e[m-1].insertLeft;)r=e[(m-=3)+2],s="left";if(i=="right"&&n==v-h)for(;m=0&&(i=e[n]).left==i.right;n--);return i}function Df(e,t,i,r){var n=Ya(t.map,i,r),o=n.node,s=n.start,h=n.end,v=n.collapse,m;if(o.nodeType==3){for(var x=0;x<4;x++){for(;s&&Hn(t.line.text.charAt(n.coverStart+s));)--s;for(;n.coverStart+h0&&(v=r="right");var w;e.options.lineWrapping&&(w=o.getClientRects()).length>1?m=w[r=="right"?w.length-1:0]:m=o.getBoundingClientRect()}if(f&&p<9&&!s&&(!m||!m.left&&!m.right)){var T=o.parentNode.getClientRects()[0];T?m={left:T.left,right:T.left+kr(e.display),top:T.top,bottom:T.bottom}:m=Xa}for(var E=m.top-t.rect.top,O=m.bottom-t.rect.top,P=(E+O)/2,j=t.view.measure.heights,Y=0;Y=r.text.length?(v=r.text.length,m="before"):v<=0&&(v=0,m="after"),!h)return s(m=="before"?v-1:v,m=="before");function x(O,P,j){var Y=h[P],Q=Y.level==1;return s(j?O-1:O,Q!=j)}var w=Kr(h,v,m),T=Gr,E=x(v,w,m=="before");return T!=null&&(E.other=x(v,T,m!="before")),E}function el(e,t){var i=0;t=ce(e.doc,t),e.options.lineWrapping||(i=kr(e.display)*t.ch);var r=re(e.doc,t.line),n=Nt(r)+Hi(e.display);return{left:i,right:i,top:n,bottom:n+r.height}}function fo(e,t,i,r,n){var o=q(e,t,i);return o.xRel=n,r&&(o.outside=r),o}function co(e,t,i){var r=e.doc;if(i+=e.display.viewOffset,i<0)return fo(r.first,0,null,-1,-1);var n=tr(r,i),o=r.first+r.size-1;if(n>o)return fo(r.first+r.size-1,re(r,o).text.length,null,1,1);t<0&&(t=0);for(var s=re(r,n);;){var h=Cf(e,s,n,t,i),v=Qu(s,h.ch+(h.xRel>0||h.outside>0?1:0));if(!v)return h;var m=v.find(1);if(m.line==n)return m;s=re(r,n=m.line)}}function tl(e,t,i,r){r-=uo(t);var n=t.text.length,o=jr(function(s){return Lt(e,i,s-1).bottom<=r},n,0);return n=jr(function(s){return Lt(e,i,s).top>r},o,n),{begin:o,end:n}}function rl(e,t,i,r){i||(i=wr(e,t));var n=Ri(e,t,Lt(e,i,r),"line").top;return tl(e,t,i,n)}function ho(e,t,i,r){return e.bottom<=i?!1:e.top>i?!0:(r?e.left:e.right)>t}function Cf(e,t,i,r,n){n-=Nt(t);var o=wr(e,t),s=uo(t),h=0,v=t.text.length,m=!0,x=Mt(t,e.doc.direction);if(x){var w=(e.options.lineWrapping?Sf:kf)(e,t,i,o,x,r,n);m=w.level!=1,h=m?w.from:w.to-1,v=m?w.to:w.from-1}var T=null,E=null,O=jr(function(ne){var ie=Lt(e,o,ne);return ie.top+=s,ie.bottom+=s,ho(ie,r,n,!1)?(ie.top<=n&&ie.left<=r&&(T=ne,E=ie),!0):!1},h,v),P,j,Y=!1;if(E){var Q=r-E.left=$.bottom?1:0}return O=da(t.text,O,1),fo(i,O,j,Y,r-P)}function kf(e,t,i,r,n,o,s){var h=jr(function(w){var T=n[w],E=T.level!=1;return ho(Dt(e,q(i,E?T.to:T.from,E?"before":"after"),"line",t,r),o,s,!0)},0,n.length-1),v=n[h];if(h>0){var m=v.level!=1,x=Dt(e,q(i,m?v.from:v.to,m?"after":"before"),"line",t,r);ho(x,o,s,!0)&&x.top>s&&(v=n[h-1])}return v}function Sf(e,t,i,r,n,o,s){var h=tl(e,t,r,s),v=h.begin,m=h.end;/\s/.test(t.text.charAt(m-1))&&m--;for(var x=null,w=null,T=0;T=m||E.to<=v)){var O=E.level!=1,P=Lt(e,r,O?Math.min(m,E.to)-1:Math.max(v,E.from)).right,j=Pj)&&(x=E,w=j)}}return x||(x=n[n.length-1]),x.fromm&&(x={from:x.from,to:m,level:x.level}),x}var ir;function Cr(e){if(e.cachedTextHeight!=null)return e.cachedTextHeight;if(ir==null){ir=L("pre",null,"CodeMirror-line-like");for(var t=0;t<49;++t)ir.appendChild(document.createTextNode("x")),ir.appendChild(L("br"));ir.appendChild(document.createTextNode("x"))}de(e.measure,ir);var i=ir.offsetHeight/50;return i>3&&(e.cachedTextHeight=i),ae(e.measure),i||1}function kr(e){if(e.cachedCharWidth!=null)return e.cachedCharWidth;var t=L("span","xxxxxxxxxx"),i=L("pre",[t],"CodeMirror-line-like");de(e.measure,i);var r=t.getBoundingClientRect(),n=(r.right-r.left)/10;return n>2&&(e.cachedCharWidth=n),n||10}function po(e){for(var t=e.display,i={},r={},n=t.gutters.clientLeft,o=t.gutters.firstChild,s=0;o;o=o.nextSibling,++s){var h=e.display.gutterSpecs[s].className;i[h]=o.offsetLeft+o.clientLeft+n,r[h]=o.clientWidth}return{fixedPos:go(t),gutterTotalWidth:t.gutters.offsetWidth,gutterLeft:i,gutterWidth:r,wrapperWidth:t.wrapper.clientWidth}}function go(e){return e.scroller.getBoundingClientRect().left-e.sizer.getBoundingClientRect().left}function il(e){var t=Cr(e.display),i=e.options.lineWrapping,r=i&&Math.max(5,e.display.scroller.clientWidth/kr(e.display)-3);return function(n){if(Wt(e.doc,n))return 0;var o=0;if(n.widgets)for(var s=0;s0&&(m=re(e.doc,v.line).text).length==v.ch){var x=Re(m,m.length,e.options.tabSize)-m.length;v=q(v.line,Math.max(0,Math.round((o-ja(e.display).left)/kr(e.display))-x))}return v}function or(e,t){if(t>=e.display.viewTo||(t-=e.display.viewFrom,t<0))return null;for(var i=e.display.view,r=0;rt)&&(n.updateLineNumbers=t),e.curOp.viewChanged=!0,t>=n.viewTo)Bt&&ro(e.doc,t)n.viewFrom?Ut(e):(n.viewFrom+=r,n.viewTo+=r);else if(t<=n.viewFrom&&i>=n.viewTo)Ut(e);else if(t<=n.viewFrom){var o=_i(e,i,i+r,1);o?(n.view=n.view.slice(o.index),n.viewFrom=o.lineN,n.viewTo+=r):Ut(e)}else if(i>=n.viewTo){var s=_i(e,t,t,-1);s?(n.view=n.view.slice(0,s.index),n.viewTo=s.lineN):Ut(e)}else{var h=_i(e,t,t,-1),v=_i(e,i,i+r,1);h&&v?(n.view=n.view.slice(0,h.index).concat(Oi(e,h.lineN,v.lineN)).concat(n.view.slice(v.index)),n.viewTo+=r):Ut(e)}var m=n.externalMeasured;m&&(i=n.lineN&&t=r.viewTo)){var o=r.view[or(e,t)];if(o.node!=null){var s=o.changes||(o.changes=[]);Fe(s,i)==-1&&s.push(i)}}}function Ut(e){e.display.viewFrom=e.display.viewTo=e.doc.first,e.display.view=[],e.display.viewOffset=0}function _i(e,t,i,r){var n=or(e,t),o,s=e.display.view;if(!Bt||i==e.doc.first+e.doc.size)return{index:n,lineN:i};for(var h=e.display.viewFrom,v=0;v0){if(n==s.length-1)return null;o=h+s[n].size-t,n++}else o=h-t;t+=o,i+=o}for(;ro(e.doc,i)!=i;){if(n==(r<0?0:s.length-1))return null;i+=r*s[n-(r<0?1:0)].size,n+=r}return{index:n,lineN:i}}function Ff(e,t,i){var r=e.display,n=r.view;n.length==0||t>=r.viewTo||i<=r.viewFrom?(r.view=Oi(e,t,i),r.viewFrom=t):(r.viewFrom>t?r.view=Oi(e,t,r.viewFrom).concat(r.view):r.viewFromi&&(r.view=r.view.slice(0,or(e,i)))),r.viewTo=i}function nl(e){for(var t=e.display.view,i=0,r=0;r=e.display.viewTo||v.to().line0?s:e.defaultCharWidth())+"px"}if(r.other){var h=i.appendChild(L("div","\xA0","CodeMirror-cursor CodeMirror-secondarycursor"));h.style.display="",h.style.left=r.other.left+"px",h.style.top=r.other.top+"px",h.style.height=(r.other.bottom-r.other.top)*.85+"px"}}function Wi(e,t){return e.top-t.top||e.left-t.left}function Ef(e,t,i){var r=e.display,n=e.doc,o=document.createDocumentFragment(),s=ja(e.display),h=s.left,v=Math.max(r.sizerWidth,rr(e)-r.sizer.offsetLeft)-s.right,m=n.direction=="ltr";function x(Z,$,ne,ie){$<0&&($=0),$=Math.round($),ie=Math.round(ie),o.appendChild(L("div",null,"CodeMirror-selected","position: absolute; left: "+Z+`px; top: `+$+"px; width: "+(ne??v-Z)+`px; - height: `+(ie-$)+"px"))}function w(Z,$,ne){var ie=re(n,Z),pe=ie.text.length,Ce,Ge;function Le(Oe,lt){return Pi(e,q(Z,Oe),"div",ie,lt)}function ft(Oe,lt,Xe){var _e=rl(e,ie,null,Oe),He=lt=="ltr"==(Xe=="after")?"left":"right",Be=Xe=="after"?_e.begin:_e.end-(/\s/.test(ie.text.charAt(_e.end-1))?2:1);return Le(Be,He)[He]}var at=Mt(ie,n.direction);return Lu(at,$||0,ne??pe,function(Oe,lt,Xe,_e){var He=Xe=="ltr",Be=Le(Oe,He?"left":"right"),st=Le(lt-1,He?"right":"left"),Hr=$==null&&Oe==0,Zt=ne==null&<==pe,Qe=_e==0,Tt=!at||_e==at.length-1;if(st.top-Be.top<=3){var Ke=(m?Hr:Zt)&&Qe,jo=(m?Zt:Hr)&&Tt,Ht=Ke?h:(He?Be:st).left,fr=jo?v:(He?st:Be).right;x(Ht,Be.top,fr-Ht,Be.bottom)}else{var cr,Ve,Rr,Go;He?(cr=m&&Hr&&Qe?h:Be.left,Ve=m?v:ft(Oe,Xe,"before"),Rr=m?h:ft(lt,Xe,"after"),Go=m&&Zt&&Tt?v:st.right):(cr=m?ft(Oe,Xe,"before"):h,Ve=!m&&Hr&&Qe?v:Be.right,Rr=!m&&Zt&&Tt?h:st.left,Go=m?ft(lt,Xe,"after"):v),x(cr,Be.top,Ve-cr,Be.bottom),Be.bottom0?t.blinker=setInterval(function(){e.hasFocus()||Sr(e),t.cursorDiv.style.visibility=(i=!i)?"":"hidden"},e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function al(e){e.hasFocus()||(e.display.input.focus(),e.state.focused||xo(e))}function bo(e){e.state.delayingBlurEvent=!0,setTimeout(function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,e.state.focused&&Sr(e))},100)}function xo(e,t){e.state.delayingBlurEvent&&!e.state.draggingText&&(e.state.delayingBlurEvent=!1),e.options.readOnly!="nocursor"&&(e.state.focused||(Ie(e,"focus",e,t),e.state.focused=!0,Te(e.display.wrapper,"CodeMirror-focused"),!e.curOp&&e.display.selForContextMenu!=e.doc.sel&&(e.display.input.reset(),b&&setTimeout(function(){return e.display.input.reset(!0)},20)),e.display.input.receivedFocus()),yo(e))}function Sr(e,t){e.state.delayingBlurEvent||(e.state.focused&&(Ie(e,"blur",e,t),e.state.focused=!1,ue(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150))}function qi(e){for(var t=e.display,i=t.lineDiv.offsetTop,r=Math.max(0,t.scroller.getBoundingClientRect().top),n=t.lineDiv.getBoundingClientRect().top,o=0,s=0;s.005||S<-.005)&&(ne.display.sizerWidth){var P=Math.ceil(x/kr(e.display));P>e.display.maxLineLength&&(e.display.maxLineLength=P,e.display.maxLine=h.line,e.display.maxLineChanged=!0)}}}Math.abs(o)>2&&(t.scroller.scrollTop+=o)}function ll(e){if(e.widgets)for(var t=0;t=s&&(o=tr(t,Nt(re(t,v))-e.wrapper.clientHeight),s=v)}return{from:o,to:Math.max(s,o+1)}}function Af(e,t){if(!We(e,"scrollCursorIntoView")){var i=e.display,r=i.sizer.getBoundingClientRect(),n=null,o=i.wrapper.ownerDocument;if(t.top+r.top<0?n=!0:t.bottom+r.top>(o.defaultView.innerHeight||o.documentElement.clientHeight)&&(n=!1),n!=null&&!I){var s=A("div","\u200B",null,`position: absolute; + height: `+(ie-$)+"px"))}function w(Z,$,ne){var ie=re(n,Z),pe=ie.text.length,we,Ge;function Le(Oe,lt){return Pi(e,q(Z,Oe),"div",ie,lt)}function ft(Oe,lt,Xe){var _e=rl(e,ie,null,Oe),He=lt=="ltr"==(Xe=="after")?"left":"right",Be=Xe=="after"?_e.begin:_e.end-(/\s/.test(ie.text.charAt(_e.end-1))?2:1);return Le(Be,He)[He]}var at=Mt(ie,n.direction);return Lu(at,$||0,ne??pe,function(Oe,lt,Xe,_e){var He=Xe=="ltr",Be=Le(Oe,He?"left":"right"),st=Le(lt-1,He?"right":"left"),Hr=$==null&&Oe==0,Zt=ne==null&<==pe,Qe=_e==0,Tt=!at||_e==at.length-1;if(st.top-Be.top<=3){var Ke=(m?Hr:Zt)&&Qe,jo=(m?Zt:Hr)&&Tt,Ht=Ke?h:(He?Be:st).left,fr=jo?v:(He?st:Be).right;x(Ht,Be.top,fr-Ht,Be.bottom)}else{var cr,Ve,Rr,Go;He?(cr=m&&Hr&&Qe?h:Be.left,Ve=m?v:ft(Oe,Xe,"before"),Rr=m?h:ft(lt,Xe,"after"),Go=m&&Zt&&Tt?v:st.right):(cr=m?ft(Oe,Xe,"before"):h,Ve=!m&&Hr&&Qe?v:Be.right,Rr=!m&&Zt&&Tt?h:st.left,Go=m?ft(lt,Xe,"after"):v),x(cr,Be.top,Ve-cr,Be.bottom),Be.bottom0?t.blinker=setInterval(function(){e.hasFocus()||Sr(e),t.cursorDiv.style.visibility=(i=!i)?"":"hidden"},e.options.cursorBlinkRate):e.options.cursorBlinkRate<0&&(t.cursorDiv.style.visibility="hidden")}}function al(e){e.hasFocus()||(e.display.input.focus(),e.state.focused||xo(e))}function yo(e){e.state.delayingBlurEvent=!0,setTimeout(function(){e.state.delayingBlurEvent&&(e.state.delayingBlurEvent=!1,e.state.focused&&Sr(e))},100)}function xo(e,t){e.state.delayingBlurEvent&&!e.state.draggingText&&(e.state.delayingBlurEvent=!1),e.options.readOnly!="nocursor"&&(e.state.focused||(Ie(e,"focus",e,t),e.state.focused=!0,Te(e.display.wrapper,"CodeMirror-focused"),!e.curOp&&e.display.selForContextMenu!=e.doc.sel&&(e.display.input.reset(),y&&setTimeout(function(){return e.display.input.reset(!0)},20)),e.display.input.receivedFocus()),bo(e))}function Sr(e,t){e.state.delayingBlurEvent||(e.state.focused&&(Ie(e,"blur",e,t),e.state.focused=!1,ue(e.display.wrapper,"CodeMirror-focused")),clearInterval(e.display.blinker),setTimeout(function(){e.state.focused||(e.display.shift=!1)},150))}function qi(e){for(var t=e.display,i=t.lineDiv.offsetTop,r=Math.max(0,t.scroller.getBoundingClientRect().top),n=t.lineDiv.getBoundingClientRect().top,o=0,s=0;s.005||E<-.005)&&(ne.display.sizerWidth){var P=Math.ceil(x/kr(e.display));P>e.display.maxLineLength&&(e.display.maxLineLength=P,e.display.maxLine=h.line,e.display.maxLineChanged=!0)}}}Math.abs(o)>2&&(t.scroller.scrollTop+=o)}function ll(e){if(e.widgets)for(var t=0;t=s&&(o=tr(t,Nt(re(t,v))-e.wrapper.clientHeight),s=v)}return{from:o,to:Math.max(s,o+1)}}function Af(e,t){if(!We(e,"scrollCursorIntoView")){var i=e.display,r=i.sizer.getBoundingClientRect(),n=null,o=i.wrapper.ownerDocument;if(t.top+r.top<0?n=!0:t.bottom+r.top>(o.defaultView.innerHeight||o.documentElement.clientHeight)&&(n=!1),n!=null&&!I){var s=L("div","\u200B",null,`position: absolute; top: `+(t.top-i.viewOffset-Hi(e.display))+`px; height: `+(t.bottom-t.top+At(e)+i.barHeight)+`px; - left: `+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(s),s.scrollIntoView(n),e.display.lineSpace.removeChild(s)}}}function Lf(e,t,i,r){r==null&&(r=0);var n;!e.options.lineWrapping&&t==i&&(i=t.sticky=="before"?q(t.line,t.ch+1,"before"):t,t=t.ch?q(t.line,t.sticky=="before"?t.ch-1:t.ch,"after"):t);for(var o=0;o<5;o++){var s=!1,h=Dt(e,t),v=!i||i==t?h:Dt(e,i);n={left:Math.min(h.left,v.left),top:Math.min(h.top,v.top)-r,right:Math.max(h.left,v.left),bottom:Math.max(h.bottom,v.bottom)+r};var m=Do(e,n),x=e.doc.scrollTop,w=e.doc.scrollLeft;if(m.scrollTop!=null&&(ii(e,m.scrollTop),Math.abs(e.doc.scrollTop-x)>1&&(s=!0)),m.scrollLeft!=null&&(ar(e,m.scrollLeft),Math.abs(e.doc.scrollLeft-w)>1&&(s=!0)),!s)break}return n}function Tf(e,t){var i=Do(e,t);i.scrollTop!=null&&ii(e,i.scrollTop),i.scrollLeft!=null&&ar(e,i.scrollLeft)}function Do(e,t){var i=e.display,r=wr(e.display);t.top<0&&(t.top=0);var n=e.curOp&&e.curOp.scrollTop!=null?e.curOp.scrollTop:i.scroller.scrollTop,o=lo(e),s={};t.bottom-t.top>o&&(t.bottom=t.top+o);var h=e.doc.height+ao(i),v=t.toph-r;if(t.topn+o){var x=Math.min(t.top,(m?h:t.bottom)-o);x!=n&&(s.scrollTop=x)}var w=e.options.fixedGutter?0:i.gutters.offsetWidth,L=e.curOp&&e.curOp.scrollLeft!=null?e.curOp.scrollLeft:i.scroller.scrollLeft-w,S=rr(e)-i.gutters.offsetWidth,O=t.right-t.left>S;return O&&(t.right=t.left+S),t.left<10?s.scrollLeft=0:t.leftS+L-3&&(s.scrollLeft=t.right+(O?0:10)-S),s}function Co(e,t){t!=null&&(ji(e),e.curOp.scrollTop=(e.curOp.scrollTop==null?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Fr(e){ji(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function ri(e,t,i){(t!=null||i!=null)&&ji(e),t!=null&&(e.curOp.scrollLeft=t),i!=null&&(e.curOp.scrollTop=i)}function Mf(e,t){ji(e),e.curOp.scrollToPos=t}function ji(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var i=el(e,t.from),r=el(e,t.to);sl(e,i,r,t.margin)}}function sl(e,t,i,r){var n=Do(e,{left:Math.min(t.left,i.left),top:Math.min(t.top,i.top)-r,right:Math.max(t.right,i.right),bottom:Math.max(t.bottom,i.bottom)+r});ri(e,n.scrollLeft,n.scrollTop)}function ii(e,t){Math.abs(e.doc.scrollTop-t)<2||(d||ko(e,{top:t}),ul(e,t,!0),d&&ko(e),ai(e,100))}function ul(e,t,i){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),!(e.display.scroller.scrollTop==t&&!i)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function ar(e,t,i,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),!((i?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r)&&(e.doc.scrollLeft=t,pl(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function ni(e){var t=e.display,i=t.gutters.offsetWidth,r=Math.round(e.doc.height+ao(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?i:0,docHeight:r,scrollHeight:r+At(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:i}}var lr=function(e,t,i){this.cm=i;var r=this.vert=A("div",[A("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),n=this.horiz=A("div",[A("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=n.tabIndex=-1,e(r),e(n),oe(r,"scroll",function(){r.clientHeight&&t(r.scrollTop,"vertical")}),oe(n,"scroll",function(){n.clientWidth&&t(n.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,f&&p<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};lr.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,i=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(i){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var n=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+n)+"px"}else this.vert.scrollTop=0,this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=i?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(i?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(r==0&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:i?r:0,bottom:t?r:0}},lr.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},lr.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},lr.prototype.zeroWidthHack=function(){var e=R&&!z?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.visibility=this.vert.style.visibility="hidden",this.disableHoriz=new Je,this.disableVert=new Je},lr.prototype.enableZeroWidthBar=function(e,t,i){e.style.visibility="";function r(){var n=e.getBoundingClientRect(),o=i=="vert"?document.elementFromPoint(n.right-1,(n.top+n.bottom)/2):document.elementFromPoint((n.right+n.left)/2,n.bottom-1);o!=e?e.style.visibility="hidden":t.set(1e3,r)}t.set(1e3,r)},lr.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var oi=function(){};oi.prototype.update=function(){return{bottom:0,right:0}},oi.prototype.setScrollLeft=function(){},oi.prototype.setScrollTop=function(){},oi.prototype.clear=function(){};function Er(e,t){t||(t=ni(e));var i=e.display.barWidth,r=e.display.barHeight;fl(e,t);for(var n=0;n<4&&i!=e.display.barWidth||r!=e.display.barHeight;n++)i!=e.display.barWidth&&e.options.lineWrapping&&qi(e),fl(e,ni(e)),i=e.display.barWidth,r=e.display.barHeight}function fl(e,t){var i=e.display,r=i.scrollbars.update(t);i.sizer.style.paddingRight=(i.barWidth=r.right)+"px",i.sizer.style.paddingBottom=(i.barHeight=r.bottom)+"px",i.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(i.scrollbarFiller.style.display="block",i.scrollbarFiller.style.height=r.bottom+"px",i.scrollbarFiller.style.width=r.right+"px"):i.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(i.gutterFiller.style.display="block",i.gutterFiller.style.height=r.bottom+"px",i.gutterFiller.style.width=t.gutterWidth+"px"):i.gutterFiller.style.display=""}var cl={native:lr,null:oi};function dl(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&ue(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new cl[e.options.scrollbarStyle](function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),oe(t,"mousedown",function(){e.state.focused&&setTimeout(function(){return e.display.input.focus()},0)}),t.setAttribute("cm-not-content","true")},function(t,i){i=="horizontal"?ar(e,t):ii(e,t)},e),e.display.scrollbars.addClass&&Te(e.display.wrapper,e.display.scrollbars.addClass)}var Bf=0;function sr(e){e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Bf,markArrays:null},uf(e.curOp)}function ur(e){var t=e.curOp;t&&cf(t,function(i){for(var r=0;r=i.viewTo)||i.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new Gi(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function zf(e){e.updatedDisplay=e.mustUpdate&&wo(e.cm,e.update)}function Of(e){var t=e.cm,i=t.display;e.updatedDisplay&&qi(t),e.barMeasure=ni(t),i.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=Ka(t,i.maxLine,i.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(i.scroller.clientWidth,i.sizer.offsetLeft+e.adjustWidthTo+At(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,i.sizer.offsetLeft+e.adjustWidthTo-rr(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=i.input.prepareSelection())}function Hf(e){var t=e.cm;e.adjustWidthTo!=null&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft=e.display.viewTo)){var i=+new Date+e.options.workTime,r=Zr(e,t.highlightFrontier),n=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),function(o){if(r.line>=e.display.viewFrom){var s=o.styles,h=o.text.length>e.options.maxHighlightLength?Vt(t.mode,r.state):null,v=xa(e,o,r,!0);h&&(r.state=h),o.styles=v.styles;var m=o.styleClasses,x=v.classes;x?o.styleClasses=x:m&&(o.styleClasses=null);for(var w=!s||s.length!=o.styles.length||m!=x&&(!m||!x||m.bgClass!=x.bgClass||m.textClass!=x.textClass),L=0;!w&&Li)return ai(e,e.options.workDelay),!0}),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),n.length&&ut(e,function(){for(var o=0;o=i.viewFrom&&t.visible.to<=i.viewTo&&(i.updateLineNumbers==null||i.updateLineNumbers>=i.viewTo)&&i.renderedView==i.view&&nl(e)==0)return!1;gl(e)&&(Ut(e),t.dims=po(e));var n=r.first+r.size,o=Math.max(t.visible.from-e.options.viewportMargin,r.first),s=Math.min(n,t.visible.to+e.options.viewportMargin);i.viewFroms&&i.viewTo-s<20&&(s=Math.min(n,i.viewTo)),Bt&&(o=ro(e.doc,o),s=Ia(e.doc,s));var h=o!=i.viewFrom||s!=i.viewTo||i.lastWrapHeight!=t.wrapperHeight||i.lastWrapWidth!=t.wrapperWidth;Ff(e,o,s),i.viewOffset=Nt(re(e.doc,i.viewFrom)),e.display.mover.style.top=i.viewOffset+"px";var v=nl(e);if(!h&&v==0&&!t.force&&i.renderedView==i.view&&(i.updateLineNumbers==null||i.updateLineNumbers>=i.viewTo))return!1;var m=Wf(e);return v>4&&(i.lineDiv.style.display="none"),Uf(e,i.updateLineNumbers,t.dims),v>4&&(i.lineDiv.style.display=""),i.renderedView=i.view,qf(m),ae(i.cursorDiv),ae(i.selectionDiv),i.gutters.style.height=i.sizer.style.minHeight=0,h&&(i.lastWrapHeight=t.wrapperHeight,i.lastWrapWidth=t.wrapperWidth,ai(e,400)),i.updateLineNumbers=null,!0}function hl(e,t){for(var i=t.viewport,r=!0;;r=!1){if(!r||!e.options.lineWrapping||t.oldDisplayWidth==rr(e)){if(i&&i.top!=null&&(i={top:Math.min(e.doc.height+ao(e.display)-lo(e),i.top)}),t.visible=Ui(e.display,e.doc,i),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break}else r&&(t.visible=Ui(e.display,e.doc,i));if(!wo(e,t))break;qi(e);var n=ni(e);ti(e),Er(e,n),Fo(e,n),t.force=!1}t.signal(e,"update",e),(e.display.viewFrom!=e.display.reportedViewFrom||e.display.viewTo!=e.display.reportedViewTo)&&(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function ko(e,t){var i=new Gi(e,t);if(wo(e,i)){qi(e),hl(e,i);var r=ni(e);ti(e),Er(e,r),Fo(e,r),i.finish()}}function Uf(e,t,i){var r=e.display,n=e.options.lineNumbers,o=r.lineDiv,s=o.firstChild;function h(O){var P=O.nextSibling;return b&&R&&e.display.currentWheelTarget==O?O.style.display="none":O.parentNode.removeChild(O),P}for(var v=r.view,m=r.viewFrom,x=0;x-1&&(S=!1),Pa(e,w,m,i)),S&&(ae(w.lineNumber),w.lineNumber.appendChild(document.createTextNode(Zn(e.options,m)))),s=w.node.nextSibling}m+=w.size}for(;s;)s=h(s)}function So(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px",qe(e,"gutterChanged",e)}function Fo(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+At(e)+"px"}function pl(e){var t=e.display,i=t.view;if(!(!t.alignWidgets&&(!t.gutters.firstChild||!e.options.fixedGutter))){for(var r=go(t)-t.scroller.scrollLeft+e.doc.scrollLeft,n=t.gutters.offsetWidth,o=r+"px",s=0;sh.clientWidth,m=h.scrollHeight>h.clientHeight;if(r&&v||n&&m){if(n&&R&&b){e:for(var x=t.target,w=s.view;x!=h;x=x.parentNode)for(var L=0;L=0&&fe(e,r.to())<=0)return i}return-1};var be=function(e,t){this.anchor=e,this.head=t};be.prototype.from=function(){return Li(this.anchor,this.head)},be.prototype.to=function(){return Ai(this.anchor,this.head)},be.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch};function Ct(e,t,i){var r=e&&e.options.selectionsMayTouch,n=t[i];t.sort(function(L,S){return fe(L.from(),S.from())}),i=Fe(t,n);for(var o=1;o0:v>=0){var m=Li(h.from(),s.from()),x=Ai(h.to(),s.to()),w=h.empty()?s.from()==s.head:h.from()==h.head;o<=i&&--i,t.splice(--o,2,new be(w?x:m,w?m:x))}}return new pt(t,i)}function jt(e,t){return new pt([new be(e,t||e)],0)}function Gt(e){return e.text?q(e.from.line+e.text.length-1,me(e.text).length+(e.text.length==1?e.from.ch:0)):e.to}function bl(e,t){if(fe(e,t.from)<0)return e;if(fe(e,t.to)<=0)return Gt(t);var i=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=Gt(t).ch-t.to.ch),q(i,r)}function Ao(e,t){for(var i=[],r=0;r1&&e.remove(h.line+1,O-1),e.insert(h.line+1,Y)}qe(e,"change",e,t)}function Kt(e,t,i){function r(n,o,s){if(n.linked)for(var h=0;h1&&!e.done[e.done.length-2].ranges)return e.done.pop(),me(e.done)}function Sl(e,t,i,r){var n=e.history;n.undone.length=0;var o=+new Date,s,h;if((n.lastOp==r||n.lastOrigin==t.origin&&t.origin&&(t.origin.charAt(0)=="+"&&n.lastModTime>o-(e.cm?e.cm.options.historyEventDelay:500)||t.origin.charAt(0)=="*"))&&(s=Yf(n,n.lastOp==r)))h=me(s.changes),fe(t.from,t.to)==0&&fe(t.from,h.to)==0?h.to=Gt(t):s.changes.push(Mo(e,t));else{var v=me(n.done);for((!v||!v.ranges)&&Yi(e.sel,n.done),s={changes:[Mo(e,t)],generation:n.generation},n.done.push(s);n.done.length>n.undoDepth;)n.done.shift(),n.done[0].ranges||n.done.shift()}n.done.push(i),n.generation=++n.maxGeneration,n.lastModTime=n.lastSelTime=o,n.lastOp=n.lastSelOp=r,n.lastOrigin=n.lastSelOrigin=t.origin,h||Ie(e,"historyAdded")}function Zf(e,t,i,r){var n=t.charAt(0);return n=="*"||n=="+"&&i.ranges.length==r.ranges.length&&i.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function Qf(e,t,i,r){var n=e.history,o=r&&r.origin;i==n.lastSelOp||o&&n.lastSelOrigin==o&&(n.lastModTime==n.lastSelTime&&n.lastOrigin==o||Zf(e,o,me(n.done),t))?n.done[n.done.length-1]=t:Yi(t,n.done),n.lastSelTime=+new Date,n.lastSelOrigin=o,n.lastSelOp=i,r&&r.clearRedo!==!1&&kl(n.undone)}function Yi(e,t){var i=me(t);i&&i.ranges&&i.equals(e)||t.push(e)}function Fl(e,t,i,r){var n=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,i),Math.min(e.first+e.size,r),function(s){s.markedSpans&&((n||(n=t["spans_"+e.id]={}))[o]=s.markedSpans),++o})}function Jf(e){if(!e)return null;for(var t,i=0;i-1&&(me(h)[w]=m[w],delete m[w])}}return r}function Bo(e,t,i,r){if(r){var n=e.anchor;if(i){var o=fe(t,n)<0;o!=fe(i,n)<0?(n=t,t=i):o!=fe(t,i)<0&&(t=i)}return new be(n,t)}else return new be(i||t,t)}function Zi(e,t,i,r,n){n==null&&(n=e.cm&&(e.cm.display.shift||e.extend)),Ze(e,new pt([Bo(e.sel.primary(),t,i,n)],0),r)}function Al(e,t,i){for(var r=[],n=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:h.to>t.ch))){if(n&&(Ie(v,"beforeCursorEnter"),v.explicitlyCleared))if(o.markedSpans){--s;continue}else break;if(!v.atomic)continue;if(i){var w=v.find(r<0?1:-1),L=void 0;if((r<0?x:m)&&(w=Il(e,w,-r,w&&w.line==t.line?o:null)),w&&w.line==t.line&&(L=fe(w,i))&&(r<0?L<0:L>0))return Lr(e,w,t,r,n)}var S=v.find(r<0?-1:1);return(r<0?m:x)&&(S=Il(e,S,r,S.line==t.line?o:null)),S?Lr(e,S,t,r,n):null}}return t}function Ji(e,t,i,r,n){var o=r||1,s=Lr(e,t,i,o,n)||!n&&Lr(e,t,i,o,!0)||Lr(e,t,i,-o,n)||!n&&Lr(e,t,i,-o,!0);return s||(e.cantEdit=!0,q(e.first,0))}function Il(e,t,i,r){return i<0&&t.ch==0?t.line>e.first?ce(e,q(t.line-1)):null:i>0&&t.ch==(r||re(e,t.line)).text.length?t.line=0;--n)Hl(e,{from:r[n].from,to:r[n].to,text:n?[""]:t.text,origin:t.origin});else Hl(e,t)}}function Hl(e,t){if(!(t.text.length==1&&t.text[0]==""&&fe(t.from,t.to)==0)){var i=Ao(e,t);Sl(e,t,i,e.cm?e.cm.curOp.id:NaN),ui(e,t,i,eo(e,t));var r=[];Kt(e,function(n,o){!o&&Fe(r,n.history)==-1&&(Wl(n.history,t),r.push(n.history)),ui(n,t,null,eo(n,t))})}}function $i(e,t,i){var r=e.cm&&e.cm.state.suppressEdits;if(!(r&&!i)){for(var n=e.history,o,s=e.sel,h=t=="undo"?n.done:n.undone,v=t=="undo"?n.undone:n.done,m=0;m=0;--S){var O=L(S);if(O)return O.v}}}}function Rl(e,t){if(t!=0&&(e.first+=t,e.sel=new pt(bt(e.sel.ranges,function(n){return new be(q(n.anchor.line+t,n.anchor.ch),q(n.head.line+t,n.head.ch))}),e.sel.primIndex),e.cm)){nt(e.cm,e.first,e.first-t,t);for(var i=e.cm.display,r=i.viewFrom;re.lastLine())){if(t.from.lineo&&(t={from:t.from,to:q(o,re(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=er(e,t.from,t.to),i||(i=Ao(e,t)),e.cm?ec(e.cm,t,r):To(e,t,r),Qi(e,i,rt),e.cantEdit&&Ji(e,q(e.firstLine(),0))&&(e.cantEdit=!1)}}function ec(e,t,i){var r=e.doc,n=e.display,o=t.from,s=t.to,h=!1,v=o.line;e.options.lineWrapping||(v=xe(xt(re(r,o.line))),r.iter(v,s.line+1,function(S){if(S==n.maxLine)return h=!0,!0})),r.sel.contains(t.from,t.to)>-1&&pa(e),To(r,t,i,il(e)),e.options.lineWrapping||(r.iter(v,o.line+t.text.length,function(S){var O=zi(S);O>n.maxLineLength&&(n.maxLine=S,n.maxLineLength=O,n.maxLineChanged=!0,h=!1)}),h&&(e.curOp.updateMaxLine=!0)),qu(r,o.line),ai(e,400);var m=t.text.length-(s.line-o.line)-1;t.full?nt(e):o.line==s.line&&t.text.length==1&&!Dl(e.doc,t)?qt(e,o.line,"text"):nt(e,o.line,s.line+1,m);var x=mt(e,"changes"),w=mt(e,"change");if(w||x){var L={from:o,to:s,text:t.text,removed:t.removed,origin:t.origin};w&&qe(e,"change",e,L),x&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(L)}e.display.selForContextMenu=null}function Mr(e,t,i,r,n){var o;r||(r=i),fe(r,i)<0&&(o=[r,i],i=o[0],r=o[1]),typeof t=="string"&&(t=e.splitLines(t)),Tr(e,{from:i,to:r,text:t,origin:n})}function Pl(e,t,i,r){i1||!(this.children[0]instanceof ci))){var h=[];this.collapse(h),this.children=[new ci(h)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var s=n.lines.length%25+25,h=s;h10);e.parent.maybeSpill()}},iterN:function(e,t,i){for(var r=0;re.display.maxLineLength&&(e.display.maxLine=m,e.display.maxLineLength=x,e.display.maxLineChanged=!0)}r!=null&&e&&this.collapsed&&nt(e,r,n+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&Bl(e.doc)),e&&qe(e,"markerCleared",e,this,r,n),t&&ur(e),this.parent&&this.parent.clear()}},Xt.prototype.find=function(e,t){e==null&&this.type=="bookmark"&&(e=1);for(var i,r,n=0;n0||s==0&&o.clearWhenEmpty!==!1)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=U("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Na(e,t.line,t,i,o)||t.line!=i.line&&Na(e,i.line,t,i,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");ju()}o.addToHistory&&Sl(e,{from:t,to:i,origin:"markText"},e.sel,NaN);var h=t.line,v=e.cm,m;if(e.iter(h,i.line+1,function(w){v&&o.collapsed&&!v.options.lineWrapping&&xt(w)==v.display.maxLine&&(m=!0),o.collapsed&&h!=t.line&&Ft(w,0),Ku(w,new Mi(o,h==t.line?t.ch:null,h==i.line?i.ch:null),e.cm&&e.cm.curOp),++h}),o.collapsed&&e.iter(t.line,i.line+1,function(w){Wt(e,w)&&Ft(w,0)}),o.clearOnEnter&&oe(o,"beforeCursorEnter",function(){return o.clear()}),o.readOnly&&(Uu(),(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++Ul,o.atomic=!0),v){if(m&&(v.curOp.updateMaxLine=!0),o.collapsed)nt(v,t.line,i.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var x=t.line;x<=i.line;x++)qt(v,x,"text");o.atomic&&Bl(v.doc),qe(v,"markerAdded",v,o)}return o}var pi=function(e,t){this.markers=e,this.primary=t;for(var i=0;i=0;v--)Tr(this,r[v]);h?Tl(this,h):this.cm&&Fr(this.cm)}),undo:je(function(){$i(this,"undo")}),redo:je(function(){$i(this,"redo")}),undoSelection:je(function(){$i(this,"undo",!0)}),redoSelection:je(function(){$i(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,i=0,r=0;r=e.ch)&&t.push(n.marker.parent||n.marker)}return t},findMarks:function(e,t,i){e=ce(this,e),t=ce(this,t);var r=[],n=e.line;return this.iter(e.line,t.line+1,function(o){var s=o.markedSpans;if(s)for(var h=0;h=v.to||v.from==null&&n!=e.line||v.from!=null&&n==t.line&&v.from>=t.ch)&&(!i||i(v.marker))&&r.push(v.marker.parent||v.marker)}++n}),r},getAllMarks:function(){var e=[];return this.iter(function(t){var i=t.markedSpans;if(i)for(var r=0;re)return t=e,!0;e-=o,++i}),ce(this,q(i,t))},indexFromPos:function(e){e=ce(this,e);var t=e.ch;if(e.linet&&(t=e.from),e.to!=null&&e.to-1){t.state.draggingText(e),setTimeout(function(){return t.display.input.focus()},20);return}try{var x=e.dataTransfer.getData("Text");if(x){var w;if(t.state.draggingText&&!t.state.draggingText.copy&&(w=t.listSelections()),Qi(t.doc,jt(i,i)),w)for(var L=0;L=0;h--)Mr(e.doc,"",r[h].from,r[h].to,"+delete");Fr(e)})}function Io(e,t,i){var r=da(e.text,t+i,i);return r<0||r>e.text.length?null:r}function zo(e,t,i){var r=Io(e,t.ch,i);return r==null?null:new q(t.line,r,i<0?"after":"before")}function Oo(e,t,i,r,n){if(e){t.doc.direction=="rtl"&&(n=-n);var o=Mt(i,t.doc.direction);if(o){var s=n<0?me(o):o[0],h=n<0==(s.level==1),v=h?"after":"before",m;if(s.level>0||t.doc.direction=="rtl"){var x=Cr(t,i);m=n<0?i.text.length-1:0;var w=Lt(t,x,m).top;m=jr(function(L){return Lt(t,x,L).top==w},n<0==(s.level==1)?s.from:s.to-1,m),v=="before"&&(m=Io(i,m,1))}else m=n<0?s.to:s.from;return new q(r,m,v)}}return new q(r,n<0?i.text.length:0,n<0?"before":"after")}function pc(e,t,i,r){var n=Mt(t,e.doc.direction);if(!n)return zo(t,i,r);i.ch>=t.text.length?(i.ch=t.text.length,i.sticky="before"):i.ch<=0&&(i.ch=0,i.sticky="after");var o=Kr(n,i.ch,i.sticky),s=n[o];if(e.doc.direction=="ltr"&&s.level%2==0&&(r>0?s.to>i.ch:s.from=s.from&&L>=x.begin)){var S=w?"before":"after";return new q(i.line,L,S)}}var O=function(Y,Q,Z){for(var $=function(Ce,Ge){return Ge?new q(i.line,h(Ce,1),"before"):new q(i.line,Ce,"after")};Y>=0&&Y0==(ne.level!=1),pe=ie?Z.begin:h(Z.end,-1);if(ne.from<=pe&&pe0?x.end:h(x.begin,-1);return j!=null&&!(r>0&&j==t.text.length)&&(P=O(r>0?0:n.length-1,r,m(j)),P)?P:null}var mi={selectAll:zl,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),rt)},killLine:function(e){return Ir(e,function(t){if(t.empty()){var i=re(e.doc,t.head.line).text.length;return t.head.ch==i&&t.head.line0)n=new q(n.line,n.ch+1),e.replaceRange(o.charAt(n.ch-1)+o.charAt(n.ch-2),q(n.line,n.ch-2),n,"+transpose");else if(n.line>e.doc.first){var s=re(e.doc,n.line-1).text;s&&(n=new q(n.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+s.charAt(s.length-1),q(n.line-1,s.length-1),n,"+transpose"))}}i.push(new be(n,n))}e.setSelections(i)})},newlineAndIndent:function(e){return ut(e,function(){for(var t=e.listSelections(),i=t.length-1;i>=0;i--)e.replaceRange(e.doc.lineSeparator(),t[i].anchor,t[i].head,"+input");t=e.listSelections();for(var r=0;re&&fe(t,this.pos)==0&&i==this.button};var bi,xi;function Dc(e,t){var i=+new Date;return xi&&xi.compare(i,e,t)?(bi=xi=null,"triple"):bi&&bi.compare(i,e,t)?(xi=new Ro(i,e,t),bi=null,"double"):(bi=new Ro(i,e,t),xi=null,"single")}function os(e){var t=this,i=t.display;if(!(We(t,e)||i.activeTouch&&i.input.supportsTouch())){if(i.input.ensurePolled(),i.shift=e.shiftKey,It(i,e)){b||(i.scroller.draggable=!1,setTimeout(function(){return i.scroller.draggable=!0},100));return}if(!Po(t,e)){var r=nr(t,e),n=va(e),o=r?Dc(r,n):"single";he(t).focus(),n==1&&t.state.selectingText&&t.state.selectingText(e),!(r&&Cc(t,n,r,o,e))&&(n==1?r?kc(t,r,o,e):_n(e)==i.scroller&&it(e):n==2?(r&&Zi(t.doc,r),setTimeout(function(){return i.input.focus()},20)):n==3&&(ge?t.display.input.onContextMenu(e):bo(t)))}}}function Cc(e,t,i,r,n){var o="Click";return r=="double"?o="Double"+o:r=="triple"&&(o="Triple"+o),o=(t==1?"Left":t==2?"Middle":"Right")+o,yi(e,Ql(o,n),n,function(s){if(typeof s=="string"&&(s=mi[s]),!s)return!1;var h=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),h=s(e,i)!=Pe}finally{e.state.suppressEdits=!1}return h})}function wc(e,t,i){var r=e.getOption("configureMouse"),n=r?r(e,t,i):{};if(n.unit==null){var o=H?i.shiftKey&&i.metaKey:i.altKey;n.unit=o?"rectangle":t=="single"?"char":t=="double"?"word":"line"}return(n.extend==null||e.doc.extend)&&(n.extend=e.doc.extend||i.shiftKey),n.addNew==null&&(n.addNew=R?i.metaKey:i.ctrlKey),n.moveOnDrag==null&&(n.moveOnDrag=!(R?i.altKey:i.ctrlKey)),n}function kc(e,t,i,r){f?setTimeout(tt(al,e),0):e.curOp.focus=ve(ee(e));var n=wc(e,i,r),o=e.doc.sel,s;e.options.dragDrop&&Mu&&!e.isReadOnly()&&i=="single"&&(s=o.contains(t))>-1&&(fe((s=o.ranges[s]).from(),t)<0||t.xRel>0)&&(fe(s.to(),t)>0||t.xRel<0)?Sc(e,r,t,n):Fc(e,r,t,n)}function Sc(e,t,i,r){var n=e.display,o=!1,s=Ue(e,function(m){b&&(n.scroller.draggable=!1),e.state.draggingText=!1,e.state.delayingBlurEvent&&(e.hasFocus()?e.state.delayingBlurEvent=!1:bo(e)),ht(n.wrapper.ownerDocument,"mouseup",s),ht(n.wrapper.ownerDocument,"mousemove",h),ht(n.scroller,"dragstart",v),ht(n.scroller,"drop",s),o||(it(m),r.addNew||Zi(e.doc,i,null,null,r.extend),b&&!M||f&&p==9?setTimeout(function(){n.wrapper.ownerDocument.body.focus({preventScroll:!0}),n.input.focus()},20):n.input.focus())}),h=function(m){o=o||Math.abs(t.clientX-m.clientX)+Math.abs(t.clientY-m.clientY)>=10},v=function(){return o=!0};b&&(n.scroller.draggable=!0),e.state.draggingText=s,s.copy=!r.moveOnDrag,oe(n.wrapper.ownerDocument,"mouseup",s),oe(n.wrapper.ownerDocument,"mousemove",h),oe(n.scroller,"dragstart",v),oe(n.scroller,"drop",s),e.state.delayingBlurEvent=!0,setTimeout(function(){return n.input.focus()},20),n.scroller.dragDrop&&n.scroller.dragDrop()}function as(e,t,i){if(i=="char")return new be(t,t);if(i=="word")return e.findWordAt(t);if(i=="line")return new be(q(t.line,0),ce(e.doc,q(t.line+1,0)));var r=i(e,t);return new be(r.from,r.to)}function Fc(e,t,i,r){f&&bo(e);var n=e.display,o=e.doc;it(t);var s,h,v=o.sel,m=v.ranges;if(r.addNew&&!r.extend?(h=o.sel.contains(i),h>-1?s=m[h]:s=new be(i,i)):(s=o.sel.primary(),h=o.sel.primIndex),r.unit=="rectangle")r.addNew||(s=new be(i,i)),i=nr(e,t,!0,!0),h=-1;else{var x=as(e,i,r.unit);r.extend?s=Bo(s,x.anchor,x.head,r.extend):s=x}r.addNew?h==-1?(h=m.length,Ze(o,Ct(e,m.concat([s]),h),{scroll:!1,origin:"*mouse"})):m.length>1&&m[h].empty()&&r.unit=="char"&&!r.extend?(Ze(o,Ct(e,m.slice(0,h).concat(m.slice(h+1)),0),{scroll:!1,origin:"*mouse"}),v=o.sel):No(o,h,s,Ur):(h=0,Ze(o,new pt([s],0),Ur),v=o.sel);var w=i;function L(Z){if(fe(w,Z)!=0)if(w=Z,r.unit=="rectangle"){for(var $=[],ne=e.options.tabSize,ie=Re(re(o,i.line).text,i.ch,ne),pe=Re(re(o,Z.line).text,Z.ch,ne),Ce=Math.min(ie,pe),Ge=Math.max(ie,pe),Le=Math.min(i.line,Z.line),ft=Math.min(e.lastLine(),Math.max(i.line,Z.line));Le<=ft;Le++){var at=re(o,Le).text,Oe=St(at,Ce,ne);Ce==Ge?$.push(new be(q(Le,Oe),q(Le,Oe))):at.length>Oe&&$.push(new be(q(Le,Oe),q(Le,St(at,Ge,ne))))}$.length||$.push(new be(i,i)),Ze(o,Ct(e,v.ranges.slice(0,h).concat($),h),{origin:"*mouse",scroll:!1}),e.scrollIntoView(Z)}else{var lt=s,Xe=as(e,Z,r.unit),_e=lt.anchor,He;fe(Xe.anchor,_e)>0?(He=Xe.head,_e=Li(lt.from(),Xe.anchor)):(He=Xe.anchor,_e=Ai(lt.to(),Xe.head));var Be=v.ranges.slice(0);Be[h]=Ec(e,new be(ce(o,_e),He)),Ze(o,Ct(e,Be,h),Ur)}}var S=n.wrapper.getBoundingClientRect(),O=0;function P(Z){var $=++O,ne=nr(e,Z,!0,r.unit=="rectangle");if(ne)if(fe(ne,w)!=0){e.curOp.focus=ve(ee(e)),L(ne);var ie=Ui(n,o);(ne.line>=ie.to||ne.lineS.bottom?20:0;pe&&setTimeout(Ue(e,function(){O==$&&(n.scroller.scrollTop+=pe,P(Z))}),50)}}function j(Z){e.state.selectingText=!1,O=1/0,Z&&(it(Z),n.input.focus()),ht(n.wrapper.ownerDocument,"mousemove",Y),ht(n.wrapper.ownerDocument,"mouseup",Q),o.history.lastSelOrigin=null}var Y=Ue(e,function(Z){Z.buttons===0||!va(Z)?j(Z):P(Z)}),Q=Ue(e,j);e.state.selectingText=Q,oe(n.wrapper.ownerDocument,"mousemove",Y),oe(n.wrapper.ownerDocument,"mouseup",Q)}function Ec(e,t){var i=t.anchor,r=t.head,n=re(e.doc,i.line);if(fe(i,r)==0&&i.sticky==r.sticky)return t;var o=Mt(n);if(!o)return t;var s=Kr(o,i.ch,i.sticky),h=o[s];if(h.from!=i.ch&&h.to!=i.ch)return t;var v=s+(h.from==i.ch==(h.level!=1)?0:1);if(v==0||v==o.length)return t;var m;if(r.line!=i.line)m=(r.line-i.line)*(e.doc.direction=="ltr"?1:-1)>0;else{var x=Kr(o,r.ch,r.sticky),w=x-s||(r.ch-i.ch)*(h.level==1?-1:1);x==v-1||x==v?m=w<0:m=w>0}var L=o[v+(m?-1:0)],S=m==(L.level==1),O=S?L.from:L.to,P=S?"after":"before";return i.ch==O&&i.sticky==P?t:new be(new q(i.line,O,P),r)}function ls(e,t,i,r){var n,o;if(t.touches)n=t.touches[0].clientX,o=t.touches[0].clientY;else try{n=t.clientX,o=t.clientY}catch{return!1}if(n>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&it(t);var s=e.display,h=s.lineDiv.getBoundingClientRect();if(o>h.bottom||!mt(e,i))return Pn(t);o-=h.top-s.viewOffset;for(var v=0;v=n){var x=tr(e.doc,o),w=e.display.gutterSpecs[v];return Ie(e,i,e,x,w.className,t),Pn(t)}}}function Po(e,t){return ls(e,t,"gutterClick",!0)}function ss(e,t){It(e.display,t)||Ac(e,t)||We(e,t,"contextmenu")||ge||e.display.input.onContextMenu(t)}function Ac(e,t){return mt(e,"gutterContextMenu")?ls(e,t,"gutterContextMenu",!1):!1}function us(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),ei(e)}var zr={toString:function(){return"CodeMirror.Init"}},fs={},rn={};function Lc(e){var t=e.optionHandlers;function i(r,n,o,s){e.defaults[r]=n,o&&(t[r]=s?function(h,v,m){m!=zr&&o(h,v,m)}:o)}e.defineOption=i,e.Init=zr,i("value","",function(r,n){return r.setValue(n)},!0),i("mode",null,function(r,n){r.doc.modeOption=n,Lo(r)},!0),i("indentUnit",2,Lo,!0),i("indentWithTabs",!1),i("smartIndent",!0),i("tabSize",4,function(r){si(r),ei(r),nt(r)},!0),i("lineSeparator",null,function(r,n){if(r.doc.lineSep=n,!!n){var o=[],s=r.doc.first;r.doc.iter(function(v){for(var m=0;;){var x=v.text.indexOf(n,m);if(x==-1)break;m=x+n.length,o.push(q(s,x))}s++});for(var h=o.length-1;h>=0;h--)Mr(r.doc,n,o[h],q(o[h].line,o[h].ch+n.length))}}),i("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b\u200e\u200f\u2028\u2029\u202d\u202e\u2066\u2067\u2069\ufeff\ufff9-\ufffc]/g,function(r,n,o){r.state.specialChars=new RegExp(n.source+(n.test(" ")?"":"| "),"g"),o!=zr&&r.refresh()}),i("specialCharPlaceholder",nf,function(r){return r.refresh()},!0),i("electricChars",!0),i("inputStyle",N?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),i("spellcheck",!1,function(r,n){return r.getInputField().spellcheck=n},!0),i("autocorrect",!1,function(r,n){return r.getInputField().autocorrect=n},!0),i("autocapitalize",!1,function(r,n){return r.getInputField().autocapitalize=n},!0),i("rtlMoveVisually",!_),i("wholeLineUpdateBefore",!0),i("theme","default",function(r){us(r),li(r)},!0),i("keyMap","default",function(r,n,o){var s=en(n),h=o!=zr&&en(o);h&&h.detach&&h.detach(r,s),s.attach&&s.attach(r,h||null)}),i("extraKeys",null),i("configureMouse",null),i("lineWrapping",!1,Mc,!0),i("gutters",[],function(r,n){r.display.gutterSpecs=Eo(n,r.options.lineNumbers),li(r)},!0),i("fixedGutter",!0,function(r,n){r.display.gutters.style.left=n?go(r.display)+"px":"0",r.refresh()},!0),i("coverGutterNextToScrollbar",!1,function(r){return Er(r)},!0),i("scrollbarStyle","native",function(r){dl(r),Er(r),r.display.scrollbars.setScrollTop(r.doc.scrollTop),r.display.scrollbars.setScrollLeft(r.doc.scrollLeft)},!0),i("lineNumbers",!1,function(r,n){r.display.gutterSpecs=Eo(r.options.gutters,n),li(r)},!0),i("firstLineNumber",1,li,!0),i("lineNumberFormatter",function(r){return r},li,!0),i("showCursorWhenSelecting",!1,ti,!0),i("resetSelectionOnContextMenu",!0),i("lineWiseCopyCut",!0),i("pasteLinesPerSelection",!0),i("selectionsMayTouch",!1),i("readOnly",!1,function(r,n){n=="nocursor"&&(Sr(r),r.display.input.blur()),r.display.input.readOnlyChanged(n)}),i("screenReaderLabel",null,function(r,n){n=n===""?null:n,r.display.input.screenReaderLabelChanged(n)}),i("disableInput",!1,function(r,n){n||r.display.input.reset()},!0),i("dragDrop",!0,Tc),i("allowDropFileTypes",null),i("cursorBlinkRate",530),i("cursorScrollMargin",0),i("cursorHeight",1,ti,!0),i("singleCursorHeightPerLine",!0,ti,!0),i("workTime",100),i("workDelay",100),i("flattenSpans",!0,si,!0),i("addModeClass",!1,si,!0),i("pollInterval",100),i("undoDepth",200,function(r,n){return r.doc.history.undoDepth=n}),i("historyEventDelay",1250),i("viewportMargin",10,function(r){return r.refresh()},!0),i("maxHighlightLength",1e4,si,!0),i("moveInputWithCursor",!0,function(r,n){n||r.display.input.resetPosition()}),i("tabindex",null,function(r,n){return r.display.input.getField().tabIndex=n||""}),i("autofocus",null),i("direction","ltr",function(r,n){return r.doc.setDirection(n)},!0),i("phrases",null)}function Tc(e,t,i){var r=i&&i!=zr;if(!t!=!r){var n=e.display.dragFunctions,o=t?oe:ht;o(e.display.scroller,"dragstart",n.start),o(e.display.scroller,"dragenter",n.enter),o(e.display.scroller,"dragover",n.over),o(e.display.scroller,"dragleave",n.leave),o(e.display.scroller,"drop",n.drop)}}function Mc(e){e.options.lineWrapping?(Te(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(ue(e.display.wrapper,"CodeMirror-wrap"),no(e)),vo(e),nt(e),ei(e),setTimeout(function(){return Er(e)},100)}function Ee(e,t){var i=this;if(!(this instanceof Ee))return new Ee(e,t);this.options=t=t?dt(t):{},dt(fs,t,!1);var r=t.value;typeof r=="string"?r=new ot(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var n=new Ee.inputStyles[t.inputStyle](this),o=this.display=new jf(e,r,n,t);o.wrapper.CodeMirror=this,us(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),dl(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new Je,keySeq:null,specialChars:null},t.autofocus&&!N&&o.input.focus(),f&&p<11&&setTimeout(function(){return i.display.input.reset(!0)},20),Bc(this),uc(),sr(this),this.curOp.forceUpdate=!0,Cl(this,r),t.autofocus&&!N||this.hasFocus()?setTimeout(function(){i.hasFocus()&&!i.state.focused&&xo(i)},20):Sr(this);for(var s in rn)rn.hasOwnProperty(s)&&rn[s](this,t[s],zr);gl(this),t.finishInit&&t.finishInit(this);for(var h=0;h<_o.length;++h)_o[h](this);ur(this),b&&t.lineWrapping&&getComputedStyle(o.lineDiv).textRendering=="optimizelegibility"&&(o.lineDiv.style.textRendering="auto")}Ee.defaults=fs,Ee.optionHandlers=rn;function Bc(e){var t=e.display;oe(t.scroller,"mousedown",Ue(e,os)),f&&p<11?oe(t.scroller,"dblclick",Ue(e,function(v){if(!We(e,v)){var m=nr(e,v);if(!(!m||Po(e,v)||It(e.display,v))){it(v);var x=e.findWordAt(m);Zi(e.doc,x.anchor,x.head)}}})):oe(t.scroller,"dblclick",function(v){return We(e,v)||it(v)}),oe(t.scroller,"contextmenu",function(v){return ss(e,v)}),oe(t.input.getField(),"contextmenu",function(v){t.scroller.contains(v.target)||ss(e,v)});var i,r={end:0};function n(){t.activeTouch&&(i=setTimeout(function(){return t.activeTouch=null},1e3),r=t.activeTouch,r.end=+new Date)}function o(v){if(v.touches.length!=1)return!1;var m=v.touches[0];return m.radiusX<=1&&m.radiusY<=1}function s(v,m){if(m.left==null)return!0;var x=m.left-v.left,w=m.top-v.top;return x*x+w*w>20*20}oe(t.scroller,"touchstart",function(v){if(!We(e,v)&&!o(v)&&!Po(e,v)){t.input.ensurePolled(),clearTimeout(i);var m=+new Date;t.activeTouch={start:m,moved:!1,prev:m-r.end<=300?r:null},v.touches.length==1&&(t.activeTouch.left=v.touches[0].pageX,t.activeTouch.top=v.touches[0].pageY)}}),oe(t.scroller,"touchmove",function(){t.activeTouch&&(t.activeTouch.moved=!0)}),oe(t.scroller,"touchend",function(v){var m=t.activeTouch;if(m&&!It(t,v)&&m.left!=null&&!m.moved&&new Date-m.start<300){var x=e.coordsChar(t.activeTouch,"page"),w;!m.prev||s(m,m.prev)?w=new be(x,x):!m.prev.prev||s(m,m.prev.prev)?w=e.findWordAt(x):w=new be(q(x.line,0),ce(e.doc,q(x.line+1,0))),e.setSelection(w.anchor,w.head),e.focus(),it(v)}n()}),oe(t.scroller,"touchcancel",n),oe(t.scroller,"scroll",function(){t.scroller.clientHeight&&(ii(e,t.scroller.scrollTop),ar(e,t.scroller.scrollLeft,!0),Ie(e,"scroll",e))}),oe(t.scroller,"mousewheel",function(v){return yl(e,v)}),oe(t.scroller,"DOMMouseScroll",function(v){return yl(e,v)}),oe(t.wrapper,"scroll",function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0}),t.dragFunctions={enter:function(v){We(e,v)||Xr(v)},over:function(v){We(e,v)||(sc(e,v),Xr(v))},start:function(v){return lc(e,v)},drop:Ue(e,ac),leave:function(v){We(e,v)||Kl(e)}};var h=t.input.getField();oe(h,"keyup",function(v){return is.call(e,v)}),oe(h,"keydown",Ue(e,rs)),oe(h,"keypress",Ue(e,ns)),oe(h,"focus",function(v){return xo(e,v)}),oe(h,"blur",function(v){return Sr(e,v)})}var _o=[];Ee.defineInitHook=function(e){return _o.push(e)};function Di(e,t,i,r){var n=e.doc,o;i==null&&(i="add"),i=="smart"&&(n.mode.indent?o=Zr(e,t).state:i="prev");var s=e.options.tabSize,h=re(n,t),v=Re(h.text,null,s);h.stateAfter&&(h.stateAfter=null);var m=h.text.match(/^\s*/)[0],x;if(!r&&!/\S/.test(h.text))x=0,i="not";else if(i=="smart"&&(x=n.mode.indent(o,h.text.slice(m.length),h.text),x==Pe||x>150)){if(!r)return;i="prev"}i=="prev"?t>n.first?x=Re(re(n,t-1).text,null,s):x=0:i=="add"?x=v+e.options.indentUnit:i=="subtract"?x=v-e.options.indentUnit:typeof i=="number"&&(x=v+i),x=Math.max(0,x);var w="",L=0;if(e.options.indentWithTabs)for(var S=Math.floor(x/s);S;--S)L+=s,w+=" ";if(Ls,v=Un(t),m=null;if(h&&r.ranges.length>1)if(wt&&wt.text.join(` -`)==t){if(r.ranges.length%wt.text.length==0){m=[];for(var x=0;x=0;L--){var S=r.ranges[L],O=S.from(),P=S.to();S.empty()&&(i&&i>0?O=q(O.line,O.ch-i):e.state.overwrite&&!h?P=q(P.line,Math.min(re(o,P.line).text.length,P.ch+me(v).length)):h&&wt&&wt.lineWise&&wt.text.join(` + left: `+t.left+"px; width: "+Math.max(2,t.right-t.left)+"px;");e.display.lineSpace.appendChild(s),s.scrollIntoView(n),e.display.lineSpace.removeChild(s)}}}function Lf(e,t,i,r){r==null&&(r=0);var n;!e.options.lineWrapping&&t==i&&(i=t.sticky=="before"?q(t.line,t.ch+1,"before"):t,t=t.ch?q(t.line,t.sticky=="before"?t.ch-1:t.ch,"after"):t);for(var o=0;o<5;o++){var s=!1,h=Dt(e,t),v=!i||i==t?h:Dt(e,i);n={left:Math.min(h.left,v.left),top:Math.min(h.top,v.top)-r,right:Math.max(h.left,v.left),bottom:Math.max(h.bottom,v.bottom)+r};var m=Do(e,n),x=e.doc.scrollTop,w=e.doc.scrollLeft;if(m.scrollTop!=null&&(ii(e,m.scrollTop),Math.abs(e.doc.scrollTop-x)>1&&(s=!0)),m.scrollLeft!=null&&(ar(e,m.scrollLeft),Math.abs(e.doc.scrollLeft-w)>1&&(s=!0)),!s)break}return n}function Tf(e,t){var i=Do(e,t);i.scrollTop!=null&&ii(e,i.scrollTop),i.scrollLeft!=null&&ar(e,i.scrollLeft)}function Do(e,t){var i=e.display,r=Cr(e.display);t.top<0&&(t.top=0);var n=e.curOp&&e.curOp.scrollTop!=null?e.curOp.scrollTop:i.scroller.scrollTop,o=lo(e),s={};t.bottom-t.top>o&&(t.bottom=t.top+o);var h=e.doc.height+ao(i),v=t.toph-r;if(t.topn+o){var x=Math.min(t.top,(m?h:t.bottom)-o);x!=n&&(s.scrollTop=x)}var w=e.options.fixedGutter?0:i.gutters.offsetWidth,T=e.curOp&&e.curOp.scrollLeft!=null?e.curOp.scrollLeft:i.scroller.scrollLeft-w,E=rr(e)-i.gutters.offsetWidth,O=t.right-t.left>E;return O&&(t.right=t.left+E),t.left<10?s.scrollLeft=0:t.leftE+T-3&&(s.scrollLeft=t.right+(O?0:10)-E),s}function wo(e,t){t!=null&&(ji(e),e.curOp.scrollTop=(e.curOp.scrollTop==null?e.doc.scrollTop:e.curOp.scrollTop)+t)}function Fr(e){ji(e);var t=e.getCursor();e.curOp.scrollToPos={from:t,to:t,margin:e.options.cursorScrollMargin}}function ri(e,t,i){(t!=null||i!=null)&&ji(e),t!=null&&(e.curOp.scrollLeft=t),i!=null&&(e.curOp.scrollTop=i)}function Mf(e,t){ji(e),e.curOp.scrollToPos=t}function ji(e){var t=e.curOp.scrollToPos;if(t){e.curOp.scrollToPos=null;var i=el(e,t.from),r=el(e,t.to);sl(e,i,r,t.margin)}}function sl(e,t,i,r){var n=Do(e,{left:Math.min(t.left,i.left),top:Math.min(t.top,i.top)-r,right:Math.max(t.right,i.right),bottom:Math.max(t.bottom,i.bottom)+r});ri(e,n.scrollLeft,n.scrollTop)}function ii(e,t){Math.abs(e.doc.scrollTop-t)<2||(d||ko(e,{top:t}),ul(e,t,!0),d&&ko(e),ai(e,100))}function ul(e,t,i){t=Math.max(0,Math.min(e.display.scroller.scrollHeight-e.display.scroller.clientHeight,t)),!(e.display.scroller.scrollTop==t&&!i)&&(e.doc.scrollTop=t,e.display.scrollbars.setScrollTop(t),e.display.scroller.scrollTop!=t&&(e.display.scroller.scrollTop=t))}function ar(e,t,i,r){t=Math.max(0,Math.min(t,e.display.scroller.scrollWidth-e.display.scroller.clientWidth)),!((i?t==e.doc.scrollLeft:Math.abs(e.doc.scrollLeft-t)<2)&&!r)&&(e.doc.scrollLeft=t,pl(e),e.display.scroller.scrollLeft!=t&&(e.display.scroller.scrollLeft=t),e.display.scrollbars.setScrollLeft(t))}function ni(e){var t=e.display,i=t.gutters.offsetWidth,r=Math.round(e.doc.height+ao(e.display));return{clientHeight:t.scroller.clientHeight,viewHeight:t.wrapper.clientHeight,scrollWidth:t.scroller.scrollWidth,clientWidth:t.scroller.clientWidth,viewWidth:t.wrapper.clientWidth,barLeft:e.options.fixedGutter?i:0,docHeight:r,scrollHeight:r+At(e)+t.barHeight,nativeBarWidth:t.nativeBarWidth,gutterWidth:i}}var lr=function(e,t,i){this.cm=i;var r=this.vert=L("div",[L("div",null,null,"min-width: 1px")],"CodeMirror-vscrollbar"),n=this.horiz=L("div",[L("div",null,null,"height: 100%; min-height: 1px")],"CodeMirror-hscrollbar");r.tabIndex=n.tabIndex=-1,e(r),e(n),oe(r,"scroll",function(){r.clientHeight&&t(r.scrollTop,"vertical")}),oe(n,"scroll",function(){n.clientWidth&&t(n.scrollLeft,"horizontal")}),this.checkedZeroWidth=!1,f&&p<8&&(this.horiz.style.minHeight=this.vert.style.minWidth="18px")};lr.prototype.update=function(e){var t=e.scrollWidth>e.clientWidth+1,i=e.scrollHeight>e.clientHeight+1,r=e.nativeBarWidth;if(i){this.vert.style.display="block",this.vert.style.bottom=t?r+"px":"0";var n=e.viewHeight-(t?r:0);this.vert.firstChild.style.height=Math.max(0,e.scrollHeight-e.clientHeight+n)+"px"}else this.vert.scrollTop=0,this.vert.style.display="",this.vert.firstChild.style.height="0";if(t){this.horiz.style.display="block",this.horiz.style.right=i?r+"px":"0",this.horiz.style.left=e.barLeft+"px";var o=e.viewWidth-e.barLeft-(i?r:0);this.horiz.firstChild.style.width=Math.max(0,e.scrollWidth-e.clientWidth+o)+"px"}else this.horiz.style.display="",this.horiz.firstChild.style.width="0";return!this.checkedZeroWidth&&e.clientHeight>0&&(r==0&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:i?r:0,bottom:t?r:0}},lr.prototype.setScrollLeft=function(e){this.horiz.scrollLeft!=e&&(this.horiz.scrollLeft=e),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,"horiz")},lr.prototype.setScrollTop=function(e){this.vert.scrollTop!=e&&(this.vert.scrollTop=e),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,"vert")},lr.prototype.zeroWidthHack=function(){var e=R&&!z?"12px":"18px";this.horiz.style.height=this.vert.style.width=e,this.horiz.style.visibility=this.vert.style.visibility="hidden",this.disableHoriz=new Je,this.disableVert=new Je},lr.prototype.enableZeroWidthBar=function(e,t,i){e.style.visibility="";function r(){var n=e.getBoundingClientRect(),o=i=="vert"?document.elementFromPoint(n.right-1,(n.top+n.bottom)/2):document.elementFromPoint((n.right+n.left)/2,n.bottom-1);o!=e?e.style.visibility="hidden":t.set(1e3,r)}t.set(1e3,r)},lr.prototype.clear=function(){var e=this.horiz.parentNode;e.removeChild(this.horiz),e.removeChild(this.vert)};var oi=function(){};oi.prototype.update=function(){return{bottom:0,right:0}},oi.prototype.setScrollLeft=function(){},oi.prototype.setScrollTop=function(){},oi.prototype.clear=function(){};function Er(e,t){t||(t=ni(e));var i=e.display.barWidth,r=e.display.barHeight;fl(e,t);for(var n=0;n<4&&i!=e.display.barWidth||r!=e.display.barHeight;n++)i!=e.display.barWidth&&e.options.lineWrapping&&qi(e),fl(e,ni(e)),i=e.display.barWidth,r=e.display.barHeight}function fl(e,t){var i=e.display,r=i.scrollbars.update(t);i.sizer.style.paddingRight=(i.barWidth=r.right)+"px",i.sizer.style.paddingBottom=(i.barHeight=r.bottom)+"px",i.heightForcer.style.borderBottom=r.bottom+"px solid transparent",r.right&&r.bottom?(i.scrollbarFiller.style.display="block",i.scrollbarFiller.style.height=r.bottom+"px",i.scrollbarFiller.style.width=r.right+"px"):i.scrollbarFiller.style.display="",r.bottom&&e.options.coverGutterNextToScrollbar&&e.options.fixedGutter?(i.gutterFiller.style.display="block",i.gutterFiller.style.height=r.bottom+"px",i.gutterFiller.style.width=t.gutterWidth+"px"):i.gutterFiller.style.display=""}var cl={native:lr,null:oi};function dl(e){e.display.scrollbars&&(e.display.scrollbars.clear(),e.display.scrollbars.addClass&&ue(e.display.wrapper,e.display.scrollbars.addClass)),e.display.scrollbars=new cl[e.options.scrollbarStyle](function(t){e.display.wrapper.insertBefore(t,e.display.scrollbarFiller),oe(t,"mousedown",function(){e.state.focused&&setTimeout(function(){return e.display.input.focus()},0)}),t.setAttribute("cm-not-content","true")},function(t,i){i=="horizontal"?ar(e,t):ii(e,t)},e),e.display.scrollbars.addClass&&Te(e.display.wrapper,e.display.scrollbars.addClass)}var Bf=0;function sr(e){e.curOp={cm:e,viewChanged:!1,startHeight:e.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++Bf,markArrays:null},uf(e.curOp)}function ur(e){var t=e.curOp;t&&cf(t,function(i){for(var r=0;r=i.viewTo)||i.maxLineChanged&&t.options.lineWrapping,e.update=e.mustUpdate&&new Gi(t,e.mustUpdate&&{top:e.scrollTop,ensure:e.scrollToPos},e.forceUpdate)}function zf(e){e.updatedDisplay=e.mustUpdate&&Co(e.cm,e.update)}function Of(e){var t=e.cm,i=t.display;e.updatedDisplay&&qi(t),e.barMeasure=ni(t),i.maxLineChanged&&!t.options.lineWrapping&&(e.adjustWidthTo=Ka(t,i.maxLine,i.maxLine.text.length).left+3,t.display.sizerWidth=e.adjustWidthTo,e.barMeasure.scrollWidth=Math.max(i.scroller.clientWidth,i.sizer.offsetLeft+e.adjustWidthTo+At(t)+t.display.barWidth),e.maxScrollLeft=Math.max(0,i.sizer.offsetLeft+e.adjustWidthTo-rr(t))),(e.updatedDisplay||e.selectionChanged)&&(e.preparedSelection=i.input.prepareSelection())}function Hf(e){var t=e.cm;e.adjustWidthTo!=null&&(t.display.sizer.style.minWidth=e.adjustWidthTo+"px",e.maxScrollLeft=e.display.viewTo)){var i=+new Date+e.options.workTime,r=Zr(e,t.highlightFrontier),n=[];t.iter(r.line,Math.min(t.first+t.size,e.display.viewTo+500),function(o){if(r.line>=e.display.viewFrom){var s=o.styles,h=o.text.length>e.options.maxHighlightLength?Vt(t.mode,r.state):null,v=xa(e,o,r,!0);h&&(r.state=h),o.styles=v.styles;var m=o.styleClasses,x=v.classes;x?o.styleClasses=x:m&&(o.styleClasses=null);for(var w=!s||s.length!=o.styles.length||m!=x&&(!m||!x||m.bgClass!=x.bgClass||m.textClass!=x.textClass),T=0;!w&&Ti)return ai(e,e.options.workDelay),!0}),t.highlightFrontier=r.line,t.modeFrontier=Math.max(t.modeFrontier,r.line),n.length&&ut(e,function(){for(var o=0;o=i.viewFrom&&t.visible.to<=i.viewTo&&(i.updateLineNumbers==null||i.updateLineNumbers>=i.viewTo)&&i.renderedView==i.view&&nl(e)==0)return!1;gl(e)&&(Ut(e),t.dims=po(e));var n=r.first+r.size,o=Math.max(t.visible.from-e.options.viewportMargin,r.first),s=Math.min(n,t.visible.to+e.options.viewportMargin);i.viewFroms&&i.viewTo-s<20&&(s=Math.min(n,i.viewTo)),Bt&&(o=ro(e.doc,o),s=Ia(e.doc,s));var h=o!=i.viewFrom||s!=i.viewTo||i.lastWrapHeight!=t.wrapperHeight||i.lastWrapWidth!=t.wrapperWidth;Ff(e,o,s),i.viewOffset=Nt(re(e.doc,i.viewFrom)),e.display.mover.style.top=i.viewOffset+"px";var v=nl(e);if(!h&&v==0&&!t.force&&i.renderedView==i.view&&(i.updateLineNumbers==null||i.updateLineNumbers>=i.viewTo))return!1;var m=Wf(e);return v>4&&(i.lineDiv.style.display="none"),Uf(e,i.updateLineNumbers,t.dims),v>4&&(i.lineDiv.style.display=""),i.renderedView=i.view,qf(m),ae(i.cursorDiv),ae(i.selectionDiv),i.gutters.style.height=i.sizer.style.minHeight=0,h&&(i.lastWrapHeight=t.wrapperHeight,i.lastWrapWidth=t.wrapperWidth,ai(e,400)),i.updateLineNumbers=null,!0}function hl(e,t){for(var i=t.viewport,r=!0;;r=!1){if(!r||!e.options.lineWrapping||t.oldDisplayWidth==rr(e)){if(i&&i.top!=null&&(i={top:Math.min(e.doc.height+ao(e.display)-lo(e),i.top)}),t.visible=Ui(e.display,e.doc,i),t.visible.from>=e.display.viewFrom&&t.visible.to<=e.display.viewTo)break}else r&&(t.visible=Ui(e.display,e.doc,i));if(!Co(e,t))break;qi(e);var n=ni(e);ti(e),Er(e,n),Fo(e,n),t.force=!1}t.signal(e,"update",e),(e.display.viewFrom!=e.display.reportedViewFrom||e.display.viewTo!=e.display.reportedViewTo)&&(t.signal(e,"viewportChange",e,e.display.viewFrom,e.display.viewTo),e.display.reportedViewFrom=e.display.viewFrom,e.display.reportedViewTo=e.display.viewTo)}function ko(e,t){var i=new Gi(e,t);if(Co(e,i)){qi(e),hl(e,i);var r=ni(e);ti(e),Er(e,r),Fo(e,r),i.finish()}}function Uf(e,t,i){var r=e.display,n=e.options.lineNumbers,o=r.lineDiv,s=o.firstChild;function h(O){var P=O.nextSibling;return y&&R&&e.display.currentWheelTarget==O?O.style.display="none":O.parentNode.removeChild(O),P}for(var v=r.view,m=r.viewFrom,x=0;x-1&&(E=!1),Pa(e,w,m,i)),E&&(ae(w.lineNumber),w.lineNumber.appendChild(document.createTextNode(Zn(e.options,m)))),s=w.node.nextSibling}m+=w.size}for(;s;)s=h(s)}function So(e){var t=e.gutters.offsetWidth;e.sizer.style.marginLeft=t+"px",qe(e,"gutterChanged",e)}function Fo(e,t){e.display.sizer.style.minHeight=t.docHeight+"px",e.display.heightForcer.style.top=t.docHeight+"px",e.display.gutters.style.height=t.docHeight+e.display.barHeight+At(e)+"px"}function pl(e){var t=e.display,i=t.view;if(!(!t.alignWidgets&&(!t.gutters.firstChild||!e.options.fixedGutter))){for(var r=go(t)-t.scroller.scrollLeft+e.doc.scrollLeft,n=t.gutters.offsetWidth,o=r+"px",s=0;sh.clientWidth,m=h.scrollHeight>h.clientHeight;if(r&&v||n&&m){if(n&&R&&y){e:for(var x=t.target,w=s.view;x!=h;x=x.parentNode)for(var T=0;T=0&&fe(e,r.to())<=0)return i}return-1};var ye=function(e,t){this.anchor=e,this.head=t};ye.prototype.from=function(){return Li(this.anchor,this.head)},ye.prototype.to=function(){return Ai(this.anchor,this.head)},ye.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch};function wt(e,t,i){var r=e&&e.options.selectionsMayTouch,n=t[i];t.sort(function(T,E){return fe(T.from(),E.from())}),i=Fe(t,n);for(var o=1;o0:v>=0){var m=Li(h.from(),s.from()),x=Ai(h.to(),s.to()),w=h.empty()?s.from()==s.head:h.from()==h.head;o<=i&&--i,t.splice(--o,2,new ye(w?x:m,w?m:x))}}return new pt(t,i)}function jt(e,t){return new pt([new ye(e,t||e)],0)}function Gt(e){return e.text?q(e.from.line+e.text.length-1,me(e.text).length+(e.text.length==1?e.from.ch:0)):e.to}function yl(e,t){if(fe(e,t.from)<0)return e;if(fe(e,t.to)<=0)return Gt(t);var i=e.line+t.text.length-(t.to.line-t.from.line)-1,r=e.ch;return e.line==t.to.line&&(r+=Gt(t).ch-t.to.ch),q(i,r)}function Ao(e,t){for(var i=[],r=0;r1&&e.remove(h.line+1,O-1),e.insert(h.line+1,Y)}qe(e,"change",e,t)}function Kt(e,t,i){function r(n,o,s){if(n.linked)for(var h=0;h1&&!e.done[e.done.length-2].ranges)return e.done.pop(),me(e.done)}function Sl(e,t,i,r){var n=e.history;n.undone.length=0;var o=+new Date,s,h;if((n.lastOp==r||n.lastOrigin==t.origin&&t.origin&&(t.origin.charAt(0)=="+"&&n.lastModTime>o-(e.cm?e.cm.options.historyEventDelay:500)||t.origin.charAt(0)=="*"))&&(s=Yf(n,n.lastOp==r)))h=me(s.changes),fe(t.from,t.to)==0&&fe(t.from,h.to)==0?h.to=Gt(t):s.changes.push(Mo(e,t));else{var v=me(n.done);for((!v||!v.ranges)&&Yi(e.sel,n.done),s={changes:[Mo(e,t)],generation:n.generation},n.done.push(s);n.done.length>n.undoDepth;)n.done.shift(),n.done[0].ranges||n.done.shift()}n.done.push(i),n.generation=++n.maxGeneration,n.lastModTime=n.lastSelTime=o,n.lastOp=n.lastSelOp=r,n.lastOrigin=n.lastSelOrigin=t.origin,h||Ie(e,"historyAdded")}function Zf(e,t,i,r){var n=t.charAt(0);return n=="*"||n=="+"&&i.ranges.length==r.ranges.length&&i.somethingSelected()==r.somethingSelected()&&new Date-e.history.lastSelTime<=(e.cm?e.cm.options.historyEventDelay:500)}function Qf(e,t,i,r){var n=e.history,o=r&&r.origin;i==n.lastSelOp||o&&n.lastSelOrigin==o&&(n.lastModTime==n.lastSelTime&&n.lastOrigin==o||Zf(e,o,me(n.done),t))?n.done[n.done.length-1]=t:Yi(t,n.done),n.lastSelTime=+new Date,n.lastSelOrigin=o,n.lastSelOp=i,r&&r.clearRedo!==!1&&kl(n.undone)}function Yi(e,t){var i=me(t);i&&i.ranges&&i.equals(e)||t.push(e)}function Fl(e,t,i,r){var n=t["spans_"+e.id],o=0;e.iter(Math.max(e.first,i),Math.min(e.first+e.size,r),function(s){s.markedSpans&&((n||(n=t["spans_"+e.id]={}))[o]=s.markedSpans),++o})}function Jf(e){if(!e)return null;for(var t,i=0;i-1&&(me(h)[w]=m[w],delete m[w])}}return r}function Bo(e,t,i,r){if(r){var n=e.anchor;if(i){var o=fe(t,n)<0;o!=fe(i,n)<0?(n=t,t=i):o!=fe(t,i)<0&&(t=i)}return new ye(n,t)}else return new ye(i||t,t)}function Zi(e,t,i,r,n){n==null&&(n=e.cm&&(e.cm.display.shift||e.extend)),Ze(e,new pt([Bo(e.sel.primary(),t,i,n)],0),r)}function Al(e,t,i){for(var r=[],n=e.cm&&(e.cm.display.shift||e.extend),o=0;o=t.ch:h.to>t.ch))){if(n&&(Ie(v,"beforeCursorEnter"),v.explicitlyCleared))if(o.markedSpans){--s;continue}else break;if(!v.atomic)continue;if(i){var w=v.find(r<0?1:-1),T=void 0;if((r<0?x:m)&&(w=Il(e,w,-r,w&&w.line==t.line?o:null)),w&&w.line==t.line&&(T=fe(w,i))&&(r<0?T<0:T>0))return Lr(e,w,t,r,n)}var E=v.find(r<0?-1:1);return(r<0?m:x)&&(E=Il(e,E,r,E.line==t.line?o:null)),E?Lr(e,E,t,r,n):null}}return t}function Ji(e,t,i,r,n){var o=r||1,s=Lr(e,t,i,o,n)||!n&&Lr(e,t,i,o,!0)||Lr(e,t,i,-o,n)||!n&&Lr(e,t,i,-o,!0);return s||(e.cantEdit=!0,q(e.first,0))}function Il(e,t,i,r){return i<0&&t.ch==0?t.line>e.first?ce(e,q(t.line-1)):null:i>0&&t.ch==(r||re(e,t.line)).text.length?t.line=0;--n)Hl(e,{from:r[n].from,to:r[n].to,text:n?[""]:t.text,origin:t.origin});else Hl(e,t)}}function Hl(e,t){if(!(t.text.length==1&&t.text[0]==""&&fe(t.from,t.to)==0)){var i=Ao(e,t);Sl(e,t,i,e.cm?e.cm.curOp.id:NaN),ui(e,t,i,eo(e,t));var r=[];Kt(e,function(n,o){!o&&Fe(r,n.history)==-1&&(Wl(n.history,t),r.push(n.history)),ui(n,t,null,eo(n,t))})}}function $i(e,t,i){var r=e.cm&&e.cm.state.suppressEdits;if(!(r&&!i)){for(var n=e.history,o,s=e.sel,h=t=="undo"?n.done:n.undone,v=t=="undo"?n.undone:n.done,m=0;m=0;--E){var O=T(E);if(O)return O.v}}}}function Rl(e,t){if(t!=0&&(e.first+=t,e.sel=new pt(yt(e.sel.ranges,function(n){return new ye(q(n.anchor.line+t,n.anchor.ch),q(n.head.line+t,n.head.ch))}),e.sel.primIndex),e.cm)){nt(e.cm,e.first,e.first-t,t);for(var i=e.cm.display,r=i.viewFrom;re.lastLine())){if(t.from.lineo&&(t={from:t.from,to:q(o,re(e,o).text.length),text:[t.text[0]],origin:t.origin}),t.removed=er(e,t.from,t.to),i||(i=Ao(e,t)),e.cm?ec(e.cm,t,r):To(e,t,r),Qi(e,i,rt),e.cantEdit&&Ji(e,q(e.firstLine(),0))&&(e.cantEdit=!1)}}function ec(e,t,i){var r=e.doc,n=e.display,o=t.from,s=t.to,h=!1,v=o.line;e.options.lineWrapping||(v=xe(xt(re(r,o.line))),r.iter(v,s.line+1,function(E){if(E==n.maxLine)return h=!0,!0})),r.sel.contains(t.from,t.to)>-1&&pa(e),To(r,t,i,il(e)),e.options.lineWrapping||(r.iter(v,o.line+t.text.length,function(E){var O=zi(E);O>n.maxLineLength&&(n.maxLine=E,n.maxLineLength=O,n.maxLineChanged=!0,h=!1)}),h&&(e.curOp.updateMaxLine=!0)),qu(r,o.line),ai(e,400);var m=t.text.length-(s.line-o.line)-1;t.full?nt(e):o.line==s.line&&t.text.length==1&&!Dl(e.doc,t)?qt(e,o.line,"text"):nt(e,o.line,s.line+1,m);var x=mt(e,"changes"),w=mt(e,"change");if(w||x){var T={from:o,to:s,text:t.text,removed:t.removed,origin:t.origin};w&&qe(e,"change",e,T),x&&(e.curOp.changeObjs||(e.curOp.changeObjs=[])).push(T)}e.display.selForContextMenu=null}function Mr(e,t,i,r,n){var o;r||(r=i),fe(r,i)<0&&(o=[r,i],i=o[0],r=o[1]),typeof t=="string"&&(t=e.splitLines(t)),Tr(e,{from:i,to:r,text:t,origin:n})}function Pl(e,t,i,r){i1||!(this.children[0]instanceof ci))){var h=[];this.collapse(h),this.children=[new ci(h)],this.children[0].parent=this}},collapse:function(e){for(var t=0;t50){for(var s=n.lines.length%25+25,h=s;h10);e.parent.maybeSpill()}},iterN:function(e,t,i){for(var r=0;re.display.maxLineLength&&(e.display.maxLine=m,e.display.maxLineLength=x,e.display.maxLineChanged=!0)}r!=null&&e&&this.collapsed&&nt(e,r,n+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,e&&Bl(e.doc)),e&&qe(e,"markerCleared",e,this,r,n),t&&ur(e),this.parent&&this.parent.clear()}},Xt.prototype.find=function(e,t){e==null&&this.type=="bookmark"&&(e=1);for(var i,r,n=0;n0||s==0&&o.clearWhenEmpty!==!1)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=U("span",[o.replacedWith],"CodeMirror-widget"),r.handleMouseEvents||o.widgetNode.setAttribute("cm-ignore-events","true"),r.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Na(e,t.line,t,i,o)||t.line!=i.line&&Na(e,i.line,t,i,o))throw new Error("Inserting collapsed marker partially overlapping an existing one");ju()}o.addToHistory&&Sl(e,{from:t,to:i,origin:"markText"},e.sel,NaN);var h=t.line,v=e.cm,m;if(e.iter(h,i.line+1,function(w){v&&o.collapsed&&!v.options.lineWrapping&&xt(w)==v.display.maxLine&&(m=!0),o.collapsed&&h!=t.line&&Ft(w,0),Ku(w,new Mi(o,h==t.line?t.ch:null,h==i.line?i.ch:null),e.cm&&e.cm.curOp),++h}),o.collapsed&&e.iter(t.line,i.line+1,function(w){Wt(e,w)&&Ft(w,0)}),o.clearOnEnter&&oe(o,"beforeCursorEnter",function(){return o.clear()}),o.readOnly&&(Uu(),(e.history.done.length||e.history.undone.length)&&e.clearHistory()),o.collapsed&&(o.id=++Ul,o.atomic=!0),v){if(m&&(v.curOp.updateMaxLine=!0),o.collapsed)nt(v,t.line,i.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var x=t.line;x<=i.line;x++)qt(v,x,"text");o.atomic&&Bl(v.doc),qe(v,"markerAdded",v,o)}return o}var pi=function(e,t){this.markers=e,this.primary=t;for(var i=0;i=0;v--)Tr(this,r[v]);h?Tl(this,h):this.cm&&Fr(this.cm)}),undo:je(function(){$i(this,"undo")}),redo:je(function(){$i(this,"redo")}),undoSelection:je(function(){$i(this,"undo",!0)}),redoSelection:je(function(){$i(this,"redo",!0)}),setExtending:function(e){this.extend=e},getExtending:function(){return this.extend},historySize:function(){for(var e=this.history,t=0,i=0,r=0;r=e.ch)&&t.push(n.marker.parent||n.marker)}return t},findMarks:function(e,t,i){e=ce(this,e),t=ce(this,t);var r=[],n=e.line;return this.iter(e.line,t.line+1,function(o){var s=o.markedSpans;if(s)for(var h=0;h=v.to||v.from==null&&n!=e.line||v.from!=null&&n==t.line&&v.from>=t.ch)&&(!i||i(v.marker))&&r.push(v.marker.parent||v.marker)}++n}),r},getAllMarks:function(){var e=[];return this.iter(function(t){var i=t.markedSpans;if(i)for(var r=0;re)return t=e,!0;e-=o,++i}),ce(this,q(i,t))},indexFromPos:function(e){e=ce(this,e);var t=e.ch;if(e.linet&&(t=e.from),e.to!=null&&e.to-1){t.state.draggingText(e),setTimeout(function(){return t.display.input.focus()},20);return}try{var x=e.dataTransfer.getData("Text");if(x){var w;if(t.state.draggingText&&!t.state.draggingText.copy&&(w=t.listSelections()),Qi(t.doc,jt(i,i)),w)for(var T=0;T=0;h--)Mr(e.doc,"",r[h].from,r[h].to,"+delete");Fr(e)})}function Io(e,t,i){var r=da(e.text,t+i,i);return r<0||r>e.text.length?null:r}function zo(e,t,i){var r=Io(e,t.ch,i);return r==null?null:new q(t.line,r,i<0?"after":"before")}function Oo(e,t,i,r,n){if(e){t.doc.direction=="rtl"&&(n=-n);var o=Mt(i,t.doc.direction);if(o){var s=n<0?me(o):o[0],h=n<0==(s.level==1),v=h?"after":"before",m;if(s.level>0||t.doc.direction=="rtl"){var x=wr(t,i);m=n<0?i.text.length-1:0;var w=Lt(t,x,m).top;m=jr(function(T){return Lt(t,x,T).top==w},n<0==(s.level==1)?s.from:s.to-1,m),v=="before"&&(m=Io(i,m,1))}else m=n<0?s.to:s.from;return new q(r,m,v)}}return new q(r,n<0?i.text.length:0,n<0?"before":"after")}function pc(e,t,i,r){var n=Mt(t,e.doc.direction);if(!n)return zo(t,i,r);i.ch>=t.text.length?(i.ch=t.text.length,i.sticky="before"):i.ch<=0&&(i.ch=0,i.sticky="after");var o=Kr(n,i.ch,i.sticky),s=n[o];if(e.doc.direction=="ltr"&&s.level%2==0&&(r>0?s.to>i.ch:s.from=s.from&&T>=x.begin)){var E=w?"before":"after";return new q(i.line,T,E)}}var O=function(Y,Q,Z){for(var $=function(we,Ge){return Ge?new q(i.line,h(we,1),"before"):new q(i.line,we,"after")};Y>=0&&Y0==(ne.level!=1),pe=ie?Z.begin:h(Z.end,-1);if(ne.from<=pe&&pe0?x.end:h(x.begin,-1);return j!=null&&!(r>0&&j==t.text.length)&&(P=O(r>0?0:n.length-1,r,m(j)),P)?P:null}var mi={selectAll:zl,singleSelection:function(e){return e.setSelection(e.getCursor("anchor"),e.getCursor("head"),rt)},killLine:function(e){return Ir(e,function(t){if(t.empty()){var i=re(e.doc,t.head.line).text.length;return t.head.ch==i&&t.head.line0)n=new q(n.line,n.ch+1),e.replaceRange(o.charAt(n.ch-1)+o.charAt(n.ch-2),q(n.line,n.ch-2),n,"+transpose");else if(n.line>e.doc.first){var s=re(e.doc,n.line-1).text;s&&(n=new q(n.line,1),e.replaceRange(o.charAt(0)+e.doc.lineSeparator()+s.charAt(s.length-1),q(n.line-1,s.length-1),n,"+transpose"))}}i.push(new ye(n,n))}e.setSelections(i)})},newlineAndIndent:function(e){return ut(e,function(){for(var t=e.listSelections(),i=t.length-1;i>=0;i--)e.replaceRange(e.doc.lineSeparator(),t[i].anchor,t[i].head,"+input");t=e.listSelections();for(var r=0;re&&fe(t,this.pos)==0&&i==this.button};var yi,xi;function Dc(e,t){var i=+new Date;return xi&&xi.compare(i,e,t)?(yi=xi=null,"triple"):yi&&yi.compare(i,e,t)?(xi=new Ro(i,e,t),yi=null,"double"):(yi=new Ro(i,e,t),xi=null,"single")}function os(e){var t=this,i=t.display;if(!(We(t,e)||i.activeTouch&&i.input.supportsTouch())){if(i.input.ensurePolled(),i.shift=e.shiftKey,It(i,e)){y||(i.scroller.draggable=!1,setTimeout(function(){return i.scroller.draggable=!0},100));return}if(!Po(t,e)){var r=nr(t,e),n=va(e),o=r?Dc(r,n):"single";he(t).focus(),n==1&&t.state.selectingText&&t.state.selectingText(e),!(r&&wc(t,n,r,o,e))&&(n==1?r?kc(t,r,o,e):_n(e)==i.scroller&&it(e):n==2?(r&&Zi(t.doc,r),setTimeout(function(){return i.input.focus()},20)):n==3&&(ge?t.display.input.onContextMenu(e):yo(t)))}}}function wc(e,t,i,r,n){var o="Click";return r=="double"?o="Double"+o:r=="triple"&&(o="Triple"+o),o=(t==1?"Left":t==2?"Middle":"Right")+o,bi(e,Ql(o,n),n,function(s){if(typeof s=="string"&&(s=mi[s]),!s)return!1;var h=!1;try{e.isReadOnly()&&(e.state.suppressEdits=!0),h=s(e,i)!=Pe}finally{e.state.suppressEdits=!1}return h})}function Cc(e,t,i){var r=e.getOption("configureMouse"),n=r?r(e,t,i):{};if(n.unit==null){var o=H?i.shiftKey&&i.metaKey:i.altKey;n.unit=o?"rectangle":t=="single"?"char":t=="double"?"word":"line"}return(n.extend==null||e.doc.extend)&&(n.extend=e.doc.extend||i.shiftKey),n.addNew==null&&(n.addNew=R?i.metaKey:i.ctrlKey),n.moveOnDrag==null&&(n.moveOnDrag=!(R?i.altKey:i.ctrlKey)),n}function kc(e,t,i,r){f?setTimeout(tt(al,e),0):e.curOp.focus=ve(ee(e));var n=Cc(e,i,r),o=e.doc.sel,s;e.options.dragDrop&&Mu&&!e.isReadOnly()&&i=="single"&&(s=o.contains(t))>-1&&(fe((s=o.ranges[s]).from(),t)<0||t.xRel>0)&&(fe(s.to(),t)>0||t.xRel<0)?Sc(e,r,t,n):Fc(e,r,t,n)}function Sc(e,t,i,r){var n=e.display,o=!1,s=Ue(e,function(m){y&&(n.scroller.draggable=!1),e.state.draggingText=!1,e.state.delayingBlurEvent&&(e.hasFocus()?e.state.delayingBlurEvent=!1:yo(e)),ht(n.wrapper.ownerDocument,"mouseup",s),ht(n.wrapper.ownerDocument,"mousemove",h),ht(n.scroller,"dragstart",v),ht(n.scroller,"drop",s),o||(it(m),r.addNew||Zi(e.doc,i,null,null,r.extend),y&&!M||f&&p==9?setTimeout(function(){n.wrapper.ownerDocument.body.focus({preventScroll:!0}),n.input.focus()},20):n.input.focus())}),h=function(m){o=o||Math.abs(t.clientX-m.clientX)+Math.abs(t.clientY-m.clientY)>=10},v=function(){return o=!0};y&&(n.scroller.draggable=!0),e.state.draggingText=s,s.copy=!r.moveOnDrag,oe(n.wrapper.ownerDocument,"mouseup",s),oe(n.wrapper.ownerDocument,"mousemove",h),oe(n.scroller,"dragstart",v),oe(n.scroller,"drop",s),e.state.delayingBlurEvent=!0,setTimeout(function(){return n.input.focus()},20),n.scroller.dragDrop&&n.scroller.dragDrop()}function as(e,t,i){if(i=="char")return new ye(t,t);if(i=="word")return e.findWordAt(t);if(i=="line")return new ye(q(t.line,0),ce(e.doc,q(t.line+1,0)));var r=i(e,t);return new ye(r.from,r.to)}function Fc(e,t,i,r){f&&yo(e);var n=e.display,o=e.doc;it(t);var s,h,v=o.sel,m=v.ranges;if(r.addNew&&!r.extend?(h=o.sel.contains(i),h>-1?s=m[h]:s=new ye(i,i)):(s=o.sel.primary(),h=o.sel.primIndex),r.unit=="rectangle")r.addNew||(s=new ye(i,i)),i=nr(e,t,!0,!0),h=-1;else{var x=as(e,i,r.unit);r.extend?s=Bo(s,x.anchor,x.head,r.extend):s=x}r.addNew?h==-1?(h=m.length,Ze(o,wt(e,m.concat([s]),h),{scroll:!1,origin:"*mouse"})):m.length>1&&m[h].empty()&&r.unit=="char"&&!r.extend?(Ze(o,wt(e,m.slice(0,h).concat(m.slice(h+1)),0),{scroll:!1,origin:"*mouse"}),v=o.sel):No(o,h,s,Ur):(h=0,Ze(o,new pt([s],0),Ur),v=o.sel);var w=i;function T(Z){if(fe(w,Z)!=0)if(w=Z,r.unit=="rectangle"){for(var $=[],ne=e.options.tabSize,ie=Re(re(o,i.line).text,i.ch,ne),pe=Re(re(o,Z.line).text,Z.ch,ne),we=Math.min(ie,pe),Ge=Math.max(ie,pe),Le=Math.min(i.line,Z.line),ft=Math.min(e.lastLine(),Math.max(i.line,Z.line));Le<=ft;Le++){var at=re(o,Le).text,Oe=St(at,we,ne);we==Ge?$.push(new ye(q(Le,Oe),q(Le,Oe))):at.length>Oe&&$.push(new ye(q(Le,Oe),q(Le,St(at,Ge,ne))))}$.length||$.push(new ye(i,i)),Ze(o,wt(e,v.ranges.slice(0,h).concat($),h),{origin:"*mouse",scroll:!1}),e.scrollIntoView(Z)}else{var lt=s,Xe=as(e,Z,r.unit),_e=lt.anchor,He;fe(Xe.anchor,_e)>0?(He=Xe.head,_e=Li(lt.from(),Xe.anchor)):(He=Xe.anchor,_e=Ai(lt.to(),Xe.head));var Be=v.ranges.slice(0);Be[h]=Ec(e,new ye(ce(o,_e),He)),Ze(o,wt(e,Be,h),Ur)}}var E=n.wrapper.getBoundingClientRect(),O=0;function P(Z){var $=++O,ne=nr(e,Z,!0,r.unit=="rectangle");if(ne)if(fe(ne,w)!=0){e.curOp.focus=ve(ee(e)),T(ne);var ie=Ui(n,o);(ne.line>=ie.to||ne.lineE.bottom?20:0;pe&&setTimeout(Ue(e,function(){O==$&&(n.scroller.scrollTop+=pe,P(Z))}),50)}}function j(Z){e.state.selectingText=!1,O=1/0,Z&&(it(Z),n.input.focus()),ht(n.wrapper.ownerDocument,"mousemove",Y),ht(n.wrapper.ownerDocument,"mouseup",Q),o.history.lastSelOrigin=null}var Y=Ue(e,function(Z){Z.buttons===0||!va(Z)?j(Z):P(Z)}),Q=Ue(e,j);e.state.selectingText=Q,oe(n.wrapper.ownerDocument,"mousemove",Y),oe(n.wrapper.ownerDocument,"mouseup",Q)}function Ec(e,t){var i=t.anchor,r=t.head,n=re(e.doc,i.line);if(fe(i,r)==0&&i.sticky==r.sticky)return t;var o=Mt(n);if(!o)return t;var s=Kr(o,i.ch,i.sticky),h=o[s];if(h.from!=i.ch&&h.to!=i.ch)return t;var v=s+(h.from==i.ch==(h.level!=1)?0:1);if(v==0||v==o.length)return t;var m;if(r.line!=i.line)m=(r.line-i.line)*(e.doc.direction=="ltr"?1:-1)>0;else{var x=Kr(o,r.ch,r.sticky),w=x-s||(r.ch-i.ch)*(h.level==1?-1:1);x==v-1||x==v?m=w<0:m=w>0}var T=o[v+(m?-1:0)],E=m==(T.level==1),O=E?T.from:T.to,P=E?"after":"before";return i.ch==O&&i.sticky==P?t:new ye(new q(i.line,O,P),r)}function ls(e,t,i,r){var n,o;if(t.touches)n=t.touches[0].clientX,o=t.touches[0].clientY;else try{n=t.clientX,o=t.clientY}catch{return!1}if(n>=Math.floor(e.display.gutters.getBoundingClientRect().right))return!1;r&&it(t);var s=e.display,h=s.lineDiv.getBoundingClientRect();if(o>h.bottom||!mt(e,i))return Pn(t);o-=h.top-s.viewOffset;for(var v=0;v=n){var x=tr(e.doc,o),w=e.display.gutterSpecs[v];return Ie(e,i,e,x,w.className,t),Pn(t)}}}function Po(e,t){return ls(e,t,"gutterClick",!0)}function ss(e,t){It(e.display,t)||Ac(e,t)||We(e,t,"contextmenu")||ge||e.display.input.onContextMenu(t)}function Ac(e,t){return mt(e,"gutterContextMenu")?ls(e,t,"gutterContextMenu",!1):!1}function us(e){e.display.wrapper.className=e.display.wrapper.className.replace(/\s*cm-s-\S+/g,"")+e.options.theme.replace(/(^|\s)\s*/g," cm-s-"),ei(e)}var zr={toString:function(){return"CodeMirror.Init"}},fs={},rn={};function Lc(e){var t=e.optionHandlers;function i(r,n,o,s){e.defaults[r]=n,o&&(t[r]=s?function(h,v,m){m!=zr&&o(h,v,m)}:o)}e.defineOption=i,e.Init=zr,i("value","",function(r,n){return r.setValue(n)},!0),i("mode",null,function(r,n){r.doc.modeOption=n,Lo(r)},!0),i("indentUnit",2,Lo,!0),i("indentWithTabs",!1),i("smartIndent",!0),i("tabSize",4,function(r){si(r),ei(r),nt(r)},!0),i("lineSeparator",null,function(r,n){if(r.doc.lineSep=n,!!n){var o=[],s=r.doc.first;r.doc.iter(function(v){for(var m=0;;){var x=v.text.indexOf(n,m);if(x==-1)break;m=x+n.length,o.push(q(s,x))}s++});for(var h=o.length-1;h>=0;h--)Mr(r.doc,n,o[h],q(o[h].line,o[h].ch+n.length))}}),i("specialChars",/[\u0000-\u001f\u007f-\u009f\u00ad\u061c\u200b\u200e\u200f\u2028\u2029\u202d\u202e\u2066\u2067\u2069\ufeff\ufff9-\ufffc]/g,function(r,n,o){r.state.specialChars=new RegExp(n.source+(n.test(" ")?"":"| "),"g"),o!=zr&&r.refresh()}),i("specialCharPlaceholder",nf,function(r){return r.refresh()},!0),i("electricChars",!0),i("inputStyle",N?"contenteditable":"textarea",function(){throw new Error("inputStyle can not (yet) be changed in a running editor")},!0),i("spellcheck",!1,function(r,n){return r.getInputField().spellcheck=n},!0),i("autocorrect",!1,function(r,n){return r.getInputField().autocorrect=n},!0),i("autocapitalize",!1,function(r,n){return r.getInputField().autocapitalize=n},!0),i("rtlMoveVisually",!_),i("wholeLineUpdateBefore",!0),i("theme","default",function(r){us(r),li(r)},!0),i("keyMap","default",function(r,n,o){var s=en(n),h=o!=zr&&en(o);h&&h.detach&&h.detach(r,s),s.attach&&s.attach(r,h||null)}),i("extraKeys",null),i("configureMouse",null),i("lineWrapping",!1,Mc,!0),i("gutters",[],function(r,n){r.display.gutterSpecs=Eo(n,r.options.lineNumbers),li(r)},!0),i("fixedGutter",!0,function(r,n){r.display.gutters.style.left=n?go(r.display)+"px":"0",r.refresh()},!0),i("coverGutterNextToScrollbar",!1,function(r){return Er(r)},!0),i("scrollbarStyle","native",function(r){dl(r),Er(r),r.display.scrollbars.setScrollTop(r.doc.scrollTop),r.display.scrollbars.setScrollLeft(r.doc.scrollLeft)},!0),i("lineNumbers",!1,function(r,n){r.display.gutterSpecs=Eo(r.options.gutters,n),li(r)},!0),i("firstLineNumber",1,li,!0),i("lineNumberFormatter",function(r){return r},li,!0),i("showCursorWhenSelecting",!1,ti,!0),i("resetSelectionOnContextMenu",!0),i("lineWiseCopyCut",!0),i("pasteLinesPerSelection",!0),i("selectionsMayTouch",!1),i("readOnly",!1,function(r,n){n=="nocursor"&&(Sr(r),r.display.input.blur()),r.display.input.readOnlyChanged(n)}),i("screenReaderLabel",null,function(r,n){n=n===""?null:n,r.display.input.screenReaderLabelChanged(n)}),i("disableInput",!1,function(r,n){n||r.display.input.reset()},!0),i("dragDrop",!0,Tc),i("allowDropFileTypes",null),i("cursorBlinkRate",530),i("cursorScrollMargin",0),i("cursorHeight",1,ti,!0),i("singleCursorHeightPerLine",!0,ti,!0),i("workTime",100),i("workDelay",100),i("flattenSpans",!0,si,!0),i("addModeClass",!1,si,!0),i("pollInterval",100),i("undoDepth",200,function(r,n){return r.doc.history.undoDepth=n}),i("historyEventDelay",1250),i("viewportMargin",10,function(r){return r.refresh()},!0),i("maxHighlightLength",1e4,si,!0),i("moveInputWithCursor",!0,function(r,n){n||r.display.input.resetPosition()}),i("tabindex",null,function(r,n){return r.display.input.getField().tabIndex=n||""}),i("autofocus",null),i("direction","ltr",function(r,n){return r.doc.setDirection(n)},!0),i("phrases",null)}function Tc(e,t,i){var r=i&&i!=zr;if(!t!=!r){var n=e.display.dragFunctions,o=t?oe:ht;o(e.display.scroller,"dragstart",n.start),o(e.display.scroller,"dragenter",n.enter),o(e.display.scroller,"dragover",n.over),o(e.display.scroller,"dragleave",n.leave),o(e.display.scroller,"drop",n.drop)}}function Mc(e){e.options.lineWrapping?(Te(e.display.wrapper,"CodeMirror-wrap"),e.display.sizer.style.minWidth="",e.display.sizerWidth=null):(ue(e.display.wrapper,"CodeMirror-wrap"),no(e)),vo(e),nt(e),ei(e),setTimeout(function(){return Er(e)},100)}function Ee(e,t){var i=this;if(!(this instanceof Ee))return new Ee(e,t);this.options=t=t?dt(t):{},dt(fs,t,!1);var r=t.value;typeof r=="string"?r=new ot(r,t.mode,null,t.lineSeparator,t.direction):t.mode&&(r.modeOption=t.mode),this.doc=r;var n=new Ee.inputStyles[t.inputStyle](this),o=this.display=new jf(e,r,n,t);o.wrapper.CodeMirror=this,us(this),t.lineWrapping&&(this.display.wrapper.className+=" CodeMirror-wrap"),dl(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new Je,keySeq:null,specialChars:null},t.autofocus&&!N&&o.input.focus(),f&&p<11&&setTimeout(function(){return i.display.input.reset(!0)},20),Bc(this),uc(),sr(this),this.curOp.forceUpdate=!0,wl(this,r),t.autofocus&&!N||this.hasFocus()?setTimeout(function(){i.hasFocus()&&!i.state.focused&&xo(i)},20):Sr(this);for(var s in rn)rn.hasOwnProperty(s)&&rn[s](this,t[s],zr);gl(this),t.finishInit&&t.finishInit(this);for(var h=0;h<_o.length;++h)_o[h](this);ur(this),y&&t.lineWrapping&&getComputedStyle(o.lineDiv).textRendering=="optimizelegibility"&&(o.lineDiv.style.textRendering="auto")}Ee.defaults=fs,Ee.optionHandlers=rn;function Bc(e){var t=e.display;oe(t.scroller,"mousedown",Ue(e,os)),f&&p<11?oe(t.scroller,"dblclick",Ue(e,function(v){if(!We(e,v)){var m=nr(e,v);if(!(!m||Po(e,v)||It(e.display,v))){it(v);var x=e.findWordAt(m);Zi(e.doc,x.anchor,x.head)}}})):oe(t.scroller,"dblclick",function(v){return We(e,v)||it(v)}),oe(t.scroller,"contextmenu",function(v){return ss(e,v)}),oe(t.input.getField(),"contextmenu",function(v){t.scroller.contains(v.target)||ss(e,v)});var i,r={end:0};function n(){t.activeTouch&&(i=setTimeout(function(){return t.activeTouch=null},1e3),r=t.activeTouch,r.end=+new Date)}function o(v){if(v.touches.length!=1)return!1;var m=v.touches[0];return m.radiusX<=1&&m.radiusY<=1}function s(v,m){if(m.left==null)return!0;var x=m.left-v.left,w=m.top-v.top;return x*x+w*w>20*20}oe(t.scroller,"touchstart",function(v){if(!We(e,v)&&!o(v)&&!Po(e,v)){t.input.ensurePolled(),clearTimeout(i);var m=+new Date;t.activeTouch={start:m,moved:!1,prev:m-r.end<=300?r:null},v.touches.length==1&&(t.activeTouch.left=v.touches[0].pageX,t.activeTouch.top=v.touches[0].pageY)}}),oe(t.scroller,"touchmove",function(){t.activeTouch&&(t.activeTouch.moved=!0)}),oe(t.scroller,"touchend",function(v){var m=t.activeTouch;if(m&&!It(t,v)&&m.left!=null&&!m.moved&&new Date-m.start<300){var x=e.coordsChar(t.activeTouch,"page"),w;!m.prev||s(m,m.prev)?w=new ye(x,x):!m.prev.prev||s(m,m.prev.prev)?w=e.findWordAt(x):w=new ye(q(x.line,0),ce(e.doc,q(x.line+1,0))),e.setSelection(w.anchor,w.head),e.focus(),it(v)}n()}),oe(t.scroller,"touchcancel",n),oe(t.scroller,"scroll",function(){t.scroller.clientHeight&&(ii(e,t.scroller.scrollTop),ar(e,t.scroller.scrollLeft,!0),Ie(e,"scroll",e))}),oe(t.scroller,"mousewheel",function(v){return bl(e,v)}),oe(t.scroller,"DOMMouseScroll",function(v){return bl(e,v)}),oe(t.wrapper,"scroll",function(){return t.wrapper.scrollTop=t.wrapper.scrollLeft=0}),t.dragFunctions={enter:function(v){We(e,v)||Xr(v)},over:function(v){We(e,v)||(sc(e,v),Xr(v))},start:function(v){return lc(e,v)},drop:Ue(e,ac),leave:function(v){We(e,v)||Kl(e)}};var h=t.input.getField();oe(h,"keyup",function(v){return is.call(e,v)}),oe(h,"keydown",Ue(e,rs)),oe(h,"keypress",Ue(e,ns)),oe(h,"focus",function(v){return xo(e,v)}),oe(h,"blur",function(v){return Sr(e,v)})}var _o=[];Ee.defineInitHook=function(e){return _o.push(e)};function Di(e,t,i,r){var n=e.doc,o;i==null&&(i="add"),i=="smart"&&(n.mode.indent?o=Zr(e,t).state:i="prev");var s=e.options.tabSize,h=re(n,t),v=Re(h.text,null,s);h.stateAfter&&(h.stateAfter=null);var m=h.text.match(/^\s*/)[0],x;if(!r&&!/\S/.test(h.text))x=0,i="not";else if(i=="smart"&&(x=n.mode.indent(o,h.text.slice(m.length),h.text),x==Pe||x>150)){if(!r)return;i="prev"}i=="prev"?t>n.first?x=Re(re(n,t-1).text,null,s):x=0:i=="add"?x=v+e.options.indentUnit:i=="subtract"?x=v-e.options.indentUnit:typeof i=="number"&&(x=v+i),x=Math.max(0,x);var w="",T=0;if(e.options.indentWithTabs)for(var E=Math.floor(x/s);E;--E)T+=s,w+=" ";if(Ts,v=Un(t),m=null;if(h&&r.ranges.length>1)if(Ct&&Ct.text.join(` +`)==t){if(r.ranges.length%Ct.text.length==0){m=[];for(var x=0;x=0;T--){var E=r.ranges[T],O=E.from(),P=E.to();E.empty()&&(i&&i>0?O=q(O.line,O.ch-i):e.state.overwrite&&!h?P=q(P.line,Math.min(re(o,P.line).text.length,P.ch+me(v).length)):h&&Ct&&Ct.lineWise&&Ct.text.join(` `)==v.join(` -`)&&(O=P=q(O.line,0)));var j={from:O,to:P,text:m?m[L%m.length]:v,origin:n||(h?"paste":e.state.cutIncoming>s?"cut":"+input")};Tr(e.doc,j),qe(e,"inputRead",e,j)}t&&!h&&ds(e,t),Fr(e),e.curOp.updateInput<2&&(e.curOp.updateInput=w),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function cs(e,t){var i=e.clipboardData&&e.clipboardData.getData("Text");if(i)return e.preventDefault(),!t.isReadOnly()&&!t.options.disableInput&&t.hasFocus()&&ut(t,function(){return Wo(t,i,0,null,"paste")}),!0}function ds(e,t){if(!(!e.options.electricChars||!e.options.smartIndent))for(var i=e.doc.sel,r=i.ranges.length-1;r>=0;r--){var n=i.ranges[r];if(!(n.head.ch>100||r&&i.ranges[r-1].head.line==n.head.line)){var o=e.getModeAt(n.head),s=!1;if(o.electricChars){for(var h=0;h-1){s=Di(e,n.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(re(e.doc,n.head.line).text.slice(0,n.head.ch))&&(s=Di(e,n.head.line,"smart"));s&&qe(e,"electricInput",e,n.head.line)}}}function hs(e){for(var t=[],i=[],r=0;ro&&(Di(this,h.head.line,r,!0),o=h.head.line,s==this.doc.sel.primIndex&&Fr(this));else{var v=h.from(),m=h.to(),x=Math.max(o,v.line);o=Math.min(this.lastLine(),m.line-(m.ch?0:1))+1;for(var w=x;w0&&No(this.doc,s,new be(v,L[s].to()),rt)}}}),getTokenAt:function(r,n){return ka(this,r,n)},getLineTokens:function(r,n){return ka(this,q(r),n,!0)},getTokenTypeAt:function(r){r=ce(this.doc,r);var n=Da(this,re(this.doc,r.line)),o=0,s=(n.length-1)/2,h=r.ch,v;if(h==0)v=n[2];else for(;;){var m=o+s>>1;if((m?n[m*2-1]:0)>=h)s=m;else if(n[m*2+1]v&&(r=v,s=!0),h=re(this.doc,r)}else h=r;return Ri(this,h,{top:0,left:0},n||"page",o||s).top+(s?this.doc.height-Nt(h):0)},defaultTextHeight:function(){return wr(this.display)},defaultCharWidth:function(){return kr(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(r,n,o,s,h){var v=this.display;r=Dt(this,ce(this.doc,r));var m=r.bottom,x=r.left;if(n.style.position="absolute",n.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(n),v.sizer.appendChild(n),s=="over")m=r.top;else if(s=="above"||s=="near"){var w=Math.max(v.wrapper.clientHeight,this.doc.height),L=Math.max(v.sizer.clientWidth,v.lineSpace.clientWidth);(s=="above"||r.bottom+n.offsetHeight>w)&&r.top>n.offsetHeight?m=r.top-n.offsetHeight:r.bottom+n.offsetHeight<=w&&(m=r.bottom),x+n.offsetWidth>L&&(x=L-n.offsetWidth)}n.style.top=m+"px",n.style.left=n.style.right="",h=="right"?(x=v.sizer.clientWidth-n.offsetWidth,n.style.right="0px"):(h=="left"?x=0:h=="middle"&&(x=(v.sizer.clientWidth-n.offsetWidth)/2),n.style.left=x+"px"),o&&Tf(this,{left:x,top:m,right:x+n.offsetWidth,bottom:m+n.offsetHeight})},triggerOnKeyDown:$e(rs),triggerOnKeyPress:$e(ns),triggerOnKeyUp:is,triggerOnMouseDown:$e(os),execCommand:function(r){if(mi.hasOwnProperty(r))return mi[r].call(null,this)},triggerElectric:$e(function(r){ds(this,r)}),findPosH:function(r,n,o,s){var h=1;n<0&&(h=-1,n=-n);for(var v=ce(this.doc,r),m=0;m0&&x(o.charAt(s-1));)--s;for(;h.5||this.options.lineWrapping)&&vo(this),Ie(this,"refresh",this)}),swapDoc:$e(function(r){var n=this.doc;return n.cm=null,this.state.selectingText&&this.state.selectingText(),Cl(this,r),ei(this),this.display.input.reset(),ri(this,r.scrollLeft,r.scrollTop),this.curOp.forceScroll=!0,qe(this,"swapDoc",this,n),n}),phrase:function(r){var n=this.options.phrases;return n&&Object.prototype.hasOwnProperty.call(n,r)?n[r]:r},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},mr(e),e.registerHelper=function(r,n,o){i.hasOwnProperty(r)||(i[r]=e[r]={_global:[]}),i[r][n]=o},e.registerGlobalHelper=function(r,n,o,s){e.registerHelper(r,n,s),i[r]._global.push({pred:o,val:s})}}function Uo(e,t,i,r,n){var o=t,s=i,h=re(e,t.line),v=n&&e.direction=="rtl"?-i:i;function m(){var Q=t.line+v;return Q=e.first+e.size?!1:(t=new q(Q,t.ch,t.sticky),h=re(e,Q))}function x(Q){var Z;if(r=="codepoint"){var $=h.text.charCodeAt(t.ch+(i>0?0:-1));if(isNaN($))Z=null;else{var ne=i>0?$>=55296&&$<56320:$>=56320&&$<57343;Z=new q(t.line,Math.max(0,Math.min(h.text.length,t.ch+i*(ne?2:1))),-i)}}else n?Z=pc(e.cm,h,t,i):Z=zo(h,t,i);if(Z==null)if(!Q&&m())t=Oo(n,e.cm,h,t.line,v);else return!1;else t=Z;return!0}if(r=="char"||r=="codepoint")x();else if(r=="column")x(!0);else if(r=="word"||r=="group")for(var w=null,L=r=="group",S=e.cm&&e.cm.getHelper(t,"wordChars"),O=!0;!(i<0&&!x(!O));O=!1){var P=h.text.charAt(t.ch)||` -`,j=Fi(P,S)?"w":L&&P==` -`?"n":!L||/\s/.test(P)?null:"p";if(L&&!O&&!j&&(j="s"),w&&w!=j){i<0&&(i=1,x(),t.sticky="after");break}if(j&&(w=j),i>0&&!x(!O))break}var Y=Ji(e,t,o,s,!0);return Qn(o,Y)&&(Y.hitSide=!0),Y}function gs(e,t,i,r){var n=e.doc,o=t.left,s;if(r=="page"){var h=Math.min(e.display.wrapper.clientHeight,he(e).innerHeight||n(e).documentElement.clientHeight),v=Math.max(h-.5*wr(e.display),3);s=(i>0?t.bottom:t.top)+i*v}else r=="line"&&(s=i>0?t.bottom+3:t.top-3);for(var m;m=co(e,o,s),!!m.outside;){if(i<0?s<=0:s>=n.height){m.hitSide=!0;break}s+=i*5}return m}var De=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new Je,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};De.prototype.init=function(e){var t=this,i=this,r=i.cm,n=i.div=e.lineDiv;n.contentEditable=!0,qo(n,r.options.spellcheck,r.options.autocorrect,r.options.autocapitalize);function o(h){for(var v=h.target;v;v=v.parentNode){if(v==n)return!0;if(/\bCodeMirror-(?:line)?widget\b/.test(v.className))break}return!1}oe(n,"paste",function(h){!o(h)||We(r,h)||cs(h,r)||p<=11&&setTimeout(Ue(r,function(){return t.updateFromDOM()}),20)}),oe(n,"compositionstart",function(h){t.composing={data:h.data,done:!1}}),oe(n,"compositionupdate",function(h){t.composing||(t.composing={data:h.data,done:!1})}),oe(n,"compositionend",function(h){t.composing&&(h.data!=t.composing.data&&t.readFromDOMSoon(),t.composing.done=!0)}),oe(n,"touchstart",function(){return i.forceCompositionEnd()}),oe(n,"input",function(){t.composing||t.readFromDOMSoon()});function s(h){if(!(!o(h)||We(r,h))){if(r.somethingSelected())nn({lineWise:!1,text:r.getSelections()}),h.type=="cut"&&r.replaceSelection("",null,"cut");else if(r.options.lineWiseCopyCut){var v=hs(r);nn({lineWise:!0,text:v.text}),h.type=="cut"&&r.operation(function(){r.setSelections(v.ranges,0,rt),r.replaceSelection("",null,"cut")})}else return;if(h.clipboardData){h.clipboardData.clearData();var m=wt.text.join(` -`);if(h.clipboardData.setData("Text",m),h.clipboardData.getData("Text")==m){h.preventDefault();return}}var x=ps(),w=x.firstChild;qo(w),r.display.lineSpace.insertBefore(x,r.display.lineSpace.firstChild),w.value=wt.text.join(` -`);var L=ve(ye(n));k(w),setTimeout(function(){r.display.lineSpace.removeChild(x),L.focus(),L==n&&i.showPrimarySelection()},50)}}oe(n,"copy",s),oe(n,"cut",s)},De.prototype.screenReaderLabelChanged=function(e){e?this.div.setAttribute("aria-label",e):this.div.removeAttribute("aria-label")},De.prototype.prepareSelection=function(){var e=ol(this.cm,!1);return e.focus=ve(ye(this.div))==this.div,e},De.prototype.showSelection=function(e,t){!e||!this.cm.display.view.length||((e.focus||t)&&this.showPrimarySelection(),this.showMultipleSelections(e))},De.prototype.getSelection=function(){return this.cm.display.wrapper.ownerDocument.getSelection()},De.prototype.showPrimarySelection=function(){var e=this.getSelection(),t=this.cm,i=t.doc.sel.primary(),r=i.from(),n=i.to();if(t.display.viewTo==t.display.viewFrom||r.line>=t.display.viewTo||n.line=t.display.viewFrom&&vs(t,r)||{node:h[0].measure.map[2],offset:0},m=n.linee.firstLine()&&(r=q(r.line-1,re(e.doc,r.line-1).length)),n.ch==re(e.doc,n.line).text.length&&n.linet.viewTo-1)return!1;var o,s,h;r.line==t.viewFrom||(o=or(e,r.line))==0?(s=xe(t.view[0].line),h=t.view[0].node):(s=xe(t.view[o].line),h=t.view[o-1].node.nextSibling);var v=or(e,n.line),m,x;if(v==t.view.length-1?(m=t.viewTo-1,x=t.lineDiv.lastChild):(m=xe(t.view[v+1].line)-1,x=t.view[v+1].node.previousSibling),!h)return!1;for(var w=e.doc.splitLines(zc(e,h,x,s,m)),L=er(e.doc,q(s,0),q(m,re(e.doc,m).text.length));w.length>1&&L.length>1;)if(me(w)==me(L))w.pop(),L.pop(),m--;else if(w[0]==L[0])w.shift(),L.shift(),s++;else break;for(var S=0,O=0,P=w[0],j=L[0],Y=Math.min(P.length,j.length);Sr.ch&&Q.charCodeAt(Q.length-O-1)==Z.charCodeAt(Z.length-O-1);)S--,O++;w[w.length-1]=Q.slice(0,Q.length-O).replace(/^\u200b+/,""),w[0]=w[0].slice(S).replace(/\u200b+$/,"");var ne=q(s,S),ie=q(m,L.length?me(L).length-O:0);if(w.length>1||w[0]||fe(ne,ie))return Mr(e.doc,w,ne,ie,"+input"),!0},De.prototype.ensurePolled=function(){this.forceCompositionEnd()},De.prototype.reset=function(){this.forceCompositionEnd()},De.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},De.prototype.readFromDOMSoon=function(){var e=this;this.readDOMTimeout==null&&(this.readDOMTimeout=setTimeout(function(){if(e.readDOMTimeout=null,e.composing)if(e.composing.done)e.composing=null;else return;e.updateFromDOM()},80))},De.prototype.updateFromDOM=function(){var e=this;(this.cm.isReadOnly()||!this.pollContent())&&ut(this.cm,function(){return nt(e.cm)})},De.prototype.setUneditable=function(e){e.contentEditable="false"},De.prototype.onKeyPress=function(e){e.charCode==0||this.composing||(e.preventDefault(),this.cm.isReadOnly()||Ue(this.cm,Wo)(this.cm,String.fromCharCode(e.charCode==null?e.keyCode:e.charCode),0))},De.prototype.readOnlyChanged=function(e){this.div.contentEditable=String(e!="nocursor")},De.prototype.onContextMenu=function(){},De.prototype.resetPosition=function(){},De.prototype.needsContentAttribute=!0;function vs(e,t){var i=so(e,t.line);if(!i||i.hidden)return null;var r=re(e.doc,t.line),n=Ga(i,r,t.line),o=Mt(r,e.doc.direction),s="left";if(o){var h=Kr(o,t.ch);s=h%2?"right":"left"}var v=Ya(n.map,t.ch,s);return v.offset=v.collapse=="right"?v.end:v.start,v}function Ic(e){for(var t=e;t;t=t.parentNode)if(/CodeMirror-gutter-wrapper/.test(t.className))return!0;return!1}function Or(e,t){return t&&(e.bad=!0),e}function zc(e,t,i,r,n){var o="",s=!1,h=e.doc.lineSeparator(),v=!1;function m(S){return function(O){return O.id==S}}function x(){s&&(o+=h,v&&(o+=h),s=v=!1)}function w(S){S&&(x(),o+=S)}function L(S){if(S.nodeType==1){var O=S.getAttribute("cm-text");if(O){w(O);return}var P=S.getAttribute("cm-marker"),j;if(P){var Y=e.findMarks(q(r,0),q(n+1,0),m(+P));Y.length&&(j=Y[0].find(0))&&w(er(e.doc,j.from,j.to).join(h));return}if(S.getAttribute("contenteditable")=="false")return;var Q=/^(pre|div|p|li|table|br)$/i.test(S.nodeName);if(!/^br$/i.test(S.nodeName)&&S.textContent.length==0)return;Q&&x();for(var Z=0;Z=9&&t.hasSelection&&(t.hasSelection=null),i.poll()}),oe(n,"paste",function(s){We(r,s)||cs(s,r)||(r.state.pasteIncoming=+new Date,i.fastPoll())});function o(s){if(!We(r,s)){if(r.somethingSelected())nn({lineWise:!1,text:r.getSelections()});else if(r.options.lineWiseCopyCut){var h=hs(r);nn({lineWise:!0,text:h.text}),s.type=="cut"?r.setSelections(h.ranges,null,rt):(i.prevInput="",n.value=h.text.join(` -`),k(n))}else return;s.type=="cut"&&(r.state.cutIncoming=+new Date)}}oe(n,"cut",o),oe(n,"copy",o),oe(e.scroller,"paste",function(s){if(!(It(e,s)||We(r,s))){if(!n.dispatchEvent){r.state.pasteIncoming=+new Date,i.focus();return}var h=new Event("paste");h.clipboardData=s.clipboardData,n.dispatchEvent(h)}}),oe(e.lineSpace,"selectstart",function(s){It(e,s)||it(s)}),oe(n,"compositionstart",function(){var s=r.getCursor("from");i.composing&&i.composing.range.clear(),i.composing={start:s,range:r.markText(s,r.getCursor("to"),{className:"CodeMirror-composing"})}}),oe(n,"compositionend",function(){i.composing&&(i.poll(),i.composing.range.clear(),i.composing=null)})},Ne.prototype.createField=function(e){this.wrapper=ps(),this.textarea=this.wrapper.firstChild;var t=this.cm.options;qo(this.textarea,t.spellcheck,t.autocorrect,t.autocapitalize)},Ne.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},Ne.prototype.prepareSelection=function(){var e=this.cm,t=e.display,i=e.doc,r=ol(e);if(e.options.moveInputWithCursor){var n=Dt(e,i.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),s=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,n.top+s.top-o.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,n.left+s.left-o.left))}return r},Ne.prototype.showSelection=function(e){var t=this.cm,i=t.display;de(i.cursorDiv,e.cursors),de(i.selectionDiv,e.selection),e.teTop!=null&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Ne.prototype.reset=function(e){if(!(this.contextMenuPending||this.composing&&e)){var t=this.cm;if(this.resetting=!0,t.somethingSelected()){this.prevInput="";var i=t.getSelection();this.textarea.value=i,t.state.focused&&k(this.textarea),f&&p>=9&&(this.hasSelection=i)}else e||(this.prevInput=this.textarea.value="",f&&p>=9&&(this.hasSelection=null));this.resetting=!1}},Ne.prototype.getField=function(){return this.textarea},Ne.prototype.supportsTouch=function(){return!1},Ne.prototype.focus=function(){if(this.cm.options.readOnly!="nocursor"&&(!N||ve(ye(this.textarea))!=this.textarea))try{this.textarea.focus()}catch{}},Ne.prototype.blur=function(){this.textarea.blur()},Ne.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Ne.prototype.receivedFocus=function(){this.slowPoll()},Ne.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){e.poll(),e.cm.state.focused&&e.slowPoll()})},Ne.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0;function i(){var r=t.poll();!r&&!e?(e=!0,t.polling.set(60,i)):(t.pollingFast=!1,t.slowPoll())}t.polling.set(20,i)},Ne.prototype.poll=function(){var e=this,t=this.cm,i=this.textarea,r=this.prevInput;if(this.contextMenuPending||this.resetting||!t.state.focused||Iu(i)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var n=i.value;if(n==r&&!t.somethingSelected())return!1;if(f&&p>=9&&this.hasSelection===n||R&&/[\uf700-\uf7ff]/.test(n))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=n.charCodeAt(0);if(o==8203&&!r&&(r="\u200B"),o==8666)return this.reset(),this.cm.execCommand("undo")}for(var s=0,h=Math.min(r.length,n.length);s1e3||n.indexOf(` -`)>-1?i.value=e.prevInput="":e.prevInput=n,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},Ne.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Ne.prototype.onKeyPress=function(){f&&p>=9&&(this.hasSelection=null),this.fastPoll()},Ne.prototype.onContextMenu=function(e){var t=this,i=t.cm,r=i.display,n=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=nr(i,e),s=r.scroller.scrollTop;if(!o||T)return;var h=i.options.resetSelectionOnContextMenu;h&&i.doc.sel.contains(o)==-1&&Ue(i,Ze)(i.doc,jt(o),rt);var v=n.style.cssText,m=t.wrapper.style.cssText,x=t.wrapper.offsetParent.getBoundingClientRect();t.wrapper.style.cssText="position: static",n.style.cssText=`position: absolute; width: 30px; height: 30px; +`)&&(O=P=q(O.line,0)));var j={from:O,to:P,text:m?m[T%m.length]:v,origin:n||(h?"paste":e.state.cutIncoming>s?"cut":"+input")};Tr(e.doc,j),qe(e,"inputRead",e,j)}t&&!h&&ds(e,t),Fr(e),e.curOp.updateInput<2&&(e.curOp.updateInput=w),e.curOp.typing=!0,e.state.pasteIncoming=e.state.cutIncoming=-1}function cs(e,t){var i=e.clipboardData&&e.clipboardData.getData("Text");if(i)return e.preventDefault(),!t.isReadOnly()&&!t.options.disableInput&&t.hasFocus()&&ut(t,function(){return Wo(t,i,0,null,"paste")}),!0}function ds(e,t){if(!(!e.options.electricChars||!e.options.smartIndent))for(var i=e.doc.sel,r=i.ranges.length-1;r>=0;r--){var n=i.ranges[r];if(!(n.head.ch>100||r&&i.ranges[r-1].head.line==n.head.line)){var o=e.getModeAt(n.head),s=!1;if(o.electricChars){for(var h=0;h-1){s=Di(e,n.head.line,"smart");break}}else o.electricInput&&o.electricInput.test(re(e.doc,n.head.line).text.slice(0,n.head.ch))&&(s=Di(e,n.head.line,"smart"));s&&qe(e,"electricInput",e,n.head.line)}}}function hs(e){for(var t=[],i=[],r=0;ro&&(Di(this,h.head.line,r,!0),o=h.head.line,s==this.doc.sel.primIndex&&Fr(this));else{var v=h.from(),m=h.to(),x=Math.max(o,v.line);o=Math.min(this.lastLine(),m.line-(m.ch?0:1))+1;for(var w=x;w0&&No(this.doc,s,new ye(v,T[s].to()),rt)}}}),getTokenAt:function(r,n){return ka(this,r,n)},getLineTokens:function(r,n){return ka(this,q(r),n,!0)},getTokenTypeAt:function(r){r=ce(this.doc,r);var n=Da(this,re(this.doc,r.line)),o=0,s=(n.length-1)/2,h=r.ch,v;if(h==0)v=n[2];else for(;;){var m=o+s>>1;if((m?n[m*2-1]:0)>=h)s=m;else if(n[m*2+1]v&&(r=v,s=!0),h=re(this.doc,r)}else h=r;return Ri(this,h,{top:0,left:0},n||"page",o||s).top+(s?this.doc.height-Nt(h):0)},defaultTextHeight:function(){return Cr(this.display)},defaultCharWidth:function(){return kr(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(r,n,o,s,h){var v=this.display;r=Dt(this,ce(this.doc,r));var m=r.bottom,x=r.left;if(n.style.position="absolute",n.setAttribute("cm-ignore-events","true"),this.display.input.setUneditable(n),v.sizer.appendChild(n),s=="over")m=r.top;else if(s=="above"||s=="near"){var w=Math.max(v.wrapper.clientHeight,this.doc.height),T=Math.max(v.sizer.clientWidth,v.lineSpace.clientWidth);(s=="above"||r.bottom+n.offsetHeight>w)&&r.top>n.offsetHeight?m=r.top-n.offsetHeight:r.bottom+n.offsetHeight<=w&&(m=r.bottom),x+n.offsetWidth>T&&(x=T-n.offsetWidth)}n.style.top=m+"px",n.style.left=n.style.right="",h=="right"?(x=v.sizer.clientWidth-n.offsetWidth,n.style.right="0px"):(h=="left"?x=0:h=="middle"&&(x=(v.sizer.clientWidth-n.offsetWidth)/2),n.style.left=x+"px"),o&&Tf(this,{left:x,top:m,right:x+n.offsetWidth,bottom:m+n.offsetHeight})},triggerOnKeyDown:$e(rs),triggerOnKeyPress:$e(ns),triggerOnKeyUp:is,triggerOnMouseDown:$e(os),execCommand:function(r){if(mi.hasOwnProperty(r))return mi[r].call(null,this)},triggerElectric:$e(function(r){ds(this,r)}),findPosH:function(r,n,o,s){var h=1;n<0&&(h=-1,n=-n);for(var v=ce(this.doc,r),m=0;m0&&x(o.charAt(s-1));)--s;for(;h.5||this.options.lineWrapping)&&vo(this),Ie(this,"refresh",this)}),swapDoc:$e(function(r){var n=this.doc;return n.cm=null,this.state.selectingText&&this.state.selectingText(),wl(this,r),ei(this),this.display.input.reset(),ri(this,r.scrollLeft,r.scrollTop),this.curOp.forceScroll=!0,qe(this,"swapDoc",this,n),n}),phrase:function(r){var n=this.options.phrases;return n&&Object.prototype.hasOwnProperty.call(n,r)?n[r]:r},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},mr(e),e.registerHelper=function(r,n,o){i.hasOwnProperty(r)||(i[r]=e[r]={_global:[]}),i[r][n]=o},e.registerGlobalHelper=function(r,n,o,s){e.registerHelper(r,n,s),i[r]._global.push({pred:o,val:s})}}function Uo(e,t,i,r,n){var o=t,s=i,h=re(e,t.line),v=n&&e.direction=="rtl"?-i:i;function m(){var Q=t.line+v;return Q=e.first+e.size?!1:(t=new q(Q,t.ch,t.sticky),h=re(e,Q))}function x(Q){var Z;if(r=="codepoint"){var $=h.text.charCodeAt(t.ch+(i>0?0:-1));if(isNaN($))Z=null;else{var ne=i>0?$>=55296&&$<56320:$>=56320&&$<57343;Z=new q(t.line,Math.max(0,Math.min(h.text.length,t.ch+i*(ne?2:1))),-i)}}else n?Z=pc(e.cm,h,t,i):Z=zo(h,t,i);if(Z==null)if(!Q&&m())t=Oo(n,e.cm,h,t.line,v);else return!1;else t=Z;return!0}if(r=="char"||r=="codepoint")x();else if(r=="column")x(!0);else if(r=="word"||r=="group")for(var w=null,T=r=="group",E=e.cm&&e.cm.getHelper(t,"wordChars"),O=!0;!(i<0&&!x(!O));O=!1){var P=h.text.charAt(t.ch)||` +`,j=Fi(P,E)?"w":T&&P==` +`?"n":!T||/\s/.test(P)?null:"p";if(T&&!O&&!j&&(j="s"),w&&w!=j){i<0&&(i=1,x(),t.sticky="after");break}if(j&&(w=j),i>0&&!x(!O))break}var Y=Ji(e,t,o,s,!0);return Qn(o,Y)&&(Y.hitSide=!0),Y}function gs(e,t,i,r){var n=e.doc,o=t.left,s;if(r=="page"){var h=Math.min(e.display.wrapper.clientHeight,he(e).innerHeight||n(e).documentElement.clientHeight),v=Math.max(h-.5*Cr(e.display),3);s=(i>0?t.bottom:t.top)+i*v}else r=="line"&&(s=i>0?t.bottom+3:t.top-3);for(var m;m=co(e,o,s),!!m.outside;){if(i<0?s<=0:s>=n.height){m.hitSide=!0;break}s+=i*5}return m}var De=function(e){this.cm=e,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new Je,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null};De.prototype.init=function(e){var t=this,i=this,r=i.cm,n=i.div=e.lineDiv;n.contentEditable=!0,qo(n,r.options.spellcheck,r.options.autocorrect,r.options.autocapitalize);function o(h){for(var v=h.target;v;v=v.parentNode){if(v==n)return!0;if(/\bCodeMirror-(?:line)?widget\b/.test(v.className))break}return!1}oe(n,"paste",function(h){!o(h)||We(r,h)||cs(h,r)||p<=11&&setTimeout(Ue(r,function(){return t.updateFromDOM()}),20)}),oe(n,"compositionstart",function(h){t.composing={data:h.data,done:!1}}),oe(n,"compositionupdate",function(h){t.composing||(t.composing={data:h.data,done:!1})}),oe(n,"compositionend",function(h){t.composing&&(h.data!=t.composing.data&&t.readFromDOMSoon(),t.composing.done=!0)}),oe(n,"touchstart",function(){return i.forceCompositionEnd()}),oe(n,"input",function(){t.composing||t.readFromDOMSoon()});function s(h){if(!(!o(h)||We(r,h))){if(r.somethingSelected())nn({lineWise:!1,text:r.getSelections()}),h.type=="cut"&&r.replaceSelection("",null,"cut");else if(r.options.lineWiseCopyCut){var v=hs(r);nn({lineWise:!0,text:v.text}),h.type=="cut"&&r.operation(function(){r.setSelections(v.ranges,0,rt),r.replaceSelection("",null,"cut")})}else return;if(h.clipboardData){h.clipboardData.clearData();var m=Ct.text.join(` +`);if(h.clipboardData.setData("Text",m),h.clipboardData.getData("Text")==m){h.preventDefault();return}}var x=ps(),w=x.firstChild;qo(w),r.display.lineSpace.insertBefore(x,r.display.lineSpace.firstChild),w.value=Ct.text.join(` +`);var T=ve(be(n));k(w),setTimeout(function(){r.display.lineSpace.removeChild(x),T.focus(),T==n&&i.showPrimarySelection()},50)}}oe(n,"copy",s),oe(n,"cut",s)},De.prototype.screenReaderLabelChanged=function(e){e?this.div.setAttribute("aria-label",e):this.div.removeAttribute("aria-label")},De.prototype.prepareSelection=function(){var e=ol(this.cm,!1);return e.focus=ve(be(this.div))==this.div,e},De.prototype.showSelection=function(e,t){!e||!this.cm.display.view.length||((e.focus||t)&&this.showPrimarySelection(),this.showMultipleSelections(e))},De.prototype.getSelection=function(){return this.cm.display.wrapper.ownerDocument.getSelection()},De.prototype.showPrimarySelection=function(){var e=this.getSelection(),t=this.cm,i=t.doc.sel.primary(),r=i.from(),n=i.to();if(t.display.viewTo==t.display.viewFrom||r.line>=t.display.viewTo||n.line=t.display.viewFrom&&vs(t,r)||{node:h[0].measure.map[2],offset:0},m=n.linee.firstLine()&&(r=q(r.line-1,re(e.doc,r.line-1).length)),n.ch==re(e.doc,n.line).text.length&&n.linet.viewTo-1)return!1;var o,s,h;r.line==t.viewFrom||(o=or(e,r.line))==0?(s=xe(t.view[0].line),h=t.view[0].node):(s=xe(t.view[o].line),h=t.view[o-1].node.nextSibling);var v=or(e,n.line),m,x;if(v==t.view.length-1?(m=t.viewTo-1,x=t.lineDiv.lastChild):(m=xe(t.view[v+1].line)-1,x=t.view[v+1].node.previousSibling),!h)return!1;for(var w=e.doc.splitLines(zc(e,h,x,s,m)),T=er(e.doc,q(s,0),q(m,re(e.doc,m).text.length));w.length>1&&T.length>1;)if(me(w)==me(T))w.pop(),T.pop(),m--;else if(w[0]==T[0])w.shift(),T.shift(),s++;else break;for(var E=0,O=0,P=w[0],j=T[0],Y=Math.min(P.length,j.length);Er.ch&&Q.charCodeAt(Q.length-O-1)==Z.charCodeAt(Z.length-O-1);)E--,O++;w[w.length-1]=Q.slice(0,Q.length-O).replace(/^\u200b+/,""),w[0]=w[0].slice(E).replace(/\u200b+$/,"");var ne=q(s,E),ie=q(m,T.length?me(T).length-O:0);if(w.length>1||w[0]||fe(ne,ie))return Mr(e.doc,w,ne,ie,"+input"),!0},De.prototype.ensurePolled=function(){this.forceCompositionEnd()},De.prototype.reset=function(){this.forceCompositionEnd()},De.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},De.prototype.readFromDOMSoon=function(){var e=this;this.readDOMTimeout==null&&(this.readDOMTimeout=setTimeout(function(){if(e.readDOMTimeout=null,e.composing)if(e.composing.done)e.composing=null;else return;e.updateFromDOM()},80))},De.prototype.updateFromDOM=function(){var e=this;(this.cm.isReadOnly()||!this.pollContent())&&ut(this.cm,function(){return nt(e.cm)})},De.prototype.setUneditable=function(e){e.contentEditable="false"},De.prototype.onKeyPress=function(e){e.charCode==0||this.composing||(e.preventDefault(),this.cm.isReadOnly()||Ue(this.cm,Wo)(this.cm,String.fromCharCode(e.charCode==null?e.keyCode:e.charCode),0))},De.prototype.readOnlyChanged=function(e){this.div.contentEditable=String(e!="nocursor")},De.prototype.onContextMenu=function(){},De.prototype.resetPosition=function(){},De.prototype.needsContentAttribute=!0;function vs(e,t){var i=so(e,t.line);if(!i||i.hidden)return null;var r=re(e.doc,t.line),n=Ga(i,r,t.line),o=Mt(r,e.doc.direction),s="left";if(o){var h=Kr(o,t.ch);s=h%2?"right":"left"}var v=Ya(n.map,t.ch,s);return v.offset=v.collapse=="right"?v.end:v.start,v}function Ic(e){for(var t=e;t;t=t.parentNode)if(/CodeMirror-gutter-wrapper/.test(t.className))return!0;return!1}function Or(e,t){return t&&(e.bad=!0),e}function zc(e,t,i,r,n){var o="",s=!1,h=e.doc.lineSeparator(),v=!1;function m(E){return function(O){return O.id==E}}function x(){s&&(o+=h,v&&(o+=h),s=v=!1)}function w(E){E&&(x(),o+=E)}function T(E){if(E.nodeType==1){var O=E.getAttribute("cm-text");if(O){w(O);return}var P=E.getAttribute("cm-marker"),j;if(P){var Y=e.findMarks(q(r,0),q(n+1,0),m(+P));Y.length&&(j=Y[0].find(0))&&w(er(e.doc,j.from,j.to).join(h));return}if(E.getAttribute("contenteditable")=="false")return;var Q=/^(pre|div|p|li|table|br)$/i.test(E.nodeName);if(!/^br$/i.test(E.nodeName)&&E.textContent.length==0)return;Q&&x();for(var Z=0;Z=9&&t.hasSelection&&(t.hasSelection=null),i.poll()}),oe(n,"paste",function(s){We(r,s)||cs(s,r)||(r.state.pasteIncoming=+new Date,i.fastPoll())});function o(s){if(!We(r,s)){if(r.somethingSelected())nn({lineWise:!1,text:r.getSelections()});else if(r.options.lineWiseCopyCut){var h=hs(r);nn({lineWise:!0,text:h.text}),s.type=="cut"?r.setSelections(h.ranges,null,rt):(i.prevInput="",n.value=h.text.join(` +`),k(n))}else return;s.type=="cut"&&(r.state.cutIncoming=+new Date)}}oe(n,"cut",o),oe(n,"copy",o),oe(e.scroller,"paste",function(s){if(!(It(e,s)||We(r,s))){if(!n.dispatchEvent){r.state.pasteIncoming=+new Date,i.focus();return}var h=new Event("paste");h.clipboardData=s.clipboardData,n.dispatchEvent(h)}}),oe(e.lineSpace,"selectstart",function(s){It(e,s)||it(s)}),oe(n,"compositionstart",function(){var s=r.getCursor("from");i.composing&&i.composing.range.clear(),i.composing={start:s,range:r.markText(s,r.getCursor("to"),{className:"CodeMirror-composing"})}}),oe(n,"compositionend",function(){i.composing&&(i.poll(),i.composing.range.clear(),i.composing=null)})},Ne.prototype.createField=function(e){this.wrapper=ps(),this.textarea=this.wrapper.firstChild;var t=this.cm.options;qo(this.textarea,t.spellcheck,t.autocorrect,t.autocapitalize)},Ne.prototype.screenReaderLabelChanged=function(e){e?this.textarea.setAttribute("aria-label",e):this.textarea.removeAttribute("aria-label")},Ne.prototype.prepareSelection=function(){var e=this.cm,t=e.display,i=e.doc,r=ol(e);if(e.options.moveInputWithCursor){var n=Dt(e,i.sel.primary().head,"div"),o=t.wrapper.getBoundingClientRect(),s=t.lineDiv.getBoundingClientRect();r.teTop=Math.max(0,Math.min(t.wrapper.clientHeight-10,n.top+s.top-o.top)),r.teLeft=Math.max(0,Math.min(t.wrapper.clientWidth-10,n.left+s.left-o.left))}return r},Ne.prototype.showSelection=function(e){var t=this.cm,i=t.display;de(i.cursorDiv,e.cursors),de(i.selectionDiv,e.selection),e.teTop!=null&&(this.wrapper.style.top=e.teTop+"px",this.wrapper.style.left=e.teLeft+"px")},Ne.prototype.reset=function(e){if(!(this.contextMenuPending||this.composing&&e)){var t=this.cm;if(this.resetting=!0,t.somethingSelected()){this.prevInput="";var i=t.getSelection();this.textarea.value=i,t.state.focused&&k(this.textarea),f&&p>=9&&(this.hasSelection=i)}else e||(this.prevInput=this.textarea.value="",f&&p>=9&&(this.hasSelection=null));this.resetting=!1}},Ne.prototype.getField=function(){return this.textarea},Ne.prototype.supportsTouch=function(){return!1},Ne.prototype.focus=function(){if(this.cm.options.readOnly!="nocursor"&&(!N||ve(be(this.textarea))!=this.textarea))try{this.textarea.focus()}catch{}},Ne.prototype.blur=function(){this.textarea.blur()},Ne.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},Ne.prototype.receivedFocus=function(){this.slowPoll()},Ne.prototype.slowPoll=function(){var e=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){e.poll(),e.cm.state.focused&&e.slowPoll()})},Ne.prototype.fastPoll=function(){var e=!1,t=this;t.pollingFast=!0;function i(){var r=t.poll();!r&&!e?(e=!0,t.polling.set(60,i)):(t.pollingFast=!1,t.slowPoll())}t.polling.set(20,i)},Ne.prototype.poll=function(){var e=this,t=this.cm,i=this.textarea,r=this.prevInput;if(this.contextMenuPending||this.resetting||!t.state.focused||Iu(i)&&!r&&!this.composing||t.isReadOnly()||t.options.disableInput||t.state.keySeq)return!1;var n=i.value;if(n==r&&!t.somethingSelected())return!1;if(f&&p>=9&&this.hasSelection===n||R&&/[\uf700-\uf7ff]/.test(n))return t.display.input.reset(),!1;if(t.doc.sel==t.display.selForContextMenu){var o=n.charCodeAt(0);if(o==8203&&!r&&(r="\u200B"),o==8666)return this.reset(),this.cm.execCommand("undo")}for(var s=0,h=Math.min(r.length,n.length);s1e3||n.indexOf(` +`)>-1?i.value=e.prevInput="":e.prevInput=n,e.composing&&(e.composing.range.clear(),e.composing.range=t.markText(e.composing.start,t.getCursor("to"),{className:"CodeMirror-composing"}))}),!0},Ne.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},Ne.prototype.onKeyPress=function(){f&&p>=9&&(this.hasSelection=null),this.fastPoll()},Ne.prototype.onContextMenu=function(e){var t=this,i=t.cm,r=i.display,n=t.textarea;t.contextMenuPending&&t.contextMenuPending();var o=nr(i,e),s=r.scroller.scrollTop;if(!o||F)return;var h=i.options.resetSelectionOnContextMenu;h&&i.doc.sel.contains(o)==-1&&Ue(i,Ze)(i.doc,jt(o),rt);var v=n.style.cssText,m=t.wrapper.style.cssText,x=t.wrapper.offsetParent.getBoundingClientRect();t.wrapper.style.cssText="position: static",n.style.cssText=`position: absolute; width: 30px; height: 30px; top: `+(e.clientY-x.top-5)+"px; left: "+(e.clientX-x.left-5)+`px; z-index: 1000; background: `+(f?"rgba(255, 255, 255, .05)":"transparent")+`; - outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);`;var w;b&&(w=n.ownerDocument.defaultView.scrollY),r.input.focus(),b&&n.ownerDocument.defaultView.scrollTo(null,w),r.input.reset(),i.somethingSelected()||(n.value=t.prevInput=" "),t.contextMenuPending=S,r.selForContextMenu=i.doc.sel,clearTimeout(r.detectingSelectAll);function L(){if(n.selectionStart!=null){var P=i.somethingSelected(),j="\u200B"+(P?n.value:"");n.value="\u21DA",n.value=j,t.prevInput=P?"":"\u200B",n.selectionStart=1,n.selectionEnd=j.length,r.selForContextMenu=i.doc.sel}}function S(){if(t.contextMenuPending==S&&(t.contextMenuPending=!1,t.wrapper.style.cssText=m,n.style.cssText=v,f&&p<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=s),n.selectionStart!=null)){(!f||f&&p<9)&&L();var P=0,j=function(){r.selForContextMenu==i.doc.sel&&n.selectionStart==0&&n.selectionEnd>0&&t.prevInput=="\u200B"?Ue(i,zl)(i):P++<10?r.detectingSelectAll=setTimeout(j,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(j,200)}}if(f&&p>=9&&L(),ge){Xr(e);var O=function(){ht(window,"mouseup",O),setTimeout(S,20)};oe(window,"mouseup",O)}else setTimeout(S,50)},Ne.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled=e=="nocursor",this.textarea.readOnly=!!e},Ne.prototype.setUneditable=function(){},Ne.prototype.needsContentAttribute=!1;function Hc(e,t){if(t=t?dt(t):{},t.value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),t.autofocus==null){var i=ve(ye(e));t.autofocus=i==e||e.getAttribute("autofocus")!=null&&i==document.body}function r(){e.value=h.getValue()}var n;if(e.form&&(oe(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;n=o.submit;try{var s=o.submit=function(){r(),o.submit=n,o.submit(),o.submit=s}}catch{}}t.finishInit=function(v){v.save=r,v.getTextArea=function(){return e},v.toTextArea=function(){v.toTextArea=isNaN,r(),e.parentNode.removeChild(v.getWrapperElement()),e.style.display="",e.form&&(ht(e.form,"submit",r),!t.leaveSubmitMethodAlone&&typeof e.form.submit=="function"&&(e.form.submit=n))}},e.style.display="none";var h=Ee(function(v){return e.parentNode.insertBefore(v,e.nextSibling)},t);return h}function Rc(e){e.off=ht,e.on=oe,e.wheelEventPixels=Gf,e.Doc=ot,e.splitLines=Un,e.countColumn=Re,e.findColumn=St,e.isWordChar=On,e.Pass=Pe,e.signal=Ie,e.Line=xr,e.changeEnd=Gt,e.scrollbarModel=cl,e.Pos=q,e.cmpPos=fe,e.modes=Gn,e.mimeModes=yr,e.resolveMode=Ei,e.getMode=Kn,e.modeExtensions=br,e.extendMode=Pu,e.copyState=Vt,e.startState=ma,e.innerMode=Xn,e.commands=mi,e.keyMap=Ot,e.keyName=Jl,e.isModifierKey=Zl,e.lookupKey=Nr,e.normalizeKeyMap=hc,e.StringStream=ze,e.SharedTextMarker=pi,e.TextMarker=Xt,e.LineWidget=hi,e.e_preventDefault=it,e.e_stopPropagation=ga,e.e_stop=Xr,e.addClass=Te,e.contains=V,e.rmClass=ue,e.keyNames=Yt}Lc(Ee),Nc(Ee);var Pc="iter insert remove copy getEditor constructor".split(" ");for(var an in ot.prototype)ot.prototype.hasOwnProperty(an)&&Fe(Pc,an)<0&&(Ee.prototype[an]=function(e){return function(){return e.apply(this.doc,arguments)}}(ot.prototype[an]));return mr(ot),Ee.inputStyles={textarea:Ne,contenteditable:De},Ee.defineMode=function(e){!Ee.defaults.mode&&e!="null"&&(Ee.defaults.mode=e),Hu.apply(this,arguments)},Ee.defineMIME=Ru,Ee.defineMode("null",function(){return{token:function(e){return e.skipToEnd()}}}),Ee.defineMIME("text/plain","null"),Ee.defineExtension=function(e,t){Ee.prototype[e]=t},Ee.defineDocExtension=function(e,t){ot.prototype[e]=t},Ee.fromTextArea=Hc,Rc(Ee),Ee.version="5.65.21",Ee})});var xs=Ye((ys,bs)=>{(function(a){typeof ys=="object"&&typeof bs=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";var c=/^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/,d=/^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/,l=/[*+-]\s/;a.commands.newlineAndIndentContinueMarkdownList=function(g){if(g.getOption("disableInput"))return a.Pass;for(var f=g.listSelections(),p=[],b=0;b\s*$/.test(z),N=!/>\s*$/.test(z);(B||N)&&g.replaceRange("",{line:C.line,ch:0},{line:C.line,ch:C.ch+1}),p[b]=` -`}else{var R=I[1],H=I[5],_=!(l.test(I[2])||I[2].indexOf(">")>=0),X=_?parseInt(I[3],10)+1+I[4]:I[2].replace("x"," ");p[b]=` -`+R+X+H,_&&u(g,C)}}g.replaceSelections(p)};function u(g,f){var p=f.line,b=0,C=0,D=c.exec(g.getLine(p)),E=D[1];do{b+=1;var T=p+b,M=g.getLine(T),z=c.exec(M);if(z){var I=z[1],F=parseInt(D[3],10)+b-C,B=parseInt(z[3],10),N=B;if(E===I&&!isNaN(B))F===B&&(N=B+1),F>B&&(N=F+1),g.replaceRange(M.replace(c,I+N+z[4]+z[5]),{line:T,ch:0},{line:T,ch:M.length});else{if(E.length>I.length||E.length{var Ds=ct();Ds.commands.tabAndIndentMarkdownList=function(a){var c=a.listSelections(),d=c[0].head,l=a.getStateAfter(d.line),u=l.list!==!1;if(u){a.execCommand("indentMore");return}if(a.options.indentWithTabs)a.execCommand("insertTab");else{var g=Array(a.options.tabSize+1).join(" ");a.replaceSelection(g)}};Ds.commands.shiftTabAndUnindentMarkdownList=function(a){var c=a.listSelections(),d=c[0].head,l=a.getStateAfter(d.line),u=l.list!==!1;if(u){a.execCommand("indentLess");return}if(a.options.indentWithTabs)a.execCommand("insertTab");else{var g=Array(a.options.tabSize+1).join(" ");a.replaceSelection(g)}}});var Ss=Ye((ws,ks)=>{(function(a){typeof ws=="object"&&typeof ks=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.defineOption("fullScreen",!1,function(l,u,g){g==a.Init&&(g=!1),!g!=!u&&(u?c(l):d(l))});function c(l){var u=l.getWrapperElement();l.state.fullScreenRestore={scrollTop:window.pageYOffset,scrollLeft:window.pageXOffset,width:u.style.width,height:u.style.height},u.style.width="",u.style.height="auto",u.className+=" CodeMirror-fullscreen",document.documentElement.style.overflow="hidden",l.refresh()}function d(l){var u=l.getWrapperElement();u.className=u.className.replace(/\s*CodeMirror-fullscreen\b/,""),document.documentElement.style.overflow="";var g=l.state.fullScreenRestore;u.style.width=g.width,u.style.height=g.height,window.scrollTo(g.scrollLeft,g.scrollTop),l.refresh()}})});var Yo=Ye((Fs,Es)=>{(function(a){typeof Fs=="object"&&typeof Es=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";var c={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0},d={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,allowMissingTagName:!1,caseFold:!1};a.defineMode("xml",function(l,u){var g=l.indentUnit,f={},p=u.htmlMode?c:d;for(var b in p)f[b]=p[b];for(var b in u)f[b]=u[b];var C,D;function E(A,U){function W(Te){return U.tokenize=Te,Te(A,U)}var V=A.next();if(V=="<")return A.eat("!")?A.eat("[")?A.match("CDATA[")?W(z("atom","]]>")):null:A.match("--")?W(z("comment","-->")):A.match("DOCTYPE",!0,!0)?(A.eatWhile(/[\w\._\-]/),W(I(1))):null:A.eat("?")?(A.eatWhile(/[\w\._\-]/),U.tokenize=z("meta","?>"),"meta"):(C=A.eat("/")?"closeTag":"openTag",U.tokenize=T,"tag bracket");if(V=="&"){var ve;return A.eat("#")?A.eat("x")?ve=A.eatWhile(/[a-fA-F\d]/)&&A.eat(";"):ve=A.eatWhile(/[\d]/)&&A.eat(";"):ve=A.eatWhile(/[\w\.\-:]/)&&A.eat(";"),ve?"atom":"error"}else return A.eatWhile(/[^&<]/),null}E.isInText=!0;function T(A,U){var W=A.next();if(W==">"||W=="/"&&A.eat(">"))return U.tokenize=E,C=W==">"?"endTag":"selfcloseTag","tag bracket";if(W=="=")return C="equals",null;if(W=="<"){U.tokenize=E,U.state=H,U.tagName=U.tagStart=null;var V=U.tokenize(A,U);return V?V+" tag error":"tag error"}else return/[\'\"]/.test(W)?(U.tokenize=M(W),U.stringStartCol=A.column(),U.tokenize(A,U)):(A.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function M(A){var U=function(W,V){for(;!W.eol();)if(W.next()==A){V.tokenize=T;break}return"string"};return U.isInAttribute=!0,U}function z(A,U){return function(W,V){for(;!W.eol();){if(W.match(U)){V.tokenize=E;break}W.next()}return A}}function I(A){return function(U,W){for(var V;(V=U.next())!=null;){if(V=="<")return W.tokenize=I(A+1),W.tokenize(U,W);if(V==">")if(A==1){W.tokenize=E;break}else return W.tokenize=I(A-1),W.tokenize(U,W)}return"meta"}}function F(A){return A&&A.toLowerCase()}function B(A,U,W){this.prev=A.context,this.tagName=U||"",this.indent=A.indented,this.startOfLine=W,(f.doNotIndent.hasOwnProperty(U)||A.context&&A.context.noIndent)&&(this.noIndent=!0)}function N(A){A.context&&(A.context=A.context.prev)}function R(A,U){for(var W;;){if(!A.context||(W=A.context.tagName,!f.contextGrabbers.hasOwnProperty(F(W))||!f.contextGrabbers[F(W)].hasOwnProperty(F(U))))return;N(A)}}function H(A,U,W){return A=="openTag"?(W.tagStart=U.column(),_):A=="closeTag"?X:H}function _(A,U,W){return A=="word"?(W.tagName=U.current(),D="tag",G):f.allowMissingTagName&&A=="endTag"?(D="tag bracket",G(A,U,W)):(D="error",_)}function X(A,U,W){if(A=="word"){var V=U.current();return W.context&&W.context.tagName!=V&&f.implicitlyClosed.hasOwnProperty(F(W.context.tagName))&&N(W),W.context&&W.context.tagName==V||f.matchClosing===!1?(D="tag",K):(D="tag error",ge)}else return f.allowMissingTagName&&A=="endTag"?(D="tag bracket",K(A,U,W)):(D="error",ge)}function K(A,U,W){return A!="endTag"?(D="error",K):(N(W),H)}function ge(A,U,W){return D="error",K(A,U,W)}function G(A,U,W){if(A=="word")return D="attribute",ue;if(A=="endTag"||A=="selfcloseTag"){var V=W.tagName,ve=W.tagStart;return W.tagName=W.tagStart=null,A=="selfcloseTag"||f.autoSelfClosers.hasOwnProperty(F(V))?R(W,V):(R(W,V),W.context=new B(W,V,ve==W.indented)),H}return D="error",G}function ue(A,U,W){return A=="equals"?ae:(f.allowMissing||(D="error"),G(A,U,W))}function ae(A,U,W){return A=="string"?de:A=="word"&&f.allowUnquoted?(D="string",G):(D="error",G(A,U,W))}function de(A,U,W){return A=="string"?de:G(A,U,W)}return{startState:function(A){var U={tokenize:E,state:H,indented:A||0,tagName:null,tagStart:null,context:null};return A!=null&&(U.baseIndent=A),U},token:function(A,U){if(!U.tagName&&A.sol()&&(U.indented=A.indentation()),A.eatSpace())return null;C=null;var W=U.tokenize(A,U);return(W||C)&&W!="comment"&&(D=null,U.state=U.state(C||W,A,U),D&&(W=D=="error"?W+" error":D)),W},indent:function(A,U,W){var V=A.context;if(A.tokenize.isInAttribute)return A.tagStart==A.indented?A.stringStartCol+1:A.indented+g;if(V&&V.noIndent)return a.Pass;if(A.tokenize!=T&&A.tokenize!=E)return W?W.match(/^(\s*)/)[0].length:0;if(A.tagName)return f.multilineTagIndentPastTag!==!1?A.tagStart+A.tagName.length+2:A.tagStart+g*(f.multilineTagIndentFactor||1);if(f.alignCDATA&&/$/,blockCommentStart:"",configuration:f.htmlMode?"html":"xml",helperType:f.htmlMode?"html":"xml",skipAttribute:function(A){A.state==ae&&(A.state=G)},xmlCurrentTag:function(A){return A.tagName?{name:A.tagName,close:A.type=="closeTag"}:null},xmlCurrentContext:function(A){for(var U=[],W=A.context;W;W=W.prev)U.push(W.tagName);return U.reverse()}}}),a.defineMIME("text/xml","xml"),a.defineMIME("application/xml","xml"),a.mimeModes.hasOwnProperty("text/html")||a.defineMIME("text/html",{name:"xml",htmlMode:!0})})});var Ts=Ye((As,Ls)=>{(function(a){typeof As=="object"&&typeof Ls=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.modeInfo=[{name:"APL",mime:"text/apl",mode:"apl",ext:["dyalog","apl"]},{name:"PGP",mimes:["application/pgp","application/pgp-encrypted","application/pgp-keys","application/pgp-signature"],mode:"asciiarmor",ext:["asc","pgp","sig"]},{name:"ASN.1",mime:"text/x-ttcn-asn",mode:"asn.1",ext:["asn","asn1"]},{name:"Asterisk",mime:"text/x-asterisk",mode:"asterisk",file:/^extensions\.conf$/i},{name:"Brainfuck",mime:"text/x-brainfuck",mode:"brainfuck",ext:["b","bf"]},{name:"C",mime:"text/x-csrc",mode:"clike",ext:["c","h","ino"]},{name:"C++",mime:"text/x-c++src",mode:"clike",ext:["cpp","c++","cc","cxx","hpp","h++","hh","hxx"],alias:["cpp"]},{name:"Cobol",mime:"text/x-cobol",mode:"cobol",ext:["cob","cpy","cbl"]},{name:"C#",mime:"text/x-csharp",mode:"clike",ext:["cs"],alias:["csharp","cs"]},{name:"Clojure",mime:"text/x-clojure",mode:"clojure",ext:["clj","cljc","cljx"]},{name:"ClojureScript",mime:"text/x-clojurescript",mode:"clojure",ext:["cljs"]},{name:"Closure Stylesheets (GSS)",mime:"text/x-gss",mode:"css",ext:["gss"]},{name:"CMake",mime:"text/x-cmake",mode:"cmake",ext:["cmake","cmake.in"],file:/^CMakeLists\.txt$/},{name:"CoffeeScript",mimes:["application/vnd.coffeescript","text/coffeescript","text/x-coffeescript"],mode:"coffeescript",ext:["coffee"],alias:["coffee","coffee-script"]},{name:"Common Lisp",mime:"text/x-common-lisp",mode:"commonlisp",ext:["cl","lisp","el"],alias:["lisp"]},{name:"Cypher",mime:"application/x-cypher-query",mode:"cypher",ext:["cyp","cypher"]},{name:"Cython",mime:"text/x-cython",mode:"python",ext:["pyx","pxd","pxi"]},{name:"Crystal",mime:"text/x-crystal",mode:"crystal",ext:["cr"]},{name:"CSS",mime:"text/css",mode:"css",ext:["css"]},{name:"CQL",mime:"text/x-cassandra",mode:"sql",ext:["cql"]},{name:"D",mime:"text/x-d",mode:"d",ext:["d"]},{name:"Dart",mimes:["application/dart","text/x-dart"],mode:"dart",ext:["dart"]},{name:"diff",mime:"text/x-diff",mode:"diff",ext:["diff","patch"]},{name:"Django",mime:"text/x-django",mode:"django"},{name:"Dockerfile",mime:"text/x-dockerfile",mode:"dockerfile",file:/^Dockerfile$/},{name:"DTD",mime:"application/xml-dtd",mode:"dtd",ext:["dtd"]},{name:"Dylan",mime:"text/x-dylan",mode:"dylan",ext:["dylan","dyl","intr"]},{name:"EBNF",mime:"text/x-ebnf",mode:"ebnf"},{name:"ECL",mime:"text/x-ecl",mode:"ecl",ext:["ecl"]},{name:"edn",mime:"application/edn",mode:"clojure",ext:["edn"]},{name:"Eiffel",mime:"text/x-eiffel",mode:"eiffel",ext:["e"]},{name:"Elm",mime:"text/x-elm",mode:"elm",ext:["elm"]},{name:"Embedded JavaScript",mime:"application/x-ejs",mode:"htmlembedded",ext:["ejs"]},{name:"Embedded Ruby",mime:"application/x-erb",mode:"htmlembedded",ext:["erb"]},{name:"Erlang",mime:"text/x-erlang",mode:"erlang",ext:["erl"]},{name:"Esper",mime:"text/x-esper",mode:"sql"},{name:"Factor",mime:"text/x-factor",mode:"factor",ext:["factor"]},{name:"FCL",mime:"text/x-fcl",mode:"fcl"},{name:"Forth",mime:"text/x-forth",mode:"forth",ext:["forth","fth","4th"]},{name:"Fortran",mime:"text/x-fortran",mode:"fortran",ext:["f","for","f77","f90","f95"]},{name:"F#",mime:"text/x-fsharp",mode:"mllike",ext:["fs"],alias:["fsharp"]},{name:"Gas",mime:"text/x-gas",mode:"gas",ext:["s"]},{name:"Gherkin",mime:"text/x-feature",mode:"gherkin",ext:["feature"]},{name:"GitHub Flavored Markdown",mime:"text/x-gfm",mode:"gfm",file:/^(readme|contributing|history)\.md$/i},{name:"Go",mime:"text/x-go",mode:"go",ext:["go"]},{name:"Groovy",mime:"text/x-groovy",mode:"groovy",ext:["groovy","gradle"],file:/^Jenkinsfile$/},{name:"HAML",mime:"text/x-haml",mode:"haml",ext:["haml"]},{name:"Haskell",mime:"text/x-haskell",mode:"haskell",ext:["hs"]},{name:"Haskell (Literate)",mime:"text/x-literate-haskell",mode:"haskell-literate",ext:["lhs"]},{name:"Haxe",mime:"text/x-haxe",mode:"haxe",ext:["hx"]},{name:"HXML",mime:"text/x-hxml",mode:"haxe",ext:["hxml"]},{name:"ASP.NET",mime:"application/x-aspx",mode:"htmlembedded",ext:["aspx"],alias:["asp","aspx"]},{name:"HTML",mime:"text/html",mode:"htmlmixed",ext:["html","htm","handlebars","hbs"],alias:["xhtml"]},{name:"HTTP",mime:"message/http",mode:"http"},{name:"IDL",mime:"text/x-idl",mode:"idl",ext:["pro"]},{name:"Pug",mime:"text/x-pug",mode:"pug",ext:["jade","pug"],alias:["jade"]},{name:"Java",mime:"text/x-java",mode:"clike",ext:["java"]},{name:"Java Server Pages",mime:"application/x-jsp",mode:"htmlembedded",ext:["jsp"],alias:["jsp"]},{name:"JavaScript",mimes:["text/javascript","text/ecmascript","application/javascript","application/x-javascript","application/ecmascript"],mode:"javascript",ext:["js"],alias:["ecmascript","js","node"]},{name:"JSON",mimes:["application/json","application/x-json"],mode:"javascript",ext:["json","map"],alias:["json5"]},{name:"JSON-LD",mime:"application/ld+json",mode:"javascript",ext:["jsonld"],alias:["jsonld"]},{name:"JSX",mime:"text/jsx",mode:"jsx",ext:["jsx"]},{name:"Jinja2",mime:"text/jinja2",mode:"jinja2",ext:["j2","jinja","jinja2"]},{name:"Julia",mime:"text/x-julia",mode:"julia",ext:["jl"],alias:["jl"]},{name:"Kotlin",mime:"text/x-kotlin",mode:"clike",ext:["kt"]},{name:"LESS",mime:"text/x-less",mode:"css",ext:["less"]},{name:"LiveScript",mime:"text/x-livescript",mode:"livescript",ext:["ls"],alias:["ls"]},{name:"Lua",mime:"text/x-lua",mode:"lua",ext:["lua"]},{name:"Markdown",mime:"text/x-markdown",mode:"markdown",ext:["markdown","md","mkd"]},{name:"mIRC",mime:"text/mirc",mode:"mirc"},{name:"MariaDB SQL",mime:"text/x-mariadb",mode:"sql"},{name:"Mathematica",mime:"text/x-mathematica",mode:"mathematica",ext:["m","nb","wl","wls"]},{name:"Modelica",mime:"text/x-modelica",mode:"modelica",ext:["mo"]},{name:"MUMPS",mime:"text/x-mumps",mode:"mumps",ext:["mps"]},{name:"MS SQL",mime:"text/x-mssql",mode:"sql"},{name:"mbox",mime:"application/mbox",mode:"mbox",ext:["mbox"]},{name:"MySQL",mime:"text/x-mysql",mode:"sql"},{name:"Nginx",mime:"text/x-nginx-conf",mode:"nginx",file:/nginx.*\.conf$/i},{name:"NSIS",mime:"text/x-nsis",mode:"nsis",ext:["nsh","nsi"]},{name:"NTriples",mimes:["application/n-triples","application/n-quads","text/n-triples"],mode:"ntriples",ext:["nt","nq"]},{name:"Objective-C",mime:"text/x-objectivec",mode:"clike",ext:["m"],alias:["objective-c","objc"]},{name:"Objective-C++",mime:"text/x-objectivec++",mode:"clike",ext:["mm"],alias:["objective-c++","objc++"]},{name:"OCaml",mime:"text/x-ocaml",mode:"mllike",ext:["ml","mli","mll","mly"]},{name:"Octave",mime:"text/x-octave",mode:"octave",ext:["m"]},{name:"Oz",mime:"text/x-oz",mode:"oz",ext:["oz"]},{name:"Pascal",mime:"text/x-pascal",mode:"pascal",ext:["p","pas"]},{name:"PEG.js",mime:"null",mode:"pegjs",ext:["jsonld"]},{name:"Perl",mime:"text/x-perl",mode:"perl",ext:["pl","pm"]},{name:"PHP",mimes:["text/x-php","application/x-httpd-php","application/x-httpd-php-open"],mode:"php",ext:["php","php3","php4","php5","php7","phtml"]},{name:"Pig",mime:"text/x-pig",mode:"pig",ext:["pig"]},{name:"Plain Text",mime:"text/plain",mode:"null",ext:["txt","text","conf","def","list","log"]},{name:"PLSQL",mime:"text/x-plsql",mode:"sql",ext:["pls"]},{name:"PostgreSQL",mime:"text/x-pgsql",mode:"sql"},{name:"PowerShell",mime:"application/x-powershell",mode:"powershell",ext:["ps1","psd1","psm1"]},{name:"Properties files",mime:"text/x-properties",mode:"properties",ext:["properties","ini","in"],alias:["ini","properties"]},{name:"ProtoBuf",mime:"text/x-protobuf",mode:"protobuf",ext:["proto"]},{name:"Python",mime:"text/x-python",mode:"python",ext:["BUILD","bzl","py","pyw"],file:/^(BUCK|BUILD)$/},{name:"Puppet",mime:"text/x-puppet",mode:"puppet",ext:["pp"]},{name:"Q",mime:"text/x-q",mode:"q",ext:["q"]},{name:"R",mime:"text/x-rsrc",mode:"r",ext:["r","R"],alias:["rscript"]},{name:"reStructuredText",mime:"text/x-rst",mode:"rst",ext:["rst"],alias:["rst"]},{name:"RPM Changes",mime:"text/x-rpm-changes",mode:"rpm"},{name:"RPM Spec",mime:"text/x-rpm-spec",mode:"rpm",ext:["spec"]},{name:"Ruby",mime:"text/x-ruby",mode:"ruby",ext:["rb"],alias:["jruby","macruby","rake","rb","rbx"]},{name:"Rust",mime:"text/x-rustsrc",mode:"rust",ext:["rs"]},{name:"SAS",mime:"text/x-sas",mode:"sas",ext:["sas"]},{name:"Sass",mime:"text/x-sass",mode:"sass",ext:["sass"]},{name:"Scala",mime:"text/x-scala",mode:"clike",ext:["scala"]},{name:"Scheme",mime:"text/x-scheme",mode:"scheme",ext:["scm","ss"]},{name:"SCSS",mime:"text/x-scss",mode:"css",ext:["scss"]},{name:"Shell",mimes:["text/x-sh","application/x-sh"],mode:"shell",ext:["sh","ksh","bash"],alias:["bash","sh","zsh"],file:/^PKGBUILD$/},{name:"Sieve",mime:"application/sieve",mode:"sieve",ext:["siv","sieve"]},{name:"Slim",mimes:["text/x-slim","application/x-slim"],mode:"slim",ext:["slim"]},{name:"Smalltalk",mime:"text/x-stsrc",mode:"smalltalk",ext:["st"]},{name:"Smarty",mime:"text/x-smarty",mode:"smarty",ext:["tpl"]},{name:"Solr",mime:"text/x-solr",mode:"solr"},{name:"SML",mime:"text/x-sml",mode:"mllike",ext:["sml","sig","fun","smackspec"]},{name:"Soy",mime:"text/x-soy",mode:"soy",ext:["soy"],alias:["closure template"]},{name:"SPARQL",mime:"application/sparql-query",mode:"sparql",ext:["rq","sparql"],alias:["sparul"]},{name:"Spreadsheet",mime:"text/x-spreadsheet",mode:"spreadsheet",alias:["excel","formula"]},{name:"SQL",mime:"text/x-sql",mode:"sql",ext:["sql"]},{name:"SQLite",mime:"text/x-sqlite",mode:"sql"},{name:"Squirrel",mime:"text/x-squirrel",mode:"clike",ext:["nut"]},{name:"Stylus",mime:"text/x-styl",mode:"stylus",ext:["styl"]},{name:"Swift",mime:"text/x-swift",mode:"swift",ext:["swift"]},{name:"sTeX",mime:"text/x-stex",mode:"stex"},{name:"LaTeX",mime:"text/x-latex",mode:"stex",ext:["text","ltx","tex"],alias:["tex"]},{name:"SystemVerilog",mime:"text/x-systemverilog",mode:"verilog",ext:["v","sv","svh"]},{name:"Tcl",mime:"text/x-tcl",mode:"tcl",ext:["tcl"]},{name:"Textile",mime:"text/x-textile",mode:"textile",ext:["textile"]},{name:"TiddlyWiki",mime:"text/x-tiddlywiki",mode:"tiddlywiki"},{name:"Tiki wiki",mime:"text/tiki",mode:"tiki"},{name:"TOML",mime:"text/x-toml",mode:"toml",ext:["toml"]},{name:"Tornado",mime:"text/x-tornado",mode:"tornado"},{name:"troff",mime:"text/troff",mode:"troff",ext:["1","2","3","4","5","6","7","8","9"]},{name:"TTCN",mime:"text/x-ttcn",mode:"ttcn",ext:["ttcn","ttcn3","ttcnpp"]},{name:"TTCN_CFG",mime:"text/x-ttcn-cfg",mode:"ttcn-cfg",ext:["cfg"]},{name:"Turtle",mime:"text/turtle",mode:"turtle",ext:["ttl"]},{name:"TypeScript",mime:"application/typescript",mode:"javascript",ext:["ts"],alias:["ts"]},{name:"TypeScript-JSX",mime:"text/typescript-jsx",mode:"jsx",ext:["tsx"],alias:["tsx"]},{name:"Twig",mime:"text/x-twig",mode:"twig"},{name:"Web IDL",mime:"text/x-webidl",mode:"webidl",ext:["webidl"]},{name:"VB.NET",mime:"text/x-vb",mode:"vb",ext:["vb"]},{name:"VBScript",mime:"text/vbscript",mode:"vbscript",ext:["vbs"]},{name:"Velocity",mime:"text/velocity",mode:"velocity",ext:["vtl"]},{name:"Verilog",mime:"text/x-verilog",mode:"verilog",ext:["v"]},{name:"VHDL",mime:"text/x-vhdl",mode:"vhdl",ext:["vhd","vhdl"]},{name:"Vue.js Component",mimes:["script/x-vue","text/x-vue"],mode:"vue",ext:["vue"]},{name:"XML",mimes:["application/xml","text/xml"],mode:"xml",ext:["xml","xsl","xsd","svg"],alias:["rss","wsdl","xsd"]},{name:"XQuery",mime:"application/xquery",mode:"xquery",ext:["xy","xquery"]},{name:"Yacas",mime:"text/x-yacas",mode:"yacas",ext:["ys"]},{name:"YAML",mimes:["text/x-yaml","text/yaml"],mode:"yaml",ext:["yaml","yml"],alias:["yml"]},{name:"Z80",mime:"text/x-z80",mode:"z80",ext:["z80"]},{name:"mscgen",mime:"text/x-mscgen",mode:"mscgen",ext:["mscgen","mscin","msc"]},{name:"xu",mime:"text/x-xu",mode:"mscgen",ext:["xu"]},{name:"msgenny",mime:"text/x-msgenny",mode:"mscgen",ext:["msgenny"]},{name:"WebAssembly",mime:"text/webassembly",mode:"wast",ext:["wat","wast"]}];for(var c=0;c-1&&l.substring(f+1,l.length);if(p)return a.findModeByExtension(p)},a.findModeByName=function(l){l=l.toLowerCase();for(var u=0;u{(function(a){typeof Ms=="object"&&typeof Bs=="object"?a(ct(),Yo(),Ts()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../xml/xml","../meta"],a):a(CodeMirror)})(function(a){"use strict";a.defineMode("markdown",function(c,d){var l=a.getMode(c,"text/html"),u=l.name=="null";function g(k){if(a.findModeByName){var y=a.findModeByName(k);y&&(k=y.mime||y.mimes[0])}var ee=a.getMode(c,k);return ee.name=="null"?null:ee}d.highlightFormatting===void 0&&(d.highlightFormatting=!1),d.maxBlockquoteDepth===void 0&&(d.maxBlockquoteDepth=0),d.taskLists===void 0&&(d.taskLists=!1),d.strikethrough===void 0&&(d.strikethrough=!1),d.emoji===void 0&&(d.emoji=!1),d.fencedCodeBlockHighlighting===void 0&&(d.fencedCodeBlockHighlighting=!0),d.fencedCodeBlockDefaultMode===void 0&&(d.fencedCodeBlockDefaultMode="text/plain"),d.xml===void 0&&(d.xml=!0),d.tokenTypeOverrides===void 0&&(d.tokenTypeOverrides={});var f={header:"header",code:"comment",quote:"quote",list1:"variable-2",list2:"variable-3",list3:"keyword",hr:"hr",image:"image",imageAltText:"image-alt-text",imageMarker:"image-marker",formatting:"formatting",linkInline:"link",linkEmail:"link",linkText:"link",linkHref:"string",em:"em",strong:"strong",strikethrough:"strikethrough",emoji:"builtin"};for(var p in f)f.hasOwnProperty(p)&&d.tokenTypeOverrides[p]&&(f[p]=d.tokenTypeOverrides[p]);var b=/^([*\-_])(?:\s*\1){2,}\s*$/,C=/^(?:[*\-+]|^[0-9]+([.)]))\s+/,D=/^\[(x| )\](?=\s)/i,E=d.allowAtxHeaderWithoutSpace?/^(#+)/:/^(#+)(?: |$)/,T=/^ {0,3}(?:\={1,}|-{2,})\s*$/,M=/^[^#!\[\]*_\\<>` "'(~:]+/,z=/^(~~~+|```+)[ \t]*([\w\/+#-]*)[^\n`]*$/,I=/^\s*\[[^\]]+?\]:.*$/,F=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E42\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDF3C-\uDF3E]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]/,B=" ";function N(k,y,ee){return y.f=y.inline=ee,ee(k,y)}function R(k,y,ee){return y.f=y.block=ee,ee(k,y)}function H(k){return!k||!/\S/.test(k.string)}function _(k){if(k.linkTitle=!1,k.linkHref=!1,k.linkText=!1,k.em=!1,k.strong=!1,k.strikethrough=!1,k.quote=0,k.indentedCode=!1,k.f==K){var y=u;if(!y){var ee=a.innerMode(l,k.htmlState);y=ee.mode.name=="xml"&&ee.state.tagStart===null&&!ee.state.context&&ee.state.tokenize.isInText}y&&(k.f=ae,k.block=X,k.htmlState=null)}return k.trailingSpace=0,k.trailingSpaceNewLine=!1,k.prevLine=k.thisLine,k.thisLine={stream:null},null}function X(k,y){var ee=k.column()===y.indentation,ye=H(y.prevLine.stream),he=y.indentedCode,tt=y.prevLine.hr,dt=y.list!==!1,Re=(y.listStack[y.listStack.length-1]||0)+3;y.indentedCode=!1;var Je=y.indentation;if(y.indentationDiff===null&&(y.indentationDiff=y.indentation,dt)){for(y.list=null;Je=4&&(he||y.prevLine.fencedCodeEnd||y.prevLine.header||ye))return k.skipToEnd(),y.indentedCode=!0,f.code;if(k.eatSpace())return null;if(ee&&y.indentation<=Re&&(Pe=k.match(E))&&Pe[1].length<=6)return y.quote=0,y.header=Pe[1].length,y.thisLine.header=!0,d.highlightFormatting&&(y.formatting="header"),y.f=y.inline,G(y);if(y.indentation<=Re&&k.eat(">"))return y.quote=ee?1:y.quote+1,d.highlightFormatting&&(y.formatting="quote"),k.eatSpace(),G(y);if(!Me&&!y.setext&&ee&&y.indentation<=Re&&(Pe=k.match(C))){var rt=Pe[1]?"ol":"ul";return y.indentation=Je+k.current().length,y.list=!0,y.quote=0,y.listStack.push(y.indentation),y.em=!1,y.strong=!1,y.code=!1,y.strikethrough=!1,d.taskLists&&k.match(D,!1)&&(y.taskList=!0),y.f=y.inline,d.highlightFormatting&&(y.formatting=["list","list-"+rt]),G(y)}else{if(ee&&y.indentation<=Re&&(Pe=k.match(z,!0)))return y.quote=0,y.fencedEndRE=new RegExp(Pe[1]+"+ *$"),y.localMode=d.fencedCodeBlockHighlighting&&g(Pe[2]||d.fencedCodeBlockDefaultMode),y.localMode&&(y.localState=a.startState(y.localMode)),y.f=y.block=ge,d.highlightFormatting&&(y.formatting="code-block"),y.code=-1,G(y);if(y.setext||(!Fe||!dt)&&!y.quote&&y.list===!1&&!y.code&&!Me&&!I.test(k.string)&&(Pe=k.lookAhead(1))&&(Pe=Pe.match(T)))return y.setext?(y.header=y.setext,y.setext=0,k.skipToEnd(),d.highlightFormatting&&(y.formatting="header")):(y.header=Pe[0].charAt(0)=="="?1:2,y.setext=y.header),y.thisLine.header=!0,y.f=y.inline,G(y);if(Me)return k.skipToEnd(),y.hr=!0,y.thisLine.hr=!0,f.hr;if(k.peek()==="[")return N(k,y,V)}return N(k,y,y.inline)}function K(k,y){var ee=l.token(k,y.htmlState);if(!u){var ye=a.innerMode(l,y.htmlState);(ye.mode.name=="xml"&&ye.state.tagStart===null&&!ye.state.context&&ye.state.tokenize.isInText||y.md_inside&&k.current().indexOf(">")>-1)&&(y.f=ae,y.block=X,y.htmlState=null)}return ee}function ge(k,y){var ee=y.listStack[y.listStack.length-1]||0,ye=y.indentation=k.quote?y.push(f.formatting+"-"+k.formatting[ee]+"-"+k.quote):y.push("error"))}if(k.taskOpen)return y.push("meta"),y.length?y.join(" "):null;if(k.taskClosed)return y.push("property"),y.length?y.join(" "):null;if(k.linkHref?y.push(f.linkHref,"url"):(k.strong&&y.push(f.strong),k.em&&y.push(f.em),k.strikethrough&&y.push(f.strikethrough),k.emoji&&y.push(f.emoji),k.linkText&&y.push(f.linkText),k.code&&y.push(f.code),k.image&&y.push(f.image),k.imageAltText&&y.push(f.imageAltText,"link"),k.imageMarker&&y.push(f.imageMarker)),k.header&&y.push(f.header,f.header+"-"+k.header),k.quote&&(y.push(f.quote),!d.maxBlockquoteDepth||d.maxBlockquoteDepth>=k.quote?y.push(f.quote+"-"+k.quote):y.push(f.quote+"-"+d.maxBlockquoteDepth)),k.list!==!1){var ye=(k.listStack.length-1)%3;ye?ye===1?y.push(f.list2):y.push(f.list3):y.push(f.list1)}return k.trailingSpaceNewLine?y.push("trailing-space-new-line"):k.trailingSpace&&y.push("trailing-space-"+(k.trailingSpace%2?"a":"b")),y.length?y.join(" "):null}function ue(k,y){if(k.match(M,!0))return G(y)}function ae(k,y){var ee=y.text(k,y);if(typeof ee<"u")return ee;if(y.list)return y.list=null,G(y);if(y.taskList){var ye=k.match(D,!0)[1]===" ";return ye?y.taskOpen=!0:y.taskClosed=!0,d.highlightFormatting&&(y.formatting="task"),y.taskList=!1,G(y)}if(y.taskOpen=!1,y.taskClosed=!1,y.header&&k.match(/^#+$/,!0))return d.highlightFormatting&&(y.formatting="header"),G(y);var he=k.next();if(y.linkTitle){y.linkTitle=!1;var tt=he;he==="("&&(tt=")"),tt=(tt+"").replace(/([.?*+^\[\]\\(){}|-])/g,"\\$1");var dt="^\\s*(?:[^"+tt+"\\\\]+|\\\\\\\\|\\\\.)"+tt;if(k.match(new RegExp(dt),!0))return f.linkHref}if(he==="`"){var Re=y.formatting;d.highlightFormatting&&(y.formatting="code"),k.eatWhile("`");var Je=k.current().length;if(y.code==0&&(!y.quote||Je==1))return y.code=Je,G(y);if(Je==y.code){var Fe=G(y);return y.code=0,Fe}else return y.formatting=Re,G(y)}else if(y.code)return G(y);if(he==="\\"&&(k.next(),d.highlightFormatting)){var Me=G(y),Pe=f.formatting+"-escape";return Me?Me+" "+Pe:Pe}if(he==="!"&&k.match(/\[[^\]]*\] ?(?:\(|\[)/,!1))return y.imageMarker=!0,y.image=!0,d.highlightFormatting&&(y.formatting="image"),G(y);if(he==="["&&y.imageMarker&&k.match(/[^\]]*\](\(.*?\)| ?\[.*?\])/,!1))return y.imageMarker=!1,y.imageAltText=!0,d.highlightFormatting&&(y.formatting="image"),G(y);if(he==="]"&&y.imageAltText){d.highlightFormatting&&(y.formatting="image");var Me=G(y);return y.imageAltText=!1,y.image=!1,y.inline=y.f=A,Me}if(he==="["&&!y.image)return y.linkText&&k.match(/^.*?\]/)||(y.linkText=!0,d.highlightFormatting&&(y.formatting="link")),G(y);if(he==="]"&&y.linkText){d.highlightFormatting&&(y.formatting="link");var Me=G(y);return y.linkText=!1,y.inline=y.f=k.match(/\(.*?\)| ?\[.*?\]/,!1)?A:ae,Me}if(he==="<"&&k.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/,!1)){y.f=y.inline=de,d.highlightFormatting&&(y.formatting="link");var Me=G(y);return Me?Me+=" ":Me="",Me+f.linkInline}if(he==="<"&&k.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/,!1)){y.f=y.inline=de,d.highlightFormatting&&(y.formatting="link");var Me=G(y);return Me?Me+=" ":Me="",Me+f.linkEmail}if(d.xml&&he==="<"&&k.match(/^(!--|\?|!\[CDATA\[|[a-z][a-z0-9-]*(?:\s+[a-z_:.\-]+(?:\s*=\s*[^>]+)?)*\s*(?:>|$))/i,!1)){var rt=k.string.indexOf(">",k.pos);if(rt!=-1){var Ur=k.string.substring(k.start,rt);/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(Ur)&&(y.md_inside=!0)}return k.backUp(1),y.htmlState=a.startState(l),R(k,y,K)}if(d.xml&&he==="<"&&k.match(/^\/\w*?>/))return y.md_inside=!1,"tag";if(he==="*"||he==="_"){for(var kt=1,St=k.pos==1?" ":k.string.charAt(k.pos-2);kt<3&&k.eat(he);)kt++;var yt=k.peek()||" ",Pt=!/\s/.test(yt)&&(!F.test(yt)||/\s/.test(St)||F.test(St)),me=!/\s/.test(St)&&(!F.test(St)||/\s/.test(yt)||F.test(yt)),bt=null,_t=null;if(kt%2&&(!y.em&&Pt&&(he==="*"||!me||F.test(St))?bt=!0:y.em==he&&me&&(he==="*"||!Pt||F.test(yt))&&(bt=!1)),kt>1&&(!y.strong&&Pt&&(he==="*"||!me||F.test(St))?_t=!0:y.strong==he&&me&&(he==="*"||!Pt||F.test(yt))&&(_t=!1)),_t!=null||bt!=null){d.highlightFormatting&&(y.formatting=bt==null?"strong":_t==null?"em":"strong em"),bt===!0&&(y.em=he),_t===!0&&(y.strong=he);var Fe=G(y);return bt===!1&&(y.em=!1),_t===!1&&(y.strong=!1),Fe}}else if(he===" "&&(k.eat("*")||k.eat("_"))){if(k.peek()===" ")return G(y);k.backUp(1)}if(d.strikethrough){if(he==="~"&&k.eatWhile(he)){if(y.strikethrough){d.highlightFormatting&&(y.formatting="strikethrough");var Fe=G(y);return y.strikethrough=!1,Fe}else if(k.match(/^[^\s]/,!1))return y.strikethrough=!0,d.highlightFormatting&&(y.formatting="strikethrough"),G(y)}else if(he===" "&&k.match("~~",!0)){if(k.peek()===" ")return G(y);k.backUp(2)}}if(d.emoji&&he===":"&&k.match(/^(?:[a-z_\d+][a-z_\d+-]*|\-[a-z_\d+][a-z_\d+-]*):/)){y.emoji=!0,d.highlightFormatting&&(y.formatting="emoji");var Si=G(y);return y.emoji=!1,Si}return he===" "&&(k.match(/^ +$/,!1)?y.trailingSpace++:y.trailingSpace&&(y.trailingSpaceNewLine=!0)),G(y)}function de(k,y){var ee=k.next();if(ee===">"){y.f=y.inline=ae,d.highlightFormatting&&(y.formatting="link");var ye=G(y);return ye?ye+=" ":ye="",ye+f.linkInline}return k.match(/^[^>]+/,!0),f.linkInline}function A(k,y){if(k.eatSpace())return null;var ee=k.next();return ee==="("||ee==="["?(y.f=y.inline=W(ee==="("?")":"]"),d.highlightFormatting&&(y.formatting="link-string"),y.linkHref=!0,G(y)):"error"}var U={")":/^(?:[^\\\(\)]|\\.|\((?:[^\\\(\)]|\\.)*\))*?(?=\))/,"]":/^(?:[^\\\[\]]|\\.|\[(?:[^\\\[\]]|\\.)*\])*?(?=\])/};function W(k){return function(y,ee){var ye=y.next();if(ye===k){ee.f=ee.inline=ae,d.highlightFormatting&&(ee.formatting="link-string");var he=G(ee);return ee.linkHref=!1,he}return y.match(U[k]),ee.linkHref=!0,G(ee)}}function V(k,y){return k.match(/^([^\]\\]|\\.)*\]:/,!1)?(y.f=ve,k.next(),d.highlightFormatting&&(y.formatting="link"),y.linkText=!0,G(y)):N(k,y,ae)}function ve(k,y){if(k.match("]:",!0)){y.f=y.inline=Te,d.highlightFormatting&&(y.formatting="link");var ee=G(y);return y.linkText=!1,ee}return k.match(/^([^\]\\]|\\.)+/,!0),f.linkText}function Te(k,y){return k.eatSpace()?null:(k.match(/^[^\s]+/,!0),k.peek()===void 0?y.linkTitle=!0:k.match(/^(?:\s+(?:"(?:[^"\\]|\\.)+"|'(?:[^'\\]|\\.)+'|\((?:[^)\\]|\\.)+\)))?/,!0),y.f=y.inline=ae,f.linkHref+" url")}var vt={startState:function(){return{f:X,prevLine:{stream:null},thisLine:{stream:null},block:X,htmlState:null,indentation:0,inline:ae,text:ue,formatting:!1,linkText:!1,linkHref:!1,linkTitle:!1,code:0,em:!1,strong:!1,header:0,setext:0,hr:!1,taskList:!1,list:!1,listStack:[],quote:0,trailingSpace:0,trailingSpaceNewLine:!1,strikethrough:!1,emoji:!1,fencedEndRE:null}},copyState:function(k){return{f:k.f,prevLine:k.prevLine,thisLine:k.thisLine,block:k.block,htmlState:k.htmlState&&a.copyState(l,k.htmlState),indentation:k.indentation,localMode:k.localMode,localState:k.localMode?a.copyState(k.localMode,k.localState):null,inline:k.inline,text:k.text,formatting:!1,linkText:k.linkText,linkTitle:k.linkTitle,linkHref:k.linkHref,code:k.code,em:k.em,strong:k.strong,strikethrough:k.strikethrough,emoji:k.emoji,header:k.header,setext:k.setext,hr:k.hr,taskList:k.taskList,list:k.list,listStack:k.listStack.slice(0),quote:k.quote,indentedCode:k.indentedCode,trailingSpace:k.trailingSpace,trailingSpaceNewLine:k.trailingSpaceNewLine,md_inside:k.md_inside,fencedEndRE:k.fencedEndRE}},token:function(k,y){if(y.formatting=!1,k!=y.thisLine.stream){if(y.header=0,y.hr=!1,k.match(/^\s*$/,!0))return _(y),null;if(y.prevLine=y.thisLine,y.thisLine={stream:k},y.taskList=!1,y.trailingSpace=0,y.trailingSpaceNewLine=!1,!y.localState&&(y.f=y.block,y.f!=K)){var ee=k.match(/^\s*/,!0)[0].replace(/\t/g,B).length;if(y.indentation=ee,y.indentationDiff=null,ee>0)return null}}return y.f(k,y)},innerMode:function(k){return k.block==K?{state:k.htmlState,mode:l}:k.localState?{state:k.localState,mode:k.localMode}:{state:k,mode:vt}},indent:function(k,y,ee){return k.block==K&&l.indent?l.indent(k.htmlState,y,ee):k.localState&&k.localMode.indent?k.localMode.indent(k.localState,y,ee):a.Pass},blankLine:_,getType:G,blockCommentStart:"",closeBrackets:"()[]{}''\"\"``",fold:"markdown"};return vt},"xml"),a.defineMIME("text/markdown","markdown"),a.defineMIME("text/x-markdown","markdown")})});var Qo=Ye((Ns,Is)=>{(function(a){typeof Ns=="object"&&typeof Is=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.overlayMode=function(c,d,l){return{startState:function(){return{base:a.startState(c),overlay:a.startState(d),basePos:0,baseCur:null,overlayPos:0,overlayCur:null,streamSeen:null}},copyState:function(u){return{base:a.copyState(c,u.base),overlay:a.copyState(d,u.overlay),basePos:u.basePos,baseCur:null,overlayPos:u.overlayPos,overlayCur:null}},token:function(u,g){return(u!=g.streamSeen||Math.min(g.basePos,g.overlayPos){(function(a){typeof zs=="object"&&typeof Os=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){a.defineOption("placeholder","",function(p,b,C){var D=C&&C!=a.Init;if(b&&!D)p.on("blur",u),p.on("change",g),p.on("swapDoc",g),a.on(p.getInputField(),"compositionupdate",p.state.placeholderCompose=function(){l(p)}),g(p);else if(!b&&D){p.off("blur",u),p.off("change",g),p.off("swapDoc",g),a.off(p.getInputField(),"compositionupdate",p.state.placeholderCompose),c(p);var E=p.getWrapperElement();E.className=E.className.replace(" CodeMirror-empty","")}b&&!p.hasFocus()&&u(p)});function c(p){p.state.placeholder&&(p.state.placeholder.parentNode.removeChild(p.state.placeholder),p.state.placeholder=null)}function d(p){c(p);var b=p.state.placeholder=document.createElement("pre");b.style.cssText="height: 0; overflow: visible",b.style.direction=p.getOption("direction"),b.className="CodeMirror-placeholder CodeMirror-line-like";var C=p.getOption("placeholder");typeof C=="string"&&(C=document.createTextNode(C)),b.appendChild(C),p.display.lineSpace.insertBefore(b,p.display.lineSpace.firstChild)}function l(p){setTimeout(function(){var b=!1;if(p.lineCount()==1){var C=p.getInputField();b=C.nodeName=="TEXTAREA"?!p.getLine(0).length:!/[^\u200b]/.test(C.querySelector(".CodeMirror-line").textContent)}b?d(p):c(p)},20)}function u(p){f(p)&&d(p)}function g(p){var b=p.getWrapperElement(),C=f(p);b.className=b.className.replace(" CodeMirror-empty","")+(C?" CodeMirror-empty":""),C?d(p):c(p)}function f(p){return p.lineCount()===1&&p.getLine(0)===""}})});var _s=Ye((Rs,Ps)=>{(function(a){typeof Rs=="object"&&typeof Ps=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.defineOption("autoRefresh",!1,function(l,u){l.state.autoRefresh&&(d(l,l.state.autoRefresh),l.state.autoRefresh=null),u&&l.display.wrapper.offsetHeight==0&&c(l,l.state.autoRefresh={delay:u.delay||250})});function c(l,u){function g(){l.display.wrapper.offsetHeight?(d(l,u),l.display.lastWrapHeight!=l.display.wrapper.clientHeight&&l.refresh()):u.timeout=setTimeout(g,u.delay)}u.timeout=setTimeout(g,u.delay),u.hurry=function(){clearTimeout(u.timeout),u.timeout=setTimeout(g,50)},a.on(window,"mouseup",u.hurry),a.on(window,"keyup",u.hurry)}function d(l,u){clearTimeout(u.timeout),a.off(window,"mouseup",u.hurry),a.off(window,"keyup",u.hurry)}})});var Us=Ye((Ws,qs)=>{(function(a){typeof Ws=="object"&&typeof qs=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.defineOption("styleSelectedText",!1,function(D,E,T){var M=T&&T!=a.Init;E&&!M?(D.state.markedSelection=[],D.state.markedSelectionStyle=typeof E=="string"?E:"CodeMirror-selectedtext",b(D),D.on("cursorActivity",c),D.on("change",d)):!E&&M&&(D.off("cursorActivity",c),D.off("change",d),p(D),D.state.markedSelection=D.state.markedSelectionStyle=null)});function c(D){D.state.markedSelection&&D.operation(function(){C(D)})}function d(D){D.state.markedSelection&&D.state.markedSelection.length&&D.operation(function(){p(D)})}var l=8,u=a.Pos,g=a.cmpPos;function f(D,E,T,M){if(g(E,T)!=0)for(var z=D.state.markedSelection,I=D.state.markedSelectionStyle,F=E.line;;){var B=F==E.line?E:u(F,0),N=F+l,R=N>=T.line,H=R?T:u(N,0),_=D.markText(B,H,{className:I});if(M==null?z.push(_):z.splice(M++,0,_),R)break;F=N}}function p(D){for(var E=D.state.markedSelection,T=0;T1)return b(D);var E=D.getCursor("start"),T=D.getCursor("end"),M=D.state.markedSelection;if(!M.length)return f(D,E,T);var z=M[0].find(),I=M[M.length-1].find();if(!z||!I||T.line-E.line<=l||g(E,I.to)>=0||g(T,z.from)<=0)return b(D);for(;g(E,z.from)>0;)M.shift().clear(),z=M[0].find();for(g(E,z.from)<0&&(z.to.line-E.line0&&(T.line-I.from.line{(function(a){typeof js=="object"&&typeof Gs=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";var c=a.Pos;function d(F){var B=F.flags;return B??(F.ignoreCase?"i":"")+(F.global?"g":"")+(F.multiline?"m":"")}function l(F,B){for(var N=d(F),R=N,H=0;HX);K++){var ge=F.getLine(_++);R=R==null?ge:R+` + outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);`;var w;y&&(w=n.ownerDocument.defaultView.scrollY),r.input.focus(),y&&n.ownerDocument.defaultView.scrollTo(null,w),r.input.reset(),i.somethingSelected()||(n.value=t.prevInput=" "),t.contextMenuPending=E,r.selForContextMenu=i.doc.sel,clearTimeout(r.detectingSelectAll);function T(){if(n.selectionStart!=null){var P=i.somethingSelected(),j="\u200B"+(P?n.value:"");n.value="\u21DA",n.value=j,t.prevInput=P?"":"\u200B",n.selectionStart=1,n.selectionEnd=j.length,r.selForContextMenu=i.doc.sel}}function E(){if(t.contextMenuPending==E&&(t.contextMenuPending=!1,t.wrapper.style.cssText=m,n.style.cssText=v,f&&p<9&&r.scrollbars.setScrollTop(r.scroller.scrollTop=s),n.selectionStart!=null)){(!f||f&&p<9)&&T();var P=0,j=function(){r.selForContextMenu==i.doc.sel&&n.selectionStart==0&&n.selectionEnd>0&&t.prevInput=="\u200B"?Ue(i,zl)(i):P++<10?r.detectingSelectAll=setTimeout(j,500):(r.selForContextMenu=null,r.input.reset())};r.detectingSelectAll=setTimeout(j,200)}}if(f&&p>=9&&T(),ge){Xr(e);var O=function(){ht(window,"mouseup",O),setTimeout(E,20)};oe(window,"mouseup",O)}else setTimeout(E,50)},Ne.prototype.readOnlyChanged=function(e){e||this.reset(),this.textarea.disabled=e=="nocursor",this.textarea.readOnly=!!e},Ne.prototype.setUneditable=function(){},Ne.prototype.needsContentAttribute=!1;function Hc(e,t){if(t=t?dt(t):{},t.value=e.value,!t.tabindex&&e.tabIndex&&(t.tabindex=e.tabIndex),!t.placeholder&&e.placeholder&&(t.placeholder=e.placeholder),t.autofocus==null){var i=ve(be(e));t.autofocus=i==e||e.getAttribute("autofocus")!=null&&i==document.body}function r(){e.value=h.getValue()}var n;if(e.form&&(oe(e.form,"submit",r),!t.leaveSubmitMethodAlone)){var o=e.form;n=o.submit;try{var s=o.submit=function(){r(),o.submit=n,o.submit(),o.submit=s}}catch{}}t.finishInit=function(v){v.save=r,v.getTextArea=function(){return e},v.toTextArea=function(){v.toTextArea=isNaN,r(),e.parentNode.removeChild(v.getWrapperElement()),e.style.display="",e.form&&(ht(e.form,"submit",r),!t.leaveSubmitMethodAlone&&typeof e.form.submit=="function"&&(e.form.submit=n))}},e.style.display="none";var h=Ee(function(v){return e.parentNode.insertBefore(v,e.nextSibling)},t);return h}function Rc(e){e.off=ht,e.on=oe,e.wheelEventPixels=Gf,e.Doc=ot,e.splitLines=Un,e.countColumn=Re,e.findColumn=St,e.isWordChar=On,e.Pass=Pe,e.signal=Ie,e.Line=xr,e.changeEnd=Gt,e.scrollbarModel=cl,e.Pos=q,e.cmpPos=fe,e.modes=Gn,e.mimeModes=br,e.resolveMode=Ei,e.getMode=Kn,e.modeExtensions=yr,e.extendMode=Pu,e.copyState=Vt,e.startState=ma,e.innerMode=Xn,e.commands=mi,e.keyMap=Ot,e.keyName=Jl,e.isModifierKey=Zl,e.lookupKey=Nr,e.normalizeKeyMap=hc,e.StringStream=ze,e.SharedTextMarker=pi,e.TextMarker=Xt,e.LineWidget=hi,e.e_preventDefault=it,e.e_stopPropagation=ga,e.e_stop=Xr,e.addClass=Te,e.contains=V,e.rmClass=ue,e.keyNames=Yt}Lc(Ee),Nc(Ee);var Pc="iter insert remove copy getEditor constructor".split(" ");for(var an in ot.prototype)ot.prototype.hasOwnProperty(an)&&Fe(Pc,an)<0&&(Ee.prototype[an]=function(e){return function(){return e.apply(this.doc,arguments)}}(ot.prototype[an]));return mr(ot),Ee.inputStyles={textarea:Ne,contenteditable:De},Ee.defineMode=function(e){!Ee.defaults.mode&&e!="null"&&(Ee.defaults.mode=e),Hu.apply(this,arguments)},Ee.defineMIME=Ru,Ee.defineMode("null",function(){return{token:function(e){return e.skipToEnd()}}}),Ee.defineMIME("text/plain","null"),Ee.defineExtension=function(e,t){Ee.prototype[e]=t},Ee.defineDocExtension=function(e,t){ot.prototype[e]=t},Ee.fromTextArea=Hc,Rc(Ee),Ee.version="5.65.21",Ee})});var xs=Ye((bs,ys)=>{(function(a){typeof bs=="object"&&typeof ys=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";var c=/^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/,d=/^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/,l=/[*+-]\s/;a.commands.newlineAndIndentContinueMarkdownList=function(g){if(g.getOption("disableInput"))return a.Pass;for(var f=g.listSelections(),p=[],y=0;y\s*$/.test(z),N=!/>\s*$/.test(z);(B||N)&&g.replaceRange("",{line:C.line,ch:0},{line:C.line,ch:C.ch+1}),p[y]=` +`}else{var R=I[1],H=I[5],_=!(l.test(I[2])||I[2].indexOf(">")>=0),X=_?parseInt(I[3],10)+1+I[4]:I[2].replace("x"," ");p[y]=` +`+R+X+H,_&&u(g,C)}}g.replaceSelections(p)};function u(g,f){var p=f.line,y=0,C=0,D=c.exec(g.getLine(p)),S=D[1];do{y+=1;var F=p+y,M=g.getLine(F),z=c.exec(M);if(z){var I=z[1],A=parseInt(D[3],10)+y-C,B=parseInt(z[3],10),N=B;if(S===I&&!isNaN(B))A===B&&(N=B+1),A>B&&(N=A+1),g.replaceRange(M.replace(c,I+N+z[4]+z[5]),{line:F,ch:0},{line:F,ch:M.length});else{if(S.length>I.length||S.length{var Ds=ct();Ds.commands.tabAndIndentMarkdownList=function(a){var c=a.listSelections(),d=c[0].head,l=a.getStateAfter(d.line),u=l.list!==!1;if(u){a.execCommand("indentMore");return}if(a.options.indentWithTabs)a.execCommand("insertTab");else{var g=Array(a.options.tabSize+1).join(" ");a.replaceSelection(g)}};Ds.commands.shiftTabAndUnindentMarkdownList=function(a){var c=a.listSelections(),d=c[0].head,l=a.getStateAfter(d.line),u=l.list!==!1;if(u){a.execCommand("indentLess");return}if(a.options.indentWithTabs)a.execCommand("insertTab");else{var g=Array(a.options.tabSize+1).join(" ");a.replaceSelection(g)}}});var Ss=Ye((Cs,ks)=>{(function(a){typeof Cs=="object"&&typeof ks=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.defineOption("fullScreen",!1,function(l,u,g){g==a.Init&&(g=!1),!g!=!u&&(u?c(l):d(l))});function c(l){var u=l.getWrapperElement();l.state.fullScreenRestore={scrollTop:window.pageYOffset,scrollLeft:window.pageXOffset,width:u.style.width,height:u.style.height},u.style.width="",u.style.height="auto",u.className+=" CodeMirror-fullscreen",document.documentElement.style.overflow="hidden",l.refresh()}function d(l){var u=l.getWrapperElement();u.className=u.className.replace(/\s*CodeMirror-fullscreen\b/,""),document.documentElement.style.overflow="";var g=l.state.fullScreenRestore;u.style.width=g.width,u.style.height=g.height,window.scrollTo(g.scrollLeft,g.scrollTop),l.refresh()}})});var Yo=Ye((Fs,Es)=>{(function(a){typeof Fs=="object"&&typeof Es=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";var c={autoSelfClosers:{area:!0,base:!0,br:!0,col:!0,command:!0,embed:!0,frame:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0,menuitem:!0},implicitlyClosed:{dd:!0,li:!0,optgroup:!0,option:!0,p:!0,rp:!0,rt:!0,tbody:!0,td:!0,tfoot:!0,th:!0,tr:!0},contextGrabbers:{dd:{dd:!0,dt:!0},dt:{dd:!0,dt:!0},li:{li:!0},option:{option:!0,optgroup:!0},optgroup:{optgroup:!0},p:{address:!0,article:!0,aside:!0,blockquote:!0,dir:!0,div:!0,dl:!0,fieldset:!0,footer:!0,form:!0,h1:!0,h2:!0,h3:!0,h4:!0,h5:!0,h6:!0,header:!0,hgroup:!0,hr:!0,menu:!0,nav:!0,ol:!0,p:!0,pre:!0,section:!0,table:!0,ul:!0},rp:{rp:!0,rt:!0},rt:{rp:!0,rt:!0},tbody:{tbody:!0,tfoot:!0},td:{td:!0,th:!0},tfoot:{tbody:!0},th:{td:!0,th:!0},thead:{tbody:!0,tfoot:!0},tr:{tr:!0}},doNotIndent:{pre:!0},allowUnquoted:!0,allowMissing:!0,caseFold:!0},d={autoSelfClosers:{},implicitlyClosed:{},contextGrabbers:{},doNotIndent:{},allowUnquoted:!1,allowMissing:!1,allowMissingTagName:!1,caseFold:!1};a.defineMode("xml",function(l,u){var g=l.indentUnit,f={},p=u.htmlMode?c:d;for(var y in p)f[y]=p[y];for(var y in u)f[y]=u[y];var C,D;function S(L,U){function W(Te){return U.tokenize=Te,Te(L,U)}var V=L.next();if(V=="<")return L.eat("!")?L.eat("[")?L.match("CDATA[")?W(z("atom","]]>")):null:L.match("--")?W(z("comment","-->")):L.match("DOCTYPE",!0,!0)?(L.eatWhile(/[\w\._\-]/),W(I(1))):null:L.eat("?")?(L.eatWhile(/[\w\._\-]/),U.tokenize=z("meta","?>"),"meta"):(C=L.eat("/")?"closeTag":"openTag",U.tokenize=F,"tag bracket");if(V=="&"){var ve;return L.eat("#")?L.eat("x")?ve=L.eatWhile(/[a-fA-F\d]/)&&L.eat(";"):ve=L.eatWhile(/[\d]/)&&L.eat(";"):ve=L.eatWhile(/[\w\.\-:]/)&&L.eat(";"),ve?"atom":"error"}else return L.eatWhile(/[^&<]/),null}S.isInText=!0;function F(L,U){var W=L.next();if(W==">"||W=="/"&&L.eat(">"))return U.tokenize=S,C=W==">"?"endTag":"selfcloseTag","tag bracket";if(W=="=")return C="equals",null;if(W=="<"){U.tokenize=S,U.state=H,U.tagName=U.tagStart=null;var V=U.tokenize(L,U);return V?V+" tag error":"tag error"}else return/[\'\"]/.test(W)?(U.tokenize=M(W),U.stringStartCol=L.column(),U.tokenize(L,U)):(L.match(/^[^\s\u00a0=<>\"\']*[^\s\u00a0=<>\"\'\/]/),"word")}function M(L){var U=function(W,V){for(;!W.eol();)if(W.next()==L){V.tokenize=F;break}return"string"};return U.isInAttribute=!0,U}function z(L,U){return function(W,V){for(;!W.eol();){if(W.match(U)){V.tokenize=S;break}W.next()}return L}}function I(L){return function(U,W){for(var V;(V=U.next())!=null;){if(V=="<")return W.tokenize=I(L+1),W.tokenize(U,W);if(V==">")if(L==1){W.tokenize=S;break}else return W.tokenize=I(L-1),W.tokenize(U,W)}return"meta"}}function A(L){return L&&L.toLowerCase()}function B(L,U,W){this.prev=L.context,this.tagName=U||"",this.indent=L.indented,this.startOfLine=W,(f.doNotIndent.hasOwnProperty(U)||L.context&&L.context.noIndent)&&(this.noIndent=!0)}function N(L){L.context&&(L.context=L.context.prev)}function R(L,U){for(var W;;){if(!L.context||(W=L.context.tagName,!f.contextGrabbers.hasOwnProperty(A(W))||!f.contextGrabbers[A(W)].hasOwnProperty(A(U))))return;N(L)}}function H(L,U,W){return L=="openTag"?(W.tagStart=U.column(),_):L=="closeTag"?X:H}function _(L,U,W){return L=="word"?(W.tagName=U.current(),D="tag",G):f.allowMissingTagName&&L=="endTag"?(D="tag bracket",G(L,U,W)):(D="error",_)}function X(L,U,W){if(L=="word"){var V=U.current();return W.context&&W.context.tagName!=V&&f.implicitlyClosed.hasOwnProperty(A(W.context.tagName))&&N(W),W.context&&W.context.tagName==V||f.matchClosing===!1?(D="tag",K):(D="tag error",ge)}else return f.allowMissingTagName&&L=="endTag"?(D="tag bracket",K(L,U,W)):(D="error",ge)}function K(L,U,W){return L!="endTag"?(D="error",K):(N(W),H)}function ge(L,U,W){return D="error",K(L,U,W)}function G(L,U,W){if(L=="word")return D="attribute",ue;if(L=="endTag"||L=="selfcloseTag"){var V=W.tagName,ve=W.tagStart;return W.tagName=W.tagStart=null,L=="selfcloseTag"||f.autoSelfClosers.hasOwnProperty(A(V))?R(W,V):(R(W,V),W.context=new B(W,V,ve==W.indented)),H}return D="error",G}function ue(L,U,W){return L=="equals"?ae:(f.allowMissing||(D="error"),G(L,U,W))}function ae(L,U,W){return L=="string"?de:L=="word"&&f.allowUnquoted?(D="string",G):(D="error",G(L,U,W))}function de(L,U,W){return L=="string"?de:G(L,U,W)}return{startState:function(L){var U={tokenize:S,state:H,indented:L||0,tagName:null,tagStart:null,context:null};return L!=null&&(U.baseIndent=L),U},token:function(L,U){if(!U.tagName&&L.sol()&&(U.indented=L.indentation()),L.eatSpace())return null;C=null;var W=U.tokenize(L,U);return(W||C)&&W!="comment"&&(D=null,U.state=U.state(C||W,L,U),D&&(W=D=="error"?W+" error":D)),W},indent:function(L,U,W){var V=L.context;if(L.tokenize.isInAttribute)return L.tagStart==L.indented?L.stringStartCol+1:L.indented+g;if(V&&V.noIndent)return a.Pass;if(L.tokenize!=F&&L.tokenize!=S)return W?W.match(/^(\s*)/)[0].length:0;if(L.tagName)return f.multilineTagIndentPastTag!==!1?L.tagStart+L.tagName.length+2:L.tagStart+g*(f.multilineTagIndentFactor||1);if(f.alignCDATA&&/$/,blockCommentStart:"",configuration:f.htmlMode?"html":"xml",helperType:f.htmlMode?"html":"xml",skipAttribute:function(L){L.state==ae&&(L.state=G)},xmlCurrentTag:function(L){return L.tagName?{name:L.tagName,close:L.type=="closeTag"}:null},xmlCurrentContext:function(L){for(var U=[],W=L.context;W;W=W.prev)U.push(W.tagName);return U.reverse()}}}),a.defineMIME("text/xml","xml"),a.defineMIME("application/xml","xml"),a.mimeModes.hasOwnProperty("text/html")||a.defineMIME("text/html",{name:"xml",htmlMode:!0})})});var Ts=Ye((As,Ls)=>{(function(a){typeof As=="object"&&typeof Ls=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.modeInfo=[{name:"APL",mime:"text/apl",mode:"apl",ext:["dyalog","apl"]},{name:"PGP",mimes:["application/pgp","application/pgp-encrypted","application/pgp-keys","application/pgp-signature"],mode:"asciiarmor",ext:["asc","pgp","sig"]},{name:"ASN.1",mime:"text/x-ttcn-asn",mode:"asn.1",ext:["asn","asn1"]},{name:"Asterisk",mime:"text/x-asterisk",mode:"asterisk",file:/^extensions\.conf$/i},{name:"Brainfuck",mime:"text/x-brainfuck",mode:"brainfuck",ext:["b","bf"]},{name:"C",mime:"text/x-csrc",mode:"clike",ext:["c","h","ino"]},{name:"C++",mime:"text/x-c++src",mode:"clike",ext:["cpp","c++","cc","cxx","hpp","h++","hh","hxx"],alias:["cpp"]},{name:"Cobol",mime:"text/x-cobol",mode:"cobol",ext:["cob","cpy","cbl"]},{name:"C#",mime:"text/x-csharp",mode:"clike",ext:["cs"],alias:["csharp","cs"]},{name:"Clojure",mime:"text/x-clojure",mode:"clojure",ext:["clj","cljc","cljx"]},{name:"ClojureScript",mime:"text/x-clojurescript",mode:"clojure",ext:["cljs"]},{name:"Closure Stylesheets (GSS)",mime:"text/x-gss",mode:"css",ext:["gss"]},{name:"CMake",mime:"text/x-cmake",mode:"cmake",ext:["cmake","cmake.in"],file:/^CMakeLists\.txt$/},{name:"CoffeeScript",mimes:["application/vnd.coffeescript","text/coffeescript","text/x-coffeescript"],mode:"coffeescript",ext:["coffee"],alias:["coffee","coffee-script"]},{name:"Common Lisp",mime:"text/x-common-lisp",mode:"commonlisp",ext:["cl","lisp","el"],alias:["lisp"]},{name:"Cypher",mime:"application/x-cypher-query",mode:"cypher",ext:["cyp","cypher"]},{name:"Cython",mime:"text/x-cython",mode:"python",ext:["pyx","pxd","pxi"]},{name:"Crystal",mime:"text/x-crystal",mode:"crystal",ext:["cr"]},{name:"CSS",mime:"text/css",mode:"css",ext:["css"]},{name:"CQL",mime:"text/x-cassandra",mode:"sql",ext:["cql"]},{name:"D",mime:"text/x-d",mode:"d",ext:["d"]},{name:"Dart",mimes:["application/dart","text/x-dart"],mode:"dart",ext:["dart"]},{name:"diff",mime:"text/x-diff",mode:"diff",ext:["diff","patch"]},{name:"Django",mime:"text/x-django",mode:"django"},{name:"Dockerfile",mime:"text/x-dockerfile",mode:"dockerfile",file:/^Dockerfile$/},{name:"DTD",mime:"application/xml-dtd",mode:"dtd",ext:["dtd"]},{name:"Dylan",mime:"text/x-dylan",mode:"dylan",ext:["dylan","dyl","intr"]},{name:"EBNF",mime:"text/x-ebnf",mode:"ebnf"},{name:"ECL",mime:"text/x-ecl",mode:"ecl",ext:["ecl"]},{name:"edn",mime:"application/edn",mode:"clojure",ext:["edn"]},{name:"Eiffel",mime:"text/x-eiffel",mode:"eiffel",ext:["e"]},{name:"Elm",mime:"text/x-elm",mode:"elm",ext:["elm"]},{name:"Embedded JavaScript",mime:"application/x-ejs",mode:"htmlembedded",ext:["ejs"]},{name:"Embedded Ruby",mime:"application/x-erb",mode:"htmlembedded",ext:["erb"]},{name:"Erlang",mime:"text/x-erlang",mode:"erlang",ext:["erl"]},{name:"Esper",mime:"text/x-esper",mode:"sql"},{name:"Factor",mime:"text/x-factor",mode:"factor",ext:["factor"]},{name:"FCL",mime:"text/x-fcl",mode:"fcl"},{name:"Forth",mime:"text/x-forth",mode:"forth",ext:["forth","fth","4th"]},{name:"Fortran",mime:"text/x-fortran",mode:"fortran",ext:["f","for","f77","f90","f95"]},{name:"F#",mime:"text/x-fsharp",mode:"mllike",ext:["fs"],alias:["fsharp"]},{name:"Gas",mime:"text/x-gas",mode:"gas",ext:["s"]},{name:"Gherkin",mime:"text/x-feature",mode:"gherkin",ext:["feature"]},{name:"GitHub Flavored Markdown",mime:"text/x-gfm",mode:"gfm",file:/^(readme|contributing|history)\.md$/i},{name:"Go",mime:"text/x-go",mode:"go",ext:["go"]},{name:"Groovy",mime:"text/x-groovy",mode:"groovy",ext:["groovy","gradle"],file:/^Jenkinsfile$/},{name:"HAML",mime:"text/x-haml",mode:"haml",ext:["haml"]},{name:"Haskell",mime:"text/x-haskell",mode:"haskell",ext:["hs"]},{name:"Haskell (Literate)",mime:"text/x-literate-haskell",mode:"haskell-literate",ext:["lhs"]},{name:"Haxe",mime:"text/x-haxe",mode:"haxe",ext:["hx"]},{name:"HXML",mime:"text/x-hxml",mode:"haxe",ext:["hxml"]},{name:"ASP.NET",mime:"application/x-aspx",mode:"htmlembedded",ext:["aspx"],alias:["asp","aspx"]},{name:"HTML",mime:"text/html",mode:"htmlmixed",ext:["html","htm","handlebars","hbs"],alias:["xhtml"]},{name:"HTTP",mime:"message/http",mode:"http"},{name:"IDL",mime:"text/x-idl",mode:"idl",ext:["pro"]},{name:"Pug",mime:"text/x-pug",mode:"pug",ext:["jade","pug"],alias:["jade"]},{name:"Java",mime:"text/x-java",mode:"clike",ext:["java"]},{name:"Java Server Pages",mime:"application/x-jsp",mode:"htmlembedded",ext:["jsp"],alias:["jsp"]},{name:"JavaScript",mimes:["text/javascript","text/ecmascript","application/javascript","application/x-javascript","application/ecmascript"],mode:"javascript",ext:["js"],alias:["ecmascript","js","node"]},{name:"JSON",mimes:["application/json","application/x-json"],mode:"javascript",ext:["json","map"],alias:["json5"]},{name:"JSON-LD",mime:"application/ld+json",mode:"javascript",ext:["jsonld"],alias:["jsonld"]},{name:"JSX",mime:"text/jsx",mode:"jsx",ext:["jsx"]},{name:"Jinja2",mime:"text/jinja2",mode:"jinja2",ext:["j2","jinja","jinja2"]},{name:"Julia",mime:"text/x-julia",mode:"julia",ext:["jl"],alias:["jl"]},{name:"Kotlin",mime:"text/x-kotlin",mode:"clike",ext:["kt"]},{name:"LESS",mime:"text/x-less",mode:"css",ext:["less"]},{name:"LiveScript",mime:"text/x-livescript",mode:"livescript",ext:["ls"],alias:["ls"]},{name:"Lua",mime:"text/x-lua",mode:"lua",ext:["lua"]},{name:"Markdown",mime:"text/x-markdown",mode:"markdown",ext:["markdown","md","mkd"]},{name:"mIRC",mime:"text/mirc",mode:"mirc"},{name:"MariaDB SQL",mime:"text/x-mariadb",mode:"sql"},{name:"Mathematica",mime:"text/x-mathematica",mode:"mathematica",ext:["m","nb","wl","wls"]},{name:"Modelica",mime:"text/x-modelica",mode:"modelica",ext:["mo"]},{name:"MUMPS",mime:"text/x-mumps",mode:"mumps",ext:["mps"]},{name:"MS SQL",mime:"text/x-mssql",mode:"sql"},{name:"mbox",mime:"application/mbox",mode:"mbox",ext:["mbox"]},{name:"MySQL",mime:"text/x-mysql",mode:"sql"},{name:"Nginx",mime:"text/x-nginx-conf",mode:"nginx",file:/nginx.*\.conf$/i},{name:"NSIS",mime:"text/x-nsis",mode:"nsis",ext:["nsh","nsi"]},{name:"NTriples",mimes:["application/n-triples","application/n-quads","text/n-triples"],mode:"ntriples",ext:["nt","nq"]},{name:"Objective-C",mime:"text/x-objectivec",mode:"clike",ext:["m"],alias:["objective-c","objc"]},{name:"Objective-C++",mime:"text/x-objectivec++",mode:"clike",ext:["mm"],alias:["objective-c++","objc++"]},{name:"OCaml",mime:"text/x-ocaml",mode:"mllike",ext:["ml","mli","mll","mly"]},{name:"Octave",mime:"text/x-octave",mode:"octave",ext:["m"]},{name:"Oz",mime:"text/x-oz",mode:"oz",ext:["oz"]},{name:"Pascal",mime:"text/x-pascal",mode:"pascal",ext:["p","pas"]},{name:"PEG.js",mime:"null",mode:"pegjs",ext:["jsonld"]},{name:"Perl",mime:"text/x-perl",mode:"perl",ext:["pl","pm"]},{name:"PHP",mimes:["text/x-php","application/x-httpd-php","application/x-httpd-php-open"],mode:"php",ext:["php","php3","php4","php5","php7","phtml"]},{name:"Pig",mime:"text/x-pig",mode:"pig",ext:["pig"]},{name:"Plain Text",mime:"text/plain",mode:"null",ext:["txt","text","conf","def","list","log"]},{name:"PLSQL",mime:"text/x-plsql",mode:"sql",ext:["pls"]},{name:"PostgreSQL",mime:"text/x-pgsql",mode:"sql"},{name:"PowerShell",mime:"application/x-powershell",mode:"powershell",ext:["ps1","psd1","psm1"]},{name:"Properties files",mime:"text/x-properties",mode:"properties",ext:["properties","ini","in"],alias:["ini","properties"]},{name:"ProtoBuf",mime:"text/x-protobuf",mode:"protobuf",ext:["proto"]},{name:"Python",mime:"text/x-python",mode:"python",ext:["BUILD","bzl","py","pyw"],file:/^(BUCK|BUILD)$/},{name:"Puppet",mime:"text/x-puppet",mode:"puppet",ext:["pp"]},{name:"Q",mime:"text/x-q",mode:"q",ext:["q"]},{name:"R",mime:"text/x-rsrc",mode:"r",ext:["r","R"],alias:["rscript"]},{name:"reStructuredText",mime:"text/x-rst",mode:"rst",ext:["rst"],alias:["rst"]},{name:"RPM Changes",mime:"text/x-rpm-changes",mode:"rpm"},{name:"RPM Spec",mime:"text/x-rpm-spec",mode:"rpm",ext:["spec"]},{name:"Ruby",mime:"text/x-ruby",mode:"ruby",ext:["rb"],alias:["jruby","macruby","rake","rb","rbx"]},{name:"Rust",mime:"text/x-rustsrc",mode:"rust",ext:["rs"]},{name:"SAS",mime:"text/x-sas",mode:"sas",ext:["sas"]},{name:"Sass",mime:"text/x-sass",mode:"sass",ext:["sass"]},{name:"Scala",mime:"text/x-scala",mode:"clike",ext:["scala"]},{name:"Scheme",mime:"text/x-scheme",mode:"scheme",ext:["scm","ss"]},{name:"SCSS",mime:"text/x-scss",mode:"css",ext:["scss"]},{name:"Shell",mimes:["text/x-sh","application/x-sh"],mode:"shell",ext:["sh","ksh","bash"],alias:["bash","sh","zsh"],file:/^PKGBUILD$/},{name:"Sieve",mime:"application/sieve",mode:"sieve",ext:["siv","sieve"]},{name:"Slim",mimes:["text/x-slim","application/x-slim"],mode:"slim",ext:["slim"]},{name:"Smalltalk",mime:"text/x-stsrc",mode:"smalltalk",ext:["st"]},{name:"Smarty",mime:"text/x-smarty",mode:"smarty",ext:["tpl"]},{name:"Solr",mime:"text/x-solr",mode:"solr"},{name:"SML",mime:"text/x-sml",mode:"mllike",ext:["sml","sig","fun","smackspec"]},{name:"Soy",mime:"text/x-soy",mode:"soy",ext:["soy"],alias:["closure template"]},{name:"SPARQL",mime:"application/sparql-query",mode:"sparql",ext:["rq","sparql"],alias:["sparul"]},{name:"Spreadsheet",mime:"text/x-spreadsheet",mode:"spreadsheet",alias:["excel","formula"]},{name:"SQL",mime:"text/x-sql",mode:"sql",ext:["sql"]},{name:"SQLite",mime:"text/x-sqlite",mode:"sql"},{name:"Squirrel",mime:"text/x-squirrel",mode:"clike",ext:["nut"]},{name:"Stylus",mime:"text/x-styl",mode:"stylus",ext:["styl"]},{name:"Swift",mime:"text/x-swift",mode:"swift",ext:["swift"]},{name:"sTeX",mime:"text/x-stex",mode:"stex"},{name:"LaTeX",mime:"text/x-latex",mode:"stex",ext:["text","ltx","tex"],alias:["tex"]},{name:"SystemVerilog",mime:"text/x-systemverilog",mode:"verilog",ext:["v","sv","svh"]},{name:"Tcl",mime:"text/x-tcl",mode:"tcl",ext:["tcl"]},{name:"Textile",mime:"text/x-textile",mode:"textile",ext:["textile"]},{name:"TiddlyWiki",mime:"text/x-tiddlywiki",mode:"tiddlywiki"},{name:"Tiki wiki",mime:"text/tiki",mode:"tiki"},{name:"TOML",mime:"text/x-toml",mode:"toml",ext:["toml"]},{name:"Tornado",mime:"text/x-tornado",mode:"tornado"},{name:"troff",mime:"text/troff",mode:"troff",ext:["1","2","3","4","5","6","7","8","9"]},{name:"TTCN",mime:"text/x-ttcn",mode:"ttcn",ext:["ttcn","ttcn3","ttcnpp"]},{name:"TTCN_CFG",mime:"text/x-ttcn-cfg",mode:"ttcn-cfg",ext:["cfg"]},{name:"Turtle",mime:"text/turtle",mode:"turtle",ext:["ttl"]},{name:"TypeScript",mime:"application/typescript",mode:"javascript",ext:["ts"],alias:["ts"]},{name:"TypeScript-JSX",mime:"text/typescript-jsx",mode:"jsx",ext:["tsx"],alias:["tsx"]},{name:"Twig",mime:"text/x-twig",mode:"twig"},{name:"Web IDL",mime:"text/x-webidl",mode:"webidl",ext:["webidl"]},{name:"VB.NET",mime:"text/x-vb",mode:"vb",ext:["vb"]},{name:"VBScript",mime:"text/vbscript",mode:"vbscript",ext:["vbs"]},{name:"Velocity",mime:"text/velocity",mode:"velocity",ext:["vtl"]},{name:"Verilog",mime:"text/x-verilog",mode:"verilog",ext:["v"]},{name:"VHDL",mime:"text/x-vhdl",mode:"vhdl",ext:["vhd","vhdl"]},{name:"Vue.js Component",mimes:["script/x-vue","text/x-vue"],mode:"vue",ext:["vue"]},{name:"XML",mimes:["application/xml","text/xml"],mode:"xml",ext:["xml","xsl","xsd","svg"],alias:["rss","wsdl","xsd"]},{name:"XQuery",mime:"application/xquery",mode:"xquery",ext:["xy","xquery"]},{name:"Yacas",mime:"text/x-yacas",mode:"yacas",ext:["ys"]},{name:"YAML",mimes:["text/x-yaml","text/yaml"],mode:"yaml",ext:["yaml","yml"],alias:["yml"]},{name:"Z80",mime:"text/x-z80",mode:"z80",ext:["z80"]},{name:"mscgen",mime:"text/x-mscgen",mode:"mscgen",ext:["mscgen","mscin","msc"]},{name:"xu",mime:"text/x-xu",mode:"mscgen",ext:["xu"]},{name:"msgenny",mime:"text/x-msgenny",mode:"mscgen",ext:["msgenny"]},{name:"WebAssembly",mime:"text/webassembly",mode:"wast",ext:["wat","wast"]}];for(var c=0;c-1&&l.substring(f+1,l.length);if(p)return a.findModeByExtension(p)},a.findModeByName=function(l){l=l.toLowerCase();for(var u=0;u{(function(a){typeof Ms=="object"&&typeof Bs=="object"?a(ct(),Yo(),Ts()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../xml/xml","../meta"],a):a(CodeMirror)})(function(a){"use strict";a.defineMode("markdown",function(c,d){var l=a.getMode(c,"text/html"),u=l.name=="null";function g(k){if(a.findModeByName){var b=a.findModeByName(k);b&&(k=b.mime||b.mimes[0])}var ee=a.getMode(c,k);return ee.name=="null"?null:ee}d.highlightFormatting===void 0&&(d.highlightFormatting=!1),d.maxBlockquoteDepth===void 0&&(d.maxBlockquoteDepth=0),d.taskLists===void 0&&(d.taskLists=!1),d.strikethrough===void 0&&(d.strikethrough=!1),d.emoji===void 0&&(d.emoji=!1),d.fencedCodeBlockHighlighting===void 0&&(d.fencedCodeBlockHighlighting=!0),d.fencedCodeBlockDefaultMode===void 0&&(d.fencedCodeBlockDefaultMode="text/plain"),d.xml===void 0&&(d.xml=!0),d.tokenTypeOverrides===void 0&&(d.tokenTypeOverrides={});var f={header:"header",code:"comment",quote:"quote",list1:"variable-2",list2:"variable-3",list3:"keyword",hr:"hr",image:"image",imageAltText:"image-alt-text",imageMarker:"image-marker",formatting:"formatting",linkInline:"link",linkEmail:"link",linkText:"link",linkHref:"string",em:"em",strong:"strong",strikethrough:"strikethrough",emoji:"builtin"};for(var p in f)f.hasOwnProperty(p)&&d.tokenTypeOverrides[p]&&(f[p]=d.tokenTypeOverrides[p]);var y=/^([*\-_])(?:\s*\1){2,}\s*$/,C=/^(?:[*\-+]|^[0-9]+([.)]))\s+/,D=/^\[(x| )\](?=\s)/i,S=d.allowAtxHeaderWithoutSpace?/^(#+)/:/^(#+)(?: |$)/,F=/^ {0,3}(?:\={1,}|-{2,})\s*$/,M=/^[^#!\[\]*_\\<>` "'(~:]+/,z=/^(~~~+|```+)[ \t]*([\w\/+#-]*)[^\n`]*$/,I=/^\s*\[[^\]]+?\]:.*$/,A=/[!"#$%&'()*+,\-.\/:;<=>?@\[\\\]^_`{|}~\xA1\xA7\xAB\xB6\xB7\xBB\xBF\u037E\u0387\u055A-\u055F\u0589\u058A\u05BE\u05C0\u05C3\u05C6\u05F3\u05F4\u0609\u060A\u060C\u060D\u061B\u061E\u061F\u066A-\u066D\u06D4\u0700-\u070D\u07F7-\u07F9\u0830-\u083E\u085E\u0964\u0965\u0970\u0AF0\u0DF4\u0E4F\u0E5A\u0E5B\u0F04-\u0F12\u0F14\u0F3A-\u0F3D\u0F85\u0FD0-\u0FD4\u0FD9\u0FDA\u104A-\u104F\u10FB\u1360-\u1368\u1400\u166D\u166E\u169B\u169C\u16EB-\u16ED\u1735\u1736\u17D4-\u17D6\u17D8-\u17DA\u1800-\u180A\u1944\u1945\u1A1E\u1A1F\u1AA0-\u1AA6\u1AA8-\u1AAD\u1B5A-\u1B60\u1BFC-\u1BFF\u1C3B-\u1C3F\u1C7E\u1C7F\u1CC0-\u1CC7\u1CD3\u2010-\u2027\u2030-\u2043\u2045-\u2051\u2053-\u205E\u207D\u207E\u208D\u208E\u2308-\u230B\u2329\u232A\u2768-\u2775\u27C5\u27C6\u27E6-\u27EF\u2983-\u2998\u29D8-\u29DB\u29FC\u29FD\u2CF9-\u2CFC\u2CFE\u2CFF\u2D70\u2E00-\u2E2E\u2E30-\u2E42\u3001-\u3003\u3008-\u3011\u3014-\u301F\u3030\u303D\u30A0\u30FB\uA4FE\uA4FF\uA60D-\uA60F\uA673\uA67E\uA6F2-\uA6F7\uA874-\uA877\uA8CE\uA8CF\uA8F8-\uA8FA\uA8FC\uA92E\uA92F\uA95F\uA9C1-\uA9CD\uA9DE\uA9DF\uAA5C-\uAA5F\uAADE\uAADF\uAAF0\uAAF1\uABEB\uFD3E\uFD3F\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE61\uFE63\uFE68\uFE6A\uFE6B\uFF01-\uFF03\uFF05-\uFF0A\uFF0C-\uFF0F\uFF1A\uFF1B\uFF1F\uFF20\uFF3B-\uFF3D\uFF3F\uFF5B\uFF5D\uFF5F-\uFF65]|\uD800[\uDD00-\uDD02\uDF9F\uDFD0]|\uD801\uDD6F|\uD802[\uDC57\uDD1F\uDD3F\uDE50-\uDE58\uDE7F\uDEF0-\uDEF6\uDF39-\uDF3F\uDF99-\uDF9C]|\uD804[\uDC47-\uDC4D\uDCBB\uDCBC\uDCBE-\uDCC1\uDD40-\uDD43\uDD74\uDD75\uDDC5-\uDDC9\uDDCD\uDDDB\uDDDD-\uDDDF\uDE38-\uDE3D\uDEA9]|\uD805[\uDCC6\uDDC1-\uDDD7\uDE41-\uDE43\uDF3C-\uDF3E]|\uD809[\uDC70-\uDC74]|\uD81A[\uDE6E\uDE6F\uDEF5\uDF37-\uDF3B\uDF44]|\uD82F\uDC9F|\uD836[\uDE87-\uDE8B]/,B=" ";function N(k,b,ee){return b.f=b.inline=ee,ee(k,b)}function R(k,b,ee){return b.f=b.block=ee,ee(k,b)}function H(k){return!k||!/\S/.test(k.string)}function _(k){if(k.linkTitle=!1,k.linkHref=!1,k.linkText=!1,k.em=!1,k.strong=!1,k.strikethrough=!1,k.quote=0,k.indentedCode=!1,k.f==K){var b=u;if(!b){var ee=a.innerMode(l,k.htmlState);b=ee.mode.name=="xml"&&ee.state.tagStart===null&&!ee.state.context&&ee.state.tokenize.isInText}b&&(k.f=ae,k.block=X,k.htmlState=null)}return k.trailingSpace=0,k.trailingSpaceNewLine=!1,k.prevLine=k.thisLine,k.thisLine={stream:null},null}function X(k,b){var ee=k.column()===b.indentation,be=H(b.prevLine.stream),he=b.indentedCode,tt=b.prevLine.hr,dt=b.list!==!1,Re=(b.listStack[b.listStack.length-1]||0)+3;b.indentedCode=!1;var Je=b.indentation;if(b.indentationDiff===null&&(b.indentationDiff=b.indentation,dt)){for(b.list=null;Je=4&&(he||b.prevLine.fencedCodeEnd||b.prevLine.header||be))return k.skipToEnd(),b.indentedCode=!0,f.code;if(k.eatSpace())return null;if(ee&&b.indentation<=Re&&(Pe=k.match(S))&&Pe[1].length<=6)return b.quote=0,b.header=Pe[1].length,b.thisLine.header=!0,d.highlightFormatting&&(b.formatting="header"),b.f=b.inline,G(b);if(b.indentation<=Re&&k.eat(">"))return b.quote=ee?1:b.quote+1,d.highlightFormatting&&(b.formatting="quote"),k.eatSpace(),G(b);if(!Me&&!b.setext&&ee&&b.indentation<=Re&&(Pe=k.match(C))){var rt=Pe[1]?"ol":"ul";return b.indentation=Je+k.current().length,b.list=!0,b.quote=0,b.listStack.push(b.indentation),b.em=!1,b.strong=!1,b.code=!1,b.strikethrough=!1,d.taskLists&&k.match(D,!1)&&(b.taskList=!0),b.f=b.inline,d.highlightFormatting&&(b.formatting=["list","list-"+rt]),G(b)}else{if(ee&&b.indentation<=Re&&(Pe=k.match(z,!0)))return b.quote=0,b.fencedEndRE=new RegExp(Pe[1]+"+ *$"),b.localMode=d.fencedCodeBlockHighlighting&&g(Pe[2]||d.fencedCodeBlockDefaultMode),b.localMode&&(b.localState=a.startState(b.localMode)),b.f=b.block=ge,d.highlightFormatting&&(b.formatting="code-block"),b.code=-1,G(b);if(b.setext||(!Fe||!dt)&&!b.quote&&b.list===!1&&!b.code&&!Me&&!I.test(k.string)&&(Pe=k.lookAhead(1))&&(Pe=Pe.match(F)))return b.setext?(b.header=b.setext,b.setext=0,k.skipToEnd(),d.highlightFormatting&&(b.formatting="header")):(b.header=Pe[0].charAt(0)=="="?1:2,b.setext=b.header),b.thisLine.header=!0,b.f=b.inline,G(b);if(Me)return k.skipToEnd(),b.hr=!0,b.thisLine.hr=!0,f.hr;if(k.peek()==="[")return N(k,b,V)}return N(k,b,b.inline)}function K(k,b){var ee=l.token(k,b.htmlState);if(!u){var be=a.innerMode(l,b.htmlState);(be.mode.name=="xml"&&be.state.tagStart===null&&!be.state.context&&be.state.tokenize.isInText||b.md_inside&&k.current().indexOf(">")>-1)&&(b.f=ae,b.block=X,b.htmlState=null)}return ee}function ge(k,b){var ee=b.listStack[b.listStack.length-1]||0,be=b.indentation=k.quote?b.push(f.formatting+"-"+k.formatting[ee]+"-"+k.quote):b.push("error"))}if(k.taskOpen)return b.push("meta"),b.length?b.join(" "):null;if(k.taskClosed)return b.push("property"),b.length?b.join(" "):null;if(k.linkHref?b.push(f.linkHref,"url"):(k.strong&&b.push(f.strong),k.em&&b.push(f.em),k.strikethrough&&b.push(f.strikethrough),k.emoji&&b.push(f.emoji),k.linkText&&b.push(f.linkText),k.code&&b.push(f.code),k.image&&b.push(f.image),k.imageAltText&&b.push(f.imageAltText,"link"),k.imageMarker&&b.push(f.imageMarker)),k.header&&b.push(f.header,f.header+"-"+k.header),k.quote&&(b.push(f.quote),!d.maxBlockquoteDepth||d.maxBlockquoteDepth>=k.quote?b.push(f.quote+"-"+k.quote):b.push(f.quote+"-"+d.maxBlockquoteDepth)),k.list!==!1){var be=(k.listStack.length-1)%3;be?be===1?b.push(f.list2):b.push(f.list3):b.push(f.list1)}return k.trailingSpaceNewLine?b.push("trailing-space-new-line"):k.trailingSpace&&b.push("trailing-space-"+(k.trailingSpace%2?"a":"b")),b.length?b.join(" "):null}function ue(k,b){if(k.match(M,!0))return G(b)}function ae(k,b){var ee=b.text(k,b);if(typeof ee<"u")return ee;if(b.list)return b.list=null,G(b);if(b.taskList){var be=k.match(D,!0)[1]===" ";return be?b.taskOpen=!0:b.taskClosed=!0,d.highlightFormatting&&(b.formatting="task"),b.taskList=!1,G(b)}if(b.taskOpen=!1,b.taskClosed=!1,b.header&&k.match(/^#+$/,!0))return d.highlightFormatting&&(b.formatting="header"),G(b);var he=k.next();if(b.linkTitle){b.linkTitle=!1;var tt=he;he==="("&&(tt=")"),tt=(tt+"").replace(/([.?*+^\[\]\\(){}|-])/g,"\\$1");var dt="^\\s*(?:[^"+tt+"\\\\]+|\\\\\\\\|\\\\.)"+tt;if(k.match(new RegExp(dt),!0))return f.linkHref}if(he==="`"){var Re=b.formatting;d.highlightFormatting&&(b.formatting="code"),k.eatWhile("`");var Je=k.current().length;if(b.code==0&&(!b.quote||Je==1))return b.code=Je,G(b);if(Je==b.code){var Fe=G(b);return b.code=0,Fe}else return b.formatting=Re,G(b)}else if(b.code)return G(b);if(he==="\\"&&(k.next(),d.highlightFormatting)){var Me=G(b),Pe=f.formatting+"-escape";return Me?Me+" "+Pe:Pe}if(he==="!"&&k.match(/\[[^\]]*\] ?(?:\(|\[)/,!1))return b.imageMarker=!0,b.image=!0,d.highlightFormatting&&(b.formatting="image"),G(b);if(he==="["&&b.imageMarker&&k.match(/[^\]]*\](\(.*?\)| ?\[.*?\])/,!1))return b.imageMarker=!1,b.imageAltText=!0,d.highlightFormatting&&(b.formatting="image"),G(b);if(he==="]"&&b.imageAltText){d.highlightFormatting&&(b.formatting="image");var Me=G(b);return b.imageAltText=!1,b.image=!1,b.inline=b.f=L,Me}if(he==="["&&!b.image)return b.linkText&&k.match(/^.*?\]/)||(b.linkText=!0,d.highlightFormatting&&(b.formatting="link")),G(b);if(he==="]"&&b.linkText){d.highlightFormatting&&(b.formatting="link");var Me=G(b);return b.linkText=!1,b.inline=b.f=k.match(/\(.*?\)| ?\[.*?\]/,!1)?L:ae,Me}if(he==="<"&&k.match(/^(https?|ftps?):\/\/(?:[^\\>]|\\.)+>/,!1)){b.f=b.inline=de,d.highlightFormatting&&(b.formatting="link");var Me=G(b);return Me?Me+=" ":Me="",Me+f.linkInline}if(he==="<"&&k.match(/^[^> \\]+@(?:[^\\>]|\\.)+>/,!1)){b.f=b.inline=de,d.highlightFormatting&&(b.formatting="link");var Me=G(b);return Me?Me+=" ":Me="",Me+f.linkEmail}if(d.xml&&he==="<"&&k.match(/^(!--|\?|!\[CDATA\[|[a-z][a-z0-9-]*(?:\s+[a-z_:.\-]+(?:\s*=\s*[^>]+)?)*\s*(?:>|$))/i,!1)){var rt=k.string.indexOf(">",k.pos);if(rt!=-1){var Ur=k.string.substring(k.start,rt);/markdown\s*=\s*('|"){0,1}1('|"){0,1}/.test(Ur)&&(b.md_inside=!0)}return k.backUp(1),b.htmlState=a.startState(l),R(k,b,K)}if(d.xml&&he==="<"&&k.match(/^\/\w*?>/))return b.md_inside=!1,"tag";if(he==="*"||he==="_"){for(var kt=1,St=k.pos==1?" ":k.string.charAt(k.pos-2);kt<3&&k.eat(he);)kt++;var bt=k.peek()||" ",Pt=!/\s/.test(bt)&&(!A.test(bt)||/\s/.test(St)||A.test(St)),me=!/\s/.test(St)&&(!A.test(St)||/\s/.test(bt)||A.test(bt)),yt=null,_t=null;if(kt%2&&(!b.em&&Pt&&(he==="*"||!me||A.test(St))?yt=!0:b.em==he&&me&&(he==="*"||!Pt||A.test(bt))&&(yt=!1)),kt>1&&(!b.strong&&Pt&&(he==="*"||!me||A.test(St))?_t=!0:b.strong==he&&me&&(he==="*"||!Pt||A.test(bt))&&(_t=!1)),_t!=null||yt!=null){d.highlightFormatting&&(b.formatting=yt==null?"strong":_t==null?"em":"strong em"),yt===!0&&(b.em=he),_t===!0&&(b.strong=he);var Fe=G(b);return yt===!1&&(b.em=!1),_t===!1&&(b.strong=!1),Fe}}else if(he===" "&&(k.eat("*")||k.eat("_"))){if(k.peek()===" ")return G(b);k.backUp(1)}if(d.strikethrough){if(he==="~"&&k.eatWhile(he)){if(b.strikethrough){d.highlightFormatting&&(b.formatting="strikethrough");var Fe=G(b);return b.strikethrough=!1,Fe}else if(k.match(/^[^\s]/,!1))return b.strikethrough=!0,d.highlightFormatting&&(b.formatting="strikethrough"),G(b)}else if(he===" "&&k.match("~~",!0)){if(k.peek()===" ")return G(b);k.backUp(2)}}if(d.emoji&&he===":"&&k.match(/^(?:[a-z_\d+][a-z_\d+-]*|\-[a-z_\d+][a-z_\d+-]*):/)){b.emoji=!0,d.highlightFormatting&&(b.formatting="emoji");var Si=G(b);return b.emoji=!1,Si}return he===" "&&(k.match(/^ +$/,!1)?b.trailingSpace++:b.trailingSpace&&(b.trailingSpaceNewLine=!0)),G(b)}function de(k,b){var ee=k.next();if(ee===">"){b.f=b.inline=ae,d.highlightFormatting&&(b.formatting="link");var be=G(b);return be?be+=" ":be="",be+f.linkInline}return k.match(/^[^>]+/,!0),f.linkInline}function L(k,b){if(k.eatSpace())return null;var ee=k.next();return ee==="("||ee==="["?(b.f=b.inline=W(ee==="("?")":"]"),d.highlightFormatting&&(b.formatting="link-string"),b.linkHref=!0,G(b)):"error"}var U={")":/^(?:[^\\\(\)]|\\.|\((?:[^\\\(\)]|\\.)*\))*?(?=\))/,"]":/^(?:[^\\\[\]]|\\.|\[(?:[^\\\[\]]|\\.)*\])*?(?=\])/};function W(k){return function(b,ee){var be=b.next();if(be===k){ee.f=ee.inline=ae,d.highlightFormatting&&(ee.formatting="link-string");var he=G(ee);return ee.linkHref=!1,he}return b.match(U[k]),ee.linkHref=!0,G(ee)}}function V(k,b){return k.match(/^([^\]\\]|\\.)*\]:/,!1)?(b.f=ve,k.next(),d.highlightFormatting&&(b.formatting="link"),b.linkText=!0,G(b)):N(k,b,ae)}function ve(k,b){if(k.match("]:",!0)){b.f=b.inline=Te,d.highlightFormatting&&(b.formatting="link");var ee=G(b);return b.linkText=!1,ee}return k.match(/^([^\]\\]|\\.)+/,!0),f.linkText}function Te(k,b){return k.eatSpace()?null:(k.match(/^[^\s]+/,!0),k.peek()===void 0?b.linkTitle=!0:k.match(/^(?:\s+(?:"(?:[^"\\]|\\.)+"|'(?:[^'\\]|\\.)+'|\((?:[^)\\]|\\.)+\)))?/,!0),b.f=b.inline=ae,f.linkHref+" url")}var vt={startState:function(){return{f:X,prevLine:{stream:null},thisLine:{stream:null},block:X,htmlState:null,indentation:0,inline:ae,text:ue,formatting:!1,linkText:!1,linkHref:!1,linkTitle:!1,code:0,em:!1,strong:!1,header:0,setext:0,hr:!1,taskList:!1,list:!1,listStack:[],quote:0,trailingSpace:0,trailingSpaceNewLine:!1,strikethrough:!1,emoji:!1,fencedEndRE:null}},copyState:function(k){return{f:k.f,prevLine:k.prevLine,thisLine:k.thisLine,block:k.block,htmlState:k.htmlState&&a.copyState(l,k.htmlState),indentation:k.indentation,localMode:k.localMode,localState:k.localMode?a.copyState(k.localMode,k.localState):null,inline:k.inline,text:k.text,formatting:!1,linkText:k.linkText,linkTitle:k.linkTitle,linkHref:k.linkHref,code:k.code,em:k.em,strong:k.strong,strikethrough:k.strikethrough,emoji:k.emoji,header:k.header,setext:k.setext,hr:k.hr,taskList:k.taskList,list:k.list,listStack:k.listStack.slice(0),quote:k.quote,indentedCode:k.indentedCode,trailingSpace:k.trailingSpace,trailingSpaceNewLine:k.trailingSpaceNewLine,md_inside:k.md_inside,fencedEndRE:k.fencedEndRE}},token:function(k,b){if(b.formatting=!1,k!=b.thisLine.stream){if(b.header=0,b.hr=!1,k.match(/^\s*$/,!0))return _(b),null;if(b.prevLine=b.thisLine,b.thisLine={stream:k},b.taskList=!1,b.trailingSpace=0,b.trailingSpaceNewLine=!1,!b.localState&&(b.f=b.block,b.f!=K)){var ee=k.match(/^\s*/,!0)[0].replace(/\t/g,B).length;if(b.indentation=ee,b.indentationDiff=null,ee>0)return null}}return b.f(k,b)},innerMode:function(k){return k.block==K?{state:k.htmlState,mode:l}:k.localState?{state:k.localState,mode:k.localMode}:{state:k,mode:vt}},indent:function(k,b,ee){return k.block==K&&l.indent?l.indent(k.htmlState,b,ee):k.localState&&k.localMode.indent?k.localMode.indent(k.localState,b,ee):a.Pass},blankLine:_,getType:G,blockCommentStart:"",closeBrackets:"()[]{}''\"\"``",fold:"markdown"};return vt},"xml"),a.defineMIME("text/markdown","markdown"),a.defineMIME("text/x-markdown","markdown")})});var Qo=Ye((Ns,Is)=>{(function(a){typeof Ns=="object"&&typeof Is=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.overlayMode=function(c,d,l){return{startState:function(){return{base:a.startState(c),overlay:a.startState(d),basePos:0,baseCur:null,overlayPos:0,overlayCur:null,streamSeen:null}},copyState:function(u){return{base:a.copyState(c,u.base),overlay:a.copyState(d,u.overlay),basePos:u.basePos,baseCur:null,overlayPos:u.overlayPos,overlayCur:null}},token:function(u,g){return(u!=g.streamSeen||Math.min(g.basePos,g.overlayPos){(function(a){typeof zs=="object"&&typeof Os=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){a.defineOption("placeholder","",function(p,y,C){var D=C&&C!=a.Init;if(y&&!D)p.on("blur",u),p.on("change",g),p.on("swapDoc",g),a.on(p.getInputField(),"compositionupdate",p.state.placeholderCompose=function(){l(p)}),g(p);else if(!y&&D){p.off("blur",u),p.off("change",g),p.off("swapDoc",g),a.off(p.getInputField(),"compositionupdate",p.state.placeholderCompose),c(p);var S=p.getWrapperElement();S.className=S.className.replace(" CodeMirror-empty","")}y&&!p.hasFocus()&&u(p)});function c(p){p.state.placeholder&&(p.state.placeholder.parentNode.removeChild(p.state.placeholder),p.state.placeholder=null)}function d(p){c(p);var y=p.state.placeholder=document.createElement("pre");y.style.cssText="height: 0; overflow: visible",y.style.direction=p.getOption("direction"),y.className="CodeMirror-placeholder CodeMirror-line-like";var C=p.getOption("placeholder");typeof C=="string"&&(C=document.createTextNode(C)),y.appendChild(C),p.display.lineSpace.insertBefore(y,p.display.lineSpace.firstChild)}function l(p){setTimeout(function(){var y=!1;if(p.lineCount()==1){var C=p.getInputField();y=C.nodeName=="TEXTAREA"?!p.getLine(0).length:!/[^\u200b]/.test(C.querySelector(".CodeMirror-line").textContent)}y?d(p):c(p)},20)}function u(p){f(p)&&d(p)}function g(p){var y=p.getWrapperElement(),C=f(p);y.className=y.className.replace(" CodeMirror-empty","")+(C?" CodeMirror-empty":""),C?d(p):c(p)}function f(p){return p.lineCount()===1&&p.getLine(0)===""}})});var _s=Ye((Rs,Ps)=>{(function(a){typeof Rs=="object"&&typeof Ps=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.defineOption("autoRefresh",!1,function(l,u){l.state.autoRefresh&&(d(l,l.state.autoRefresh),l.state.autoRefresh=null),u&&l.display.wrapper.offsetHeight==0&&c(l,l.state.autoRefresh={delay:u.delay||250})});function c(l,u){function g(){l.display.wrapper.offsetHeight?(d(l,u),l.display.lastWrapHeight!=l.display.wrapper.clientHeight&&l.refresh()):u.timeout=setTimeout(g,u.delay)}u.timeout=setTimeout(g,u.delay),u.hurry=function(){clearTimeout(u.timeout),u.timeout=setTimeout(g,50)},a.on(window,"mouseup",u.hurry),a.on(window,"keyup",u.hurry)}function d(l,u){clearTimeout(u.timeout),a.off(window,"mouseup",u.hurry),a.off(window,"keyup",u.hurry)}})});var Us=Ye((Ws,qs)=>{(function(a){typeof Ws=="object"&&typeof qs=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";a.defineOption("styleSelectedText",!1,function(D,S,F){var M=F&&F!=a.Init;S&&!M?(D.state.markedSelection=[],D.state.markedSelectionStyle=typeof S=="string"?S:"CodeMirror-selectedtext",y(D),D.on("cursorActivity",c),D.on("change",d)):!S&&M&&(D.off("cursorActivity",c),D.off("change",d),p(D),D.state.markedSelection=D.state.markedSelectionStyle=null)});function c(D){D.state.markedSelection&&D.operation(function(){C(D)})}function d(D){D.state.markedSelection&&D.state.markedSelection.length&&D.operation(function(){p(D)})}var l=8,u=a.Pos,g=a.cmpPos;function f(D,S,F,M){if(g(S,F)!=0)for(var z=D.state.markedSelection,I=D.state.markedSelectionStyle,A=S.line;;){var B=A==S.line?S:u(A,0),N=A+l,R=N>=F.line,H=R?F:u(N,0),_=D.markText(B,H,{className:I});if(M==null?z.push(_):z.splice(M++,0,_),R)break;A=N}}function p(D){for(var S=D.state.markedSelection,F=0;F1)return y(D);var S=D.getCursor("start"),F=D.getCursor("end"),M=D.state.markedSelection;if(!M.length)return f(D,S,F);var z=M[0].find(),I=M[M.length-1].find();if(!z||!I||F.line-S.line<=l||g(S,I.to)>=0||g(F,z.from)<=0)return y(D);for(;g(S,z.from)>0;)M.shift().clear(),z=M[0].find();for(g(S,z.from)<0&&(z.to.line-S.line0&&(F.line-I.from.line{(function(a){typeof js=="object"&&typeof Gs=="object"?a(ct()):typeof define=="function"&&define.amd?define(["../../lib/codemirror"],a):a(CodeMirror)})(function(a){"use strict";var c=a.Pos;function d(A){var B=A.flags;return B??(A.ignoreCase?"i":"")+(A.global?"g":"")+(A.multiline?"m":"")}function l(A,B){for(var N=d(A),R=N,H=0;HX);K++){var ge=A.getLine(_++);R=R==null?ge:R+` `+ge}H=H*2,B.lastIndex=N.ch;var G=B.exec(R);if(G){var ue=R.slice(0,G.index).split(` `),ae=G[0].split(` -`),de=N.line+ue.length-1,A=ue[ue.length-1].length;return{from:c(de,A),to:c(de+ae.length-1,ae.length==1?A+ae[0].length:ae[ae.length-1].length),match:G}}}}function p(F,B,N){for(var R,H=0;H<=F.length;){B.lastIndex=H;var _=B.exec(F);if(!_)break;var X=_.index+_[0].length;if(X>F.length-N)break;(!R||X>R.index+R[0].length)&&(R=_),H=_.index+1}return R}function b(F,B,N){B=l(B,"g");for(var R=N.line,H=N.ch,_=F.firstLine();R>=_;R--,H=-1){var X=F.getLine(R),K=p(X,B,H<0?0:X.length-H);if(K)return{from:c(R,K.index),to:c(R,K.index+K[0].length),match:K}}}function C(F,B,N){if(!u(B))return b(F,B,N);B=l(B,"gm");for(var R,H=1,_=F.getLine(N.line).length-N.ch,X=N.line,K=F.firstLine();X>=K;){for(var ge=0;ge=K;ge++){var G=F.getLine(X--);R=R==null?G:G+` +`),de=N.line+ue.length-1,L=ue[ue.length-1].length;return{from:c(de,L),to:c(de+ae.length-1,ae.length==1?L+ae[0].length:ae[ae.length-1].length),match:G}}}}function p(A,B,N){for(var R,H=0;H<=A.length;){B.lastIndex=H;var _=B.exec(A);if(!_)break;var X=_.index+_[0].length;if(X>A.length-N)break;(!R||X>R.index+R[0].length)&&(R=_),H=_.index+1}return R}function y(A,B,N){B=l(B,"g");for(var R=N.line,H=N.ch,_=A.firstLine();R>=_;R--,H=-1){var X=A.getLine(R),K=p(X,B,H<0?0:X.length-H);if(K)return{from:c(R,K.index),to:c(R,K.index+K[0].length),match:K}}}function C(A,B,N){if(!u(B))return y(A,B,N);B=l(B,"gm");for(var R,H=1,_=A.getLine(N.line).length-N.ch,X=N.line,K=A.firstLine();X>=K;){for(var ge=0;ge=K;ge++){var G=A.getLine(X--);R=R==null?G:G+` `+R}H*=2;var ue=p(R,B,_);if(ue){var ae=R.slice(0,ue.index).split(` `),de=ue[0].split(` -`),A=X+ae.length,U=ae[ae.length-1].length;return{from:c(A,U),to:c(A+de.length-1,de.length==1?U+de[0].length:de[de.length-1].length),match:ue}}}}var D,E;String.prototype.normalize?(D=function(F){return F.normalize("NFD").toLowerCase()},E=function(F){return F.normalize("NFD")}):(D=function(F){return F.toLowerCase()},E=function(F){return F});function T(F,B,N,R){if(F.length==B.length)return N;for(var H=0,_=N+Math.max(0,F.length-B.length);;){if(H==_)return H;var X=H+_>>1,K=R(F.slice(0,X)).length;if(K==N)return X;K>N?_=X:H=X+1}}function M(F,B,N,R){if(!B.length)return null;var H=R?D:E,_=H(B).split(/\r|\n\r?/);e:for(var X=N.line,K=N.ch,ge=F.lastLine()+1-_.length;X<=ge;X++,K=0){var G=F.getLine(X).slice(K),ue=H(G);if(_.length==1){var ae=ue.indexOf(_[0]);if(ae==-1)continue e;var N=T(G,ue,ae,H)+K;return{from:c(X,T(G,ue,ae,H)+K),to:c(X,T(G,ue,ae+_[0].length,H)+K)}}else{var de=ue.length-_[0].length;if(ue.slice(de)!=_[0])continue e;for(var A=1;A<_.length-1;A++)if(H(F.getLine(X+A))!=_[A])continue e;var U=F.getLine(X+_.length-1),W=H(U),V=_[_.length-1];if(W.slice(0,V.length)!=V)continue e;return{from:c(X,T(G,ue,de,H)+K),to:c(X+_.length-1,T(U,W,V.length,H))}}}}function z(F,B,N,R){if(!B.length)return null;var H=R?D:E,_=H(B).split(/\r|\n\r?/);e:for(var X=N.line,K=N.ch,ge=F.firstLine()-1+_.length;X>=ge;X--,K=-1){var G=F.getLine(X);K>-1&&(G=G.slice(0,K));var ue=H(G);if(_.length==1){var ae=ue.lastIndexOf(_[0]);if(ae==-1)continue e;return{from:c(X,T(G,ue,ae,H)),to:c(X,T(G,ue,ae+_[0].length,H))}}else{var de=_[_.length-1];if(ue.slice(0,de.length)!=de)continue e;for(var A=1,N=X-_.length+1;A<_.length-1;A++)if(H(F.getLine(N+A))!=_[A])continue e;var U=F.getLine(X+1-_.length),W=H(U);if(W.slice(W.length-_[0].length)!=_[0])continue e;return{from:c(X+1-_.length,T(U,W,U.length-_[0].length,H)),to:c(X,T(G,ue,de.length,H))}}}}function I(F,B,N,R){this.atOccurrence=!1,this.afterEmptyMatch=!1,this.doc=F,N=N?F.clipPos(N):c(0,0),this.pos={from:N,to:N};var H;typeof R=="object"?H=R.caseFold:(H=R,R=null),typeof B=="string"?(H==null&&(H=!1),this.matches=function(_,X){return(_?z:M)(F,B,X,H)}):(B=l(B,"gm"),!R||R.multiline!==!1?this.matches=function(_,X){return(_?C:f)(F,B,X)}:this.matches=function(_,X){return(_?b:g)(F,B,X)})}I.prototype={findNext:function(){return this.find(!1)},findPrevious:function(){return this.find(!0)},find:function(F){var B=this.doc.clipPos(F?this.pos.from:this.pos.to);if(this.afterEmptyMatch&&this.atOccurrence&&(B=c(B.line,B.ch),F?(B.ch--,B.ch<0&&(B.line--,B.ch=(this.doc.getLine(B.line)||"").length)):(B.ch++,B.ch>(this.doc.getLine(B.line)||"").length&&(B.ch=0,B.line++)),a.cmpPos(B,this.doc.clipPos(B))!=0))return this.atOccurrence=!1;var N=this.matches(F,B);if(this.afterEmptyMatch=N&&a.cmpPos(N.from,N.to)==0,N)return this.pos=N,this.atOccurrence=!0,this.pos.match||!0;var R=c(F?this.doc.firstLine():this.doc.lastLine()+1,0);return this.pos={from:R,to:R},this.atOccurrence=!1},from:function(){if(this.atOccurrence)return this.pos.from},to:function(){if(this.atOccurrence)return this.pos.to},replace:function(F,B){if(this.atOccurrence){var N=a.splitLines(F);this.doc.replaceRange(N,this.pos.from,this.pos.to,B),this.pos.to=c(this.pos.from.line+N.length-1,N[N.length-1].length+(N.length==1?this.pos.from.ch:0))}}},a.defineExtension("getSearchCursor",function(F,B,N){return new I(this.doc,F,B,N)}),a.defineDocExtension("getSearchCursor",function(F,B,N){return new I(this,F,B,N)}),a.defineExtension("selectMatches",function(F,B){for(var N=[],R=this.getSearchCursor(F,this.getCursor("from"),B);R.findNext()&&!(a.cmpPos(R.to(),this.getCursor("to"))>0);)N.push({anchor:R.from(),head:R.to()});N.length&&this.setSelections(N,0)})})});var Zs=Ye((Xs,Ys)=>{(function(a){typeof Xs=="object"&&typeof Ys=="object"?a(ct(),Zo(),Qo()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../markdown/markdown","../../addon/mode/overlay"],a):a(CodeMirror)})(function(a){"use strict";var c=/^((?:(?:aaas?|about|acap|adiumxtra|af[ps]|aim|apt|attachment|aw|beshare|bitcoin|bolo|callto|cap|chrome(?:-extension)?|cid|coap|com-eventbrite-attendee|content|crid|cvs|data|dav|dict|dlna-(?:playcontainer|playsingle)|dns|doi|dtn|dvb|ed2k|facetime|feed|file|finger|fish|ftp|geo|gg|git|gizmoproject|go|gopher|gtalk|h323|hcp|https?|iax|icap|icon|im|imap|info|ipn|ipp|irc[6s]?|iris(?:\.beep|\.lwz|\.xpc|\.xpcs)?|itms|jar|javascript|jms|keyparc|lastfm|ldaps?|magnet|mailto|maps|market|message|mid|mms|ms-help|msnim|msrps?|mtqp|mumble|mupdate|mvn|news|nfs|nih?|nntp|notes|oid|opaquelocktoken|palm|paparazzi|platform|pop|pres|proxy|psyc|query|res(?:ource)?|rmi|rsync|rtmp|rtsp|secondlife|service|session|sftp|sgn|shttp|sieve|sips?|skype|sm[bs]|snmp|soap\.beeps?|soldat|spotify|ssh|steam|svn|tag|teamspeak|tel(?:net)?|tftp|things|thismessage|tip|tn3270|tv|udp|unreal|urn|ut2004|vemmi|ventrilo|view-source|webcal|wss?|wtai|wyciwyg|xcon(?:-userid)?|xfire|xmlrpc\.beeps?|xmpp|xri|ymsgr|z39\.50[rs]?):(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]|\([^\s()<>]*\))+(?:\([^\s()<>]*\)|[^\s`*!()\[\]{};:'".,<>?«»“”‘’]))/i;a.defineMode("gfm",function(d,l){var u=0;function g(C){return C.code=!1,null}var f={startState:function(){return{code:!1,codeBlock:!1,ateSpace:!1}},copyState:function(C){return{code:C.code,codeBlock:C.codeBlock,ateSpace:C.ateSpace}},token:function(C,D){if(D.combineTokens=null,D.codeBlock)return C.match(/^```+/)?(D.codeBlock=!1,null):(C.skipToEnd(),null);if(C.sol()&&(D.code=!1),C.sol()&&C.match(/^```+/))return C.skipToEnd(),D.codeBlock=!0,null;if(C.peek()==="`"){C.next();var E=C.pos;C.eatWhile("`");var T=1+C.pos-E;return D.code?T===u&&(D.code=!1):(u=T,D.code=!0),null}else if(D.code)return C.next(),null;if(C.eatSpace())return D.ateSpace=!0,null;if((C.sol()||D.ateSpace)&&(D.ateSpace=!1,l.gitHubSpice!==!1)){if(C.match(/^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+@)?(?=.{0,6}\d)(?:[a-f0-9]{7,40}\b)/))return D.combineTokens=!0,"link";if(C.match(/^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+)?#[0-9]+\b/))return D.combineTokens=!0,"link"}return C.match(c)&&C.string.slice(C.start-2,C.start)!="]("&&(C.start==0||/\W/.test(C.string.charAt(C.start-1)))?(D.combineTokens=!0,"link"):(C.next(),null)},blankLine:g},p={taskLists:!0,strikethrough:!0,emoji:!0};for(var b in l)p[b]=l[b];return p.name="markdown",a.overlayMode(a.getMode(d,p),f)},"markdown"),a.defineMIME("text/x-gfm","gfm")})});var Qs=Ye(()=>{});var Js=Ye((Qd,$o)=>{var Jo;(function(){"use strict";Jo=function(a,c,d,l){l=l||{},this.dictionary=null,this.rules={},this.dictionaryTable=new Map,this.compoundRules=[],this.compoundRuleCodes={},this.replacementTable=[],this.flags=l.flags||{},this.memoized={},this.loaded=!1;var u=this,g,f,p,b,C;a&&(u.dictionary=a,c&&d?M():(typeof window<"u"?(l.dictionaryPath?g=l.dictionaryPath:g="typo/dictionaries",window.chrome&&window.chrome.runtime&&window.chrome.runtime.getURL?g=window.chrome.runtime.getURL(g):window.browser&&window.browser.runtime&&window.browser.runtime.getURL&&(g=window.browser.runtime.getURL(g))):typeof __dirname<"u"?g=__dirname+"/dictionaries":g="./dictionaries",c||D(g+"/"+a+"/"+a+".aff",E),d||D(g+"/"+a+"/"+a+".dic",T)));function D(z,I){var F=u._readFile(z,null,l?.asyncLoad);l?.asyncLoad?F.then(function(B){I(B)}):I(F)}function E(z){c=z,d&&M()}function T(z){d=z,c&&M()}function M(){for(u.rules=u._parseAFF(c),u.compoundRuleCodes={},f=0,b=u.compoundRules.length;f0&&(_.continuationClasses=R),H!=="."&&(T==="SFX"?_.match=new RegExp(H+"$"):_.match=new RegExp("^"+H)),F!="0"&&(T==="SFX"?_.remove=new RegExp(F+"$"):_.remove=F),I.push(_)}c[M]={type:T,combineable:z==="Y",entries:I},f+=u}else if(T==="COMPOUNDRULE"){for(u=parseInt(E[1],10),p=f+1,C=f+1+u;p0&&(d.get(ue)===null&&d.set(ue,[]),d.get(ue).push(ae))}for(var u=1,g=c.length;u1){var D=this.parseRuleCodes(b[1]);(!("NEEDAFFIX"in this.flags)||D.indexOf(this.flags.NEEDAFFIX)===-1)&&l(C,D);for(var E=0,T=D.length;E"u"){if("COMPOUNDMIN"in this.flags&&a.length>=this.flags.COMPOUNDMIN){for(d=0,l=this.compoundRules.length;d"u"&&(d=Array.prototype.concat.apply([],this.dictionaryTable.get(a))),d&&d.indexOf(this.flags[c])!==-1))},alphabet:"",suggest:function(a,c){if(!this.loaded)throw"Dictionary not loaded.";if(c=c||5,this.memoized.hasOwnProperty(a)){var d=this.memoized[a].limit;if(c<=d||this.memoized[a].suggestions.length1&&K[1][1]!==K[1][0]&&(H=K[0]+K[1][1]+K[1][0]+K[1].substring(2),(!M||C.check(H))&&(H in z?z[H]+=1:z[H]=1)),K[1]){var ge=K[1].substring(0,1).toUpperCase()===K[1].substring(0,1)?"uppercase":"lowercase";for(F=0;F<_;F++){var G=C.alphabet[F];ge==="uppercase"&&(G=G.toUpperCase()),G!=K[1].substring(0,1)&&(H=K[0]+G+K[1].substring(1),(!M||C.check(H))&&(H in z?z[H]+=1:z[H]=1))}}if(K[1])for(F=0;F<_;F++){var ge=K[0].substring(-1).toUpperCase()===K[0].substring(-1)&&K[1].substring(0,1).toUpperCase()===K[1].substring(0,1)?"uppercase":"lowercase",G=C.alphabet[F];ge==="uppercase"&&(G=G.toUpperCase()),H=K[0]+G+K[1],(!M||C.check(H))&&(H in z?z[H]+=1:z[H]=1)}}return z}function E(T){var M,z=D((M={},M[T]=!0,M)),I=D(z,!0),F=I;for(var B in z)C.check(B)&&(B in F?F[B]+=z[B]:F[B]=z[B]);var N,R,H=[];for(N in F)F.hasOwnProperty(N)&&(C.hasFlag(N,"PRIORITYSUGGEST")&&(F[N]+=1e3),H.push([N,F[N]]));function _(G,ue){var ae=G[1],de=ue[1];return aede?1:ue[0].localeCompare(G[0])}H.sort(_).reverse();var X=[],K="lowercase";T.toUpperCase()===T?K="uppercase":T.substr(0,1).toUpperCase()+T.substr(1).toLowerCase()===T&&(K="capitalized");var ge=c;for(N=0;N{"use strict";var $s=Js();function Ae(a){if(a=a||{},typeof a.codeMirrorInstance!="function"||typeof a.codeMirrorInstance.defineMode!="function"){console.log("CodeMirror Spell Checker: You must provide an instance of CodeMirror via the option `codeMirrorInstance`");return}String.prototype.includes||(String.prototype.includes=function(){"use strict";return String.prototype.indexOf.apply(this,arguments)!==-1}),a.codeMirrorInstance.defineMode("spell-checker",function(c){if(!Ae.aff_loading){Ae.aff_loading=!0;var d=new XMLHttpRequest;d.open("GET","https://cdn.jsdelivr.net/codemirror.spell-checker/latest/en_US.aff",!0),d.onload=function(){d.readyState===4&&d.status===200&&(Ae.aff_data=d.responseText,Ae.num_loaded++,Ae.num_loaded==2&&(Ae.typo=new $s("en_US",Ae.aff_data,Ae.dic_data,{platform:"any"})))},d.send(null)}if(!Ae.dic_loading){Ae.dic_loading=!0;var l=new XMLHttpRequest;l.open("GET","https://cdn.jsdelivr.net/codemirror.spell-checker/latest/en_US.dic",!0),l.onload=function(){l.readyState===4&&l.status===200&&(Ae.dic_data=l.responseText,Ae.num_loaded++,Ae.num_loaded==2&&(Ae.typo=new $s("en_US",Ae.aff_data,Ae.dic_data,{platform:"any"})))},l.send(null)}var u='!"#$%&()*+,-./:;<=>?@[\\]^_`{|}~ ',g={token:function(p){var b=p.peek(),C="";if(u.includes(b))return p.next(),null;for(;(b=p.peek())!=null&&!u.includes(b);)C+=b,p.next();return Ae.typo&&!Ae.typo.check(C)?"spell-error":null}},f=a.codeMirrorInstance.getMode(c,c.backdrop||"text/plain");return a.codeMirrorInstance.overlayMode(f,g,!0)})}Ae.num_loaded=0;Ae.aff_loading=!1;Ae.dic_loading=!1;Ae.aff_data="";Ae.dic_data="";Ae.typo;Vs.exports=Ae});var hu=Ye(Se=>{"use strict";function tu(a,c){for(var d=0;da.length)&&(c=a.length);for(var d=0,l=new Array(c);d=a.length?{done:!0}:{done:!1,value:a[l++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. -In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Uc(a,c){if(typeof a!="object"||a===null)return a;var d=a[Symbol.toPrimitive];if(d!==void 0){var l=d.call(a,c||"default");if(typeof l!="object")return l;throw new TypeError("@@toPrimitive must return a primitive value.")}return(c==="string"?String:Number)(a)}function jc(a){var c=Uc(a,"string");return typeof c=="symbol"?c:String(c)}function Vo(){return{async:!1,baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,hooks:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}Se.defaults=Vo();function Gc(a){Se.defaults=a}var uu=/[&<>"']/,Kc=new RegExp(uu.source,"g"),fu=/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,Xc=new RegExp(fu.source,"g"),Yc={"&":"&","<":"<",">":">",'"':""","'":"'"},iu=function(c){return Yc[c]};function et(a,c){if(c){if(uu.test(a))return a.replace(Kc,iu)}else if(fu.test(a))return a.replace(Xc,iu);return a}var Zc=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig;function cu(a){return a.replace(Zc,function(c,d){return d=d.toLowerCase(),d==="colon"?":":d.charAt(0)==="#"?d.charAt(1)==="x"?String.fromCharCode(parseInt(d.substring(2),16)):String.fromCharCode(+d.substring(1)):""})}var Qc=/(^|[^\[])\^/g;function we(a,c){a=typeof a=="string"?a:a.source,c=c||"";var d={replace:function(u,g){return g=g.source||g,g=g.replace(Qc,"$1"),a=a.replace(u,g),d},getRegex:function(){return new RegExp(a,c)}};return d}var Jc=/[^\w:]/g,$c=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function nu(a,c,d){if(a){var l;try{l=decodeURIComponent(cu(d)).replace(Jc,"").toLowerCase()}catch{return null}if(l.indexOf("javascript:")===0||l.indexOf("vbscript:")===0||l.indexOf("data:")===0)return null}c&&!$c.test(d)&&(d=rd(c,d));try{d=encodeURI(d).replace(/%25/g,"%")}catch{return null}return d}var sn={},Vc=/^[^:]+:\/*[^/]*$/,ed=/^([^:]+:)[\s\S]*$/,td=/^([^:]+:\/*[^/]*)[\s\S]*$/;function rd(a,c){sn[" "+a]||(Vc.test(a)?sn[" "+a]=a+"/":sn[" "+a]=un(a,"/",!0)),a=sn[" "+a];var d=a.indexOf(":")===-1;return c.substring(0,2)==="//"?d?c:a.replace(ed,"$1")+c:c.charAt(0)==="/"?d?c:a.replace(td,"$1")+c:a+c}var fn={exec:function(){}};function ou(a,c){var d=a.replace(/\|/g,function(g,f,p){for(var b=!1,C=f;--C>=0&&p[C]==="\\";)b=!b;return b?"|":" |"}),l=d.split(/ \|/),u=0;if(l[0].trim()||l.shift(),l.length>0&&!l[l.length-1].trim()&&l.pop(),l.length>c)l.splice(c);else for(;l.length1;)c&1&&(d+=a),c>>=1,a+=a;return d+a}function lu(a,c,d,l){var u=c.href,g=c.title?et(c.title):null,f=a[1].replace(/\\([\[\]])/g,"$1");if(a[0].charAt(0)!=="!"){l.state.inLink=!0;var p={type:"link",raw:d,href:u,title:g,text:f,tokens:l.inlineTokens(f)};return l.state.inLink=!1,p}return{type:"image",raw:d,href:u,title:g,text:et(f)}}function od(a,c){var d=a.match(/^(\s+)(?:```)/);if(d===null)return c;var l=d[1];return c.split(` +`),L=X+ae.length,U=ae[ae.length-1].length;return{from:c(L,U),to:c(L+de.length-1,de.length==1?U+de[0].length:de[de.length-1].length),match:ue}}}}var D,S;String.prototype.normalize?(D=function(A){return A.normalize("NFD").toLowerCase()},S=function(A){return A.normalize("NFD")}):(D=function(A){return A.toLowerCase()},S=function(A){return A});function F(A,B,N,R){if(A.length==B.length)return N;for(var H=0,_=N+Math.max(0,A.length-B.length);;){if(H==_)return H;var X=H+_>>1,K=R(A.slice(0,X)).length;if(K==N)return X;K>N?_=X:H=X+1}}function M(A,B,N,R){if(!B.length)return null;var H=R?D:S,_=H(B).split(/\r|\n\r?/);e:for(var X=N.line,K=N.ch,ge=A.lastLine()+1-_.length;X<=ge;X++,K=0){var G=A.getLine(X).slice(K),ue=H(G);if(_.length==1){var ae=ue.indexOf(_[0]);if(ae==-1)continue e;var N=F(G,ue,ae,H)+K;return{from:c(X,F(G,ue,ae,H)+K),to:c(X,F(G,ue,ae+_[0].length,H)+K)}}else{var de=ue.length-_[0].length;if(ue.slice(de)!=_[0])continue e;for(var L=1;L<_.length-1;L++)if(H(A.getLine(X+L))!=_[L])continue e;var U=A.getLine(X+_.length-1),W=H(U),V=_[_.length-1];if(W.slice(0,V.length)!=V)continue e;return{from:c(X,F(G,ue,de,H)+K),to:c(X+_.length-1,F(U,W,V.length,H))}}}}function z(A,B,N,R){if(!B.length)return null;var H=R?D:S,_=H(B).split(/\r|\n\r?/);e:for(var X=N.line,K=N.ch,ge=A.firstLine()-1+_.length;X>=ge;X--,K=-1){var G=A.getLine(X);K>-1&&(G=G.slice(0,K));var ue=H(G);if(_.length==1){var ae=ue.lastIndexOf(_[0]);if(ae==-1)continue e;return{from:c(X,F(G,ue,ae,H)),to:c(X,F(G,ue,ae+_[0].length,H))}}else{var de=_[_.length-1];if(ue.slice(0,de.length)!=de)continue e;for(var L=1,N=X-_.length+1;L<_.length-1;L++)if(H(A.getLine(N+L))!=_[L])continue e;var U=A.getLine(X+1-_.length),W=H(U);if(W.slice(W.length-_[0].length)!=_[0])continue e;return{from:c(X+1-_.length,F(U,W,U.length-_[0].length,H)),to:c(X,F(G,ue,de.length,H))}}}}function I(A,B,N,R){this.atOccurrence=!1,this.afterEmptyMatch=!1,this.doc=A,N=N?A.clipPos(N):c(0,0),this.pos={from:N,to:N};var H;typeof R=="object"?H=R.caseFold:(H=R,R=null),typeof B=="string"?(H==null&&(H=!1),this.matches=function(_,X){return(_?z:M)(A,B,X,H)}):(B=l(B,"gm"),!R||R.multiline!==!1?this.matches=function(_,X){return(_?C:f)(A,B,X)}:this.matches=function(_,X){return(_?y:g)(A,B,X)})}I.prototype={findNext:function(){return this.find(!1)},findPrevious:function(){return this.find(!0)},find:function(A){var B=this.doc.clipPos(A?this.pos.from:this.pos.to);if(this.afterEmptyMatch&&this.atOccurrence&&(B=c(B.line,B.ch),A?(B.ch--,B.ch<0&&(B.line--,B.ch=(this.doc.getLine(B.line)||"").length)):(B.ch++,B.ch>(this.doc.getLine(B.line)||"").length&&(B.ch=0,B.line++)),a.cmpPos(B,this.doc.clipPos(B))!=0))return this.atOccurrence=!1;var N=this.matches(A,B);if(this.afterEmptyMatch=N&&a.cmpPos(N.from,N.to)==0,N)return this.pos=N,this.atOccurrence=!0,this.pos.match||!0;var R=c(A?this.doc.firstLine():this.doc.lastLine()+1,0);return this.pos={from:R,to:R},this.atOccurrence=!1},from:function(){if(this.atOccurrence)return this.pos.from},to:function(){if(this.atOccurrence)return this.pos.to},replace:function(A,B){if(this.atOccurrence){var N=a.splitLines(A);this.doc.replaceRange(N,this.pos.from,this.pos.to,B),this.pos.to=c(this.pos.from.line+N.length-1,N[N.length-1].length+(N.length==1?this.pos.from.ch:0))}}},a.defineExtension("getSearchCursor",function(A,B,N){return new I(this.doc,A,B,N)}),a.defineDocExtension("getSearchCursor",function(A,B,N){return new I(this,A,B,N)}),a.defineExtension("selectMatches",function(A,B){for(var N=[],R=this.getSearchCursor(A,this.getCursor("from"),B);R.findNext()&&!(a.cmpPos(R.to(),this.getCursor("to"))>0);)N.push({anchor:R.from(),head:R.to()});N.length&&this.setSelections(N,0)})})});var Zs=Ye((Xs,Ys)=>{(function(a){typeof Xs=="object"&&typeof Ys=="object"?a(ct(),Zo(),Qo()):typeof define=="function"&&define.amd?define(["../../lib/codemirror","../markdown/markdown","../../addon/mode/overlay"],a):a(CodeMirror)})(function(a){"use strict";var c=/^((?:(?:aaas?|about|acap|adiumxtra|af[ps]|aim|apt|attachment|aw|beshare|bitcoin|bolo|callto|cap|chrome(?:-extension)?|cid|coap|com-eventbrite-attendee|content|crid|cvs|data|dav|dict|dlna-(?:playcontainer|playsingle)|dns|doi|dtn|dvb|ed2k|facetime|feed|file|finger|fish|ftp|geo|gg|git|gizmoproject|go|gopher|gtalk|h323|hcp|https?|iax|icap|icon|im|imap|info|ipn|ipp|irc[6s]?|iris(?:\.beep|\.lwz|\.xpc|\.xpcs)?|itms|jar|javascript|jms|keyparc|lastfm|ldaps?|magnet|mailto|maps|market|message|mid|mms|ms-help|msnim|msrps?|mtqp|mumble|mupdate|mvn|news|nfs|nih?|nntp|notes|oid|opaquelocktoken|palm|paparazzi|platform|pop|pres|proxy|psyc|query|res(?:ource)?|rmi|rsync|rtmp|rtsp|secondlife|service|session|sftp|sgn|shttp|sieve|sips?|skype|sm[bs]|snmp|soap\.beeps?|soldat|spotify|ssh|steam|svn|tag|teamspeak|tel(?:net)?|tftp|things|thismessage|tip|tn3270|tv|udp|unreal|urn|ut2004|vemmi|ventrilo|view-source|webcal|wss?|wtai|wyciwyg|xcon(?:-userid)?|xfire|xmlrpc\.beeps?|xmpp|xri|ymsgr|z39\.50[rs]?):(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]|\([^\s()<>]*\))+(?:\([^\s()<>]*\)|[^\s`*!()\[\]{};:'".,<>?«»“”‘’]))/i;a.defineMode("gfm",function(d,l){var u=0;function g(C){return C.code=!1,null}var f={startState:function(){return{code:!1,codeBlock:!1,ateSpace:!1}},copyState:function(C){return{code:C.code,codeBlock:C.codeBlock,ateSpace:C.ateSpace}},token:function(C,D){if(D.combineTokens=null,D.codeBlock)return C.match(/^```+/)?(D.codeBlock=!1,null):(C.skipToEnd(),null);if(C.sol()&&(D.code=!1),C.sol()&&C.match(/^```+/))return C.skipToEnd(),D.codeBlock=!0,null;if(C.peek()==="`"){C.next();var S=C.pos;C.eatWhile("`");var F=1+C.pos-S;return D.code?F===u&&(D.code=!1):(u=F,D.code=!0),null}else if(D.code)return C.next(),null;if(C.eatSpace())return D.ateSpace=!0,null;if((C.sol()||D.ateSpace)&&(D.ateSpace=!1,l.gitHubSpice!==!1)){if(C.match(/^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+@)?(?=.{0,6}\d)(?:[a-f0-9]{7,40}\b)/))return D.combineTokens=!0,"link";if(C.match(/^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+)?#[0-9]+\b/))return D.combineTokens=!0,"link"}return C.match(c)&&C.string.slice(C.start-2,C.start)!="]("&&(C.start==0||/\W/.test(C.string.charAt(C.start-1)))?(D.combineTokens=!0,"link"):(C.next(),null)},blankLine:g},p={taskLists:!0,strikethrough:!0,emoji:!0};for(var y in l)p[y]=l[y];return p.name="markdown",a.overlayMode(a.getMode(d,p),f)},"markdown"),a.defineMIME("text/x-gfm","gfm")})});var Qs=Ye(()=>{});var Js=Ye((Qd,$o)=>{var Jo;(function(){"use strict";Jo=function(a,c,d,l){l=l||{},this.dictionary=null,this.rules={},this.dictionaryTable=new Map,this.compoundRules=[],this.compoundRuleCodes={},this.replacementTable=[],this.flags=l.flags||{},this.memoized={},this.loaded=!1;var u=this,g,f,p,y,C;a&&(u.dictionary=a,c&&d?M():(typeof window<"u"?(l.dictionaryPath?g=l.dictionaryPath:g="typo/dictionaries",window.chrome&&window.chrome.runtime&&window.chrome.runtime.getURL?g=window.chrome.runtime.getURL(g):window.browser&&window.browser.runtime&&window.browser.runtime.getURL&&(g=window.browser.runtime.getURL(g))):typeof __dirname<"u"?g=__dirname+"/dictionaries":g="./dictionaries",c||D(g+"/"+a+"/"+a+".aff",S),d||D(g+"/"+a+"/"+a+".dic",F)));function D(z,I){var A=u._readFile(z,null,l?.asyncLoad);l?.asyncLoad?A.then(function(B){I(B)}):I(A)}function S(z){c=z,d&&M()}function F(z){d=z,c&&M()}function M(){for(u.rules=u._parseAFF(c),u.compoundRuleCodes={},f=0,y=u.compoundRules.length;f0&&(_.continuationClasses=R),H!=="."&&(F==="SFX"?_.match=new RegExp(H+"$"):_.match=new RegExp("^"+H)),A!="0"&&(F==="SFX"?_.remove=new RegExp(A+"$"):_.remove=A),I.push(_)}c[M]={type:F,combineable:z==="Y",entries:I},f+=u}else if(F==="COMPOUNDRULE"){for(u=parseInt(S[1],10),p=f+1,C=f+1+u;p0&&(d.get(ue)===null&&d.set(ue,[]),d.get(ue).push(ae))}for(var u=1,g=c.length;u1){var D=this.parseRuleCodes(y[1]);(!("NEEDAFFIX"in this.flags)||D.indexOf(this.flags.NEEDAFFIX)===-1)&&l(C,D);for(var S=0,F=D.length;S"u"){if("COMPOUNDMIN"in this.flags&&a.length>=this.flags.COMPOUNDMIN){for(d=0,l=this.compoundRules.length;d"u"&&(d=Array.prototype.concat.apply([],this.dictionaryTable.get(a))),d&&d.indexOf(this.flags[c])!==-1))},alphabet:"",suggest:function(a,c){if(!this.loaded)throw"Dictionary not loaded.";if(c=c||5,this.memoized.hasOwnProperty(a)){var d=this.memoized[a].limit;if(c<=d||this.memoized[a].suggestions.length1&&K[1][1]!==K[1][0]&&(H=K[0]+K[1][1]+K[1][0]+K[1].substring(2),(!M||C.check(H))&&(H in z?z[H]+=1:z[H]=1)),K[1]){var ge=K[1].substring(0,1).toUpperCase()===K[1].substring(0,1)?"uppercase":"lowercase";for(A=0;A<_;A++){var G=C.alphabet[A];ge==="uppercase"&&(G=G.toUpperCase()),G!=K[1].substring(0,1)&&(H=K[0]+G+K[1].substring(1),(!M||C.check(H))&&(H in z?z[H]+=1:z[H]=1))}}if(K[1])for(A=0;A<_;A++){var ge=K[0].substring(-1).toUpperCase()===K[0].substring(-1)&&K[1].substring(0,1).toUpperCase()===K[1].substring(0,1)?"uppercase":"lowercase",G=C.alphabet[A];ge==="uppercase"&&(G=G.toUpperCase()),H=K[0]+G+K[1],(!M||C.check(H))&&(H in z?z[H]+=1:z[H]=1)}}return z}function S(F){var M,z=D((M={},M[F]=!0,M)),I=D(z,!0),A=I;for(var B in z)C.check(B)&&(B in A?A[B]+=z[B]:A[B]=z[B]);var N,R,H=[];for(N in A)A.hasOwnProperty(N)&&(C.hasFlag(N,"PRIORITYSUGGEST")&&(A[N]+=1e3),H.push([N,A[N]]));function _(G,ue){var ae=G[1],de=ue[1];return aede?1:ue[0].localeCompare(G[0])}H.sort(_).reverse();var X=[],K="lowercase";F.toUpperCase()===F?K="uppercase":F.substr(0,1).toUpperCase()+F.substr(1).toLowerCase()===F&&(K="capitalized");var ge=c;for(N=0;N{"use strict";var $s=Js();function Ae(a){if(a=a||{},typeof a.codeMirrorInstance!="function"||typeof a.codeMirrorInstance.defineMode!="function"){console.log("CodeMirror Spell Checker: You must provide an instance of CodeMirror via the option `codeMirrorInstance`");return}String.prototype.includes||(String.prototype.includes=function(){"use strict";return String.prototype.indexOf.apply(this,arguments)!==-1}),a.codeMirrorInstance.defineMode("spell-checker",function(c){if(!Ae.aff_loading){Ae.aff_loading=!0;var d=new XMLHttpRequest;d.open("GET","https://cdn.jsdelivr.net/codemirror.spell-checker/latest/en_US.aff",!0),d.onload=function(){d.readyState===4&&d.status===200&&(Ae.aff_data=d.responseText,Ae.num_loaded++,Ae.num_loaded==2&&(Ae.typo=new $s("en_US",Ae.aff_data,Ae.dic_data,{platform:"any"})))},d.send(null)}if(!Ae.dic_loading){Ae.dic_loading=!0;var l=new XMLHttpRequest;l.open("GET","https://cdn.jsdelivr.net/codemirror.spell-checker/latest/en_US.dic",!0),l.onload=function(){l.readyState===4&&l.status===200&&(Ae.dic_data=l.responseText,Ae.num_loaded++,Ae.num_loaded==2&&(Ae.typo=new $s("en_US",Ae.aff_data,Ae.dic_data,{platform:"any"})))},l.send(null)}var u='!"#$%&()*+,-./:;<=>?@[\\]^_`{|}~ ',g={token:function(p){var y=p.peek(),C="";if(u.includes(y))return p.next(),null;for(;(y=p.peek())!=null&&!u.includes(y);)C+=y,p.next();return Ae.typo&&!Ae.typo.check(C)?"spell-error":null}},f=a.codeMirrorInstance.getMode(c,c.backdrop||"text/plain");return a.codeMirrorInstance.overlayMode(f,g,!0)})}Ae.num_loaded=0;Ae.aff_loading=!1;Ae.dic_loading=!1;Ae.aff_data="";Ae.dic_data="";Ae.typo;Vs.exports=Ae});var hu=Ye(Se=>{"use strict";function tu(a,c){for(var d=0;da.length)&&(c=a.length);for(var d=0,l=new Array(c);d=a.length?{done:!0}:{done:!1,value:a[l++]}}}throw new TypeError(`Invalid attempt to iterate non-iterable instance. +In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`)}function Uc(a,c){if(typeof a!="object"||a===null)return a;var d=a[Symbol.toPrimitive];if(d!==void 0){var l=d.call(a,c||"default");if(typeof l!="object")return l;throw new TypeError("@@toPrimitive must return a primitive value.")}return(c==="string"?String:Number)(a)}function jc(a){var c=Uc(a,"string");return typeof c=="symbol"?c:String(c)}function Vo(){return{async:!1,baseUrl:null,breaks:!1,extensions:null,gfm:!0,headerIds:!0,headerPrefix:"",highlight:null,hooks:null,langPrefix:"language-",mangle:!0,pedantic:!1,renderer:null,sanitize:!1,sanitizer:null,silent:!1,smartypants:!1,tokenizer:null,walkTokens:null,xhtml:!1}}Se.defaults=Vo();function Gc(a){Se.defaults=a}var uu=/[&<>"']/,Kc=new RegExp(uu.source,"g"),fu=/[<>"']|&(?!(#\d{1,7}|#[Xx][a-fA-F0-9]{1,6}|\w+);)/,Xc=new RegExp(fu.source,"g"),Yc={"&":"&","<":"<",">":">",'"':""","'":"'"},iu=function(c){return Yc[c]};function et(a,c){if(c){if(uu.test(a))return a.replace(Kc,iu)}else if(fu.test(a))return a.replace(Xc,iu);return a}var Zc=/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/ig;function cu(a){return a.replace(Zc,function(c,d){return d=d.toLowerCase(),d==="colon"?":":d.charAt(0)==="#"?d.charAt(1)==="x"?String.fromCharCode(parseInt(d.substring(2),16)):String.fromCharCode(+d.substring(1)):""})}var Qc=/(^|[^\[])\^/g;function Ce(a,c){a=typeof a=="string"?a:a.source,c=c||"";var d={replace:function(u,g){return g=g.source||g,g=g.replace(Qc,"$1"),a=a.replace(u,g),d},getRegex:function(){return new RegExp(a,c)}};return d}var Jc=/[^\w:]/g,$c=/^$|^[a-z][a-z0-9+.-]*:|^[?#]/i;function nu(a,c,d){if(a){var l;try{l=decodeURIComponent(cu(d)).replace(Jc,"").toLowerCase()}catch{return null}if(l.indexOf("javascript:")===0||l.indexOf("vbscript:")===0||l.indexOf("data:")===0)return null}c&&!$c.test(d)&&(d=rd(c,d));try{d=encodeURI(d).replace(/%25/g,"%")}catch{return null}return d}var sn={},Vc=/^[^:]+:\/*[^/]*$/,ed=/^([^:]+:)[\s\S]*$/,td=/^([^:]+:\/*[^/]*)[\s\S]*$/;function rd(a,c){sn[" "+a]||(Vc.test(a)?sn[" "+a]=a+"/":sn[" "+a]=un(a,"/",!0)),a=sn[" "+a];var d=a.indexOf(":")===-1;return c.substring(0,2)==="//"?d?c:a.replace(ed,"$1")+c:c.charAt(0)==="/"?d?c:a.replace(td,"$1")+c:a+c}var fn={exec:function(){}};function ou(a,c){var d=a.replace(/\|/g,function(g,f,p){for(var y=!1,C=f;--C>=0&&p[C]==="\\";)y=!y;return y?"|":" |"}),l=d.split(/ \|/),u=0;if(l[0].trim()||l.shift(),l.length>0&&!l[l.length-1].trim()&&l.pop(),l.length>c)l.splice(c);else for(;l.length1;)c&1&&(d+=a),c>>=1,a+=a;return d+a}function lu(a,c,d,l){var u=c.href,g=c.title?et(c.title):null,f=a[1].replace(/\\([\[\]])/g,"$1");if(a[0].charAt(0)!=="!"){l.state.inLink=!0;var p={type:"link",raw:d,href:u,title:g,text:f,tokens:l.inlineTokens(f)};return l.state.inLink=!1,p}return{type:"image",raw:d,href:u,title:g,text:et(f)}}function od(a,c){var d=a.match(/^(\s+)(?:```)/);if(d===null)return c;var l=d[1];return c.split(` `).map(function(u){var g=u.match(/^\s+/);if(g===null)return u;var f=g[0];return f.length>=l.length?u.slice(l.length):u}).join(` `)}var cn=function(){function a(d){this.options=d||Se.defaults}var c=a.prototype;return c.space=function(l){var u=this.rules.block.newline.exec(l);if(u&&u[0].length>0)return{type:"space",raw:u[0]}},c.code=function(l){var u=this.rules.block.code.exec(l);if(u){var g=u[0].replace(/^ {1,4}/gm,"");return{type:"code",raw:u[0],codeBlockStyle:"indented",text:this.options.pedantic?g:un(g,` -`)}}},c.fences=function(l){var u=this.rules.block.fences.exec(l);if(u){var g=u[0],f=od(g,u[3]||"");return{type:"code",raw:g,lang:u[2]?u[2].trim().replace(this.rules.inline._escapes,"$1"):u[2],text:f}}},c.heading=function(l){var u=this.rules.block.heading.exec(l);if(u){var g=u[2].trim();if(/#$/.test(g)){var f=un(g,"#");(this.options.pedantic||!f||/ $/.test(f))&&(g=f.trim())}return{type:"heading",raw:u[0],depth:u[1].length,text:g,tokens:this.lexer.inline(g)}}},c.hr=function(l){var u=this.rules.block.hr.exec(l);if(u)return{type:"hr",raw:u[0]}},c.blockquote=function(l){var u=this.rules.block.blockquote.exec(l);if(u){var g=u[0].replace(/^ *>[ \t]?/gm,""),f=this.lexer.state.top;this.lexer.state.top=!0;var p=this.lexer.blockTokens(g);return this.lexer.state.top=f,{type:"blockquote",raw:u[0],tokens:p,text:g}}},c.list=function(l){var u=this.rules.block.list.exec(l);if(u){var g,f,p,b,C,D,E,T,M,z,I,F,B=u[1].trim(),N=B.length>1,R={type:"list",raw:"",ordered:N,start:N?+B.slice(0,-1):"",loose:!1,items:[]};B=N?"\\d{1,9}\\"+B.slice(-1):"\\"+B,this.options.pedantic&&(B=N?B:"[*+-]");for(var H=new RegExp("^( {0,3}"+B+")((?:[ ][^\\n]*)?(?:\\n|$))");l&&(F=!1,!(!(u=H.exec(l))||this.rules.block.hr.test(l)));){if(g=u[0],l=l.substring(g.length),T=u[2].split(` +`)}}},c.fences=function(l){var u=this.rules.block.fences.exec(l);if(u){var g=u[0],f=od(g,u[3]||"");return{type:"code",raw:g,lang:u[2]?u[2].trim().replace(this.rules.inline._escapes,"$1"):u[2],text:f}}},c.heading=function(l){var u=this.rules.block.heading.exec(l);if(u){var g=u[2].trim();if(/#$/.test(g)){var f=un(g,"#");(this.options.pedantic||!f||/ $/.test(f))&&(g=f.trim())}return{type:"heading",raw:u[0],depth:u[1].length,text:g,tokens:this.lexer.inline(g)}}},c.hr=function(l){var u=this.rules.block.hr.exec(l);if(u)return{type:"hr",raw:u[0]}},c.blockquote=function(l){var u=this.rules.block.blockquote.exec(l);if(u){var g=u[0].replace(/^ *>[ \t]?/gm,""),f=this.lexer.state.top;this.lexer.state.top=!0;var p=this.lexer.blockTokens(g);return this.lexer.state.top=f,{type:"blockquote",raw:u[0],tokens:p,text:g}}},c.list=function(l){var u=this.rules.block.list.exec(l);if(u){var g,f,p,y,C,D,S,F,M,z,I,A,B=u[1].trim(),N=B.length>1,R={type:"list",raw:"",ordered:N,start:N?+B.slice(0,-1):"",loose:!1,items:[]};B=N?"\\d{1,9}\\"+B.slice(-1):"\\"+B,this.options.pedantic&&(B=N?B:"[*+-]");for(var H=new RegExp("^( {0,3}"+B+")((?:[ ][^\\n]*)?(?:\\n|$))");l&&(A=!1,!(!(u=H.exec(l))||this.rules.block.hr.test(l)));){if(g=u[0],l=l.substring(g.length),F=u[2].split(` `,1)[0].replace(/^\t+/,function(de){return" ".repeat(3*de.length)}),M=l.split(` -`,1)[0],this.options.pedantic?(b=2,I=T.trimLeft()):(b=u[2].search(/[^ ]/),b=b>4?1:b,I=T.slice(b),b+=u[1].length),D=!1,!T&&/^ *$/.test(M)&&(g+=M+` -`,l=l.substring(M.length+1),F=!0),!F)for(var _=new RegExp("^ {0,"+Math.min(3,b-1)+"}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))"),X=new RegExp("^ {0,"+Math.min(3,b-1)+"}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)"),K=new RegExp("^ {0,"+Math.min(3,b-1)+"}(?:```|~~~)"),ge=new RegExp("^ {0,"+Math.min(3,b-1)+"}#");l&&(z=l.split(` -`,1)[0],M=z,this.options.pedantic&&(M=M.replace(/^ {1,4}(?=( {4})*[^ ])/g," ")),!(K.test(M)||ge.test(M)||_.test(M)||X.test(l)));){if(M.search(/[^ ]/)>=b||!M.trim())I+=` -`+M.slice(b);else{if(D||T.search(/[^ ]/)>=4||K.test(T)||ge.test(T)||X.test(T))break;I+=` +`,1)[0],this.options.pedantic?(y=2,I=F.trimLeft()):(y=u[2].search(/[^ ]/),y=y>4?1:y,I=F.slice(y),y+=u[1].length),D=!1,!F&&/^ *$/.test(M)&&(g+=M+` +`,l=l.substring(M.length+1),A=!0),!A)for(var _=new RegExp("^ {0,"+Math.min(3,y-1)+"}(?:[*+-]|\\d{1,9}[.)])((?:[ ][^\\n]*)?(?:\\n|$))"),X=new RegExp("^ {0,"+Math.min(3,y-1)+"}((?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$)"),K=new RegExp("^ {0,"+Math.min(3,y-1)+"}(?:```|~~~)"),ge=new RegExp("^ {0,"+Math.min(3,y-1)+"}#");l&&(z=l.split(` +`,1)[0],M=z,this.options.pedantic&&(M=M.replace(/^ {1,4}(?=( {4})*[^ ])/g," ")),!(K.test(M)||ge.test(M)||_.test(M)||X.test(l)));){if(M.search(/[^ ]/)>=y||!M.trim())I+=` +`+M.slice(y);else{if(D||F.search(/[^ ]/)>=4||K.test(F)||ge.test(F)||X.test(F))break;I+=` `+M}!D&&!M.trim()&&(D=!0),g+=z+` -`,l=l.substring(z.length+1),T=M.slice(b)}R.loose||(E?R.loose=!0:/\n *\n *$/.test(g)&&(E=!0)),this.options.gfm&&(f=/^\[[ xX]\] /.exec(I),f&&(p=f[0]!=="[ ] ",I=I.replace(/^\[[ xX]\] +/,""))),R.items.push({type:"list_item",raw:g,task:!!f,checked:p,loose:!1,text:I}),R.raw+=g}R.items[R.items.length-1].raw=g.trimRight(),R.items[R.items.length-1].text=I.trimRight(),R.raw=R.raw.trimRight();var G=R.items.length;for(C=0;C0&&ue.some(function(de){return/\n.*\n/.test(de.raw)});R.loose=ae}if(R.loose)for(C=0;C$/,"$1").replace(this.rules.inline._escapes,"$1"):"",p=u[3]?u[3].substring(1,u[3].length-1).replace(this.rules.inline._escapes,"$1"):u[3];return{type:"def",tag:g,raw:u[0],href:f,title:p}}},c.table=function(l){var u=this.rules.block.table.exec(l);if(u){var g={type:"table",header:ou(u[1]).map(function(E){return{text:E}}),align:u[2].replace(/^ *|\| *$/g,"").split(/ *\| */),rows:u[3]&&u[3].trim()?u[3].replace(/\n[ \t]*$/,"").split(` -`):[]};if(g.header.length===g.align.length){g.raw=u[0];var f=g.align.length,p,b,C,D;for(p=0;p/i.test(u[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(u[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(u[0])&&(this.lexer.state.inRawBlock=!1),{type:this.options.sanitize?"text":"html",raw:u[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(u[0]):et(u[0]):u[0]}},c.link=function(l){var u=this.rules.inline.link.exec(l);if(u){var g=u[2].trim();if(!this.options.pedantic&&/^$/.test(g))return;var f=un(g.slice(0,-1),"\\");if((g.length-f.length)%2===0)return}else{var p=id(u[2],"()");if(p>-1){var b=u[0].indexOf("!")===0?5:4,C=b+u[1].length+p;u[2]=u[2].substring(0,p),u[0]=u[0].substring(0,C).trim(),u[3]=""}}var D=u[2],E="";if(this.options.pedantic){var T=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(D);T&&(D=T[1],E=T[3])}else E=u[3]?u[3].slice(1,-1):"";return D=D.trim(),/^$/.test(g)?D=D.slice(1):D=D.slice(1,-1)),lu(u,{href:D&&D.replace(this.rules.inline._escapes,"$1"),title:E&&E.replace(this.rules.inline._escapes,"$1")},u[0],this.lexer)}},c.reflink=function(l,u){var g;if((g=this.rules.inline.reflink.exec(l))||(g=this.rules.inline.nolink.exec(l))){var f=(g[2]||g[1]).replace(/\s+/g," ");if(f=u[f.toLowerCase()],!f){var p=g[0].charAt(0);return{type:"text",raw:p,text:p}}return lu(g,f,g[0],this.lexer)}},c.emStrong=function(l,u,g){g===void 0&&(g="");var f=this.rules.inline.emStrong.lDelim.exec(l);if(f&&!(f[3]&&g.match(/(?:[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDF70-\uDF81\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])/))){var p=f[1]||f[2]||"";if(!p||p&&(g===""||this.rules.inline.punctuation.exec(g))){var b=f[0].length-1,C,D,E=b,T=0,M=f[0][0]==="*"?this.rules.inline.emStrong.rDelimAst:this.rules.inline.emStrong.rDelimUnd;for(M.lastIndex=0,u=u.slice(-1*l.length+b);(f=M.exec(u))!=null;)if(C=f[1]||f[2]||f[3]||f[4]||f[5]||f[6],!!C){if(D=C.length,f[3]||f[4]){E+=D;continue}else if((f[5]||f[6])&&b%3&&!((b+D)%3)){T+=D;continue}if(E-=D,!(E>0)){D=Math.min(D,D+E+T);var z=l.slice(0,b+f.index+(f[0].length-C.length)+D);if(Math.min(b,D)%2){var I=z.slice(1,-1);return{type:"em",raw:z,text:I,tokens:this.lexer.inlineTokens(I)}}var F=z.slice(2,-2);return{type:"strong",raw:z,text:F,tokens:this.lexer.inlineTokens(F)}}}}}},c.codespan=function(l){var u=this.rules.inline.code.exec(l);if(u){var g=u[2].replace(/\n/g," "),f=/[^ ]/.test(g),p=/^ /.test(g)&&/ $/.test(g);return f&&p&&(g=g.substring(1,g.length-1)),g=et(g,!0),{type:"codespan",raw:u[0],text:g}}},c.br=function(l){var u=this.rules.inline.br.exec(l);if(u)return{type:"br",raw:u[0]}},c.del=function(l){var u=this.rules.inline.del.exec(l);if(u)return{type:"del",raw:u[0],text:u[2],tokens:this.lexer.inlineTokens(u[2])}},c.autolink=function(l,u){var g=this.rules.inline.autolink.exec(l);if(g){var f,p;return g[2]==="@"?(f=et(this.options.mangle?u(g[1]):g[1]),p="mailto:"+f):(f=et(g[1]),p=f),{type:"link",raw:g[0],text:f,href:p,tokens:[{type:"text",raw:f,text:f}]}}},c.url=function(l,u){var g;if(g=this.rules.inline.url.exec(l)){var f,p;if(g[2]==="@")f=et(this.options.mangle?u(g[0]):g[0]),p="mailto:"+f;else{var b;do b=g[0],g[0]=this.rules.inline._backpedal.exec(g[0])[0];while(b!==g[0]);f=et(g[0]),g[1]==="www."?p="http://"+g[0]:p=g[0]}return{type:"link",raw:g[0],text:f,href:p,tokens:[{type:"text",raw:f,text:f}]}}},c.inlineText=function(l,u){var g=this.rules.inline.text.exec(l);if(g){var f;return this.lexer.state.inRawBlock?f=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(g[0]):et(g[0]):g[0]:f=et(this.options.smartypants?u(g[0]):g[0]),{type:"text",raw:g[0],text:f}}},a}(),se={newline:/^(?: *(?:\n|$))+/,code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,hr:/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/,html:"^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))",def:/^ {0,3}\[(label)\]: *(?:\n *)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n *)?| *\n *)(title))? *(?:\n+|$)/,table:fn,lheading:/^((?:.|\n(?!\n))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,text:/^[^\n]+/};se._label=/(?!\s*\])(?:\\.|[^\[\]\\])+/;se._title=/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/;se.def=we(se.def).replace("label",se._label).replace("title",se._title).getRegex();se.bullet=/(?:[*+-]|\d{1,9}[.)])/;se.listItemStart=we(/^( *)(bull) */).replace("bull",se.bullet).getRegex();se.list=we(se.list).replace(/bull/g,se.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+se.def.source+")").getRegex();se._tag="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul";se._comment=/|$)/;se.html=we(se.html,"i").replace("comment",se._comment).replace("tag",se._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex();se.paragraph=we(se._paragraph).replace("hr",se.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",se._tag).getRegex();se.blockquote=we(se.blockquote).replace("paragraph",se.paragraph).getRegex();se.normal=gt({},se);se.gfm=gt({},se.normal,{table:"^ *([^\\n ].*\\|.*)\\n {0,3}(?:\\| *)?(:?-+:? *(?:\\| *:?-+:? *)*)(?:\\| *)?(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"});se.gfm.table=we(se.gfm.table).replace("hr",se.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",se._tag).getRegex();se.gfm.paragraph=we(se._paragraph).replace("hr",se.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("table",se.gfm.table).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",se._tag).getRegex();se.pedantic=gt({},se.normal,{html:we(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",se._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:fn,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:we(se.normal._paragraph).replace("hr",se.hr).replace("heading",` *#{1,6} *[^ -]`).replace("lheading",se.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var te={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:fn,tag:"^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(ref)\]/,nolink:/^!?\[(ref)\](?:\[\])?/,reflinkSearch:"reflink|nolink(?!\\()",emStrong:{lDelim:/^(?:\*+(?:([punct_])|[^\s*]))|^_+(?:([punct*])|([^\s_]))/,rDelimAst:/^(?:[^_*\\]|\\.)*?\_\_(?:[^_*\\]|\\.)*?\*(?:[^_*\\]|\\.)*?(?=\_\_)|(?:[^*\\]|\\.)+(?=[^*])|[punct_](\*+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\*+)(?=[punct_\s]|$)|[punct_\s](\*+)(?=[^punct*_\s])|[\s](\*+)(?=[punct_])|[punct_](\*+)(?=[punct_])|(?:[^punct*_\s\\]|\\.)(\*+)(?=[^punct*_\s])/,rDelimUnd:/^(?:[^_*\\]|\\.)*?\*\*(?:[^_*\\]|\\.)*?\_(?:[^_*\\]|\\.)*?(?=\*\*)|(?:[^_\\]|\\.)+(?=[^_])|[punct*](\_+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\_+)(?=[punct*\s]|$)|[punct*\s](\_+)(?=[^punct*_\s])|[\s](\_+)(?=[punct*])|[punct*](\_+)(?=[punct*])/},code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:fn,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\?@\\[\\]`^{|}~";te.punctuation=we(te.punctuation).replace(/punctuation/g,te._punctuation).getRegex();te.blockSkip=/\[[^\]]*?\]\([^\)]*?\)|`[^`]*?`|<[^>]*?>/g;te.escapedEmSt=/(?:^|[^\\])(?:\\\\)*\\[*_]/g;te._comment=we(se._comment).replace("(?:-->|$)","-->").getRegex();te.emStrong.lDelim=we(te.emStrong.lDelim).replace(/punct/g,te._punctuation).getRegex();te.emStrong.rDelimAst=we(te.emStrong.rDelimAst,"g").replace(/punct/g,te._punctuation).getRegex();te.emStrong.rDelimUnd=we(te.emStrong.rDelimUnd,"g").replace(/punct/g,te._punctuation).getRegex();te._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g;te._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/;te._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/;te.autolink=we(te.autolink).replace("scheme",te._scheme).replace("email",te._email).getRegex();te._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/;te.tag=we(te.tag).replace("comment",te._comment).replace("attribute",te._attribute).getRegex();te._label=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/;te._href=/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/;te._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/;te.link=we(te.link).replace("label",te._label).replace("href",te._href).replace("title",te._title).getRegex();te.reflink=we(te.reflink).replace("label",te._label).replace("ref",se._label).getRegex();te.nolink=we(te.nolink).replace("ref",se._label).getRegex();te.reflinkSearch=we(te.reflinkSearch,"g").replace("reflink",te.reflink).replace("nolink",te.nolink).getRegex();te.normal=gt({},te);te.pedantic=gt({},te.normal,{strong:{start:/^__|\*\*/,middle:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,endAst:/\*\*(?!\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\*/,middle:/^()\*(?=\S)([\s\S]*?\S)\*(?!\*)|^_(?=\S)([\s\S]*?\S)_(?!_)/,endAst:/\*(?!\*)/g,endUnd:/_(?!_)/g},link:we(/^!?\[(label)\]\((.*?)\)/).replace("label",te._label).getRegex(),reflink:we(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",te._label).getRegex()});te.gfm=gt({},te.normal,{escape:we(te.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\.5&&(l="x"+l.toString(16)),c+="&#"+l+";";return c}var Pr=function(){function a(d){this.tokens=[],this.tokens.links=Object.create(null),this.options=d||Se.defaults,this.options.tokenizer=this.options.tokenizer||new cn,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};var l={block:se.normal,inline:te.normal};this.options.pedantic?(l.block=se.pedantic,l.inline=te.pedantic):this.options.gfm&&(l.block=se.gfm,this.options.breaks?l.inline=te.breaks:l.inline=te.gfm),this.tokenizer.rules=l}a.lex=function(l,u){var g=new a(u);return g.lex(l)},a.lexInline=function(l,u){var g=new a(u);return g.inlineTokens(l)};var c=a.prototype;return c.lex=function(l){l=l.replace(/\r\n|\r/g,` -`),this.blockTokens(l,this.tokens);for(var u;u=this.inlineQueue.shift();)this.inlineTokens(u.src,u.tokens);return this.tokens},c.blockTokens=function(l,u){var g=this;u===void 0&&(u=[]),this.options.pedantic?l=l.replace(/\t/g," ").replace(/^ +$/gm,""):l=l.replace(/^( *)(\t+)/gm,function(E,T,M){return T+" ".repeat(M.length)});for(var f,p,b,C;l;)if(!(this.options.extensions&&this.options.extensions.block&&this.options.extensions.block.some(function(E){return(f=E.call({lexer:g},l,u))?(l=l.substring(f.raw.length),u.push(f),!0):!1}))){if(f=this.tokenizer.space(l)){l=l.substring(f.raw.length),f.raw.length===1&&u.length>0?u[u.length-1].raw+=` +`,l=l.substring(z.length+1),F=M.slice(y)}R.loose||(S?R.loose=!0:/\n *\n *$/.test(g)&&(S=!0)),this.options.gfm&&(f=/^\[[ xX]\] /.exec(I),f&&(p=f[0]!=="[ ] ",I=I.replace(/^\[[ xX]\] +/,""))),R.items.push({type:"list_item",raw:g,task:!!f,checked:p,loose:!1,text:I}),R.raw+=g}R.items[R.items.length-1].raw=g.trimRight(),R.items[R.items.length-1].text=I.trimRight(),R.raw=R.raw.trimRight();var G=R.items.length;for(C=0;C0&&ue.some(function(de){return/\n.*\n/.test(de.raw)});R.loose=ae}if(R.loose)for(C=0;C$/,"$1").replace(this.rules.inline._escapes,"$1"):"",p=u[3]?u[3].substring(1,u[3].length-1).replace(this.rules.inline._escapes,"$1"):u[3];return{type:"def",tag:g,raw:u[0],href:f,title:p}}},c.table=function(l){var u=this.rules.block.table.exec(l);if(u){var g={type:"table",header:ou(u[1]).map(function(S){return{text:S}}),align:u[2].replace(/^ *|\| *$/g,"").split(/ *\| */),rows:u[3]&&u[3].trim()?u[3].replace(/\n[ \t]*$/,"").split(` +`):[]};if(g.header.length===g.align.length){g.raw=u[0];var f=g.align.length,p,y,C,D;for(p=0;p/i.test(u[0])&&(this.lexer.state.inLink=!1),!this.lexer.state.inRawBlock&&/^<(pre|code|kbd|script)(\s|>)/i.test(u[0])?this.lexer.state.inRawBlock=!0:this.lexer.state.inRawBlock&&/^<\/(pre|code|kbd|script)(\s|>)/i.test(u[0])&&(this.lexer.state.inRawBlock=!1),{type:this.options.sanitize?"text":"html",raw:u[0],inLink:this.lexer.state.inLink,inRawBlock:this.lexer.state.inRawBlock,text:this.options.sanitize?this.options.sanitizer?this.options.sanitizer(u[0]):et(u[0]):u[0]}},c.link=function(l){var u=this.rules.inline.link.exec(l);if(u){var g=u[2].trim();if(!this.options.pedantic&&/^$/.test(g))return;var f=un(g.slice(0,-1),"\\");if((g.length-f.length)%2===0)return}else{var p=id(u[2],"()");if(p>-1){var y=u[0].indexOf("!")===0?5:4,C=y+u[1].length+p;u[2]=u[2].substring(0,p),u[0]=u[0].substring(0,C).trim(),u[3]=""}}var D=u[2],S="";if(this.options.pedantic){var F=/^([^'"]*[^\s])\s+(['"])(.*)\2/.exec(D);F&&(D=F[1],S=F[3])}else S=u[3]?u[3].slice(1,-1):"";return D=D.trim(),/^$/.test(g)?D=D.slice(1):D=D.slice(1,-1)),lu(u,{href:D&&D.replace(this.rules.inline._escapes,"$1"),title:S&&S.replace(this.rules.inline._escapes,"$1")},u[0],this.lexer)}},c.reflink=function(l,u){var g;if((g=this.rules.inline.reflink.exec(l))||(g=this.rules.inline.nolink.exec(l))){var f=(g[2]||g[1]).replace(/\s+/g," ");if(f=u[f.toLowerCase()],!f){var p=g[0].charAt(0);return{type:"text",raw:p,text:p}}return lu(g,f,g[0],this.lexer)}},c.emStrong=function(l,u,g){g===void 0&&(g="");var f=this.rules.inline.emStrong.lDelim.exec(l);if(f&&!(f[3]&&g.match(/(?:[0-9A-Za-z\xAA\xB2\xB3\xB5\xB9\xBA\xBC-\xBE\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0560-\u0588\u05D0-\u05EA\u05EF-\u05F2\u0620-\u064A\u0660-\u0669\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07C0-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u0860-\u086A\u0870-\u0887\u0889-\u088E\u08A0-\u08C9\u0904-\u0939\u093D\u0950\u0958-\u0961\u0966-\u096F\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09E6-\u09F1\u09F4-\u09F9\u09FC\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A66-\u0A6F\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0AE6-\u0AEF\u0AF9\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B66-\u0B6F\u0B71-\u0B77\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0BE6-\u0BF2\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58-\u0C5A\u0C5D\u0C60\u0C61\u0C66-\u0C6F\u0C78-\u0C7E\u0C80\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDD\u0CDE\u0CE0\u0CE1\u0CE6-\u0CEF\u0CF1\u0CF2\u0D04-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D54-\u0D56\u0D58-\u0D61\u0D66-\u0D78\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0DE6-\u0DEF\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E50-\u0E59\u0E81\u0E82\u0E84\u0E86-\u0E8A\u0E8C-\u0EA3\u0EA5\u0EA7-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0ED0-\u0ED9\u0EDC-\u0EDF\u0F00\u0F20-\u0F33\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F-\u1049\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u1090-\u1099\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1369-\u137C\u1380-\u138F\u13A0-\u13F5\u13F8-\u13FD\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16EE-\u16F8\u1700-\u1711\u171F-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u17E0-\u17E9\u17F0-\u17F9\u1810-\u1819\u1820-\u1878\u1880-\u1884\u1887-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1946-\u196D\u1970-\u1974\u1980-\u19AB\u19B0-\u19C9\u19D0-\u19DA\u1A00-\u1A16\u1A20-\u1A54\u1A80-\u1A89\u1A90-\u1A99\u1AA7\u1B05-\u1B33\u1B45-\u1B4C\u1B50-\u1B59\u1B83-\u1BA0\u1BAE-\u1BE5\u1C00-\u1C23\u1C40-\u1C49\u1C4D-\u1C7D\u1C80-\u1C88\u1C90-\u1CBA\u1CBD-\u1CBF\u1CE9-\u1CEC\u1CEE-\u1CF3\u1CF5\u1CF6\u1CFA\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2070\u2071\u2074-\u2079\u207F-\u2089\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2150-\u2189\u2460-\u249B\u24EA-\u24FF\u2776-\u2793\u2C00-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2CFD\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005-\u3007\u3021-\u3029\u3031-\u3035\u3038-\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312F\u3131-\u318E\u3192-\u3195\u31A0-\u31BF\u31F0-\u31FF\u3220-\u3229\u3248-\u324F\u3251-\u325F\u3280-\u3289\u32B1-\u32BF\u3400-\u4DBF\u4E00-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6EF\uA717-\uA71F\uA722-\uA788\uA78B-\uA7CA\uA7D0\uA7D1\uA7D3\uA7D5-\uA7D9\uA7F2-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA830-\uA835\uA840-\uA873\uA882-\uA8B3\uA8D0-\uA8D9\uA8F2-\uA8F7\uA8FB\uA8FD\uA8FE\uA900-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF-\uA9D9\uA9E0-\uA9E4\uA9E6-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA50-\uAA59\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB69\uAB70-\uABE2\uABF0-\uABF9\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF10-\uFF19\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDD07-\uDD33\uDD40-\uDD78\uDD8A\uDD8B\uDE80-\uDE9C\uDEA0-\uDED0\uDEE1-\uDEFB\uDF00-\uDF23\uDF2D-\uDF4A\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF\uDFD1-\uDFD5]|\uD801[\uDC00-\uDC9D\uDCA0-\uDCA9\uDCB0-\uDCD3\uDCD8-\uDCFB\uDD00-\uDD27\uDD30-\uDD63\uDD70-\uDD7A\uDD7C-\uDD8A\uDD8C-\uDD92\uDD94\uDD95\uDD97-\uDDA1\uDDA3-\uDDB1\uDDB3-\uDDB9\uDDBB\uDDBC\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67\uDF80-\uDF85\uDF87-\uDFB0\uDFB2-\uDFBA]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC58-\uDC76\uDC79-\uDC9E\uDCA7-\uDCAF\uDCE0-\uDCF2\uDCF4\uDCF5\uDCFB-\uDD1B\uDD20-\uDD39\uDD80-\uDDB7\uDDBC-\uDDCF\uDDD2-\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE35\uDE40-\uDE48\uDE60-\uDE7E\uDE80-\uDE9F\uDEC0-\uDEC7\uDEC9-\uDEE4\uDEEB-\uDEEF\uDF00-\uDF35\uDF40-\uDF55\uDF58-\uDF72\uDF78-\uDF91\uDFA9-\uDFAF]|\uD803[\uDC00-\uDC48\uDC80-\uDCB2\uDCC0-\uDCF2\uDCFA-\uDD23\uDD30-\uDD39\uDE60-\uDE7E\uDE80-\uDEA9\uDEB0\uDEB1\uDF00-\uDF27\uDF30-\uDF45\uDF51-\uDF54\uDF70-\uDF81\uDFB0-\uDFCB\uDFE0-\uDFF6]|\uD804[\uDC03-\uDC37\uDC52-\uDC6F\uDC71\uDC72\uDC75\uDC83-\uDCAF\uDCD0-\uDCE8\uDCF0-\uDCF9\uDD03-\uDD26\uDD36-\uDD3F\uDD44\uDD47\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDD0-\uDDDA\uDDDC\uDDE1-\uDDF4\uDE00-\uDE11\uDE13-\uDE2B\uDE80-\uDE86\uDE88\uDE8A-\uDE8D\uDE8F-\uDE9D\uDE9F-\uDEA8\uDEB0-\uDEDE\uDEF0-\uDEF9\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF50\uDF5D-\uDF61]|\uD805[\uDC00-\uDC34\uDC47-\uDC4A\uDC50-\uDC59\uDC5F-\uDC61\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDCD0-\uDCD9\uDD80-\uDDAE\uDDD8-\uDDDB\uDE00-\uDE2F\uDE44\uDE50-\uDE59\uDE80-\uDEAA\uDEB8\uDEC0-\uDEC9\uDF00-\uDF1A\uDF30-\uDF3B\uDF40-\uDF46]|\uD806[\uDC00-\uDC2B\uDCA0-\uDCF2\uDCFF-\uDD06\uDD09\uDD0C-\uDD13\uDD15\uDD16\uDD18-\uDD2F\uDD3F\uDD41\uDD50-\uDD59\uDDA0-\uDDA7\uDDAA-\uDDD0\uDDE1\uDDE3\uDE00\uDE0B-\uDE32\uDE3A\uDE50\uDE5C-\uDE89\uDE9D\uDEB0-\uDEF8]|\uD807[\uDC00-\uDC08\uDC0A-\uDC2E\uDC40\uDC50-\uDC6C\uDC72-\uDC8F\uDD00-\uDD06\uDD08\uDD09\uDD0B-\uDD30\uDD46\uDD50-\uDD59\uDD60-\uDD65\uDD67\uDD68\uDD6A-\uDD89\uDD98\uDDA0-\uDDA9\uDEE0-\uDEF2\uDFB0\uDFC0-\uDFD4]|\uD808[\uDC00-\uDF99]|\uD809[\uDC00-\uDC6E\uDC80-\uDD43]|\uD80B[\uDF90-\uDFF0]|[\uD80C\uD81C-\uD820\uD822\uD840-\uD868\uD86A-\uD86C\uD86F-\uD872\uD874-\uD879\uD880-\uD883][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD811[\uDC00-\uDE46]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDE60-\uDE69\uDE70-\uDEBE\uDEC0-\uDEC9\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF50-\uDF59\uDF5B-\uDF61\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDE40-\uDE96\uDF00-\uDF4A\uDF50\uDF93-\uDF9F\uDFE0\uDFE1\uDFE3]|\uD821[\uDC00-\uDFF7]|\uD823[\uDC00-\uDCD5\uDD00-\uDD08]|\uD82B[\uDFF0-\uDFF3\uDFF5-\uDFFB\uDFFD\uDFFE]|\uD82C[\uDC00-\uDD22\uDD50-\uDD52\uDD64-\uDD67\uDD70-\uDEFB]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD834[\uDEE0-\uDEF3\uDF60-\uDF78]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB\uDFCE-\uDFFF]|\uD837[\uDF00-\uDF1E]|\uD838[\uDD00-\uDD2C\uDD37-\uDD3D\uDD40-\uDD49\uDD4E\uDE90-\uDEAD\uDEC0-\uDEEB\uDEF0-\uDEF9]|\uD839[\uDFE0-\uDFE6\uDFE8-\uDFEB\uDFED\uDFEE\uDFF0-\uDFFE]|\uD83A[\uDC00-\uDCC4\uDCC7-\uDCCF\uDD00-\uDD43\uDD4B\uDD50-\uDD59]|\uD83B[\uDC71-\uDCAB\uDCAD-\uDCAF\uDCB1-\uDCB4\uDD01-\uDD2D\uDD2F-\uDD3D\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD83C[\uDD00-\uDD0C]|\uD83E[\uDFF0-\uDFF9]|\uD869[\uDC00-\uDEDF\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF38\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D\uDC20-\uDFFF]|\uD873[\uDC00-\uDEA1\uDEB0-\uDFFF]|\uD87A[\uDC00-\uDFE0]|\uD87E[\uDC00-\uDE1D]|\uD884[\uDC00-\uDF4A])/))){var p=f[1]||f[2]||"";if(!p||p&&(g===""||this.rules.inline.punctuation.exec(g))){var y=f[0].length-1,C,D,S=y,F=0,M=f[0][0]==="*"?this.rules.inline.emStrong.rDelimAst:this.rules.inline.emStrong.rDelimUnd;for(M.lastIndex=0,u=u.slice(-1*l.length+y);(f=M.exec(u))!=null;)if(C=f[1]||f[2]||f[3]||f[4]||f[5]||f[6],!!C){if(D=C.length,f[3]||f[4]){S+=D;continue}else if((f[5]||f[6])&&y%3&&!((y+D)%3)){F+=D;continue}if(S-=D,!(S>0)){D=Math.min(D,D+S+F);var z=l.slice(0,y+f.index+(f[0].length-C.length)+D);if(Math.min(y,D)%2){var I=z.slice(1,-1);return{type:"em",raw:z,text:I,tokens:this.lexer.inlineTokens(I)}}var A=z.slice(2,-2);return{type:"strong",raw:z,text:A,tokens:this.lexer.inlineTokens(A)}}}}}},c.codespan=function(l){var u=this.rules.inline.code.exec(l);if(u){var g=u[2].replace(/\n/g," "),f=/[^ ]/.test(g),p=/^ /.test(g)&&/ $/.test(g);return f&&p&&(g=g.substring(1,g.length-1)),g=et(g,!0),{type:"codespan",raw:u[0],text:g}}},c.br=function(l){var u=this.rules.inline.br.exec(l);if(u)return{type:"br",raw:u[0]}},c.del=function(l){var u=this.rules.inline.del.exec(l);if(u)return{type:"del",raw:u[0],text:u[2],tokens:this.lexer.inlineTokens(u[2])}},c.autolink=function(l,u){var g=this.rules.inline.autolink.exec(l);if(g){var f,p;return g[2]==="@"?(f=et(this.options.mangle?u(g[1]):g[1]),p="mailto:"+f):(f=et(g[1]),p=f),{type:"link",raw:g[0],text:f,href:p,tokens:[{type:"text",raw:f,text:f}]}}},c.url=function(l,u){var g;if(g=this.rules.inline.url.exec(l)){var f,p;if(g[2]==="@")f=et(this.options.mangle?u(g[0]):g[0]),p="mailto:"+f;else{var y;do y=g[0],g[0]=this.rules.inline._backpedal.exec(g[0])[0];while(y!==g[0]);f=et(g[0]),g[1]==="www."?p="http://"+g[0]:p=g[0]}return{type:"link",raw:g[0],text:f,href:p,tokens:[{type:"text",raw:f,text:f}]}}},c.inlineText=function(l,u){var g=this.rules.inline.text.exec(l);if(g){var f;return this.lexer.state.inRawBlock?f=this.options.sanitize?this.options.sanitizer?this.options.sanitizer(g[0]):et(g[0]):g[0]:f=et(this.options.smartypants?u(g[0]):g[0]),{type:"text",raw:g[0],text:f}}},a}(),se={newline:/^(?: *(?:\n|$))+/,code:/^( {4}[^\n]+(?:\n(?: *(?:\n|$))*)?)+/,fences:/^ {0,3}(`{3,}(?=[^`\n]*(?:\n|$))|~{3,})([^\n]*)(?:\n|$)(?:|([\s\S]*?)(?:\n|$))(?: {0,3}\1[~`]* *(?=\n|$)|$)/,hr:/^ {0,3}((?:-[\t ]*){3,}|(?:_[ \t]*){3,}|(?:\*[ \t]*){3,})(?:\n+|$)/,heading:/^ {0,3}(#{1,6})(?=\s|$)(.*)(?:\n+|$)/,blockquote:/^( {0,3}> ?(paragraph|[^\n]*)(?:\n|$))+/,list:/^( {0,3}bull)([ \t][^\n]+?)?(?:\n|$)/,html:"^ {0,3}(?:<(script|pre|style|textarea)[\\s>][\\s\\S]*?(?:[^\\n]*\\n+|$)|comment[^\\n]*(\\n+|$)|<\\?[\\s\\S]*?(?:\\?>\\n*|$)|\\n*|$)|\\n*|$)|)[\\s\\S]*?(?:(?:\\n *)+\\n|$)|<(?!script|pre|style|textarea)([a-z][\\w-]*)(?:attribute)*? */?>(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$)|(?=[ \\t]*(?:\\n|$))[\\s\\S]*?(?:(?:\\n *)+\\n|$))",def:/^ {0,3}\[(label)\]: *(?:\n *)?([^<\s][^\s]*|<.*?>)(?:(?: +(?:\n *)?| *\n *)(title))? *(?:\n+|$)/,table:fn,lheading:/^((?:.|\n(?!\n))+?)\n {0,3}(=+|-+) *(?:\n+|$)/,_paragraph:/^([^\n]+(?:\n(?!hr|heading|lheading|blockquote|fences|list|html|table| +\n)[^\n]+)*)/,text:/^[^\n]+/};se._label=/(?!\s*\])(?:\\.|[^\[\]\\])+/;se._title=/(?:"(?:\\"?|[^"\\])*"|'[^'\n]*(?:\n[^'\n]+)*\n?'|\([^()]*\))/;se.def=Ce(se.def).replace("label",se._label).replace("title",se._title).getRegex();se.bullet=/(?:[*+-]|\d{1,9}[.)])/;se.listItemStart=Ce(/^( *)(bull) */).replace("bull",se.bullet).getRegex();se.list=Ce(se.list).replace(/bull/g,se.bullet).replace("hr","\\n+(?=\\1?(?:(?:- *){3,}|(?:_ *){3,}|(?:\\* *){3,})(?:\\n+|$))").replace("def","\\n+(?="+se.def.source+")").getRegex();se._tag="address|article|aside|base|basefont|blockquote|body|caption|center|col|colgroup|dd|details|dialog|dir|div|dl|dt|fieldset|figcaption|figure|footer|form|frame|frameset|h[1-6]|head|header|hr|html|iframe|legend|li|link|main|menu|menuitem|meta|nav|noframes|ol|optgroup|option|p|param|section|source|summary|table|tbody|td|tfoot|th|thead|title|tr|track|ul";se._comment=/|$)/;se.html=Ce(se.html,"i").replace("comment",se._comment).replace("tag",se._tag).replace("attribute",/ +[a-zA-Z:_][\w.:-]*(?: *= *"[^"\n]*"| *= *'[^'\n]*'| *= *[^\s"'=<>`]+)?/).getRegex();se.paragraph=Ce(se._paragraph).replace("hr",se.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("|table","").replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",se._tag).getRegex();se.blockquote=Ce(se.blockquote).replace("paragraph",se.paragraph).getRegex();se.normal=gt({},se);se.gfm=gt({},se.normal,{table:"^ *([^\\n ].*\\|.*)\\n {0,3}(?:\\| *)?(:?-+:? *(?:\\| *:?-+:? *)*)(?:\\| *)?(?:\\n((?:(?! *\\n|hr|heading|blockquote|code|fences|list|html).*(?:\\n|$))*)\\n*|$)"});se.gfm.table=Ce(se.gfm.table).replace("hr",se.hr).replace("heading"," {0,3}#{1,6} ").replace("blockquote"," {0,3}>").replace("code"," {4}[^\\n]").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",se._tag).getRegex();se.gfm.paragraph=Ce(se._paragraph).replace("hr",se.hr).replace("heading"," {0,3}#{1,6} ").replace("|lheading","").replace("table",se.gfm.table).replace("blockquote"," {0,3}>").replace("fences"," {0,3}(?:`{3,}(?=[^`\\n]*\\n)|~{3,})[^\\n]*\\n").replace("list"," {0,3}(?:[*+-]|1[.)]) ").replace("html",")|<(?:script|pre|style|textarea|!--)").replace("tag",se._tag).getRegex();se.pedantic=gt({},se.normal,{html:Ce(`^ *(?:comment *(?:\\n|\\s*$)|<(tag)[\\s\\S]+? *(?:\\n{2,}|\\s*$)|\\s]*)*?/?> *(?:\\n{2,}|\\s*$))`).replace("comment",se._comment).replace(/tag/g,"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\b)\\w+(?!:|[^\\w\\s@]*@)\\b").getRegex(),def:/^ *\[([^\]]+)\]: *]+)>?(?: +(["(][^\n]+[")]))? *(?:\n+|$)/,heading:/^(#{1,6})(.*)(?:\n+|$)/,fences:fn,lheading:/^(.+?)\n {0,3}(=+|-+) *(?:\n+|$)/,paragraph:Ce(se.normal._paragraph).replace("hr",se.hr).replace("heading",` *#{1,6} *[^ +]`).replace("lheading",se.lheading).replace("blockquote"," {0,3}>").replace("|fences","").replace("|list","").replace("|html","").getRegex()});var te={escape:/^\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/,autolink:/^<(scheme:[^\s\x00-\x1f<>]*|email)>/,url:fn,tag:"^comment|^|^<[a-zA-Z][\\w-]*(?:attribute)*?\\s*/?>|^<\\?[\\s\\S]*?\\?>|^|^",link:/^!?\[(label)\]\(\s*(href)(?:\s+(title))?\s*\)/,reflink:/^!?\[(label)\]\[(ref)\]/,nolink:/^!?\[(ref)\](?:\[\])?/,reflinkSearch:"reflink|nolink(?!\\()",emStrong:{lDelim:/^(?:\*+(?:([punct_])|[^\s*]))|^_+(?:([punct*])|([^\s_]))/,rDelimAst:/^(?:[^_*\\]|\\.)*?\_\_(?:[^_*\\]|\\.)*?\*(?:[^_*\\]|\\.)*?(?=\_\_)|(?:[^*\\]|\\.)+(?=[^*])|[punct_](\*+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\*+)(?=[punct_\s]|$)|[punct_\s](\*+)(?=[^punct*_\s])|[\s](\*+)(?=[punct_])|[punct_](\*+)(?=[punct_])|(?:[^punct*_\s\\]|\\.)(\*+)(?=[^punct*_\s])/,rDelimUnd:/^(?:[^_*\\]|\\.)*?\*\*(?:[^_*\\]|\\.)*?\_(?:[^_*\\]|\\.)*?(?=\*\*)|(?:[^_\\]|\\.)+(?=[^_])|[punct*](\_+)(?=[\s]|$)|(?:[^punct*_\s\\]|\\.)(\_+)(?=[punct*\s]|$)|[punct*\s](\_+)(?=[^punct*_\s])|[\s](\_+)(?=[punct*])|[punct*](\_+)(?=[punct*])/},code:/^(`+)([^`]|[^`][\s\S]*?[^`])\1(?!`)/,br:/^( {2,}|\\)\n(?!\s*$)/,del:fn,text:/^(`+|[^`])(?:(?= {2,}\n)|[\s\S]*?(?:(?=[\\?@\\[\\]`^{|}~";te.punctuation=Ce(te.punctuation).replace(/punctuation/g,te._punctuation).getRegex();te.blockSkip=/\[[^\]]*?\]\([^\)]*?\)|`[^`]*?`|<[^>]*?>/g;te.escapedEmSt=/(?:^|[^\\])(?:\\\\)*\\[*_]/g;te._comment=Ce(se._comment).replace("(?:-->|$)","-->").getRegex();te.emStrong.lDelim=Ce(te.emStrong.lDelim).replace(/punct/g,te._punctuation).getRegex();te.emStrong.rDelimAst=Ce(te.emStrong.rDelimAst,"g").replace(/punct/g,te._punctuation).getRegex();te.emStrong.rDelimUnd=Ce(te.emStrong.rDelimUnd,"g").replace(/punct/g,te._punctuation).getRegex();te._escapes=/\\([!"#$%&'()*+,\-./:;<=>?@\[\]\\^_`{|}~])/g;te._scheme=/[a-zA-Z][a-zA-Z0-9+.-]{1,31}/;te._email=/[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+(@)[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)+(?![-_])/;te.autolink=Ce(te.autolink).replace("scheme",te._scheme).replace("email",te._email).getRegex();te._attribute=/\s+[a-zA-Z:_][\w.:-]*(?:\s*=\s*"[^"]*"|\s*=\s*'[^']*'|\s*=\s*[^\s"'=<>`]+)?/;te.tag=Ce(te.tag).replace("comment",te._comment).replace("attribute",te._attribute).getRegex();te._label=/(?:\[(?:\\.|[^\[\]\\])*\]|\\.|`[^`]*`|[^\[\]\\`])*?/;te._href=/<(?:\\.|[^\n<>\\])+>|[^\s\x00-\x1f]*/;te._title=/"(?:\\"?|[^"\\])*"|'(?:\\'?|[^'\\])*'|\((?:\\\)?|[^)\\])*\)/;te.link=Ce(te.link).replace("label",te._label).replace("href",te._href).replace("title",te._title).getRegex();te.reflink=Ce(te.reflink).replace("label",te._label).replace("ref",se._label).getRegex();te.nolink=Ce(te.nolink).replace("ref",se._label).getRegex();te.reflinkSearch=Ce(te.reflinkSearch,"g").replace("reflink",te.reflink).replace("nolink",te.nolink).getRegex();te.normal=gt({},te);te.pedantic=gt({},te.normal,{strong:{start:/^__|\*\*/,middle:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,endAst:/\*\*(?!\*)/g,endUnd:/__(?!_)/g},em:{start:/^_|\*/,middle:/^()\*(?=\S)([\s\S]*?\S)\*(?!\*)|^_(?=\S)([\s\S]*?\S)_(?!_)/,endAst:/\*(?!\*)/g,endUnd:/_(?!_)/g},link:Ce(/^!?\[(label)\]\((.*?)\)/).replace("label",te._label).getRegex(),reflink:Ce(/^!?\[(label)\]\s*\[([^\]]*)\]/).replace("label",te._label).getRegex()});te.gfm=gt({},te.normal,{escape:Ce(te.escape).replace("])","~|])").getRegex(),_extended_email:/[A-Za-z0-9._+-]+(@)[a-zA-Z0-9-_]+(?:\.[a-zA-Z0-9-_]*[a-zA-Z0-9])+(?![-_])/,url:/^((?:ftp|https?):\/\/|www\.)(?:[a-zA-Z0-9\-]+\.?)+[^\s<]*|^email/,_backpedal:/(?:[^?!.,:;*_'"~()&]+|\([^)]*\)|&(?![a-zA-Z0-9]+;$)|[?!.,:;*_'"~)]+(?!$))+/,del:/^(~~?)(?=[^\s~])([\s\S]*?[^\s~])\1(?=[^~]|$)/,text:/^([`~]+|[^`~])(?:(?= {2,}\n)|(?=[a-zA-Z0-9.!#$%&'*+\/=?_`{\|}~-]+@)|[\s\S]*?(?:(?=[\\.5&&(l="x"+l.toString(16)),c+="&#"+l+";";return c}var Pr=function(){function a(d){this.tokens=[],this.tokens.links=Object.create(null),this.options=d||Se.defaults,this.options.tokenizer=this.options.tokenizer||new cn,this.tokenizer=this.options.tokenizer,this.tokenizer.options=this.options,this.tokenizer.lexer=this,this.inlineQueue=[],this.state={inLink:!1,inRawBlock:!1,top:!0};var l={block:se.normal,inline:te.normal};this.options.pedantic?(l.block=se.pedantic,l.inline=te.pedantic):this.options.gfm&&(l.block=se.gfm,this.options.breaks?l.inline=te.breaks:l.inline=te.gfm),this.tokenizer.rules=l}a.lex=function(l,u){var g=new a(u);return g.lex(l)},a.lexInline=function(l,u){var g=new a(u);return g.inlineTokens(l)};var c=a.prototype;return c.lex=function(l){l=l.replace(/\r\n|\r/g,` +`),this.blockTokens(l,this.tokens);for(var u;u=this.inlineQueue.shift();)this.inlineTokens(u.src,u.tokens);return this.tokens},c.blockTokens=function(l,u){var g=this;u===void 0&&(u=[]),this.options.pedantic?l=l.replace(/\t/g," ").replace(/^ +$/gm,""):l=l.replace(/^( *)(\t+)/gm,function(S,F,M){return F+" ".repeat(M.length)});for(var f,p,y,C;l;)if(!(this.options.extensions&&this.options.extensions.block&&this.options.extensions.block.some(function(S){return(f=S.call({lexer:g},l,u))?(l=l.substring(f.raw.length),u.push(f),!0):!1}))){if(f=this.tokenizer.space(l)){l=l.substring(f.raw.length),f.raw.length===1&&u.length>0?u[u.length-1].raw+=` `:u.push(f);continue}if(f=this.tokenizer.code(l)){l=l.substring(f.raw.length),p=u[u.length-1],p&&(p.type==="paragraph"||p.type==="text")?(p.raw+=` `+f.raw,p.text+=` `+f.text,this.inlineQueue[this.inlineQueue.length-1].src=p.text):u.push(f);continue}if(f=this.tokenizer.fences(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.heading(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.hr(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.blockquote(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.list(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.html(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.def(l)){l=l.substring(f.raw.length),p=u[u.length-1],p&&(p.type==="paragraph"||p.type==="text")?(p.raw+=` `+f.raw,p.text+=` -`+f.raw,this.inlineQueue[this.inlineQueue.length-1].src=p.text):this.tokens.links[f.tag]||(this.tokens.links[f.tag]={href:f.href,title:f.title});continue}if(f=this.tokenizer.table(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.lheading(l)){l=l.substring(f.raw.length),u.push(f);continue}if(b=l,this.options.extensions&&this.options.extensions.startBlock&&function(){var E=1/0,T=l.slice(1),M=void 0;g.options.extensions.startBlock.forEach(function(z){M=z.call({lexer:this},T),typeof M=="number"&&M>=0&&(E=Math.min(E,M))}),E<1/0&&E>=0&&(b=l.substring(0,E+1))}(),this.state.top&&(f=this.tokenizer.paragraph(b))){p=u[u.length-1],C&&p.type==="paragraph"?(p.raw+=` +`+f.raw,this.inlineQueue[this.inlineQueue.length-1].src=p.text):this.tokens.links[f.tag]||(this.tokens.links[f.tag]={href:f.href,title:f.title});continue}if(f=this.tokenizer.table(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.lheading(l)){l=l.substring(f.raw.length),u.push(f);continue}if(y=l,this.options.extensions&&this.options.extensions.startBlock&&function(){var S=1/0,F=l.slice(1),M=void 0;g.options.extensions.startBlock.forEach(function(z){M=z.call({lexer:this},F),typeof M=="number"&&M>=0&&(S=Math.min(S,M))}),S<1/0&&S>=0&&(y=l.substring(0,S+1))}(),this.state.top&&(f=this.tokenizer.paragraph(y))){p=u[u.length-1],C&&p.type==="paragraph"?(p.raw+=` `+f.raw,p.text+=` -`+f.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=p.text):u.push(f),C=b.length!==l.length,l=l.substring(f.raw.length);continue}if(f=this.tokenizer.text(l)){l=l.substring(f.raw.length),p=u[u.length-1],p&&p.type==="text"?(p.raw+=` +`+f.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=p.text):u.push(f),C=y.length!==l.length,l=l.substring(f.raw.length);continue}if(f=this.tokenizer.text(l)){l=l.substring(f.raw.length),p=u[u.length-1],p&&p.type==="text"?(p.raw+=` `+f.raw,p.text+=` -`+f.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=p.text):u.push(f);continue}if(l){var D="Infinite loop on byte: "+l.charCodeAt(0);if(this.options.silent){console.error(D);break}else throw new Error(D)}}return this.state.top=!0,u},c.inline=function(l,u){return u===void 0&&(u=[]),this.inlineQueue.push({src:l,tokens:u}),u},c.inlineTokens=function(l,u){var g=this;u===void 0&&(u=[]);var f,p,b,C=l,D,E,T;if(this.tokens.links){var M=Object.keys(this.tokens.links);if(M.length>0)for(;(D=this.tokenizer.rules.inline.reflinkSearch.exec(C))!=null;)M.includes(D[0].slice(D[0].lastIndexOf("[")+1,-1))&&(C=C.slice(0,D.index)+"["+au("a",D[0].length-2)+"]"+C.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(D=this.tokenizer.rules.inline.blockSkip.exec(C))!=null;)C=C.slice(0,D.index)+"["+au("a",D[0].length-2)+"]"+C.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;(D=this.tokenizer.rules.inline.escapedEmSt.exec(C))!=null;)C=C.slice(0,D.index+D[0].length-2)+"++"+C.slice(this.tokenizer.rules.inline.escapedEmSt.lastIndex),this.tokenizer.rules.inline.escapedEmSt.lastIndex--;for(;l;)if(E||(T=""),E=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some(function(I){return(f=I.call({lexer:g},l,u))?(l=l.substring(f.raw.length),u.push(f),!0):!1}))){if(f=this.tokenizer.escape(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.tag(l)){l=l.substring(f.raw.length),p=u[u.length-1],p&&f.type==="text"&&p.type==="text"?(p.raw+=f.raw,p.text+=f.text):u.push(f);continue}if(f=this.tokenizer.link(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.reflink(l,this.tokens.links)){l=l.substring(f.raw.length),p=u[u.length-1],p&&f.type==="text"&&p.type==="text"?(p.raw+=f.raw,p.text+=f.text):u.push(f);continue}if(f=this.tokenizer.emStrong(l,C,T)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.codespan(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.br(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.del(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.autolink(l,su)){l=l.substring(f.raw.length),u.push(f);continue}if(!this.state.inLink&&(f=this.tokenizer.url(l,su))){l=l.substring(f.raw.length),u.push(f);continue}if(b=l,this.options.extensions&&this.options.extensions.startInline&&function(){var I=1/0,F=l.slice(1),B=void 0;g.options.extensions.startInline.forEach(function(N){B=N.call({lexer:this},F),typeof B=="number"&&B>=0&&(I=Math.min(I,B))}),I<1/0&&I>=0&&(b=l.substring(0,I+1))}(),f=this.tokenizer.inlineText(b,ad)){l=l.substring(f.raw.length),f.raw.slice(-1)!=="_"&&(T=f.raw.slice(-1)),E=!0,p=u[u.length-1],p&&p.type==="text"?(p.raw+=f.raw,p.text+=f.text):u.push(f);continue}if(l){var z="Infinite loop on byte: "+l.charCodeAt(0);if(this.options.silent){console.error(z);break}else throw new Error(z)}}return u},Wc(a,null,[{key:"rules",get:function(){return{block:se,inline:te}}}]),a}(),dn=function(){function a(d){this.options=d||Se.defaults}var c=a.prototype;return c.code=function(l,u,g){var f=(u||"").match(/\S*/)[0];if(this.options.highlight){var p=this.options.highlight(l,f);p!=null&&p!==l&&(g=!0,l=p)}return l=l.replace(/\n$/,"")+` +`+f.text,this.inlineQueue.pop(),this.inlineQueue[this.inlineQueue.length-1].src=p.text):u.push(f);continue}if(l){var D="Infinite loop on byte: "+l.charCodeAt(0);if(this.options.silent){console.error(D);break}else throw new Error(D)}}return this.state.top=!0,u},c.inline=function(l,u){return u===void 0&&(u=[]),this.inlineQueue.push({src:l,tokens:u}),u},c.inlineTokens=function(l,u){var g=this;u===void 0&&(u=[]);var f,p,y,C=l,D,S,F;if(this.tokens.links){var M=Object.keys(this.tokens.links);if(M.length>0)for(;(D=this.tokenizer.rules.inline.reflinkSearch.exec(C))!=null;)M.includes(D[0].slice(D[0].lastIndexOf("[")+1,-1))&&(C=C.slice(0,D.index)+"["+au("a",D[0].length-2)+"]"+C.slice(this.tokenizer.rules.inline.reflinkSearch.lastIndex))}for(;(D=this.tokenizer.rules.inline.blockSkip.exec(C))!=null;)C=C.slice(0,D.index)+"["+au("a",D[0].length-2)+"]"+C.slice(this.tokenizer.rules.inline.blockSkip.lastIndex);for(;(D=this.tokenizer.rules.inline.escapedEmSt.exec(C))!=null;)C=C.slice(0,D.index+D[0].length-2)+"++"+C.slice(this.tokenizer.rules.inline.escapedEmSt.lastIndex),this.tokenizer.rules.inline.escapedEmSt.lastIndex--;for(;l;)if(S||(F=""),S=!1,!(this.options.extensions&&this.options.extensions.inline&&this.options.extensions.inline.some(function(I){return(f=I.call({lexer:g},l,u))?(l=l.substring(f.raw.length),u.push(f),!0):!1}))){if(f=this.tokenizer.escape(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.tag(l)){l=l.substring(f.raw.length),p=u[u.length-1],p&&f.type==="text"&&p.type==="text"?(p.raw+=f.raw,p.text+=f.text):u.push(f);continue}if(f=this.tokenizer.link(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.reflink(l,this.tokens.links)){l=l.substring(f.raw.length),p=u[u.length-1],p&&f.type==="text"&&p.type==="text"?(p.raw+=f.raw,p.text+=f.text):u.push(f);continue}if(f=this.tokenizer.emStrong(l,C,F)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.codespan(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.br(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.del(l)){l=l.substring(f.raw.length),u.push(f);continue}if(f=this.tokenizer.autolink(l,su)){l=l.substring(f.raw.length),u.push(f);continue}if(!this.state.inLink&&(f=this.tokenizer.url(l,su))){l=l.substring(f.raw.length),u.push(f);continue}if(y=l,this.options.extensions&&this.options.extensions.startInline&&function(){var I=1/0,A=l.slice(1),B=void 0;g.options.extensions.startInline.forEach(function(N){B=N.call({lexer:this},A),typeof B=="number"&&B>=0&&(I=Math.min(I,B))}),I<1/0&&I>=0&&(y=l.substring(0,I+1))}(),f=this.tokenizer.inlineText(y,ad)){l=l.substring(f.raw.length),f.raw.slice(-1)!=="_"&&(F=f.raw.slice(-1)),S=!0,p=u[u.length-1],p&&p.type==="text"?(p.raw+=f.raw,p.text+=f.text):u.push(f);continue}if(l){var z="Infinite loop on byte: "+l.charCodeAt(0);if(this.options.silent){console.error(z);break}else throw new Error(z)}}return u},Wc(a,null,[{key:"rules",get:function(){return{block:se,inline:te}}}]),a}(),dn=function(){function a(d){this.options=d||Se.defaults}var c=a.prototype;return c.code=function(l,u,g){var f=(u||"").match(/\S*/)[0];if(this.options.highlight){var p=this.options.highlight(l,f);p!=null&&p!==l&&(g=!0,l=p)}return l=l.replace(/\n$/,"")+` `,f?'
'+(g?l:et(l,!0))+`
`:"
"+(g?l:et(l,!0))+`
`},c.blockquote=function(l){return`
@@ -73,15 +73,15 @@ In order to be iterable, non-array objects must have a [Symbol.iterator]() metho `},c.tablerow=function(l){return` `+l+` `},c.tablecell=function(l,u){var g=u.header?"th":"td",f=u.align?"<"+g+' align="'+u.align+'">':"<"+g+">";return f+l+(" -`)},c.strong=function(l){return""+l+""},c.em=function(l){return""+l+""},c.codespan=function(l){return""+l+""},c.br=function(){return this.options.xhtml?"
":"
"},c.del=function(l){return""+l+""},c.link=function(l,u,g){if(l=nu(this.options.sanitize,this.options.baseUrl,l),l===null)return g;var f='",f},c.image=function(l,u,g){if(l=nu(this.options.sanitize,this.options.baseUrl,l),l===null)return g;var f=''+g+'":">",f},c.text=function(l){return l},a}(),ea=function(){function a(){}var c=a.prototype;return c.strong=function(l){return l},c.em=function(l){return l},c.codespan=function(l){return l},c.del=function(l){return l},c.html=function(l){return l},c.text=function(l){return l},c.link=function(l,u,g){return""+g},c.image=function(l,u,g){return""+g},c.br=function(){return""},a}(),ta=function(){function a(){this.seen={}}var c=a.prototype;return c.serialize=function(l){return l.toLowerCase().trim().replace(/<[!\/a-z].*?>/ig,"").replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-")},c.getNextSafeSlug=function(l,u){var g=l,f=0;if(this.seen.hasOwnProperty(g)){f=this.seen[l];do f++,g=l+"-"+f;while(this.seen.hasOwnProperty(g))}return u||(this.seen[l]=f,this.seen[g]=0),g},c.slug=function(l,u){u===void 0&&(u={});var g=this.serialize(l);return this.getNextSafeSlug(g,u.dryrun)},a}(),_r=function(){function a(d){this.options=d||Se.defaults,this.options.renderer=this.options.renderer||new dn,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new ea,this.slugger=new ta}a.parse=function(l,u){var g=new a(u);return g.parse(l)},a.parseInline=function(l,u){var g=new a(u);return g.parseInline(l)};var c=a.prototype;return c.parse=function(l,u){u===void 0&&(u=!0);var g="",f,p,b,C,D,E,T,M,z,I,F,B,N,R,H,_,X,K,ge,G=l.length;for(f=0;f0&&H.tokens[0].type==="paragraph"?(H.tokens[0].text=K+" "+H.tokens[0].text,H.tokens[0].tokens&&H.tokens[0].tokens.length>0&&H.tokens[0].tokens[0].type==="text"&&(H.tokens[0].tokens[0].text=K+" "+H.tokens[0].tokens[0].text)):H.tokens.unshift({type:"text",text:K}):R+=K),R+=this.parse(H.tokens,N),z+=this.renderer.listitem(R,X,_);g+=this.renderer.list(z,F,B);continue}case"html":{g+=this.renderer.html(I.text);continue}case"paragraph":{g+=this.renderer.paragraph(this.parseInline(I.tokens));continue}case"text":{for(z=I.tokens?this.parseInline(I.tokens):I.text;f+1";if(c)return Promise.resolve(u);if(d){d(null,u);return}return u}if(c)return Promise.reject(l);if(d){d(l);return}throw l}}function du(a,c){return function(d,l,u){typeof l=="function"&&(u=l,l=null);var g=gt({},l);l=gt({},le.defaults,g);var f=ld(l.silent,l.async,u);if(typeof d>"u"||d===null)return f(new Error("marked(): input parameter is undefined or null"));if(typeof d!="string")return f(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(d)+", string expected"));if(nd(l),l.hooks&&(l.hooks.options=l),u){var p=l.highlight,b;try{l.hooks&&(d=l.hooks.preprocess(d)),b=a(d,l)}catch(M){return f(M)}var C=function(z){var I;if(!z)try{l.walkTokens&&le.walkTokens(b,l.walkTokens),I=c(b,l),l.hooks&&(I=l.hooks.postprocess(I))}catch(F){z=F}return l.highlight=p,z?f(z):u(null,I)};if(!p||p.length<3||(delete l.highlight,!b.length))return C();var D=0;le.walkTokens(b,function(M){M.type==="code"&&(D++,setTimeout(function(){p(M.text,M.lang,function(z,I){if(z)return C(z);I!=null&&I!==M.text&&(M.text=I,M.escaped=!0),D--,D===0&&C()})},0))}),D===0&&C();return}if(l.async)return Promise.resolve(l.hooks?l.hooks.preprocess(d):d).then(function(M){return a(M,l)}).then(function(M){return l.walkTokens?Promise.all(le.walkTokens(M,l.walkTokens)).then(function(){return M}):M}).then(function(M){return c(M,l)}).then(function(M){return l.hooks?l.hooks.postprocess(M):M}).catch(f);try{l.hooks&&(d=l.hooks.preprocess(d));var E=a(d,l);l.walkTokens&&le.walkTokens(E,l.walkTokens);var T=c(E,l);return l.hooks&&(T=l.hooks.postprocess(T)),T}catch(M){return f(M)}}}function le(a,c,d){return du(Pr.lex,_r.parse)(a,c,d)}le.options=le.setOptions=function(a){return le.defaults=gt({},le.defaults,a),Gc(le.defaults),le};le.getDefaults=Vo;le.defaults=Se.defaults;le.use=function(){for(var a=le.defaults.extensions||{renderers:{},childTokens:{}},c=arguments.length,d=new Array(c),l=0;l{"use strict";var Wr=ct();xs();Cs();Ss();Zo();Qo();Hs();_s();Us();Ks();Zs();Yo();var vd=eu(),ra=hu().marked,vu=/Mac/.test(navigator.platform),md=new RegExp(/()+?/g),wi={toggleBold:gn,toggleItalic:vn,drawLink:An,toggleHeadingSmaller:ki,toggleHeadingBigger:xn,drawImage:Ln,toggleBlockquote:bn,toggleOrderedList:Sn,toggleUnorderedList:kn,toggleCheckList:Fn,toggleCodeBlock:yn,togglePreview:In,toggleStrikethrough:mn,toggleHeading1:Dn,toggleHeading2:Cn,toggleHeading3:wn,toggleHeading4:na,toggleHeading5:oa,toggleHeading6:aa,cleanBlock:En,drawTable:Tn,drawHorizontalRule:Mn,undo:Bn,redo:Nn,toggleSideBySide:qr,toggleFullScreen:hr},yd={toggleBold:"Cmd-B",toggleItalic:"Cmd-I",drawLink:"Cmd-K",toggleHeadingSmaller:"Cmd-H",toggleHeadingBigger:"Shift-Cmd-H",toggleHeading1:"Ctrl+Alt+1",toggleHeading2:"Ctrl+Alt+2",toggleHeading3:"Ctrl+Alt+3",toggleHeading4:"Ctrl+Alt+4",toggleHeading5:"Ctrl+Alt+5",toggleHeading6:"Ctrl+Alt+6",cleanBlock:"Cmd-E",drawImage:"Cmd-Alt-I",toggleBlockquote:"Cmd-'",toggleOrderedList:"Cmd-Alt-L",toggleUnorderedList:"Cmd-L",toggleCheckList:"Shift-Cmd-L",toggleCodeBlock:"Cmd-Alt-C",togglePreview:"Cmd-P",toggleSideBySide:"F9",toggleFullScreen:"F11"},bd=function(a){for(var c in wi)if(wi[c]===a)return c;return null},ia=function(){var a=!1;return function(c){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(c)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i.test(c.substr(0,4)))&&(a=!0)}(navigator.userAgent||navigator.vendor||window.opera),a};function xd(a){for(var c;(c=md.exec(a))!==null;){var d=c[0];if(d.indexOf("target=")===-1){var l=d.replace(/>$/,' target="_blank">');a=a.replace(d,l)}}return a}function Dd(a){for(var c=new DOMParser,d=c.parseFromString(a,"text/html"),l=d.getElementsByTagName("li"),u=0;u0){for(var M=document.createElement("i"),z=0;z"+l+""},c.em=function(l){return""+l+""},c.codespan=function(l){return""+l+""},c.br=function(){return this.options.xhtml?"
":"
"},c.del=function(l){return""+l+""},c.link=function(l,u,g){if(l=nu(this.options.sanitize,this.options.baseUrl,l),l===null)return g;var f='
",f},c.image=function(l,u,g){if(l=nu(this.options.sanitize,this.options.baseUrl,l),l===null)return g;var f=''+g+'":">",f},c.text=function(l){return l},a}(),ea=function(){function a(){}var c=a.prototype;return c.strong=function(l){return l},c.em=function(l){return l},c.codespan=function(l){return l},c.del=function(l){return l},c.html=function(l){return l},c.text=function(l){return l},c.link=function(l,u,g){return""+g},c.image=function(l,u,g){return""+g},c.br=function(){return""},a}(),ta=function(){function a(){this.seen={}}var c=a.prototype;return c.serialize=function(l){return l.toLowerCase().trim().replace(/<[!\/a-z].*?>/ig,"").replace(/[\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&()*+,./:;<=>?@[\]^`{|}~]/g,"").replace(/\s/g,"-")},c.getNextSafeSlug=function(l,u){var g=l,f=0;if(this.seen.hasOwnProperty(g)){f=this.seen[l];do f++,g=l+"-"+f;while(this.seen.hasOwnProperty(g))}return u||(this.seen[l]=f,this.seen[g]=0),g},c.slug=function(l,u){u===void 0&&(u={});var g=this.serialize(l);return this.getNextSafeSlug(g,u.dryrun)},a}(),_r=function(){function a(d){this.options=d||Se.defaults,this.options.renderer=this.options.renderer||new dn,this.renderer=this.options.renderer,this.renderer.options=this.options,this.textRenderer=new ea,this.slugger=new ta}a.parse=function(l,u){var g=new a(u);return g.parse(l)},a.parseInline=function(l,u){var g=new a(u);return g.parseInline(l)};var c=a.prototype;return c.parse=function(l,u){u===void 0&&(u=!0);var g="",f,p,y,C,D,S,F,M,z,I,A,B,N,R,H,_,X,K,ge,G=l.length;for(f=0;f0&&H.tokens[0].type==="paragraph"?(H.tokens[0].text=K+" "+H.tokens[0].text,H.tokens[0].tokens&&H.tokens[0].tokens.length>0&&H.tokens[0].tokens[0].type==="text"&&(H.tokens[0].tokens[0].text=K+" "+H.tokens[0].tokens[0].text)):H.tokens.unshift({type:"text",text:K}):R+=K),R+=this.parse(H.tokens,N),z+=this.renderer.listitem(R,X,_);g+=this.renderer.list(z,A,B);continue}case"html":{g+=this.renderer.html(I.text);continue}case"paragraph":{g+=this.renderer.paragraph(this.parseInline(I.tokens));continue}case"text":{for(z=I.tokens?this.parseInline(I.tokens):I.text;f+1";if(c)return Promise.resolve(u);if(d){d(null,u);return}return u}if(c)return Promise.reject(l);if(d){d(l);return}throw l}}function du(a,c){return function(d,l,u){typeof l=="function"&&(u=l,l=null);var g=gt({},l);l=gt({},le.defaults,g);var f=ld(l.silent,l.async,u);if(typeof d>"u"||d===null)return f(new Error("marked(): input parameter is undefined or null"));if(typeof d!="string")return f(new Error("marked(): input parameter is of type "+Object.prototype.toString.call(d)+", string expected"));if(nd(l),l.hooks&&(l.hooks.options=l),u){var p=l.highlight,y;try{l.hooks&&(d=l.hooks.preprocess(d)),y=a(d,l)}catch(M){return f(M)}var C=function(z){var I;if(!z)try{l.walkTokens&&le.walkTokens(y,l.walkTokens),I=c(y,l),l.hooks&&(I=l.hooks.postprocess(I))}catch(A){z=A}return l.highlight=p,z?f(z):u(null,I)};if(!p||p.length<3||(delete l.highlight,!y.length))return C();var D=0;le.walkTokens(y,function(M){M.type==="code"&&(D++,setTimeout(function(){p(M.text,M.lang,function(z,I){if(z)return C(z);I!=null&&I!==M.text&&(M.text=I,M.escaped=!0),D--,D===0&&C()})},0))}),D===0&&C();return}if(l.async)return Promise.resolve(l.hooks?l.hooks.preprocess(d):d).then(function(M){return a(M,l)}).then(function(M){return l.walkTokens?Promise.all(le.walkTokens(M,l.walkTokens)).then(function(){return M}):M}).then(function(M){return c(M,l)}).then(function(M){return l.hooks?l.hooks.postprocess(M):M}).catch(f);try{l.hooks&&(d=l.hooks.preprocess(d));var S=a(d,l);l.walkTokens&&le.walkTokens(S,l.walkTokens);var F=c(S,l);return l.hooks&&(F=l.hooks.postprocess(F)),F}catch(M){return f(M)}}}function le(a,c,d){return du(Pr.lex,_r.parse)(a,c,d)}le.options=le.setOptions=function(a){return le.defaults=gt({},le.defaults,a),Gc(le.defaults),le};le.getDefaults=Vo;le.defaults=Se.defaults;le.use=function(){for(var a=le.defaults.extensions||{renderers:{},childTokens:{}},c=arguments.length,d=new Array(c),l=0;l{"use strict";var Wr=ct();xs();ws();Ss();Zo();Qo();Hs();_s();Us();Ks();Zs();Yo();var vd=eu(),ra=hu().marked,vu=/Mac/.test(navigator.platform),md=new RegExp(/()+?/g),Ci={toggleBold:gn,toggleItalic:vn,drawLink:An,toggleHeadingSmaller:ki,toggleHeadingBigger:xn,drawImage:Ln,toggleBlockquote:yn,toggleOrderedList:Sn,toggleUnorderedList:kn,toggleCheckList:Fn,toggleCodeBlock:bn,togglePreview:In,toggleStrikethrough:mn,toggleHeading1:Dn,toggleHeading2:wn,toggleHeading3:Cn,toggleHeading4:na,toggleHeading5:oa,toggleHeading6:aa,cleanBlock:En,drawTable:Tn,drawHorizontalRule:Mn,undo:Bn,redo:Nn,toggleSideBySide:qr,toggleFullScreen:hr},bd={toggleBold:"Cmd-B",toggleItalic:"Cmd-I",drawLink:"Cmd-K",toggleHeadingSmaller:"Cmd-H",toggleHeadingBigger:"Shift-Cmd-H",toggleHeading1:"Ctrl+Alt+1",toggleHeading2:"Ctrl+Alt+2",toggleHeading3:"Ctrl+Alt+3",toggleHeading4:"Ctrl+Alt+4",toggleHeading5:"Ctrl+Alt+5",toggleHeading6:"Ctrl+Alt+6",cleanBlock:"Cmd-E",drawImage:"Cmd-Alt-I",toggleBlockquote:"Cmd-'",toggleOrderedList:"Cmd-Alt-L",toggleUnorderedList:"Cmd-L",toggleCheckList:"Shift-Cmd-L",toggleCodeBlock:"Cmd-Alt-C",togglePreview:"Cmd-P",toggleSideBySide:"F9",toggleFullScreen:"F11"},yd=function(a){for(var c in Ci)if(Ci[c]===a)return c;return null},ia=function(){var a=!1;return function(c){(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows ce|xda|xiino|android|ipad|playbook|silk/i.test(c)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw-(n|u)|c55\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|g560|gene|gf-5|g-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|i230|iac( |-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|-[a-w])|libw|lynx|m1-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\/|se(c(-|0|1)|47|mc|nd|ri)|sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|ts(70|m-|m3|m5)|tx-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas-|your|zeto|zte-/i.test(c.substr(0,4)))&&(a=!0)}(navigator.userAgent||navigator.vendor||window.opera),a};function xd(a){for(var c;(c=md.exec(a))!==null;){var d=c[0];if(d.indexOf("target=")===-1){var l=d.replace(/>$/,' target="_blank">');a=a.replace(d,l)}}return a}function Dd(a){for(var c=new DOMParser,d=c.parseFromString(a,"text/html"),l=d.getElementsByTagName("li"),u=0;u0){for(var M=document.createElement("i"),z=0;z=0&&(D=f.getLineHandle(T),!d(D));T--);var B=f.getTokenAt({line:T,ch:1}),N=l(B).fencedChars,R,H,_,X;d(f.getLineHandle(p.line))?(R="",H=p.line):d(f.getLineHandle(p.line-1))?(R="",H=p.line-1):(R=N+` -`,H=p.line),d(f.getLineHandle(b.line))?(_="",X=b.line,b.ch===0&&(X+=1)):b.ch!==0&&d(f.getLineHandle(b.line+1))?(_="",X=b.line+1):(_=N+` -`,X=b.line+1),b.ch===0&&(X-=1),f.operation(function(){f.replaceRange(_,{line:X,ch:0},{line:X+(_?0:1),ch:0}),f.replaceRange(R,{line:H,ch:0},{line:H+(R?0:1),ch:0})}),f.setSelection({line:H+(R?1:0),ch:0},{line:X+(R?1:-1),ch:0}),f.focus()}else{var K=p.line;if(d(f.getLineHandle(p.line))&&(u(f,p.line+1)==="fenced"?(T=p.line,K=p.line+1):(M=p.line,K=p.line-1)),T===void 0)for(T=K;T>=0&&(D=f.getLineHandle(T),!d(D));T--);if(M===void 0)for(z=f.lineCount(),M=K;M=0;T--)if(D=f.getLineHandle(T),!D.text.match(/^\s*$/)&&u(f,T,D)!=="indented"){T+=1;break}for(z=f.lineCount(),M=p.line;M\s+/,"unordered-list":l,"ordered-list":l,"check-list":/^(\s*)(- \[[ xX]])(\s+)/},C=function(B,N){var R={quote:">","unordered-list":d,"ordered-list":"%%i.","check-list":"- [ ]"};return R[B].replace("%%i",N)},D=function(B,N){var R={quote:">","unordered-list":"\\"+d,"ordered-list":"\\d+.","check-list":"- \\[[ xX]]"},H=new RegExp(R[B]);return N&&H.test(N)},E=function(B,N,R){var H=l.exec(N),_=C(B,T);return H!==null?(D(B,H[2])&&(_=""),N=H[1]+_+H[3]+N.replace(u,"").replace(b[B],"$1")):R==!1&&(N=_+" "+N),N},T=1,M=["unordered-list","ordered-list","check-list"],z=Object.keys(g)[0];if(!M.includes(z)){var I=a.getLine(f.line);/^\s*- \[[ xX]]\s/.test(I)?z="check-list":/^\s*\d+\.\s/.test(I)?z="ordered-list":/^\s*[*\-+]\s/.test(I)&&(z="unordered-list")}for(var F=f.line;F<=p.line;F++)(function(B){var N=a.getLine(B);g[c]?N=N.replace(b[c],"$1"):M.includes(z)&&M.includes(c)?(N=N.replace(b[z],"$1"),N=E(c,N,!1),T+=1):(N=E(c,N,!1),T+=1),a.replaceRange(N,{line:B,ch:0},{line:B,ch:99999999999999})})(F);a.focus()}}function xu(a,c,d,l){if(!(!a.codemirror||a.isPreviewActive())){var u=a.codemirror,g=Qt(u),f=g[c];if(!f){pr(u,f,d,l);return}var p=u.getCursor("start"),b=u.getCursor("end"),C=u.getLine(p.line),D=C.slice(0,p.ch),E=C.slice(p.ch);c=="link"?D=D.replace(/(.*)[^!]\[/,"$1"):c=="image"&&(D=D.replace(/(.*)!\[$/,"$1")),E=E.replace(/]\(.*?\)/,""),u.replaceRange(D+E,{line:p.line,ch:0},{line:p.line,ch:99999999999999}),p.ch-=d[0].length,p!==b&&(b.ch-=d[0].length),u.setSelection(p,b),u.focus()}}function sa(a,c,d,l){if(!(!a.codemirror||a.isPreviewActive())){l=typeof l>"u"?d:l;var u=a.codemirror,g=Qt(u),f,p=d,b=l,C=u.getCursor("start"),D=u.getCursor("end");g[c]?(f=u.getLine(C.line),p=f.slice(0,C.ch),b=f.slice(C.ch),c=="bold"?(p=p.replace(/(\*\*|__)(?![\s\S]*(\*\*|__))/,""),b=b.replace(/(\*\*|__)/,"")):c=="italic"?(p=p.replace(/(\*|_)(?![\s\S]*(\*|_))/,""),b=b.replace(/(\*|_)/,"")):c=="strikethrough"&&(p=p.replace(/(\*\*|~~)(?![\s\S]*(\*\*|~~))/,""),b=b.replace(/(\*\*|~~)/,"")),u.replaceRange(p+b,{line:C.line,ch:0},{line:C.line,ch:99999999999999}),c=="bold"||c=="strikethrough"?(C.ch-=2,C!==D&&(D.ch-=2)):c=="italic"&&(C.ch-=1,C!==D&&(D.ch-=1))):(f=u.getSelection(),c=="bold"?(f=f.split("**").join(""),f=f.split("__").join("")):c=="italic"?(f=f.split("*").join(""),f=f.split("_").join("")):c=="strikethrough"&&(f=f.split("~~").join("")),u.replaceSelection(p+f+b),C.ch+=d.length,D.ch=C.ch+f.length),u.setSelection(C,D),u.focus()}}function Sd(a){if(!a.getWrapperElement().lastChild.classList.contains("editor-preview-active"))for(var c=a.getCursor("start"),d=a.getCursor("end"),l,u=c.line;u<=d.line;u++)l=a.getLine(u),l=l.replace(/^[ ]*([# ]+|\*|-|[> ]+|[0-9]+(.|\)))[ ]*/,""),a.replaceRange(l,{line:u,ch:0},{line:u,ch:99999999999999})}function pn(a,c){if(Math.abs(a)<1024)return""+a+c[0];var d=0;do a/=1024,++d;while(Math.abs(a)>=1024&&d=19968?l+=d[u].length:l+=1;return l}var ke={bold:"fa fa-bold",italic:"fa fa-italic",strikethrough:"fa fa-strikethrough",heading:"fa fa-header fa-heading","heading-smaller":"fa fa-header fa-heading header-smaller","heading-bigger":"fa fa-header fa-heading header-bigger","heading-1":"fa fa-header fa-heading header-1","heading-2":"fa fa-header fa-heading header-2","heading-3":"fa fa-header fa-heading header-3",code:"fa fa-code",quote:"fa fa-quote-left","ordered-list":"fa fa-list-ol","unordered-list":"fa fa-list-ul","check-list":"fa fa-check-square-o","clean-block":"fa fa-eraser",link:"fa fa-link",image:"fa fa-image","upload-image":"fa fa-image",table:"fa fa-table","horizontal-rule":"fa fa-minus",preview:"fa fa-eye","side-by-side":"fa fa-columns",fullscreen:"fa fa-arrows-alt",guide:"fa fa-question-circle",undo:"fa fa-undo",redo:"fa fa-repeat fa-redo"},dr={bold:{name:"bold",action:gn,className:ke.bold,title:"Bold",default:!0},italic:{name:"italic",action:vn,className:ke.italic,title:"Italic",default:!0},strikethrough:{name:"strikethrough",action:mn,className:ke.strikethrough,title:"Strikethrough"},heading:{name:"heading",action:ki,className:ke.heading,title:"Heading",default:!0},"heading-smaller":{name:"heading-smaller",action:ki,className:ke["heading-smaller"],title:"Smaller Heading"},"heading-bigger":{name:"heading-bigger",action:xn,className:ke["heading-bigger"],title:"Bigger Heading"},"heading-1":{name:"heading-1",action:Dn,className:ke["heading-1"],title:"Big Heading"},"heading-2":{name:"heading-2",action:Cn,className:ke["heading-2"],title:"Medium Heading"},"heading-3":{name:"heading-3",action:wn,className:ke["heading-3"],title:"Small Heading"},"separator-1":{name:"separator-1"},code:{name:"code",action:yn,className:ke.code,title:"Code"},quote:{name:"quote",action:bn,className:ke.quote,title:"Quote",default:!0},"unordered-list":{name:"unordered-list",action:kn,className:ke["unordered-list"],title:"Generic List",default:!0},"ordered-list":{name:"ordered-list",action:Sn,className:ke["ordered-list"],title:"Numbered List",default:!0},"check-list":{name:"check-list",action:Fn,className:ke["check-list"],title:"Check List",default:!0},"clean-block":{name:"clean-block",action:En,className:ke["clean-block"],title:"Clean block"},"separator-2":{name:"separator-2"},link:{name:"link",action:An,className:ke.link,title:"Create Link",default:!0},image:{name:"image",action:Ln,className:ke.image,title:"Insert Image",default:!0},"upload-image":{name:"upload-image",action:la,className:ke["upload-image"],title:"Import an image"},table:{name:"table",action:Tn,className:ke.table,title:"Insert Table"},"horizontal-rule":{name:"horizontal-rule",action:Mn,className:ke["horizontal-rule"],title:"Insert Horizontal Line"},"separator-3":{name:"separator-3"},preview:{name:"preview",action:In,className:ke.preview,noDisable:!0,title:"Toggle Preview",default:!0},"side-by-side":{name:"side-by-side",action:qr,className:ke["side-by-side"],noDisable:!0,noMobile:!0,title:"Toggle Side by Side",default:!0},fullscreen:{name:"fullscreen",action:hr,className:ke.fullscreen,noDisable:!0,noMobile:!0,title:"Toggle Fullscreen",default:!0},"separator-4":{name:"separator-4"},guide:{name:"guide",action:"https://www.markdownguide.org/basic-syntax/",className:ke.guide,noDisable:!0,title:"Markdown Guide",default:!0},"separator-5":{name:"separator-5"},undo:{name:"undo",action:Bn,className:ke.undo,noDisable:!0,title:"Undo"},redo:{name:"redo",action:Nn,className:ke.redo,noDisable:!0,title:"Redo"}},Fd={link:["[","](#url#)"],image:["![","](#url#)"],uploadedImage:["![](#url#)",""],table:["",` +`,vt--),pr(U,!1,[b,ee]),U.setSelection({line:Te,ch:0},{line:vt,ch:0})}var f=a.codemirror,p=f.getCursor("start"),y=f.getCursor("end"),C=f.getTokenAt({line:p.line,ch:p.ch||1}),D=f.getLineHandle(p.line),S=u(f,p.line,D,C),F,M,z;if(S==="single"){var I=D.text.slice(0,p.ch).replace("`",""),A=D.text.slice(p.ch).replace("`","");f.replaceRange(I+A,{line:p.line,ch:0},{line:p.line,ch:99999999999999}),p.ch--,p!==y&&y.ch--,f.setSelection(p,y),f.focus()}else if(S==="fenced")if(p.line!==y.line||p.ch!==y.ch){for(F=p.line;F>=0&&(D=f.getLineHandle(F),!d(D));F--);var B=f.getTokenAt({line:F,ch:1}),N=l(B).fencedChars,R,H,_,X;d(f.getLineHandle(p.line))?(R="",H=p.line):d(f.getLineHandle(p.line-1))?(R="",H=p.line-1):(R=N+` +`,H=p.line),d(f.getLineHandle(y.line))?(_="",X=y.line,y.ch===0&&(X+=1)):y.ch!==0&&d(f.getLineHandle(y.line+1))?(_="",X=y.line+1):(_=N+` +`,X=y.line+1),y.ch===0&&(X-=1),f.operation(function(){f.replaceRange(_,{line:X,ch:0},{line:X+(_?0:1),ch:0}),f.replaceRange(R,{line:H,ch:0},{line:H+(R?0:1),ch:0})}),f.setSelection({line:H+(R?1:0),ch:0},{line:X+(R?1:-1),ch:0}),f.focus()}else{var K=p.line;if(d(f.getLineHandle(p.line))&&(u(f,p.line+1)==="fenced"?(F=p.line,K=p.line+1):(M=p.line,K=p.line-1)),F===void 0)for(F=K;F>=0&&(D=f.getLineHandle(F),!d(D));F--);if(M===void 0)for(z=f.lineCount(),M=K;M=0;F--)if(D=f.getLineHandle(F),!D.text.match(/^\s*$/)&&u(f,F,D)!=="indented"){F+=1;break}for(z=f.lineCount(),M=p.line;M\s+/,"unordered-list":l,"ordered-list":l,"check-list":/^(\s*)(- \[[ xX]])(\s+)/},C=function(B,N){var R={quote:">","unordered-list":d,"ordered-list":"%%i.","check-list":"- [ ]"};return R[B].replace("%%i",N)},D=function(B,N){var R={quote:">","unordered-list":"\\"+d,"ordered-list":"\\d+.","check-list":"- \\[[ xX]]"},H=new RegExp(R[B]);return N&&H.test(N)},S=function(B,N,R){var H=l.exec(N),_=C(B,F);return H!==null?(D(B,H[2])&&(_=""),N=H[1]+_+H[3]+N.replace(u,"").replace(y[B],"$1")):R==!1&&(N=_+" "+N),N},F=1,M=["unordered-list","ordered-list","check-list"],z=Object.keys(g)[0];if(!M.includes(z)){var I=a.getLine(f.line);/^\s*- \[[ xX]]\s/.test(I)?z="check-list":/^\s*\d+\.\s/.test(I)?z="ordered-list":/^\s*[*\-+]\s/.test(I)&&(z="unordered-list")}for(var A=f.line;A<=p.line;A++)(function(B){var N=a.getLine(B);g[c]?N=N.replace(y[c],"$1"):M.includes(z)&&M.includes(c)?(N=N.replace(y[z],"$1"),N=S(c,N,!1),F+=1):(N=S(c,N,!1),F+=1),a.replaceRange(N,{line:B,ch:0},{line:B,ch:99999999999999})})(A);a.focus()}}function xu(a,c,d,l){if(!(!a.codemirror||a.isPreviewActive())){var u=a.codemirror,g=Qt(u),f=g[c];if(!f){pr(u,f,d,l);return}var p=u.getCursor("start"),y=u.getCursor("end"),C=u.getLine(p.line),D=C.slice(0,p.ch),S=C.slice(p.ch);c=="link"?D=D.replace(/(.*)[^!]\[/,"$1"):c=="image"&&(D=D.replace(/(.*)!\[$/,"$1")),S=S.replace(/]\(.*?\)/,""),u.replaceRange(D+S,{line:p.line,ch:0},{line:p.line,ch:99999999999999}),p.ch-=d[0].length,p!==y&&(y.ch-=d[0].length),u.setSelection(p,y),u.focus()}}function sa(a,c,d,l){if(!(!a.codemirror||a.isPreviewActive())){l=typeof l>"u"?d:l;var u=a.codemirror,g=Qt(u),f,p=d,y=l,C=u.getCursor("start"),D=u.getCursor("end");g[c]?(f=u.getLine(C.line),p=f.slice(0,C.ch),y=f.slice(C.ch),c=="bold"?(p=p.replace(/(\*\*|__)(?![\s\S]*(\*\*|__))/,""),y=y.replace(/(\*\*|__)/,"")):c=="italic"?(p=p.replace(/(\*|_)(?![\s\S]*(\*|_))/,""),y=y.replace(/(\*|_)/,"")):c=="strikethrough"&&(p=p.replace(/(\*\*|~~)(?![\s\S]*(\*\*|~~))/,""),y=y.replace(/(\*\*|~~)/,"")),u.replaceRange(p+y,{line:C.line,ch:0},{line:C.line,ch:99999999999999}),c=="bold"||c=="strikethrough"?(C.ch-=2,C!==D&&(D.ch-=2)):c=="italic"&&(C.ch-=1,C!==D&&(D.ch-=1))):(f=u.getSelection(),c=="bold"?(f=f.split("**").join(""),f=f.split("__").join("")):c=="italic"?(f=f.split("*").join(""),f=f.split("_").join("")):c=="strikethrough"&&(f=f.split("~~").join("")),u.replaceSelection(p+f+y),C.ch+=d.length,D.ch=C.ch+f.length),u.setSelection(C,D),u.focus()}}function Sd(a){if(!a.getWrapperElement().lastChild.classList.contains("editor-preview-active"))for(var c=a.getCursor("start"),d=a.getCursor("end"),l,u=c.line;u<=d.line;u++)l=a.getLine(u),l=l.replace(/^[ ]*([# ]+|\*|-|[> ]+|[0-9]+(.|\)))[ ]*/,""),a.replaceRange(l,{line:u,ch:0},{line:u,ch:99999999999999})}function pn(a,c){if(Math.abs(a)<1024)return""+a+c[0];var d=0;do a/=1024,++d;while(Math.abs(a)>=1024&&d=19968?l+=d[u].length:l+=1;return l}var ke={bold:"fa fa-bold",italic:"fa fa-italic",strikethrough:"fa fa-strikethrough",heading:"fa fa-header fa-heading","heading-smaller":"fa fa-header fa-heading header-smaller","heading-bigger":"fa fa-header fa-heading header-bigger","heading-1":"fa fa-header fa-heading header-1","heading-2":"fa fa-header fa-heading header-2","heading-3":"fa fa-header fa-heading header-3",code:"fa fa-code",quote:"fa fa-quote-left","ordered-list":"fa fa-list-ol","unordered-list":"fa fa-list-ul","check-list":"fa fa-check-square-o","clean-block":"fa fa-eraser",link:"fa fa-link",image:"fa fa-image","upload-image":"fa fa-image",table:"fa fa-table","horizontal-rule":"fa fa-minus",preview:"fa fa-eye","side-by-side":"fa fa-columns",fullscreen:"fa fa-arrows-alt",guide:"fa fa-question-circle",undo:"fa fa-undo",redo:"fa fa-repeat fa-redo"},dr={bold:{name:"bold",action:gn,className:ke.bold,title:"Bold",default:!0},italic:{name:"italic",action:vn,className:ke.italic,title:"Italic",default:!0},strikethrough:{name:"strikethrough",action:mn,className:ke.strikethrough,title:"Strikethrough"},heading:{name:"heading",action:ki,className:ke.heading,title:"Heading",default:!0},"heading-smaller":{name:"heading-smaller",action:ki,className:ke["heading-smaller"],title:"Smaller Heading"},"heading-bigger":{name:"heading-bigger",action:xn,className:ke["heading-bigger"],title:"Bigger Heading"},"heading-1":{name:"heading-1",action:Dn,className:ke["heading-1"],title:"Big Heading"},"heading-2":{name:"heading-2",action:wn,className:ke["heading-2"],title:"Medium Heading"},"heading-3":{name:"heading-3",action:Cn,className:ke["heading-3"],title:"Small Heading"},"separator-1":{name:"separator-1"},code:{name:"code",action:bn,className:ke.code,title:"Code"},quote:{name:"quote",action:yn,className:ke.quote,title:"Quote",default:!0},"unordered-list":{name:"unordered-list",action:kn,className:ke["unordered-list"],title:"Generic List",default:!0},"ordered-list":{name:"ordered-list",action:Sn,className:ke["ordered-list"],title:"Numbered List",default:!0},"check-list":{name:"check-list",action:Fn,className:ke["check-list"],title:"Check List",default:!0},"clean-block":{name:"clean-block",action:En,className:ke["clean-block"],title:"Clean block"},"separator-2":{name:"separator-2"},link:{name:"link",action:An,className:ke.link,title:"Create Link",default:!0},image:{name:"image",action:Ln,className:ke.image,title:"Insert Image",default:!0},"upload-image":{name:"upload-image",action:la,className:ke["upload-image"],title:"Import an image"},table:{name:"table",action:Tn,className:ke.table,title:"Insert Table"},"horizontal-rule":{name:"horizontal-rule",action:Mn,className:ke["horizontal-rule"],title:"Insert Horizontal Line"},"separator-3":{name:"separator-3"},preview:{name:"preview",action:In,className:ke.preview,noDisable:!0,title:"Toggle Preview",default:!0},"side-by-side":{name:"side-by-side",action:qr,className:ke["side-by-side"],noDisable:!0,noMobile:!0,title:"Toggle Side by Side",default:!0},fullscreen:{name:"fullscreen",action:hr,className:ke.fullscreen,noDisable:!0,noMobile:!0,title:"Toggle Fullscreen",default:!0},"separator-4":{name:"separator-4"},guide:{name:"guide",action:"https://www.markdownguide.org/basic-syntax/",className:ke.guide,noDisable:!0,title:"Markdown Guide",default:!0},"separator-5":{name:"separator-5"},undo:{name:"undo",action:Bn,className:ke.undo,noDisable:!0,title:"Undo"},redo:{name:"redo",action:Nn,className:ke.redo,noDisable:!0,title:"Redo"}},Fd={link:["[","](#url#)"],image:["![","](#url#)"],uploadedImage:["![](#url#)",""],table:["",` | Column 1 | Column 2 | Column 3 | | -------- | -------- | -------- | @@ -92,4 +92,4 @@ Please report this to https://github.com/markedjs/marked.`,a){var u="

An error ----- `]},Ed={link:"URL for the link:",image:"URL of the image:"},Ad={locale:"en-US",format:{hour:"2-digit",minute:"2-digit"}},Ld={bold:"**",code:"```",italic:"*"},Td={sbInit:"Attach files by drag and dropping or pasting from clipboard.",sbOnDragEnter:"Drop image to upload it.",sbOnDrop:"Uploading image #images_names#...",sbProgress:"Uploading #file_name#: #progress#%",sbOnUploaded:"Uploaded #image_name#",sizeUnits:" B, KB, MB"},Md={noFileGiven:"You must select a file.",typeNotAllowed:"This image type is not allowed.",fileTooLarge:`Image #image_name# is too big (#image_size#). -Maximum file size is #image_max_size#.`,importError:"Something went wrong when uploading the image #image_name#."};function J(a){a=a||{},a.parent=this;var c=!0;if(a.autoDownloadFontAwesome===!1&&(c=!1),a.autoDownloadFontAwesome!==!0)for(var d=document.styleSheets,l=0;l-1&&(c=!1);if(c){var u=document.createElement("link");u.rel="stylesheet",u.href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css",document.getElementsByTagName("head")[0].appendChild(u)}if(a.element)this.element=a.element;else if(a.element===null){console.log("EasyMDE: Error. No element was found.");return}if(a.toolbar===void 0){a.toolbar=[];for(var g in dr)Object.prototype.hasOwnProperty.call(dr,g)&&(g.indexOf("separator-")!=-1&&a.toolbar.push("|"),(dr[g].default===!0||a.showIcons&&a.showIcons.constructor===Array&&a.showIcons.indexOf(g)!=-1)&&a.toolbar.push(g))}if(Object.prototype.hasOwnProperty.call(a,"previewClass")||(a.previewClass="editor-preview"),Object.prototype.hasOwnProperty.call(a,"status")||(a.status=["autosave","lines","words","cursor"],a.uploadImage&&a.status.unshift("upload-image")),a.previewRender||(a.previewRender=function(p){return this.parent.markdown(p)}),a.parsingConfig=Rt({highlightFormatting:!0},a.parsingConfig||{}),a.insertTexts=Rt({},Fd,a.insertTexts||{}),a.promptTexts=Rt({},Ed,a.promptTexts||{}),a.blockStyles=Rt({},Ld,a.blockStyles||{}),a.autosave!=null&&(a.autosave.timeFormat=Rt({},Ad,a.autosave.timeFormat||{})),a.iconClassMap=Rt({},ke,a.iconClassMap||{}),a.shortcuts=Rt({},yd,a.shortcuts||{}),a.maxHeight=a.maxHeight||void 0,a.direction=a.direction||"ltr",typeof a.maxHeight<"u"?a.minHeight=a.maxHeight:a.minHeight=a.minHeight||"300px",a.errorCallback=a.errorCallback||function(p){alert(p)},a.uploadImage=a.uploadImage||!1,a.imageMaxSize=a.imageMaxSize||2097152,a.imageAccept=a.imageAccept||"image/png, image/jpeg, image/gif, image/avif",a.imageTexts=Rt({},Td,a.imageTexts||{}),a.errorMessages=Rt({},Md,a.errorMessages||{}),a.imagePathAbsolute=a.imagePathAbsolute||!1,a.imageCSRFName=a.imageCSRFName||"csrfmiddlewaretoken",a.imageCSRFHeader=a.imageCSRFHeader||!1,a.imageInputName=a.imageInputName||"image",a.autosave!=null&&a.autosave.unique_id!=null&&a.autosave.unique_id!=""&&(a.autosave.uniqueId=a.autosave.unique_id),a.overlayMode&&a.overlayMode.combine===void 0&&(a.overlayMode.combine=!0),this.options=a,this.render(),a.initialValue&&(!this.options.autosave||this.options.autosave.foundSavedValue!==!0)&&this.value(a.initialValue),a.uploadImage){var f=this;this.codemirror.on("dragenter",function(p,b){f.updateStatusBar("upload-image",f.options.imageTexts.sbOnDragEnter),b.stopPropagation(),b.preventDefault()}),this.codemirror.on("dragend",function(p,b){f.updateStatusBar("upload-image",f.options.imageTexts.sbInit),b.stopPropagation(),b.preventDefault()}),this.codemirror.on("dragleave",function(p,b){f.updateStatusBar("upload-image",f.options.imageTexts.sbInit),b.stopPropagation(),b.preventDefault()}),this.codemirror.on("dragover",function(p,b){f.updateStatusBar("upload-image",f.options.imageTexts.sbOnDragEnter),b.stopPropagation(),b.preventDefault()}),this.codemirror.on("drop",function(p,b){b.stopPropagation(),b.preventDefault(),a.imageUploadFunction?f.uploadImagesUsingCustomFunction(a.imageUploadFunction,b.dataTransfer.files):f.uploadImages(b.dataTransfer.files)}),this.codemirror.on("paste",function(p,b){a.imageUploadFunction?f.uploadImagesUsingCustomFunction(a.imageUploadFunction,b.clipboardData.files):f.uploadImages(b.clipboardData.files)})}}J.prototype.uploadImages=function(a,c,d){if(a.length!==0){for(var l=[],u=0;u=2){var R=N[1];if(c.imagesPreviewHandler){var H=c.imagesPreviewHandler(N[1]);typeof H=="string"&&(R=H)}if(window.EMDEimagesCache[R])M(B,window.EMDEimagesCache[R]);else{window.EMDEimagesCache[R]={};var _=document.createElement("img");_.onload=function(){window.EMDEimagesCache[R]={naturalWidth:_.naturalWidth,naturalHeight:_.naturalHeight,url:R},M(B,window.EMDEimagesCache[R])},_.src=R}}}})}this.codemirror.on("update",function(){z()}),this.gui.sideBySide=this.createSideBySide(),this._rendered=this.element,(c.autofocus===!0||a.autofocus)&&this.codemirror.focus();var I=this.codemirror;setTimeout(function(){I.refresh()}.bind(I),0)};J.prototype.cleanup=function(){document.removeEventListener("keydown",this.documentOnKeyDown)};function Cu(){if(typeof localStorage=="object")try{localStorage.setItem("smde_localStorage",1),localStorage.removeItem("smde_localStorage")}catch{return!1}else return!1;return!0}J.prototype.autosave=function(){if(Cu()){var a=this;if(this.options.autosave.uniqueId==null||this.options.autosave.uniqueId==""){console.log("EasyMDE: You must set a uniqueId to use the autosave feature");return}this.options.autosave.binded!==!0&&(a.element.form!=null&&a.element.form!=null&&a.element.form.addEventListener("submit",function(){clearTimeout(a.autosaveTimeoutId),a.autosaveTimeoutId=void 0,localStorage.removeItem("smde_"+a.options.autosave.uniqueId)}),this.options.autosave.binded=!0),this.options.autosave.loaded!==!0&&(typeof localStorage.getItem("smde_"+this.options.autosave.uniqueId)=="string"&&localStorage.getItem("smde_"+this.options.autosave.uniqueId)!=""&&(this.codemirror.setValue(localStorage.getItem("smde_"+this.options.autosave.uniqueId)),this.options.autosave.foundSavedValue=!0),this.options.autosave.loaded=!0);var c=a.value();c!==""?localStorage.setItem("smde_"+this.options.autosave.uniqueId,c):localStorage.removeItem("smde_"+this.options.autosave.uniqueId);var d=document.getElementById("autosaved");if(d!=null&&d!=null&&d!=""){var l=new Date,u=new Intl.DateTimeFormat([this.options.autosave.timeFormat.locale,"en-US"],this.options.autosave.timeFormat.format).format(l),g=this.options.autosave.text==null?"Autosaved: ":this.options.autosave.text;d.innerHTML=g+u}}else console.log("EasyMDE: localStorage not available, cannot autosave")};J.prototype.clearAutosavedValue=function(){if(Cu()){if(this.options.autosave==null||this.options.autosave.uniqueId==null||this.options.autosave.uniqueId==""){console.log("EasyMDE: You must set a uniqueId to clear the autosave value");return}localStorage.removeItem("smde_"+this.options.autosave.uniqueId)}else console.log("EasyMDE: localStorage not available, cannot autosave")};J.prototype.openBrowseFileWindow=function(a,c){var d=this,l=this.gui.toolbar.getElementsByClassName("imageInput")[0];l.click();function u(g){d.options.imageUploadFunction?d.uploadImagesUsingCustomFunction(d.options.imageUploadFunction,g.target.files):d.uploadImages(g.target.files,a,c),l.removeEventListener("change",u)}l.addEventListener("change",u)};J.prototype.uploadImage=function(a,c,d){var l=this;c=c||function(C){bu(l,C)};function u(b){l.updateStatusBar("upload-image",b),setTimeout(function(){l.updateStatusBar("upload-image",l.options.imageTexts.sbInit)},1e4),d&&typeof d=="function"&&d(b),l.options.errorCallback(b)}function g(b){var C=l.options.imageTexts.sizeUnits.split(",");return b.replace("#image_name#",a.name).replace("#image_size#",pn(a.size,C)).replace("#image_max_size#",pn(l.options.imageMaxSize,C))}if(a.size>this.options.imageMaxSize){u(g(this.options.errorMessages.fileTooLarge));return}var f=new FormData;f.append("image",a),l.options.imageCSRFToken&&!l.options.imageCSRFHeader&&f.append(l.options.imageCSRFName,l.options.imageCSRFToken);var p=new XMLHttpRequest;p.upload.onprogress=function(b){if(b.lengthComputable){var C=""+Math.round(b.loaded*100/b.total);l.updateStatusBar("upload-image",l.options.imageTexts.sbProgress.replace("#file_name#",a.name).replace("#progress#",C))}},p.open("POST",this.options.imageUploadEndpoint),l.options.imageCSRFToken&&l.options.imageCSRFHeader&&p.setRequestHeader(l.options.imageCSRFName,l.options.imageCSRFToken),p.onload=function(){try{var b=JSON.parse(this.responseText)}catch{console.error("EasyMDE: The server did not return a valid json."),u(g(l.options.errorMessages.importError));return}this.status===200&&b&&!b.error&&b.data&&b.data.filePath?c((l.options.imagePathAbsolute?"":window.location.origin+"/")+b.data.filePath):b.error&&b.error in l.options.errorMessages?u(g(l.options.errorMessages[b.error])):b.error?u(g(b.error)):(console.error("EasyMDE: Received an unexpected response after uploading the image."+this.status+" ("+this.statusText+")"),u(g(l.options.errorMessages.importError)))},p.onerror=function(b){console.error("EasyMDE: An unexpected error occurred when trying to upload the image."+b.target.status+" ("+b.target.statusText+")"),u(l.options.errorMessages.importError)},p.send(f)};J.prototype.uploadImageUsingCustomFunction=function(a,c){var d=this;function l(f){bu(d,f)}function u(f){var p=g(f);d.updateStatusBar("upload-image",p),setTimeout(function(){d.updateStatusBar("upload-image",d.options.imageTexts.sbInit)},1e4),d.options.errorCallback(p)}function g(f){var p=d.options.imageTexts.sizeUnits.split(",");return f.replace("#image_name#",c.name).replace("#image_size#",pn(c.size,p)).replace("#image_max_size#",pn(d.options.imageMaxSize,p))}a.apply(this,[c,l,u])};J.prototype.setPreviewMaxHeight=function(){var a=this.codemirror,c=a.getWrapperElement(),d=c.nextSibling,l=parseInt(window.getComputedStyle(c).paddingTop),u=parseInt(window.getComputedStyle(c).borderTopWidth),g=parseInt(this.options.maxHeight),f=g+l*2+u*2,p=f.toString()+"px";d.style.height=p};J.prototype.createSideBySide=function(){var a=this.codemirror,c=a.getWrapperElement(),d=c.nextSibling;if(!d||!d.classList.contains("editor-preview-side")){if(d=document.createElement("div"),d.className="editor-preview-side",this.options.previewClass)if(Array.isArray(this.options.previewClass))for(var l=0;l0||D>0&&E0?"Converting "+c+" photo"+(c>1?"s":"")+"\u2026":"Uploading "+D+" photo"+(D>1?"s":"")+"\u2026",d.details.open=!0):D>0?(d.summary.textContent="\u2713 "+D+" photo"+(D>1?"s":"")+" ready \u2014 tap to review",d.details.open=!1):(d.summary.textContent="Photos (max 4)",d.details.open=!0)}}function g(){u(),setTimeout(u,150),setTimeout(u,500)}function f(){var C=a.querySelector('button[type="submit"], input[type="submit"]');if(C&&(C.disabled=c>0),c>0)l("Converting "+c+" photo"+(c>1?"s":"")+"\u2026");else{var D=Su();D&&/Converting/.test(D.textContent)&&l("")}u()}a.addEventListener("submit",function(C){c>0&&(C.preventDefault(),l("Hang on \u2014 a photo is still converting.","err"))},!0);function p(C){return function(D){var E=D&&D.file;return E?Id(E).then(function(T){return T?(c++,f(),import("./heic-to-CN7JBE7H.js").then(function(M){var z=M.heicTo||M.default&&M.default.heicTo;return z({blob:E,type:"image/jpeg",quality:.85})}).then(function(M){var z=new File([M],zd(E.name),{type:"image/jpeg"});C.addFile(z)}).catch(function(){l("A photo couldn\u2019t be converted and was skipped \u2014 the others are fine.","err")}).then(function(){c--,f()}),!1):!0}):!0}}var b=0;(function C(){var D=window.GravFilePond&&window.GravFilePond.getInstances?window.GravFilePond.getInstances():[];if(!D.length){b++<120&&setTimeout(C,50);return}D.forEach(function(E){E&&!E._heicHooked&&(E._heicHooked=!0,E.setOptions({beforeAddFile:p(E)}),["addfile","processfile","processfiles","removefile","error"].forEach(function(T){try{E.on(T,g)}catch{}}),u())})})()}function vr(a){return document.querySelector('[name="data['+a+']"]')}function Rd(){var a=Array.prototype.slice.call(document.querySelectorAll(".advanced-field"));if(a.length){var c=[];if(a.forEach(function(g){var f=g.closest(".form-field");f&&c.indexOf(f)===-1&&c.push(f)}),!!c.length){var d=document.createElement("details");d.className="more-options";var l=document.createElement("summary");l.className="more-options__summary",l.textContent="More options",d.appendChild(l),c[0].parentNode.insertBefore(d,c[0]),c.forEach(function(g){d.appendChild(g)});var u=c.some(function(g){var f=g.querySelector('input[type="text"]');if(f&&f.value.trim())return!0;var p=g.querySelector('input[type="radio"]:checked');return!!(p&&p.value&&p.value!=="0")});u&&(d.open=!0)}}}var Pd={0:"Sunny",1:"Partly cloudy",2:"Partly cloudy",3:"Cloudy",45:"Foggy",48:"Foggy",51:"Drizzle",53:"Drizzle",55:"Drizzle",56:"Drizzle",57:"Drizzle",61:"Rain",63:"Rain",65:"Rain",66:"Rain",67:"Rain",80:"Rain",81:"Rain",82:"Rain",71:"Snow",73:"Snow",75:"Snow",77:"Snow",85:"Snow",86:"Snow",95:"Thunderstorm",96:"Thunderstorm",99:"Thunderstorm"};function $t(a,c,d){a&&(a.className="form-status"+(d?" form-status--"+d:""),a.textContent=c||"")}function _d(){var a=document.getElementById("get-location"),c=document.getElementById("get-weather");if(!a&&!c)return;var d=document.getElementById("location-status"),l=document.getElementById("weather-status");function u(){var f=vr("lat"),p=vr("lng"),b=f?f.value.trim():"",C=p?p.value.trim():"";return b&&C?{lat:b,lng:C}:null}function g(){if(c){var f=!!u();c.disabled=!f,c.title=f?"":"Get location first"}}g(),a&&a.addEventListener("click",function(){if(!navigator.geolocation){$t(d,"Geolocation is not supported on this device.","err");return}a.classList.add("is-loading"),a.disabled=!0,$t(d,"Getting location\u2026"),navigator.geolocation.getCurrentPosition(function(f){var p=f.coords.latitude.toFixed(6),b=f.coords.longitude.toFixed(6),C=vr("lat"),D=vr("lng");C&&(C.value=p),D&&(D.value=b),a.classList.remove("is-loading"),a.disabled=!1,$t(d,"\u2713 Location captured \xB7 "+p+", "+b,"ok"),g()},function(f){a.classList.remove("is-loading"),a.disabled=!1,$t(d,"\u2717 "+(f&&f.message?f.message:"Could not get location")+" \u2014 enter coordinates manually if needed.","err")},{enableHighAccuracy:!0,timeout:15e3})}),c&&c.addEventListener("click",function(){var f=u();if(!f){$t(l,"Get location first, then fetch weather.","err");return}c.classList.add("is-loading"),c.disabled=!0,$t(l,"Fetching weather\u2026");var p="https://api.open-meteo.com/v1/forecast?latitude="+f.lat+"&longitude="+f.lng+"¤t=temperature_2m,weather_code&temperature_unit=celsius";fetch(p).then(function(b){return b.json()}).then(function(b){var C=Math.round(b.current.temperature_2m),D=Pd[b.current.weather_code]||"Cloudy",E=vr("weather_temp_c"),T=vr("weather_desc");E&&(E.value=C),T&&(T.value=D),c.classList.remove("is-loading"),g(),$t(l,"\u2713 Weather set \xB7 "+D+" \xB7 "+C+"\xB0C (edit above if needed)","ok")}).catch(function(){c.classList.remove("is-loading"),g(),$t(l,"\u2717 Could not fetch weather \u2014 set it manually above.","err")})})}function Wd(){var a={title:"Title",content:"Content"},c=document.querySelector('form[name="new-entry"]');if(!c)return;function d(){c.querySelectorAll(".field-error").forEach(function(u){u.remove()}),c.querySelectorAll(".field-invalid").forEach(function(u){u.classList.remove("field-invalid")})}function l(u,g){u.classList.add("field-invalid");var f=document.createElement("span");f.className="field-error",f.textContent=g,u.parentNode.insertBefore(f,u.nextSibling)}c.addEventListener("submit",function(u){d();var g=null;Object.keys(a).forEach(function(f){var p=vr(f);p&&!String(p.value).trim()&&(l(p,a[f]+" is required."),g||(g=p))}),g&&(u.preventDefault(),g.focus(),g.scrollIntoView({behavior:"smooth",block:"center"}))})}var ua="intotheeast:new-entry-draft";function qd(a){return Array.prototype.slice.call(a.querySelectorAll('[name^="data["]')).filter(function(c){if(c.type==="file")return!1;var d=c.name;return d.indexOf("data[_json")!==0&&d.indexOf("data[photos")!==0})}function Ud(){var a=document.querySelector(".filepond-root, .form-input-file");if(!(!a||!a.parentNode)&&!a.parentNode.querySelector(".photo-reauth-hint")){var c=document.createElement("p");c.className="photo-reauth-hint is-shown",c.textContent="Your text was restored \u2014 photos need re-selecting (they can\u2019t be saved in a draft).",a.parentNode.insertBefore(c,a.nextSibling)}}function jd(){var a=document.querySelector('form[name="new-entry"]');if(!a)return;if(document.querySelector(".notices.success")){try{localStorage.removeItem(ua)}catch{}return}function c(){var g={};qd(a).forEach(function(f){f.type==="radio"?f.checked&&(g[f.name]=f.value):g[f.name]=f.value});try{localStorage.setItem(ua,JSON.stringify(g))}catch{}}var d=null;try{d=localStorage.getItem(ua)}catch{d=null}if(d){var l=null;try{l=JSON.parse(d)}catch{l=null}if(l){var u=!1;Object.keys(l).forEach(function(g){var f=l[g];if(f!=null&&String(f).trim()&&(u=!0),g!=="data[content]"){var p=a.querySelectorAll('input[type="radio"][name="'+g+'"]');if(p.length){p.forEach(function(C){C.checked=C.value===f});return}var b=a.querySelector('[name="'+g+'"]');b&&b.type!=="file"&&(b.value=f)}}),window.postFormEditor&&l["data[content]"]!=null&&window.postFormEditor.value(l["data[content]"]),u&&Ud()}}a.addEventListener("input",c),a.addEventListener("change",c),window.postFormEditor&&window.postFormEditor.codemirror.on("change",c)}function Gd(){var a=document.querySelector(".post-form-wrap"),c=document.querySelector(".post-form-wrap .notices.success, .post-form-wrap .notices.green");if(!(!a||!c)){var d=document.createElement("div");d.className="post-success";var l=document.createElement("p");l.className="post-success__title",l.textContent="\u2713 Saved to your journal.",d.appendChild(l);var u=document.createElement("div");u.className="post-success__actions";var g=a.getAttribute("data-trip-url");if(g){var f=document.createElement("a");f.className="post-success__view",f.href=g,f.textContent="View your journal \u2192",u.appendChild(f)}var p=document.createElement("a");p.className="post-success__again",p.href=window.location.pathname,p.textContent="Post another",u.appendChild(p),d.appendChild(u),c.parentNode.insertBefore(d,c.nextSibling),["form",".form-action-row","#location-status","#weather-status"].forEach(function(b){var C=a.querySelector(b);C&&(C.style.display="none")}),c.scrollIntoView({behavior:"smooth",block:"start"})}}function Fu(){window.postFormEditor=Bd(),Gd(),jd(),Hd(),Rd(),_d(),Wd()}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",Fu):Fu(); +Maximum file size is #image_max_size#.`,importError:"Something went wrong when uploading the image #image_name#."};function J(a){a=a||{},a.parent=this;var c=!0;if(a.autoDownloadFontAwesome===!1&&(c=!1),a.autoDownloadFontAwesome!==!0)for(var d=document.styleSheets,l=0;l-1&&(c=!1);if(c){var u=document.createElement("link");u.rel="stylesheet",u.href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css",document.getElementsByTagName("head")[0].appendChild(u)}if(a.element)this.element=a.element;else if(a.element===null){console.log("EasyMDE: Error. No element was found.");return}if(a.toolbar===void 0){a.toolbar=[];for(var g in dr)Object.prototype.hasOwnProperty.call(dr,g)&&(g.indexOf("separator-")!=-1&&a.toolbar.push("|"),(dr[g].default===!0||a.showIcons&&a.showIcons.constructor===Array&&a.showIcons.indexOf(g)!=-1)&&a.toolbar.push(g))}if(Object.prototype.hasOwnProperty.call(a,"previewClass")||(a.previewClass="editor-preview"),Object.prototype.hasOwnProperty.call(a,"status")||(a.status=["autosave","lines","words","cursor"],a.uploadImage&&a.status.unshift("upload-image")),a.previewRender||(a.previewRender=function(p){return this.parent.markdown(p)}),a.parsingConfig=Rt({highlightFormatting:!0},a.parsingConfig||{}),a.insertTexts=Rt({},Fd,a.insertTexts||{}),a.promptTexts=Rt({},Ed,a.promptTexts||{}),a.blockStyles=Rt({},Ld,a.blockStyles||{}),a.autosave!=null&&(a.autosave.timeFormat=Rt({},Ad,a.autosave.timeFormat||{})),a.iconClassMap=Rt({},ke,a.iconClassMap||{}),a.shortcuts=Rt({},bd,a.shortcuts||{}),a.maxHeight=a.maxHeight||void 0,a.direction=a.direction||"ltr",typeof a.maxHeight<"u"?a.minHeight=a.maxHeight:a.minHeight=a.minHeight||"300px",a.errorCallback=a.errorCallback||function(p){alert(p)},a.uploadImage=a.uploadImage||!1,a.imageMaxSize=a.imageMaxSize||2097152,a.imageAccept=a.imageAccept||"image/png, image/jpeg, image/gif, image/avif",a.imageTexts=Rt({},Td,a.imageTexts||{}),a.errorMessages=Rt({},Md,a.errorMessages||{}),a.imagePathAbsolute=a.imagePathAbsolute||!1,a.imageCSRFName=a.imageCSRFName||"csrfmiddlewaretoken",a.imageCSRFHeader=a.imageCSRFHeader||!1,a.imageInputName=a.imageInputName||"image",a.autosave!=null&&a.autosave.unique_id!=null&&a.autosave.unique_id!=""&&(a.autosave.uniqueId=a.autosave.unique_id),a.overlayMode&&a.overlayMode.combine===void 0&&(a.overlayMode.combine=!0),this.options=a,this.render(),a.initialValue&&(!this.options.autosave||this.options.autosave.foundSavedValue!==!0)&&this.value(a.initialValue),a.uploadImage){var f=this;this.codemirror.on("dragenter",function(p,y){f.updateStatusBar("upload-image",f.options.imageTexts.sbOnDragEnter),y.stopPropagation(),y.preventDefault()}),this.codemirror.on("dragend",function(p,y){f.updateStatusBar("upload-image",f.options.imageTexts.sbInit),y.stopPropagation(),y.preventDefault()}),this.codemirror.on("dragleave",function(p,y){f.updateStatusBar("upload-image",f.options.imageTexts.sbInit),y.stopPropagation(),y.preventDefault()}),this.codemirror.on("dragover",function(p,y){f.updateStatusBar("upload-image",f.options.imageTexts.sbOnDragEnter),y.stopPropagation(),y.preventDefault()}),this.codemirror.on("drop",function(p,y){y.stopPropagation(),y.preventDefault(),a.imageUploadFunction?f.uploadImagesUsingCustomFunction(a.imageUploadFunction,y.dataTransfer.files):f.uploadImages(y.dataTransfer.files)}),this.codemirror.on("paste",function(p,y){a.imageUploadFunction?f.uploadImagesUsingCustomFunction(a.imageUploadFunction,y.clipboardData.files):f.uploadImages(y.clipboardData.files)})}}J.prototype.uploadImages=function(a,c,d){if(a.length!==0){for(var l=[],u=0;u=2){var R=N[1];if(c.imagesPreviewHandler){var H=c.imagesPreviewHandler(N[1]);typeof H=="string"&&(R=H)}if(window.EMDEimagesCache[R])M(B,window.EMDEimagesCache[R]);else{window.EMDEimagesCache[R]={};var _=document.createElement("img");_.onload=function(){window.EMDEimagesCache[R]={naturalWidth:_.naturalWidth,naturalHeight:_.naturalHeight,url:R},M(B,window.EMDEimagesCache[R])},_.src=R}}}})}this.codemirror.on("update",function(){z()}),this.gui.sideBySide=this.createSideBySide(),this._rendered=this.element,(c.autofocus===!0||a.autofocus)&&this.codemirror.focus();var I=this.codemirror;setTimeout(function(){I.refresh()}.bind(I),0)};J.prototype.cleanup=function(){document.removeEventListener("keydown",this.documentOnKeyDown)};function wu(){if(typeof localStorage=="object")try{localStorage.setItem("smde_localStorage",1),localStorage.removeItem("smde_localStorage")}catch{return!1}else return!1;return!0}J.prototype.autosave=function(){if(wu()){var a=this;if(this.options.autosave.uniqueId==null||this.options.autosave.uniqueId==""){console.log("EasyMDE: You must set a uniqueId to use the autosave feature");return}this.options.autosave.binded!==!0&&(a.element.form!=null&&a.element.form!=null&&a.element.form.addEventListener("submit",function(){clearTimeout(a.autosaveTimeoutId),a.autosaveTimeoutId=void 0,localStorage.removeItem("smde_"+a.options.autosave.uniqueId)}),this.options.autosave.binded=!0),this.options.autosave.loaded!==!0&&(typeof localStorage.getItem("smde_"+this.options.autosave.uniqueId)=="string"&&localStorage.getItem("smde_"+this.options.autosave.uniqueId)!=""&&(this.codemirror.setValue(localStorage.getItem("smde_"+this.options.autosave.uniqueId)),this.options.autosave.foundSavedValue=!0),this.options.autosave.loaded=!0);var c=a.value();c!==""?localStorage.setItem("smde_"+this.options.autosave.uniqueId,c):localStorage.removeItem("smde_"+this.options.autosave.uniqueId);var d=document.getElementById("autosaved");if(d!=null&&d!=null&&d!=""){var l=new Date,u=new Intl.DateTimeFormat([this.options.autosave.timeFormat.locale,"en-US"],this.options.autosave.timeFormat.format).format(l),g=this.options.autosave.text==null?"Autosaved: ":this.options.autosave.text;d.innerHTML=g+u}}else console.log("EasyMDE: localStorage not available, cannot autosave")};J.prototype.clearAutosavedValue=function(){if(wu()){if(this.options.autosave==null||this.options.autosave.uniqueId==null||this.options.autosave.uniqueId==""){console.log("EasyMDE: You must set a uniqueId to clear the autosave value");return}localStorage.removeItem("smde_"+this.options.autosave.uniqueId)}else console.log("EasyMDE: localStorage not available, cannot autosave")};J.prototype.openBrowseFileWindow=function(a,c){var d=this,l=this.gui.toolbar.getElementsByClassName("imageInput")[0];l.click();function u(g){d.options.imageUploadFunction?d.uploadImagesUsingCustomFunction(d.options.imageUploadFunction,g.target.files):d.uploadImages(g.target.files,a,c),l.removeEventListener("change",u)}l.addEventListener("change",u)};J.prototype.uploadImage=function(a,c,d){var l=this;c=c||function(C){yu(l,C)};function u(y){l.updateStatusBar("upload-image",y),setTimeout(function(){l.updateStatusBar("upload-image",l.options.imageTexts.sbInit)},1e4),d&&typeof d=="function"&&d(y),l.options.errorCallback(y)}function g(y){var C=l.options.imageTexts.sizeUnits.split(",");return y.replace("#image_name#",a.name).replace("#image_size#",pn(a.size,C)).replace("#image_max_size#",pn(l.options.imageMaxSize,C))}if(a.size>this.options.imageMaxSize){u(g(this.options.errorMessages.fileTooLarge));return}var f=new FormData;f.append("image",a),l.options.imageCSRFToken&&!l.options.imageCSRFHeader&&f.append(l.options.imageCSRFName,l.options.imageCSRFToken);var p=new XMLHttpRequest;p.upload.onprogress=function(y){if(y.lengthComputable){var C=""+Math.round(y.loaded*100/y.total);l.updateStatusBar("upload-image",l.options.imageTexts.sbProgress.replace("#file_name#",a.name).replace("#progress#",C))}},p.open("POST",this.options.imageUploadEndpoint),l.options.imageCSRFToken&&l.options.imageCSRFHeader&&p.setRequestHeader(l.options.imageCSRFName,l.options.imageCSRFToken),p.onload=function(){try{var y=JSON.parse(this.responseText)}catch{console.error("EasyMDE: The server did not return a valid json."),u(g(l.options.errorMessages.importError));return}this.status===200&&y&&!y.error&&y.data&&y.data.filePath?c((l.options.imagePathAbsolute?"":window.location.origin+"/")+y.data.filePath):y.error&&y.error in l.options.errorMessages?u(g(l.options.errorMessages[y.error])):y.error?u(g(y.error)):(console.error("EasyMDE: Received an unexpected response after uploading the image."+this.status+" ("+this.statusText+")"),u(g(l.options.errorMessages.importError)))},p.onerror=function(y){console.error("EasyMDE: An unexpected error occurred when trying to upload the image."+y.target.status+" ("+y.target.statusText+")"),u(l.options.errorMessages.importError)},p.send(f)};J.prototype.uploadImageUsingCustomFunction=function(a,c){var d=this;function l(f){yu(d,f)}function u(f){var p=g(f);d.updateStatusBar("upload-image",p),setTimeout(function(){d.updateStatusBar("upload-image",d.options.imageTexts.sbInit)},1e4),d.options.errorCallback(p)}function g(f){var p=d.options.imageTexts.sizeUnits.split(",");return f.replace("#image_name#",c.name).replace("#image_size#",pn(c.size,p)).replace("#image_max_size#",pn(d.options.imageMaxSize,p))}a.apply(this,[c,l,u])};J.prototype.setPreviewMaxHeight=function(){var a=this.codemirror,c=a.getWrapperElement(),d=c.nextSibling,l=parseInt(window.getComputedStyle(c).paddingTop),u=parseInt(window.getComputedStyle(c).borderTopWidth),g=parseInt(this.options.maxHeight),f=g+l*2+u*2,p=f.toString()+"px";d.style.height=p};J.prototype.createSideBySide=function(){var a=this.codemirror,c=a.getWrapperElement(),d=c.nextSibling;if(!d||!d.classList.contains("editor-preview-side")){if(d=document.createElement("div"),d.className="editor-preview-side",this.options.previewClass)if(Array.isArray(this.options.previewClass))for(var l=0;l0||S>0&&F0?"Converting "+c+" photo"+(c>1?"s":"")+"\u2026":"Uploading "+S+" photo"+(S>1?"s":"")+"\u2026",d.details.open=!0):S>0?(d.summary.textContent="\u2713 "+S+" photo"+(S>1?"s":"")+" ready \u2014 tap to review",d.details.open=!1):(d.summary.textContent="Photos (max 4)",d.details.open=!0)}}function f(){g(),setTimeout(g,150),setTimeout(g,500)}function p(){var D=a.querySelector('button[type="submit"], input[type="submit"]');if(D&&(D.disabled=c>0),c>0)u("Converting "+c+" photo"+(c>1?"s":"")+"\u2026");else{var S=Su();S&&/Converting/.test(S.textContent)&&u("")}g()}a.addEventListener("submit",function(D){c>0&&(D.preventDefault(),u("Hang on \u2014 a photo is still converting.","err"))},!0);function y(D){return function(S){var F=S&&S.file;return F?Id(F).then(function(M){return M?(c++,p(),import("./heic-to-CN7JBE7H.js").then(function(z){var I=z.heicTo||z.default&&z.default.heicTo;return I({blob:F,type:"image/jpeg",quality:.85})}).then(function(z){var I=new File([z],zd(F.name),{type:"image/jpeg"});D.addFile(I)}).catch(function(){u("A photo couldn\u2019t be converted and was skipped \u2014 the others are fine.","err")}).then(function(){c--,p()}),!1):!0}):!0}}var C=0;(function D(){var S=window.GravFilePond&&window.GravFilePond.getInstances?window.GravFilePond.getInstances():[];if(!S.length){C++<120&&setTimeout(D,50);return}S.forEach(function(F){F&&!F._heicHooked&&(F._heicHooked=!0,F.setOptions({beforeAddFile:y(F),allowReorder:!0,itemInsertLocation:"after"}),l=F,["addfile","processfile","processfiles","removefile","error"].forEach(function(M){try{F.on(M,f)}catch{}}),g())})})()}function vr(a){return document.querySelector('[name="data['+a+']"]')}function Rd(){var a=Array.prototype.slice.call(document.querySelectorAll(".advanced-field"));if(a.length){var c=[];if(a.forEach(function(g){var f=g.closest(".form-field");f&&c.indexOf(f)===-1&&c.push(f)}),!!c.length){var d=document.createElement("details");d.className="more-options";var l=document.createElement("summary");l.className="more-options__summary",l.textContent="More options",d.appendChild(l),c[0].parentNode.insertBefore(d,c[0]),c.forEach(function(g){d.appendChild(g)});var u=c.some(function(g){var f=g.querySelector('input[type="text"]');if(f&&f.value.trim())return!0;var p=g.querySelector('input[type="radio"]:checked');return!!(p&&p.value&&p.value!=="0")});u&&(d.open=!0)}}}var Pd={0:"Sunny",1:"Partly cloudy",2:"Partly cloudy",3:"Cloudy",45:"Foggy",48:"Foggy",51:"Drizzle",53:"Drizzle",55:"Drizzle",56:"Drizzle",57:"Drizzle",61:"Rain",63:"Rain",65:"Rain",66:"Rain",67:"Rain",80:"Rain",81:"Rain",82:"Rain",71:"Snow",73:"Snow",75:"Snow",77:"Snow",85:"Snow",86:"Snow",95:"Thunderstorm",96:"Thunderstorm",99:"Thunderstorm"};function $t(a,c,d){a&&(a.className="form-status"+(d?" form-status--"+d:""),a.textContent=c||"")}function _d(){var a=document.getElementById("get-location"),c=document.getElementById("get-weather");if(!a&&!c)return;var d=document.getElementById("location-status"),l=document.getElementById("weather-status");function u(){var f=vr("lat"),p=vr("lng"),y=f?f.value.trim():"",C=p?p.value.trim():"";return y&&C?{lat:y,lng:C}:null}function g(){if(c){var f=!!u();c.disabled=!f,c.title=f?"":"Get location first"}}g(),a&&a.addEventListener("click",function(){if(!navigator.geolocation){$t(d,"Geolocation is not supported on this device.","err");return}a.classList.add("is-loading"),a.disabled=!0,$t(d,"Getting location\u2026"),navigator.geolocation.getCurrentPosition(function(f){var p=f.coords.latitude.toFixed(6),y=f.coords.longitude.toFixed(6),C=vr("lat"),D=vr("lng");C&&(C.value=p),D&&(D.value=y),a.classList.remove("is-loading"),a.disabled=!1,$t(d,"\u2713 Location captured \xB7 "+p+", "+y,"ok"),g()},function(f){a.classList.remove("is-loading"),a.disabled=!1,$t(d,"\u2717 "+(f&&f.message?f.message:"Could not get location")+" \u2014 enter coordinates manually if needed.","err")},{enableHighAccuracy:!0,timeout:15e3})}),c&&c.addEventListener("click",function(){var f=u();if(!f){$t(l,"Get location first, then fetch weather.","err");return}c.classList.add("is-loading"),c.disabled=!0,$t(l,"Fetching weather\u2026");var p="https://api.open-meteo.com/v1/forecast?latitude="+f.lat+"&longitude="+f.lng+"¤t=temperature_2m,weather_code&temperature_unit=celsius";fetch(p).then(function(y){return y.json()}).then(function(y){var C=Math.round(y.current.temperature_2m),D=Pd[y.current.weather_code]||"Cloudy",S=vr("weather_temp_c"),F=vr("weather_desc");S&&(S.value=C),F&&(F.value=D),c.classList.remove("is-loading"),g(),$t(l,"\u2713 Weather set \xB7 "+D+" \xB7 "+C+"\xB0C (edit above if needed)","ok")}).catch(function(){c.classList.remove("is-loading"),g(),$t(l,"\u2717 Could not fetch weather \u2014 set it manually above.","err")})})}function Wd(){var a={title:"Title",content:"Content"},c=document.querySelector('form[name="new-entry"]');if(!c)return;function d(){c.querySelectorAll(".field-error").forEach(function(u){u.remove()}),c.querySelectorAll(".field-invalid").forEach(function(u){u.classList.remove("field-invalid")})}function l(u,g){u.classList.add("field-invalid");var f=document.createElement("span");f.className="field-error",f.textContent=g,u.parentNode.insertBefore(f,u.nextSibling)}c.addEventListener("submit",function(u){d();var g=null;Object.keys(a).forEach(function(f){var p=vr(f);p&&!String(p.value).trim()&&(l(p,a[f]+" is required."),g||(g=p))}),g&&(u.preventDefault(),g.focus(),g.scrollIntoView({behavior:"smooth",block:"center"}))})}var ua="intotheeast:new-entry-draft";function qd(a){return Array.prototype.slice.call(a.querySelectorAll('[name^="data["]')).filter(function(c){if(c.type==="file")return!1;var d=c.name;return d.indexOf("data[_json")!==0&&d.indexOf("data[photos")!==0})}function Ud(){var a=document.querySelector(".filepond-root, .form-input-file");if(!(!a||!a.parentNode)&&!a.parentNode.querySelector(".photo-reauth-hint")){var c=document.createElement("p");c.className="photo-reauth-hint is-shown",c.textContent="Your text was restored \u2014 photos need re-selecting (they can\u2019t be saved in a draft).",a.parentNode.insertBefore(c,a.nextSibling)}}function jd(){var a=document.querySelector('form[name="new-entry"]');if(!a)return;if(document.querySelector(".notices.success")){try{localStorage.removeItem(ua)}catch{}return}function c(){var g={};qd(a).forEach(function(f){f.type==="radio"?f.checked&&(g[f.name]=f.value):g[f.name]=f.value});try{localStorage.setItem(ua,JSON.stringify(g))}catch{}}var d=null;try{d=localStorage.getItem(ua)}catch{d=null}if(d){var l=null;try{l=JSON.parse(d)}catch{l=null}if(l){var u=!1;Object.keys(l).forEach(function(g){var f=l[g];if(f!=null&&String(f).trim()&&(u=!0),g!=="data[content]"){var p=a.querySelectorAll('input[type="radio"][name="'+g+'"]');if(p.length){p.forEach(function(C){C.checked=C.value===f});return}var y=a.querySelector('[name="'+g+'"]');y&&y.type!=="file"&&(y.value=f)}}),window.postFormEditor&&l["data[content]"]!=null&&window.postFormEditor.value(l["data[content]"]),u&&Ud()}}a.addEventListener("input",c),a.addEventListener("change",c),window.postFormEditor&&window.postFormEditor.codemirror.on("change",c)}function Gd(){var a=document.querySelector(".post-form-wrap"),c=document.querySelector(".post-form-wrap .notices.success, .post-form-wrap .notices.green");if(!(!a||!c)){var d=document.createElement("div");d.className="post-success";var l=document.createElement("p");l.className="post-success__title",l.textContent="\u2713 Saved to your journal.",d.appendChild(l);var u=document.createElement("div");u.className="post-success__actions";var g=a.getAttribute("data-trip-url");if(g){var f=document.createElement("a");f.className="post-success__view",f.href=g,f.textContent="View your journal \u2192",u.appendChild(f)}var p=document.createElement("a");p.className="post-success__again",p.href=window.location.pathname,p.textContent="Post another",u.appendChild(p),d.appendChild(u),c.parentNode.insertBefore(d,c.nextSibling),["form",".form-action-row","#location-status","#weather-status"].forEach(function(y){var C=a.querySelector(y);C&&(C.style.display="none")}),c.scrollIntoView({behavior:"smooth",block:"start"})}}function Fu(){window.postFormEditor=Bd(),Gd(),jd(),Hd(),Rd(),_d(),Wd()}document.readyState==="loading"?document.addEventListener("DOMContentLoaded",Fu):Fu(); diff --git a/themes/intotheeast/js/src/post-form.css b/themes/intotheeast/js/src/post-form.css index f3c666b..ed61a04 100644 --- a/themes/intotheeast/js/src/post-form.css +++ b/themes/intotheeast/js/src/post-form.css @@ -195,6 +195,33 @@ /* Hide FilePond's "Powered by PQINA" credit. */ .filepond--credits { display: none !important; } +/* Field Notes dark theme for the FilePond widget — the default is a light/cream + panel that clashes with the site's warm near-black palette. Repaint the drop + zone, thumbnails and actions with the design tokens. */ +.filepond--root { font-family: var(--font-ui); font-size: var(--text-base); } +.filepond--panel-root { + background-color: var(--color-canvas); + border: 1px solid var(--color-border); + border-radius: var(--radius-md); +} +.filepond--drop-label, +.filepond--drop-label label { color: var(--color-ink-muted); } +.filepond--label-action { + color: var(--color-accent); + text-decoration-color: var(--color-accent); +} +.filepond--item-panel { + background-color: var(--color-surface-raised); + border-radius: var(--radius-md); +} +.filepond--drip-blob { background-color: var(--color-accent); } +.filepond--file { color: var(--color-ink); } +.filepond--file-action-button { + color: var(--color-ink); + background-color: rgba(0, 0, 0, 0.45); +} +.filepond--file-action-button:hover { background-color: rgba(0, 0, 0, 0.65); } + /* Issue #2: FilePond's completed thumbnail carries a murky gradient tint + the filename overlay, which reads as "something's wrong". Strip those overlays and show a single clean green ✓ badge so a finished upload is unambiguous. diff --git a/themes/intotheeast/js/src/post-form.js b/themes/intotheeast/js/src/post-form.js index 094ada0..52f6254 100644 --- a/themes/intotheeast/js/src/post-form.js +++ b/themes/intotheeast/js/src/post-form.js @@ -137,6 +137,28 @@ function initPhotoConversion() { var converting = 0; // HEIC conversions in flight (before FilePond) — gates Submit var collapse = buildPhotoCollapse(); + var orderPond = null; // set when the managed FilePond instance is found + + // FilePond does NOT re-sequence its submitted data[photos][] inputs when the + // list is reordered — those stay in upload order — so the drag order never + // reaches the server on its own. Send it explicitly: on submit, write the + // current visual order into a hidden input. Its name is a TOP-LEVEL POST key + // ("photo_order", not "data[...]") so Grav's form never captures it into the + // page data — the server reads it straight from $_POST and renames the + // copied files photo-1..N to match, with nothing leaking into frontmatter. + form.addEventListener('submit', function () { + if (!orderPond) return; + var files = orderPond.getFiles(); + if (!files.length) return; // text-only post — send nothing + var hidden = form.querySelector('input[name="photo_order"]'); + if (!hidden) { + hidden = document.createElement('input'); + hidden.type = 'hidden'; + hidden.name = 'photo_order'; + form.appendChild(hidden); + } + hidden.value = JSON.stringify(files.map(function (f) { return f.filename; })); + }, true); function setStatus(msg, kind) { var el = photoStatusEl(); @@ -244,7 +266,12 @@ function initPhotoConversion() { ponds.forEach(function (pond) { if (pond && !pond._heicHooked) { pond._heicHooked = true; - pond.setOptions({ beforeAddFile: makeBeforeAddFile(pond) }); + // allowReorder: drag thumbnails to set the order. The server + // (cache-on-save) renames the copied files photo-1..N in the + // submitted order so the published entry honours it (entry media + // is filename-ordered; hero = first). + pond.setOptions({ beforeAddFile: makeBeforeAddFile(pond), allowReorder: true, itemInsertLocation: 'after' }); + orderPond = pond; // Update the collapse summary as files are added/uploaded/removed. ['addfile', 'processfile', 'processfiles', 'removefile', 'error'].forEach(function (ev) { try { pond.on(ev, scheduleRefresh); } catch (e) { /* older FilePond API */ }