diff --git a/atom.xml b/atom.xml index cbe8a0a..977bca9 100644 --- a/atom.xml +++ b/atom.xml @@ -5,8 +5,126 @@ Zola - 2023-03-31T00:00:00+00:00 + 2023-10-24T00:00:00+00:00 https://helix-editor.com/atom.xml + + Release 23.10 Highlights + 2023-10-24T00:00:00+00:00 + 2023-10-24T00:00:00+00:00 + + Helix Contributors + + + https://helix-editor.com/news/release-23-10-highlights/ + <p>The Helix 23.10 release is finally here! 23.10 introduces some very large +internal changes that enable some powerful features. A very big <em>thank you</em> to +everyone who made this release possible.</p> +<p>New to Helix? +Helix is a modal text editor with built-in support for multiple selections, +Language Server Protocol (LSP), tree-sitter, and experimental support for Debug +Adapter Protocol (DAP).</p> +<p>Let's check out this release's highlights.</p> +<h2 id="multiple-language-servers">Multiple language servers</h2> +<p>23.10 brings a big change to the way we handle language servers. +Previously each language could only support one language server at a time but +now you can configure multiple to work in tandem. For example you might use +the TypeScript language server for JavaScript/TypeScript development and also +configure <a href="https://github.com/mattn/efm-langserver">efm-langserver</a> for +Prettier formatting and ESLint diagnostics. With the new support for multiple +language servers, you can specify which features to use from each language +server.</p> +<p>This brings a big change to the way language servers are configured in your +language configuration (<code>languages.toml</code>). All language servers are now +specified separately from languages and then each language selects which +language server(s) to use. From the example above, you might configure efm- +langserver and typescript-language-server like so:</p> +<pre data-lang="toml" style="background-color:#2b303b;color:#c0c5ce;" class="language-toml "><code class="language-toml" data-lang="toml"><span>[language-server.efm] +</span><span style="color:#bf616a;">command </span><span>= &quot;</span><span style="color:#a3be8c;">efm-langserver</span><span>&quot; +</span><span style="color:#bf616a;">config</span><span>.</span><span style="color:#bf616a;">documentFormatting </span><span>= </span><span style="color:#d08770;">true +</span><span> +</span><span>[language-server.typescript-language-server] +</span><span style="color:#bf616a;">command </span><span>= &quot;</span><span style="color:#a3be8c;">typescript-language-server</span><span>&quot; +</span><span style="color:#bf616a;">args </span><span>= [&quot;</span><span style="color:#a3be8c;">--stdio</span><span>&quot;] +</span><span style="color:#bf616a;">config</span><span>.</span><span style="color:#bf616a;">hostInfo </span><span>= &quot;</span><span style="color:#a3be8c;">helix</span><span>&quot; +</span><span> +</span><span>[[language]] +</span><span style="color:#bf616a;">name </span><span>= &quot;</span><span style="color:#a3be8c;">typescript</span><span>&quot; +</span><span style="color:#bf616a;">auto-format </span><span>= </span><span style="color:#d08770;">true +</span><span style="color:#bf616a;">language-servers </span><span>= [ +</span><span> { </span><span style="color:#bf616a;">name </span><span>= &quot;</span><span style="color:#a3be8c;">efm</span><span>&quot;, </span><span style="color:#bf616a;">only-features </span><span>= [&quot;</span><span style="color:#a3be8c;">format</span><span>&quot;, &quot;</span><span style="color:#a3be8c;">diagnostics</span><span>&quot;] }, +</span><span> { </span><span style="color:#bf616a;">name </span><span>= &quot;</span><span style="color:#a3be8c;">typescript-language-server</span><span>&quot;, </span><span style="color:#bf616a;">except-features </span><span>= [&quot;</span><span style="color:#a3be8c;">format</span><span>&quot;, &quot;</span><span style="color:#a3be8c;">diagnostics</span><span>&quot;] }, +</span><span>] +</span></code></pre> +<p>See more details in the <a href="https://docs.helix-editor.com/languages.html">language configuration docs</a>.</p> +<h2 id="fuzzy-matching-with-nucleo">Fuzzy matching with Nucleo</h2> +<asciinema-player src="/nucleo-nix-store.cast" cols="94" rows="25"></asciinema-player> +<p>Helix uses &quot;fuzzy&quot; matching to filter as-you-type in components like the file +picker. Previously we used the popular <code>skim</code>/<code>fuzzy-matcher</code> crates but in the +23.10 release we've switched to the new +<a href="https://github.com/helix-editor/helix"><code>nucleo</code></a> crate. Nucleo is +significantly faster than skim and fzf, handles Unicode correctly, and uses a +bonus system that feels more intuitive.</p> +<p>Nucleo also enables us to lazily stream in new items, which is a big boost for +the user experience for pickers. In the asciicast above I'm scanning through +my computer's <code>/nix/store</code>, a huge directory containing more than twenty +million files. The file picker now works gradually as we scan through the +directory and matches files as we find them.</p> +<p>Nucleo also paves the way for future picker upgrades. Stay tuned to the +upcoming release notes to see where we'll take the picker.</p> +<h2 id="smart-tab">Smart tab</h2> +<p>Smart tab is a new feature bound to the tab key in the default keymap. When +you press tab and the line to the left of the cursor isn't all whitespace, +the cursor will jump to the end of the syntax tree's parent node. For example:</p> +<pre data-lang="nix" style="background-color:#2b303b;color:#c0c5ce;" class="language-nix "><code class="language-nix" data-lang="nix"><span>{ +</span><span> </span><span style="color:#d08770;">key </span><span>= &quot;</span><span style="color:#a3be8c;">value</span><span>&quot;; +</span><span> </span><span style="color:#d08770;">nested </span><span>= { +</span><span> </span><span style="color:#d08770;">key2 </span><span>= &quot;</span><span style="color:#a3be8c;">value2</span><span>&quot;; </span><span style="color:#65737e;"># When the cursor is at the end of the line here, &lt;tab&gt; +</span><span> </span><span style="color:#65737e;"># jumps right after the closing brace on the next line. +</span><span> }; +</span><span>} +</span></code></pre> +<p>This is useful in languages like Nix for adding semicolons at the end of an +attribute set or jumping to the end of a block in a C-like language:</p> +<asciinema-player src="/smart-tab.cast" cols="94" rows="25"></asciinema-player> +<h2 id="expanded-support-for-registers">Expanded support for registers</h2> +<asciinema-player src="/special-registers.cast" cols="94" rows="25"></asciinema-player> +<p>Registers allow you to save and paste values. For example you might select +a paragraph, use <code>&quot;ay</code> to yank it into the <code>a</code> register, and later use <code>&quot;ap</code> +to paste that paragraph. Some registers have special effects when read or +written to though like the <code>_</code> &quot;blackhole&quot; register: any values written are +discarded and nothing can be read. Special registers have been expanded to +include some useful ones from Kakoune and clipboard registers:</p> +<ul> +<li><code>%</code>: the current buffer name</li> +<li><code>#</code>: the number of each selection, 1-indexed</li> +<li><code>.</code>: the contents of each selection</li> +<li><code>*</code> and <code>+</code>: system and primary clipboards</li> +</ul> +<p>Also check out the new register statusline element. It appears when you select +a register with <code>&quot;</code>. Notice the <code>reg=#</code> in the bottom-right corner of the +statusline in the asciicast when we select the <code>#</code> register and how it goes +away when we paste that register (<code>p</code>) or increment the selections (<code>C-a</code>).</p> +<h2 id="initial-support-for-lsp-didchangewatchedfiles">Initial support for LSP DidChangeWatchedFiles</h2> +<asciinema-player src="/initial-lsp-didchangewatchedfiles.cast" cols="94" rows="25"></asciinema-player> +<p>Some language servers use the DidChangeWatchedFiles notification to discover +changes to related files in other languages. For example, <code>rust-analyzer</code> will +fetch and index new dependencies when you add them to your <code>Cargo.toml</code>. +Helix will now send file change notifications when the file is changed by +Helix itself. Full support for DidChangeWatchedFiles will require a file +watcher but for now we're able to support the most common use-case for +DidChangeWatchedFiles.</p> +<h2 id="syntax-highlight-regex-prompts">Syntax highlight regex prompts</h2> +<img src="/regex-prompt-highlighting.png" style="max-width: 80%; display: block; margin-left: auto; margin-right: auto"/> +<p>Regex prompts like those created with <code>s</code>, <code>S</code> or <code>|</code> are now syntax highlighted +via tree-sitter-regex. The highlighting makes special characters more obvious +and can catch syntax errors like trailing backslashes.</p> +<h2 id="wrapping-up">Wrapping up</h2> +<p>As always, this is just the tip of the iceberg for the 23.10 release. Check out +the <a href="https://github.com/helix-editor/helix/blob/master/CHANGELOG.md#2310-2023-10-24">changelog</a> for the full details.</p> +<p>Come chat about usage and development questions in the <a href="https://matrix.to/#/#helix-community:matrix.org">Matrix space</a> +and follow along with Helix's development in the <a href="https://github.com/helix-editor/helix/">GitHub repository</a>.</p> + + Release 23.03 Highlights 2023-03-31T00:00:00+00:00 diff --git a/initial-lsp-didchangewatchedfiles.cast b/initial-lsp-didchangewatchedfiles.cast new file mode 100644 index 0000000..8e3560d --- /dev/null +++ b/initial-lsp-didchangewatchedfiles.cast @@ -0,0 +1,292 @@ +{"version": 2, "width": 94, "height": 25, "timestamp": 1696878125, "env": {"SHELL": "/run/current-system/sw/bin/fish", "TERM": "xterm-256color"}} +[0.117958, "o", "Welcome to fish, the friendly interactive shell\r\nType \u001b[32mhelp\u001b(B\u001b[m for instructions on how to use fish\r\n"] +[0.122261, "o", "\u001b[?2004h"] +[0.122398, "o", "\u001b]7;file://mango2/home/michael/hello\u0007"] +[0.153005, "o", "\u001b]0;~/hello\u0007\u001b[30m\u001b(B\u001b[m\r"] +[0.153024, "o", "\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m~/hello\u001b(B\u001b[m (main)\u001b(B\u001b[m> \u001b[K\r\u001b[85C \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[31C"] +[0.983512, "o", "h\r\u001b[85C \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C"] +[0.984436, "o", "\b\u001b[38;2;255;0;0mh\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C"] +[0.987772, "o", "\u001b[38;2;85;85;85mx .gitignore\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C"] +[1.055363, "o", "\u001b[38;2;255;0;0mx\u001b[38;2;85;85;85m .gitignore\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[33C"] +[1.055695, "o", "\b\b\u001b[38;2;0;95;215mhx\u001b[38;2;85;85;85m .gitignore\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[33C"] +[1.200016, "o", "\u001b[K\r\u001b[85C \u001b[38;2;85;85;85m14:02:05\u001b(B\u001b[m\r\u001b[85C\r\u001b[33C\r\n\u001b[30m\u001b(B\u001b[m"] +[1.200074, "o", "\u001b[?2004l"] +[1.200624, "o", "\u001b]0;hx ~/hello\u0007\u001b[30m\u001b(B\u001b[m\r"] +[1.217348, "o", "\u001b[?1049h\u001b[?2004h\u001b[?1004h\u001b[2J\u001b[?1000h\u001b[?1002h\u001b[?1003h\u001b[?1015h\u001b[?1006h\u001b[?u\u001b[c"] +[1.220927, "o", "\u001b[1;1H\u001b[48;2;40;40;40m \u001b[38;2;250;189;47m 1\u001b[39m \u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[2;1H \u001b[38;2;124;111;100m ~\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[3;1H \u001b[4;1H \u001b[5;1H \u001b[6;1H \u001b[7;1H \u001b[8;1H \u001b[9;1H "] +[1.220992, "o", " \u001b[10;1H \u001b[11;1H \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H "] +[1.221021, "o", " \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m NOR [scratch] 1 sel 1:1 \u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[1.431682, "o", "\u001b[1;43H\u001b[48;2;60;56;54m┌Space─────────────────────────────────────────────┐\u001b[2;43H│ \u001b[38;2;235;219;178mf Open file picker \u001b[39m │\u001b[3;43H│ \u001b[38;2;235;219;178mF Open file picker at current working directory\u001b[39m │\u001b[4;43H│ \u001b[38;2;235;219;178mb Open buffer picker \u001b[39m │\u001b[5;43H│ \u001b[38;2;235;219;178mj Open jumplist picker \u001b[39m │\u001b[6;43H│ \u001b[38;2;235;219;178ms Open symbol picker \u001b[39m │\u001b[7;43H│ \u001b[38;2;235;219;178mS Open workspace symbol picker \u001b[39m │\u001b[8;43H│ \u001b[38;2;235;219;178md Open diagnostic picker \u001b[39m │\u001b[9;43H│ \u001b[38;2;235;219;178mD Open workspace diagnostic picker \u001b[39m │\u001b[10;43H│ \u001b[38;2;235;219;178ma Perform code action \u001b[39m │\u001b[11;43H│ \u001b[38;2;235;219;178m' Open last picker "] +[1.431704, "o", " \u001b[39m │\u001b[12;43H│ \u001b[38;2;235;219;178mg Debug (experimental) \u001b[39m │\u001b[13;43H│ \u001b[38;2;235;219;178mw Window \u001b[39m │\u001b[14;43H│ \u001b[38;2;235;219;178my Yank selections to clipboard \u001b[39m │\u001b[15;43H│ \u001b[38;2;235;219;178mY Yank main selection to clipboard \u001b[39m │\u001b[16;43H│ \u001b[38;2;235;219;178mp Paste clipboard after selections \u001b[39m │\u001b[17;43H│ \u001b[38;2;235;219;178mP Paste clipboard before selections \u001b[39m │\u001b[18;43H│ \u001b[38;2;235;219;178mR Replace selections by clipboard content \u001b[39m │\u001b[19;43H│ \u001b[38;2;235;219;178m/ Global search in workspace folder \u001b[39m │\u001b[20;43H│ \u001b[38;2;235;219;178mk Show docs for item under cursor \u001b[39m │\u001b[21;43H│ \u001b[38;2;235;219;178mr Rename symbol \u001b[39m │\u001b[22;43H│ \u001b[38;2;235;219;178mh Select symbol references \u001b[39m │\u001b[23;43H│ \u001b[38;2;235;219;178mc Toggl"] +[1.4318, "o", "e comments \u001b[39m │\u001b[24;43H│ \u001b[38;2;235;219;178m? Open command palette \u001b[39m │\u001b[25;43H└────────────────────────────────────\u001b[38;2;235;219;178m\u001b[39m───────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[1.469512, "o", "\u001b[1;43H\u001b[48;2;40;40;40m \u001b[2;6H┌────────────────────────────────────────┐┌────────────────────────────────────────┐ \u001b[3;6H│\u001b[3;43H\u001b[38;2;235;219;178m2/2\u001b[39m ││ \u001b[38;2;235;219;178m[package]\u001b[38;2;80;73;69m \u001b[39m │ \u001b[4;6H│────────────────────────────────────────││ \u001b[38;2;235;219;178mname\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"hello\"\u001b[38;2;80;73;69m \u001b[39m │ \u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178m > Cargo.toml \u001b[22m\u001b[39m││ \u001b[38;2;235;219;178mversion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"0.1.0\"\u001b[38;2;80;73;69m \u001b[39m │ \u001b[6;6H│"] +[1.469528, "o", "\u001b[38;2;235;219;178m src/main.rs \u001b[39m││ \u001b[38;2;235;219;178medition\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"2021\"\u001b[38;2;80;73;69m \u001b[39m │ \u001b[7;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;80;73;69m \u001b[39m │ \u001b[8;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSee\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmore\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mkeys\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtheir\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdefinitions\u001b[38;2;80;73;69m \u001b[39m │ \u001b[9;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mat\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhttps://doc.rust-lang.org/cargo/\u001b[39m │ \u001b[10;6H│\u001b[38;2;235;219;178m "] +[1.469596, "o", " \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mreference/manifest.html\u001b[38;2;80;73;69m \u001b[39m │ \u001b[11;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;80;73;69m \u001b[39m │ \u001b[12;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;235;219;178m[dependencies]\u001b[38;2;80;73;69m \u001b[39m │ \u001b[13;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;80;73;69m \u001b[39m │ \u001b[14;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[15;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[16;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[17;6H│\u001b[38;2;235;"] +[1.469635, "o", "219;178m \u001b[39m││ │ \u001b[18;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[19;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[20;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘ \u001b[22;43H \u001b[23;43H \u001b[24;43H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m 1 sel 1:1 \u001b[25;43H\u001b[39m\u001b[48;2;40;40;40m "] +[1.469665, "o", " \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[1.719996, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[1.722037, "o", "\u001b[3;50H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m[\u001b[38;2;142;192;124mpackage\u001b[38;2;189;174;147m]\u001b[4;50H\u001b[38;2;131;165;152mname\u001b[4;55H=\u001b[4;57H\u001b[38;2;184;187;38m\"hello\"\u001b[5;50H\u001b[38;2;131;165;152mversion\u001b[5;58H=\u001b[5;60H\u001b[38;2;184;187;38m\"0.1.0\"\u001b[6;50H\u001b[38;2;131;165;152medition\u001b[6;58H=\u001b[6;60H\u001b[38;2;184;187;38m\"2021\"\u001b[8;50H\u001b[3m\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mSee\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mmore\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mkeys\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mand\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mtheir\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mdefinitions\u001b[38;2;80;73;69m \u001b[9;52H\u001b[38;2;146;131;116mat\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mhttps://doc.rust-lang.org/cargo/\u001b[10;52Hreference/manifest.html\u001b[12;50H\u001b[23m\u001b[38;2;189;174;147m[\u001b[38;2;142;192;124mdependencies\u001b[38;2;189;174;147m]\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[1.871613, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mm\u001b[3;50Hfn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmain()\u001b[3;60H{\u001b[38;2;80;73;69m \u001b[4;50H \u001b[38;2;235;219;178mprintln!(\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mworld!\");\u001b[38;2;80;73;69m \u001b[5;10H\u001b[1m\u001b[38;2;235;219;178msrc/\u001b[38;2;251;73;52mm\u001b[38;2;235;219;178main.rs\u001b[5;50H\u001b[22m}\u001b[38;2;80;73;69m \u001b[39m \u001b[6;10H\u001b[38;2;235;219;178mCargo.to\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178ml \u001b[6;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[7;50H \u001b[8;50H \u001b[9;50H \u001b[10;50H \u001b[11;50H \u001b[12;50H \u001b[13;50H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[1.959445, "o", "\u001b[3;9H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40ma\u001b[3;43H1\u001b[5;15H\u001b[1m\u001b[38;2;251;73;52ma\u001b[6;10H\u001b[22m\u001b[38;2;235;219;178m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[1.999437, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mi\u001b[5;16H\u001b[1m\u001b[38;2;251;73;52mi\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[2.079427, "o", "\u001b[3;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mn\u001b[5;17H\u001b[1m\u001b[38;2;251;73;52mn\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[2.330064, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[2.370663, "o", "\u001b[3;50H\u001b[38;2;252;107;89m\u001b[48;2;40;40;40mfn\u001b[3;57H\u001b[38;2;189;174;147m()\u001b[3;60H{\u001b[4;54H\u001b[38;2;204;36;29mprintln!\u001b[38;2;189;174;147m(\u001b[38;2;184;187;38m\"Hello,\u001b[4;71Hworld!\"\u001b[38;2;189;174;147m);\u001b[5;50H}\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[2.825256, "o", "\u001b[1;8H\u001b[38;2;252;107;89m\u001b[48;2;102;92;84m\u001b[4mf\u001b[48;2;40;40;40m\u001b[24mn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmain\u001b[38;5;1m()\u001b[38;2;80;73;69m \u001b[38;5;1m{\u001b[38;2;80;73;69m \u001b[2;5H\u001b[38;2;124;111;100m2\u001b[39m \u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[3;3H\u001b[38;2;124;111;100m 3\u001b[39m \u001b[3;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[39m \u001b[3;43H \u001b[3;47H \u001b[3;50H \u001b[3;89H \u001b[4;3H\u001b[38;2;124;111;100m ~\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H \u001b[4;89H \u001b[5;6H \u001b[5;50H \u001b[5;89H \u001b[6;6H \u001b[6;50H \u001b[6;89H \u001b[7;6H \u001b[7;89H \u001b[8;6H \u001b[8;89H \u001b[9;6H \u001b[9;89H \u001b[10;6H "] +[2.825346, "o", " \u001b[10;89H \u001b[11;6H \u001b[11;89H \u001b[12;6H \u001b[12;89H \u001b[13;6H \u001b[13;89H \u001b[14;6H \u001b[14;89H \u001b[15;6H \u001b[15;89H \u001b[16;6H \u001b[16;89H \u001b[17;6H \u001b[17;89H \u001b[18;6H \u001b[18;89H \u001b[19;6H \u001b[19;89H \u001b[20;6H \u001b[20;89H \u001b[21;6H \u001b[24;8H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69msr\u001b[24;11H/main.rs\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[2.864943, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[2.951937, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[3.21898, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[3.305644, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[3.496115, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[3.581001, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[3.769508, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[3.798368, "o", "\u001b[1;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 1\u001b[1;8H\u001b[38;2;252;107;89mf\u001b[2;3H\u001b[38;2;250;189;47m 2\u001b[2;12H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[3;8H\u001b[38;2;80;73;69m \u001b[3;10H \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[5;3H\u001b[38;2;124;111;100m ~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mINS\u001b[24;20H[+]\u001b[24;91H2\u001b[24;93H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[3.900931, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[3.918975, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[3.935404, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[3.994092, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[4.236023, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⡿\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[4.255728, "o", "\u001b[2;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ml\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[4.291649, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[4.377812, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[4.383684, "o", "\u001b[2;13H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[4.389813, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[4.42417, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[4.479623, "o", "\u001b[2;12H\u001b[38;2;252;107;89m\u001b[48;2;40;40;40mlet\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣽\u001b[24;93H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;15H\u001b[?25l"] +[4.518597, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;15H\u001b[?25l"] +[4.527538, "o", "\u001b[2;15H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[4.570739, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[4.647909, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[4.71159, "o", "\u001b[2;16H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mr\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣻\u001b[24;83H1 sel \u001b[24;90H2:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[4.754956, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[4.83206, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[4.847578, "o", "\u001b[2;17H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;18H\u001b[?25l"] +[4.888953, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;18H\u001b[?25l"] +[4.927579, "o", "\u001b[2;18H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mg\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;19H\u001b[?25l"] +[4.965667, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;19H\u001b[?25l"] +[5.039613, "o", "\u001b[2;19H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣽\u001b[24;93H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;20H\u001b[?25l"] +[5.111624, "o", "\u001b[2;20H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mx\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣻\u001b[24;93H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;21H\u001b[?25l"] +[5.229842, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;21H\u001b[?25l"] +[5.231867, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;21H\u001b[?25l"] +[5.239511, "o", "\u001b[2;21H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;22H\u001b[?25l"] +[5.360452, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;22H\u001b[?25l"] +[5.361481, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;22H\u001b[?25l"] +[5.599891, "o", "\u001b[2;22H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40m=\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⢿\u001b[24;93H6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;23H\u001b[?25l"] +[5.607564, "o", "\u001b[2;23H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣾\u001b[24;93H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;24H\u001b[?25l"] +[5.636331, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;24H\u001b[?25l"] +[5.728519, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;24H\u001b[?25l"] +[5.815707, "o", "\u001b[2;24H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mr\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣻\u001b[24;93H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;25H\u001b[?25l"] +[5.854453, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;25H\u001b[?25l"] +[5.936718, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;25H\u001b[?25l"] +[5.943639, "o", "\u001b[2;25H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;26H\u001b[?25l"] +[5.988557, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;26H\u001b[?25l"] +[6.06364, "o", "\u001b[2;26H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mg\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣽\u001b[24;92H20\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;27H\u001b[?25l"] +[6.105201, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;27H\u001b[?25l"] +[6.143734, "o", "\u001b[2;27H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;28H\u001b[?25l"] +[6.188577, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;28H\u001b[?25l"] +[6.231616, "o", "\u001b[2;28H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mx\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;29H\u001b[?25l"] +[6.270955, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;29H\u001b[?25l"] +[6.352135, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;29H\u001b[?25l"] +[6.495914, "o", "\u001b[2;29H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m:\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⢿\u001b[24;93H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[6.501832, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[6.535976, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[6.616149, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[6.671584, "o", "\u001b[2;24H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40mregex\u001b[38;2;189;174;147m::\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣻\u001b[24;93H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[6.677876, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[6.709881, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[6.791992, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[7.158995, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣯\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[7.298298, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣷\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[7.311862, "o", "\u001b[2;31H\u001b[38;2;211;134;155m\u001b[48;2;40;40;40mR\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40m\u001b[24mprintln\u001b[24;93H\u001b[23m\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;32H\u001b[?25l"] +[7.349262, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;32H\u001b[?25l"] +[7.433656, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;32H\u001b[?25l"] +[7.455825, "o", "\u001b[2;31H\u001b[38;2;142;192;124m\u001b[48;2;40;40;40mRe\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;33H\u001b[?25l"] +[7.493591, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;33H\u001b[?25l"] +[7.535793, "o", "\u001b[2;33H\u001b[38;2;142;192;124m\u001b[48;2;40;40;40mg\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[7.575797, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[7.657449, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[7.664527, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[7.743423, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.079738, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.079939, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.247635, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.247823, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.415829, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.416017, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.502607, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.59158, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.591774, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.799614, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.799839, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.882159, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[38;2;251;73;52m└─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mSEMICOLON\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.959621, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[8.959859, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[9.912025, "o", "\u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mNOR\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[10.39195, "o", "\u001b[1;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[1;3H\u001b[38;2;250;189;47m 1\u001b[1;8H\u001b[38;2;252;107;89m\u001b[48;2;102;92;84m\u001b[4mf\u001b[2;1H\u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[2;3H \u001b[2;8H \u001b[38;2;251;73;52m└─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mSEMICOLON\u001b[38;2;80;73;69m \u001b[3;3H\u001b[38;2;124;111;100m 2\u001b[3;8H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[6;3H \u001b[6;8H \u001b[24;20H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;78H \u001b[38;2;251;73;52m●\u001b[38;2;235;219;178m 1\u001b[24;83H 1 sel\u001b[24;90H 1:1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[10.427867, "o", "\u001b[1;1H\u001b[48;2;40;40;40m \u001b[2;3H\u001b[38;2;124;111;100m 2\u001b[2;8H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[3;5H\u001b[38;2;124;111;100m3\u001b[3;8H\u001b[38;5;1m}\u001b[3;10H\u001b[39m \u001b[4;5H\u001b[38;2;124;111;100m~\u001b[4;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;3H \u001b[5;8H \u001b[24;79H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;81H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[11.031838, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[11.159555, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[11.799966, "o", "\u001b[1;43H\u001b[48;2;60;56;54m┌Space─────────────────────────────────────────────┐\u001b[2;43H│ \u001b[38;2;235;219;178mf Open file picker \u001b[39m │\u001b[3;43H│ \u001b[38;2;235;219;178mF Open file picker at current working directory\u001b[39m │\u001b[4;43H│ \u001b[38;2;235;219;178mb Open buffer picker \u001b[39m │\u001b[5;43H│ \u001b[38;2;235;219;178mj Open jumplist picker \u001b[39m │\u001b[6;43H│ \u001b[38;2;235;219;178ms Open symbol picker \u001b[39m │\u001b[7;43H│ \u001b[38;2;235;219;178mS Open workspace symbol picker \u001b[39m │\u001b[8;43H│ \u001b[38;2;235;219;178md Open diagnostic picker \u001b[39m │\u001b[9;43H│ \u001b[38;2;235;219;178mD Open workspace diagnostic picker \u001b[39m │\u001b[10;43H│ \u001b[38;2;235;219;178ma Perform code action \u001b[39m │\u001b[11;43H│ \u001b[38;2;235;219;178m' Open last picker "] +[11.800104, "o", " \u001b[39m │\u001b[12;43H│ \u001b[38;2;235;219;178mg Debug (experimental) \u001b[39m │\u001b[13;43H│ \u001b[38;2;235;219;178mw Window \u001b[39m │\u001b[14;43H│ \u001b[38;2;235;219;178my Yank selections to clipboard \u001b[39m │\u001b[15;43H│ \u001b[38;2;235;219;178mY Yank main selection to clipboard \u001b[39m │\u001b[16;43H│ \u001b[38;2;235;219;178mp Paste clipboard after selections \u001b[39m │\u001b[17;43H│ \u001b[38;2;235;219;178mP Paste clipboard before selections \u001b[39m │\u001b[18;43H│ \u001b[38;2;235;219;178mR Replace selections by clipboard content \u001b[39m │\u001b[19;43H│ \u001b[38;2;235;219;178m/ Global search in workspace folder \u001b[39m │\u001b[20;43H│ \u001b[38;2;235;219;178mk Show docs for item under cursor \u001b[39m │\u001b[21;43H│ \u001b[38;2;235;219;178mr Rename symbol \u001b[39m │\u001b[22;43H│ \u001b[38;2;235;219;178mh Select symbol references \u001b[39m │\u001b[23;43H│ \u001b[38;2;235;219;178mc Toggl"] +[11.800143, "o", "e comments \u001b[39m │\u001b[24;43H│ \u001b[38;2;235;219;178m? Open command palette \u001b[39m │\u001b[25;43H└────────────────────────────────────\u001b[38;2;235;219;178m\u001b[39m───────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[11.861315, "o", "\u001b[1;43H\u001b[48;2;40;40;40m \u001b[2;6H┌────────────────────────────────────────┐┌────────────────────────────────────────┐ \u001b[3;6H│\u001b[3;8H \u001b[3;43H\u001b[38;2;235;219;178m2/2\u001b[39m ││ \u001b[38;2;235;219;178m[package]\u001b[38;2;80;73;69m \u001b[39m │ \u001b[4;6H│────────────────────────────────────────││ \u001b[38;2;235;219;178mname\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"hello\"\u001b[38;2;80;73;69m \u001b[39m │ \u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178m > Cargo.toml \u001b[22m\u001b[39m││ \u001b[38;2;235;219;178mversion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"0.1.0\"\u001b[38;2;80;73;69m \u001b[39m │ "] +[11.861452, "o", "\u001b[6;6H│\u001b[38;2;235;219;178m src/main.rs \u001b[39m││ \u001b[38;2;235;219;178medition\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"2021\"\u001b[38;2;80;73;69m \u001b[39m │ \u001b[7;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;80;73;69m \u001b[39m │ \u001b[8;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSee\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmore\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mkeys\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtheir\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdefinitions\u001b[38;2;80;73;69m \u001b[39m │ \u001b[9;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mat\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhttps://doc.rust-lang.org/cargo/\u001b[39m │ \u001b[10;6H│\u001b[38;2;235;219;178m "] +[11.861499, "o", " \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mreference/manifest.html\u001b[38;2;80;73;69m \u001b[39m │ \u001b[11;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;80;73;69m \u001b[39m │ \u001b[12;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;235;219;178m[dependencies]\u001b[38;2;80;73;69m \u001b[39m │ \u001b[13;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;80;73;69m \u001b[39m │ \u001b[14;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[15;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[16;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[17;6H│\u001b["] +[11.86153, "o", "38;2;235;219;178m \u001b[39m││ │ \u001b[18;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[19;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[20;6H│\u001b[38;2;235;219;178m \u001b[39m││ │ \u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘ \u001b[22;43H \u001b[23;43H \u001b[24;43H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m 1 sel 1:1 \u001b[25;43H\u001b[39m\u001b[48;2;40;40;40m "] +[11.861546, "o", " \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[12.071844, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mc\u001b[5;10H\u001b[1m\u001b[38;2;251;73;52mC\u001b[6;12Hc\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[12.135669, "o", "\u001b[3;9H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40ma\u001b[5;11H\u001b[1m\u001b[38;2;251;73;52ma\u001b[6;15Ha\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[12.215628, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mr\u001b[5;12H\u001b[1m\u001b[38;2;251;73;52mr\u001b[6;19Hr\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[12.295604, "o", "\u001b[3;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mg\u001b[3;43H1\u001b[5;13H\u001b[1m\u001b[38;2;251;73;52mg\u001b[6;10H\u001b[22m\u001b[38;2;235;219;178m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.375825, "o", "\u001b[3;12H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mo\u001b[5;14H\u001b[1m\u001b[38;2;251;73;52mo\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[12.62688, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[12.627371, "o", "\u001b[3;50H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m[\u001b[38;2;142;192;124mpackage\u001b[38;2;189;174;147m]\u001b[4;50H\u001b[38;2;131;165;152mname\u001b[4;55H=\u001b[4;57H\u001b[38;2;184;187;38m\"hello\"\u001b[5;50H\u001b[38;2;131;165;152mversion\u001b[5;58H=\u001b[5;60H\u001b[38;2;184;187;38m\"0.1.0\"\u001b[6;50H\u001b[38;2;131;165;152medition\u001b[6;58H=\u001b[6;60H\u001b[38;2;184;187;38m\"2021\"\u001b[8;50H\u001b[3m\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mSee\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mmore\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mkeys\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mand\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mtheir\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mdefinitions\u001b[38;2;80;73;69m \u001b[9;52H\u001b[38;2;146;131;116mat\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mhttps://doc.rust-lang.org/cargo/\u001b[10;52Hreference/manifest.html\u001b[12;50H\u001b[23m\u001b[38;2;189;174;147m[\u001b[38;2;142;192;124mdependencies\u001b[38;2;189;174;147m]\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[12.792921, "o", "\u001b[1;8H\u001b[38;5;1m\u001b[48;2;102;92;84m\u001b[4m[\u001b[38;2;142;192;124m\u001b[48;2;40;40;40m\u001b[24mpackage\u001b[38;5;1m\u001b[4m]\u001b[1;18H\u001b[39m\u001b[24m \u001b[2;6H \u001b[38;2;131;165;152mname\u001b[38;2;80;73;69m \u001b[38;2;131;165;152m=\u001b[38;2;80;73;69m \u001b[38;2;184;187;38m\"hello\"\u001b[38;2;80;73;69m \u001b[39m \u001b[3;6H \u001b[3;8H\u001b[38;2;131;165;152mversion\u001b[38;2;80;73;69m \u001b[38;2;131;165;152m=\u001b[38;2;80;73;69m \u001b[38;2;184;187;38m\"0.1.0\"\u001b[38;2;80;73;69m \u001b[3;43H\u001b[39m \u001b[3;47H \u001b[3;50H \u001b[3;89H \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[39m \u001b[38;2;131;165;152medition\u001b[38;2;80;73;69m \u001b[38;2;131;165;152m=\u001b[38;2;80;73;69m \u001b[38;2;184;187;38m\"2021\"\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H \u001b[4;89H \u001b[5;3H\u001b[38;2;124;111;100m 5\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[5;50H \u001b[5;89H \u001b[6;3H\u001b[38;2;124;111;100m 6\u001b[39m \u001b[3m\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mSee\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mmore\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mkeys\u001b[3"] +[12.79298, "o", "8;2;80;73;69m \u001b[38;2;146;131;116mand\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mtheir\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mdefinitions\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mat\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mhttps://doc.rust-lang.org/cargo/reference/\u001b[7;6H\u001b[23m\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[3m\u001b[38;2;146;131;116mmanifest.html\u001b[23m\u001b[38;2;80;73;69m \u001b[39m \u001b[7;50H \u001b[7;89H \u001b[8;3H\u001b[38;2;124;111;100m 7\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[8;50H \u001b[8;89H \u001b[9;3H\u001b[38;2;124;111;100m 8\u001b[39m \u001b[38;5;1m[\u001b[38;2;142;192;124mdependencies\u001b[38;5;1m]\u001b[38;2;80;73;69m \u001b[39m \u001b[9;50H \u001b[9;89H \u001b[10;3H\u001b[38;2;124;111;100m ~\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[10;50H \u001b[10;89H \u001b[11;6H \u001b[11;50H \u001b[11;89H \u001b[12;6H \u001b[12;50H \u001b[12;89"] +[12.793018, "o", "H \u001b[13;6H \u001b[13;50H \u001b[13;89H \u001b[14;6H \u001b[14;89H \u001b[15;6H \u001b[15;89H \u001b[16;6H \u001b[16;89H \u001b[17;6H \u001b[17;89H \u001b[18;6H \u001b[18;89H \u001b[19;6H \u001b[19;89H \u001b[20;6H \u001b[20;89H \u001b[21;6H \u001b[24;8H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mCargo.toml \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[13.207977, "o", "\u001b[1;52H\u001b[48;2;60;56;54m┌Goto─────────────────────────────────────┐\u001b[2;52H│ \u001b[38;2;235;219;178mg Goto line number else file start\u001b[39m │\u001b[3;52H│ \u001b[38;2;235;219;178me Goto last line \u001b[39m │\u001b[4;52H│ \u001b[38;2;235;219;178mf Goto files in selection \u001b[39m │\u001b[5;52H│ \u001b[38;2;235;219;178mh Goto line start \u001b[39m │\u001b[6;52H│ \u001b[38;2;235;219;178ml Goto line end \u001b[39m │\u001b[7;52H│ \u001b[38;2;235;219;178ms Goto first non-blank in line \u001b[39m │\u001b[8;52H│ \u001b[38;2;235;219;178md Goto definition \u001b[39m │\u001b[9;52H│ \u001b[38;2;235;219;178mD Goto declaration \u001b[39m │\u001b[10;52H│ \u001b[38;2;235;219;178my Goto type definition \u001b[39m │\u001b[11;52H│ \u001b[38;2;235;219;178mr Goto references \u001b[39m │\u001b[12;52H│ \u001b[38;2;235;219;178mi Goto implementation \u001b[39m │\u001b[13;52H│ \u001b[38;2;"] +[13.208041, "o", "235;219;178mt Goto window top \u001b[39m │\u001b[14;52H│ \u001b[38;2;235;219;178mc Goto window center \u001b[39m │\u001b[15;52H│ \u001b[38;2;235;219;178mb Goto window bottom \u001b[39m │\u001b[16;52H│ \u001b[38;2;235;219;178ma Goto last accessed file \u001b[39m │\u001b[17;52H│ \u001b[38;2;235;219;178mm Goto last modified file \u001b[39m │\u001b[18;52H│ \u001b[38;2;235;219;178mn Goto next buffer \u001b[39m │\u001b[19;52H│ \u001b[38;2;235;219;178mp Goto previous buffer \u001b[39m │\u001b[20;52H│ \u001b[38;2;235;219;178mk Move up \u001b[39m │\u001b[21;52H│ \u001b[38;2;235;219;178mj Move down \u001b[39m │\u001b[22;52H│ \u001b[38;2;235;219;178m. Goto last modification \u001b[39m │\u001b[23;52H└─────────────────────────────────────────┘\u001b[25;80H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mg\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[13.279724, "o", "\u001b[1;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 1\u001b[1;8H\u001b[38;5;1m[\u001b[1;16H]\u001b[1;52H\u001b[39m \u001b[2;52H \u001b[3;52H \u001b[4;52H \u001b[5;52H \u001b[6;52H\u001b[3m\u001b[38;2;146;131;116mps://doc.rust-lang.org/cargo/reference/\u001b[23m\u001b[39m \u001b[7;52H \u001b[8;52H \u001b[9;3H\u001b[38;2;250;189;47m 8\u001b[9;8H\u001b[38;5;1m\u001b[48;2;102;92;84m\u001b[4m[\u001b[9;21H\u001b[48;2;40;40;40m]\u001b[9;52H\u001b[39m\u001b[24m \u001b[10;52H \u001b[11;52H \u001b[12;52H \u001b[13;52H \u001b[14;52H \u001b[15;52H \u001b[16;52H \u001b[17;52H "] +[13.279807, "o", " \u001b[18;52H \u001b[19;52H \u001b[20;52H \u001b[21;52H \u001b[22;52H \u001b[23;52H \u001b[24;91H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m8\u001b[25;80H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[9;8H\u001b[?25l"] +[13.640195, "o", "\u001b[9;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 8\u001b[9;8H\u001b[38;5;1m[\u001b[9;21H]\u001b[10;3H\u001b[38;2;250;189;47m 9\u001b[10;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[11;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m ~\u001b[11;8H\u001b[38;2;80;73;69m \u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mINS\u001b[24;19H[+]\u001b[24;91H9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;8H\u001b[?25l"] +[13.761347, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;8H\u001b[?25l"] +[13.944083, "o", "\u001b[10;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mr\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;9H\u001b[?25l"] +[14.047862, "o", "\u001b[10;9H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40me\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;10H\u001b[?25l"] +[14.053851, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;10H\u001b[?25l"] +[14.14372, "o", "\u001b[10;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mg\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;11H\u001b[?25l"] +[14.149805, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;11H\u001b[?25l"] +[14.215651, "o", "\u001b[10;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40me\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;12H\u001b[?25l"] +[14.221789, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;12H\u001b[?25l"] +[14.279726, "o", "\u001b[10;12H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mx\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;13H\u001b[?25l"] +[14.285828, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;13H\u001b[?25l"] +[14.401245, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;13H\u001b[?25l"] +[14.407791, "o", "\u001b[10;13H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;14H\u001b[?25l"] +[14.528937, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;14H\u001b[?25l"] +[14.711942, "o", "\u001b[10;14H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40m=\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;15H\u001b[?25l"] +[14.719695, "o", "\u001b[10;15H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;16H\u001b[?25l"] +[14.840952, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;16H\u001b[?25l"] +[14.983847, "o", "\u001b[10;8H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40mregex\u001b[10;16H\u001b[38;2;184;187;38m\u001b[4m\"\u001b[48;2;102;92;84m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m1 sel \u001b[24;90H9:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;17H\u001b[?25l"] +[15.103881, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;17H\u001b[?25l"] +[15.303784, "o", "\u001b[10;17H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40m1\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[15.425104, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[15.623706, "o", "\u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mNOR\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[15.743699, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-next \u001b[24;19H \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;83H \u001b[24;85H"] +[15.743782, "o", " \u001b[24;90H \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[15.887743, "o", "\u001b[14;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[15;1H│ Write changes to disk. Accepts an optional path (:write some/path.txt) │\u001b[39m\u001b[48;2;40;40;40m \u001b[16;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: w │\u001b[39m\u001b[48;2;40;40;40m \u001b[17;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mwrit\u001b[18;6H \u001b[18;38Hall! \u001b[18;63H"] +[15.887801, "o", "show-directory\u001b[19;1Hwrit\u001b[19;6H! \u001b[19;38Hq\u001b[19;40Hit-all \u001b[19;63Hvsplit-new\u001b[20;1Hwrit\u001b[20;6H-buffer\u001b[20;14Hclose \u001b[20;32Hwrite-quit-all!\u001b[20;63Hhsplit-new \u001b[21;1Hwrit\u001b[21;6H-buffer\u001b[21;14Hclose! \u001b[21;32Hlsp-workspace-command\u001b[21;63Hreflow \u001b[22;1Hwrit\u001b[22;6H-quit \u001b[22;32Hconfig\u001b[22;39Hopen-workspace\u001b[22;63Hredraw \u001b[23;1Hwrit\u001b[23;6H-quit! \u001b[23;32Hnew \u001b[23;63H \u001b[24;1Hwrit\u001b[24;6H-all \u001b[24;32Hshow-clipboard-provider\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mw\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[15.999722, "o", "\u001b[14;1H\u001b[48;2;40;40;40m \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;"] +[15.99978, "o", "235;219;178m\u001b[48;2;80;73;69m NOR Cargo.toml\u001b[24;19H[+]\u001b[24;32H \u001b[24;83H1\u001b[24;85Hsel\u001b[24;90H9:11\u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.000121, "o", "\u001b[24;19H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[25;1H\u001b[48;2;40;40;40m'Cargo.toml' written, 10L 186B\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.037851, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.118861, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.521473, "o", "\u001b[25;1H\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.610928, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.799097, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.882662, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[16.959908, "o", "\u001b[1;52H\u001b[48;2;60;56;54m┌Goto─────────────────────────────────────┐\u001b[2;52H│ \u001b[38;2;235;219;178mg Goto line number else file start\u001b[39m │\u001b[3;52H│ \u001b[38;2;235;219;178me Goto last line \u001b[39m │\u001b[4;52H│ \u001b[38;2;235;219;178mf Goto files in selection \u001b[39m │\u001b[5;52H│ \u001b[38;2;235;219;178mh Goto line start \u001b[39m │\u001b[6;52H│ \u001b[38;2;235;219;178ml Goto line end \u001b[39m │\u001b[7;52H│ \u001b[38;2;235;219;178ms Goto first non-blank in line \u001b[39m │\u001b[8;52H│ \u001b[38;2;235;219;178md Goto definition \u001b[39m │\u001b[9;52H│ \u001b[38;2;235;219;178mD Goto declaration \u001b[39m │\u001b[10;52H│ \u001b[38;2;235;219;178my Goto type definition \u001b[39m │\u001b[11;52H│ \u001b[38;2;235;219;178mr Goto references \u001b[39m │\u001b[12;52H│ \u001b[38;2;235;219;178mi Goto implementation \u001b[39m │\u001b[13;52H│ \u001b[38;2;"] +[16.959973, "o", "235;219;178mt Goto window top \u001b[39m │\u001b[14;52H│ \u001b[38;2;235;219;178mc Goto window center \u001b[39m │\u001b[15;52H│ \u001b[38;2;235;219;178mb Goto window bottom \u001b[39m │\u001b[16;52H│ \u001b[38;2;235;219;178ma Goto last accessed file \u001b[39m │\u001b[17;52H│ \u001b[38;2;235;219;178mm Goto last modified file \u001b[39m │\u001b[18;52H│ \u001b[38;2;235;219;178mn Goto next buffer \u001b[39m │\u001b[19;52H│ \u001b[38;2;235;219;178mp Goto previous buffer \u001b[39m │\u001b[20;52H│ \u001b[38;2;235;219;178mk Move up \u001b[39m │\u001b[21;52H│ \u001b[38;2;235;219;178mj Move down \u001b[39m │\u001b[22;52H│ \u001b[38;2;235;219;178m. Goto last modification \u001b[39m │\u001b[23;52H└─────────────────────────────────────────┘\u001b[25;80H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mg\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[10;18H\u001b[?25l"] +[17.039775, "o", "\u001b[1;3H\u001b[38;2;250;189;47m\u001b[48;2;40;40;40m 1\u001b[1;8H\u001b[38;2;252;107;89m\u001b[48;2;102;92;84m\u001b[4mf\u001b[48;2;40;40;40m\u001b[24mn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmain\u001b[38;5;1m()\u001b[1;18H{\u001b[38;2;80;73;69m \u001b[1;52H\u001b[39m \u001b[2;8H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[2;22H\u001b[38;2;184;187;38mHello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[2;52H\u001b[39m \u001b[3;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[39m \u001b[3;52H \u001b[4;5H\u001b[38;2;124;111;100m~\u001b[4;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[4;52H \u001b[5;3H \u001b[5;8H \u001b[5;52H \u001b[6;3H \u001b[6;8H \u001b[7;8H \u001b[7;52H \u001b[8;3H \u001b[8;8H \u001b[8;52H \u001b[9;3H \u001b[9;8H "] +[17.03991, "o", " \u001b[9;52H \u001b[10;3H \u001b[10;8H \u001b[10;52H \u001b[11;3H \u001b[11;8H \u001b[11;52H \u001b[12;52H \u001b[13;52H \u001b[14;52H \u001b[15;52H \u001b[16;52H \u001b[17;52H \u001b[18;52H \u001b[19;52H \u001b[20;52H \u001b[21;52H \u001b[22;52H \u001b[23;52H \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⢿\u001b[24;8Hsrc/main.rs\u001b[24;83H 1 sel\u001b[24;90H 1:\u001b[25;80H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.074, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.205331, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.240072, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.291028, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.559271, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⡿\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.639978, "o", "\u001b[1;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 1\u001b[1;8H\u001b[38;2;252;107;89mf\u001b[2;3H\u001b[38;2;250;189;47m 2\u001b[2;12H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[3;8H\u001b[38;2;80;73;69m \u001b[3;10H \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[5;3H\u001b[38;2;124;111;100m ~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mINS\u001b[24;6H⣟\u001b[24;20H[+]\u001b[24;91H2\u001b[24;93H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[17.681998, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[17.761142, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[18.002712, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⡿\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[18.039918, "o", "\u001b[2;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ml\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[18.082019, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[18.11831, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[18.161406, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[18.167739, "o", "\u001b[2;13H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[18.173896, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[18.210009, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[18.287964, "o", "\u001b[2;12H\u001b[38;2;252;107;89m\u001b[48;2;40;40;40mlet\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣽\u001b[24;93H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;15H\u001b[?25l"] +[18.291382, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;15H\u001b[?25l"] +[18.319657, "o", "\u001b[2;15H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣾\u001b[24;93H9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[18.323731, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[18.361478, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[18.409774, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣽\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[18.409907, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[18.495916, "o", "\u001b[2;16H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mr\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣻\u001b[24;83H1 sel \u001b[24;90H2:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[18.535332, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[18.599831, "o", "\u001b[2;17H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣽\u001b[24;93H1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;18H\u001b[?25l"] +[18.638153, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;18H\u001b[?25l"] +[18.695742, "o", "\u001b[2;18H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mg\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m⣽\u001b[24;93H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;19H\u001b[?25l"] +[18.732629, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m⣾\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;19H\u001b[?25l"] +[18.780054, "o", "\u001b[24;6H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;19H\u001b[?25l"] +[18.784838, "o", "\u001b[2;19H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;20H\u001b[?25l"] +[18.839787, "o", "\u001b[2;20H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mx\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;21H\u001b[?25l"] +[18.952006, "o", "\u001b[2;21H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;22H\u001b[?25l"] +[19.256055, "o", "\u001b[2;22H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40m=\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;23H\u001b[?25l"] +[19.263649, "o", "\u001b[2;23H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;24H\u001b[?25l"] +[19.48006, "o", "\u001b[2;24H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mr\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;25H\u001b[?25l"] +[19.575903, "o", "\u001b[2;25H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;26H\u001b[?25l"] +[19.671711, "o", "\u001b[2;26H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mg\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;92H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m20\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;27H\u001b[?25l"] +[19.751829, "o", "\u001b[2;27H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;28H\u001b[?25l"] +[19.815778, "o", "\u001b[2;28H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mx\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;29H\u001b[?25l"] +[19.836554, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m regex m \u001b[4;5H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;29H\u001b[?25l"] +[19.853423, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;29H\u001b[?25l"] +[20.480408, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;29H\u001b[38;2;235;219;178m:\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;1H\u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[38;2;124;111;100m 3\u001b[39m \u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[6;3H \u001b[6;8H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[24;93H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[20.486327, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[38;2;251;73;52m├─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpression\u001b[38;2;80;73;69m \u001b[4;3H\u001b[39m \u001b[4;8H \u001b[4;29H\u001b[38;2;251;73;52m└─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mSEMICOLON\u001b[38;2;80;73;69m \u001b[5;5H\u001b[38;2;124;111;100m3\u001b[5;9H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m 4\u001b[6;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[7;3H\u001b[38;2;124;111;100m ~\u001b[7;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[20.515694, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;30H\u001b[?25l"] +[20.631943, "o", "\u001b[2;24H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40mregex\u001b[38;2;189;174;147m::\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[20.638632, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[3;3H\u001b[38;2;124;111;100m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[4;3H\u001b[38;2;124;111;100m 4\u001b[4;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[4;29H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;9H\u001b[39m \u001b[6;3H \u001b[6;8H \u001b[7;3H \u001b[7;8H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[20.642574, "o", "\u001b[3;31H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m CaptureLocations struct ▐\u001b[4;31H CaptureMatches struct ▐\u001b[5;31H CaptureNames struct ▐\u001b[6;31H Captures struct ▐\u001b[7;31H Error enum ▐\u001b[8;31H Match struct \u001b[38;2;80;73;69m▐\u001b[9;31H\u001b[38;2;235;219;178m Matches struct \u001b[38;2;80;73;69m▐\u001b[10;31H\u001b[38;2;235;219;178m NoExpand struct \u001b[38;2;80;73;69m▐\u001b[11;31H\u001b[38;2;235;219;178m Regex struct \u001b[38;2;80;73;69m▐\u001b[12;31H\u001b[38;2;235;219;178m RegexBuilder struct \u001b[38;2;80;73;69m▐\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[20.666586, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;31H\u001b[?25l"] +[21.048193, "o", "\u001b[2;31H\u001b[38;2;211;134;155m\u001b[48;2;40;40;40mR\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40m\u001b[24mprintln\u001b[3;32H\u001b[23m\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mRegex \u001b[4;32HRegexBuilder \u001b[5;32HRegexS\u001b[5;39Ht \u001b[6;32HRegexS\u001b[6;39HtBuilder\u001b[7;32HReplacer\u001b[7;51Hi\u001b[7;53Hterface\u001b[8;32HReplacerRef\u001b[8;61H▐\u001b[9;32HC\u001b[9;34HptureLocations\u001b[9;61H▐\u001b[10;32HCaptureMatches\u001b[10;61H▐\u001b[11;32HCaptureNames\u001b[12;32HCaptures \u001b[24;93H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;32H\u001b[?25l"] +[21.083542, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[3;62H\u001b[38;2;251;73;52mOLON\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mwo\u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;32H\u001b[?25l"] +[21.200014, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;31H\u001b[38;2;142;192;124mRe\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mwo\u001b[3;62H\u001b[39m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[6;3H \u001b[6;8H \u001b[11;61H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m▐\u001b[12;61H▐\u001b[24;78H \u001b[24;80H \u001b[24;93H6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;33H\u001b[?25l"] +[21.235234, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[3;62H\u001b[38;2;251;73;52mCOLON\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mwo\u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;33H\u001b[?25l"] +[21.288002, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;33H\u001b[38;2;142;192;124mg\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mwo\u001b[3;61H\u001b[39m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[4;61H \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;61H \u001b[6;3H \u001b[6;8H \u001b[6;61H \u001b[7;31H \u001b[8;31H \u001b[9;31H \u001b[10;31H \u001b[11;31H \u001b[12;31H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[24;93H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[21.323266, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[3;61H\u001b[38;2;251;73;52mMICOLON\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mwo\u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;34H\u001b[?25l"] +[21.818006, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;34H\u001b[38;2;142;192;124mex\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mwo\u001b[1m\u001b[38;2;80;73;69m\u001b[48;2;131;165;152m Regex struct \u001b[22m\u001b[39m\u001b[48;2;60;56;54m \u001b[4;5H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[4;61H\u001b[48;2;60;56;54m \u001b[38;2;235;219;178mA compiled regular expression\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;61H\u001b[48;2;60;56;54m \u001b[38;2;235;219;178mfor searching Unicode haystacks.\u001b[39m \u001b[6;3H\u001b[48;2;40;40;40m \u001b[6;8H \u001b[6;61H\u001b[48;2;60;56;54m \u001b[7;61H \u001b[38;2;235;219;178mA \u001b[38;2;168;153;132mRegex\u001b[38;2;235;219;178m can be used to search\u001b[39m \u001b[8;61H \u001b[38;2;235;219;178mhaystacks, split haystacks into\u001b[39m \u001b[9;61H \u001b[38;2;235;219;17"] +[21.818029, "o", "8msubstrings\u001b[39m \u001b[10;61H \u001b[38;2;235;219;178mor replace substrings in a\u001b[39m \u001b[11;61H \u001b[38;2;235;219;178mhaystack with a different\u001b[39m \u001b[12;61H \u001b[38;2;235;219;178msubstring. All\u001b[39m \u001b[13;61H \u001b[38;2;235;219;178msearching is done with an\u001b[39m \u001b[14;61H \u001b[38;2;235;219;178mimplicit \u001b[38;2;168;153;132m(?s:.)*?\u001b[38;2;235;219;178m at the\u001b[39m \u001b[15;61H \u001b[38;2;235;219;178mbeginning and end of\u001b[39m \u001b[16;61H \u001b[38;2;235;219;178man pattern. To force an\u001b[39m \u001b[17;61H \u001b[38;2;235;219;178mexpression to match the whole\u001b[39m \u001b[18;61H \u001b[38;2;235;219;178mstring (or a prefix\u001b[39m \u001b[19;61H \u001b[38;2;235;219;178mor a suffix), you must use an\u001b[39m \u001b[20;61H \u001b[38;2;235;219;178manchor like \u001b[38;2;168;153;132m^\u001b[38;2;235;219;178m or \u001b[38;2;168;153;132m$\u001b[38;2;235;219;178m (or \u001b[38;2;168;153;132m\\A\u001b[38;2;235;219;178m and\u001b[39m \u001b[21;61H \u001b[38;2;168;153;132m\\z\u001b[38;2;235;219;178m).\u001b[39m \u001b[22;61H "] +[21.818106, "o", " \u001b[23;61H \u001b[38;2;235;219;178mWhile this crate will handle\u001b[39m \u001b[24;61H \u001b[38;2;235;219;178mUnicode strings (whether in the\u001b[39m \u001b[25;61H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;36H\u001b[?25l"] +[22.068778, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;36H\u001b[?25l"] +[22.070183, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;36H\u001b[?25l"] +[22.120075, "o", "\u001b[2;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m:\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;12H\u001b[38;2;204;36;29m\u001b[48;2;40;40;40m\u001b[24mprintln\u001b[3;31H\u001b[38;2;184;187;38mrld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[4;31H \u001b[5;31H \u001b[6;31H \u001b[7;61H \u001b[8;61H \u001b[9;61H \u001b[10;61H \u001b[11;61H \u001b[12;61H \u001b[13;61H \u001b[14;61H \u001b[15;61H \u001b[16;61H \u001b[17;61H \u001b[18;61H \u001b[19;61H "] +[22.120135, "o", " \u001b[20;61H \u001b[21;61H \u001b[22;61H \u001b[23;61H \u001b[24;61H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m 1 sel 2:30 \u001b[25;61H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;37H\u001b[?25l"] +[22.126333, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[38;2;251;73;52m├─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpression\u001b[38;2;80;73;69m \u001b[4;3H\u001b[39m \u001b[4;8H \u001b[4;36H\u001b[38;2;251;73;52m└─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mSEMICOLON\u001b[38;2;80;73;69m \u001b[5;5H\u001b[38;2;124;111;100m3\u001b[5;9H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m 4\u001b[6;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[7;3H\u001b[38;2;124;111;100m ~\u001b[7;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;37H\u001b[?25l"] +[22.154725, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;37H\u001b[?25l"] +[22.240898, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;37H\u001b[?25l"] +[22.241118, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;37H\u001b[?25l"] +[22.279804, "o", "\u001b[2;36H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m::\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;38H\u001b[?25l"] +[22.286462, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[3;3H\u001b[38;2;124;111;100m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[4;3H\u001b[38;2;124;111;100m 4\u001b[4;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[4;36H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;9H\u001b[39m \u001b[6;3H \u001b[6;8H \u001b[7;3H \u001b[7;8H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;38H\u001b[?25l"] +[22.314581, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;38H\u001b[?25l"] +[22.348301, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m new(…) function ▐\u001b[4;38H is_match(…) method ▐\u001b[5;38H find(…) method ▐\u001b[6;38H find_iter(…) method ▐\u001b[7;38H captures(…) method \u001b[38;2;80;73;69m▐\u001b[8;38H\u001b[38;2;235;219;178m captures_iter(…) method \u001b[38;2;80;73;69m▐\u001b[9;38H\u001b[38;2;235;219;178m split(…) method \u001b[38;2;80;73;69m▐\u001b[10;38H\u001b[38;2;235;219;178m splitn(…) method \u001b[38;2;80;73;69m▐\u001b[11;38H\u001b[38;2;235;219;178m replace(…) method \u001b[38;2;80;73;69m▐\u001b[12;38H\u001b[38;2;235;219;178m replace_all(…) method \u001b[38;2;80;73;69m▐\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;38H\u001b[?25l"] +[22.528141, "o", "\u001b[2;38H\u001b[38;2;204;36;29m\u001b[48;2;40;40;40mn\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40m\u001b[24mprintln\u001b[4;39H\u001b[23m\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mcapture_names(…)\u001b[7;39Hsplitn(…) \u001b[7;75H▐\u001b[8;39Hre\u001b[8;42Hlac\u001b[8;46Hn(…) \u001b[8;75H▐\u001b[9;39Hfind_at(…)\u001b[10;39Hcaptures_len(…)\u001b[11;39Hstati\u001b[11;45H_captures_len(…)\u001b[12;39Hca\u001b[12;42Htur\u001b[12;47Hlocations(…)\u001b[24;93H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;39H\u001b[?25l"] +[22.563908, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;39H\u001b[?25l"] +[22.615968, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;39H\u001b[38;2;204;36;29me\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[3;75H\u001b[39m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[4;75H \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;39H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mto_owned(…)\u001b[5;51H(as\u001b[5;55HToOwned)\u001b[5;75H\u001b[39m\u001b[48;2;40;40;40m \u001b[6;3H \u001b[6;8H \u001b[6;39H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mclone_into(…)\u001b[6;53H(as\u001b[6;57HToOwned)\u001b[6;75H\u001b[39m\u001b[48;2;40;40;40m \u001b[7;39H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mclone(…) (as\u001b[7;52HClone)\u001b[7;75H\u001b[39m\u001b[48;2;40;40;40m \u001b[8;39H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mclone_from(…)\u001b[8;53H(as\u001b[8;57HClone)\u001b[8;75H\u001b[39m\u001b[48;2;40;40;40m \u001b[9;44H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mi\u001b[9;46Her(…)\u001b[9;75H\u001b[39m\u001b[48;2;40;40;40m \u001b[10;38H "] +[22.615989, "o", " \u001b[11;38H \u001b[12;38H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[24;93H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;40H\u001b[?25l"] +[22.651837, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;40H\u001b[?25l"] +[22.719875, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;40H\u001b[38;2;204;36;29mw\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;38H \u001b[6;3H \u001b[6;8H \u001b[6;38H \u001b[7;38H \u001b[8;38H \u001b[9;38H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[24;93H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;41H\u001b[?25l"] +[22.755443, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[3;3H\u001b[39m \u001b[3;8H \u001b[3;75H\u001b[38;2;80;73;69m \u001b[4;5H\u001b[38;2;124;111;100m3\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[3m\u001b[38;2;251;241;199mprintln\u001b[23m\u001b[38;2;204;36;29m!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[5;5H\u001b[38;2;124;111;100m4\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;41H\u001b[?25l"] +[23.184245, "o", "\u001b[2;1H\u001b[48;2;40;40;40m \u001b[2;38H\u001b[38;2;235;219;178mnew\u001b[38;5;3m\u001b[4m(\u001b[48;2;102;92;84m)\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[3;3H\u001b[38;2;124;111;100m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[4;5H\u001b[38;2;124;111;100m4\u001b[4;8H\u001b[38;5;1m}\u001b[4;10H\u001b[39m \u001b[5;5H\u001b[38;2;124;111;100m~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[6;3H \u001b[6;8H \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;80H \u001b[24;93H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[23.189989, "o", "\u001b[2;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[2;41H\u001b[38;5;3m\u001b[58:2::251:73:52m\u001b[4m(\u001b[48;2;102;92;84m)\u001b[3;3H\u001b[39m\u001b[48;2;40;40;40m\u001b[59m\u001b[24m \u001b[3;8H \u001b[3;41H\u001b[38;2;251;73;52m│\u001b[3;43H└─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mSEMICOLON\u001b[38;2;80;73;69m \u001b[4;3H\u001b[39m \u001b[4;8H \u001b[4;41H\u001b[38;2;251;73;52m└─expected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m1\u001b[38;2;80;73;69m \u001b[38;2;251;73;52margument,\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mfound\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m0\u001b[38;2;80;73;69m \u001b[5;5H\u001b[38;2;124;111;100m3\u001b[5;9H\u001b[38;2;80;73;69m \u001b[38;2;204;36;29mprintln!\u001b[38;5;3m(\u001b[38;2;184;187;38m\"Hello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m 4\u001b[6;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[7;3H\u001b[38;2;124;111;100m ~\u001b[7;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;80H\u001b[38;2;235;219;178m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[23.220626, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[23.304768, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[23.306103, "o", "\u001b[3;22H\u001b[48;2;60;56;54m \u001b[38;2;235;219;178m▐\u001b[4;22H\u001b[39m \u001b[38;2;252;107;89mfn\u001b[38;2;235;219;178m new\u001b[38;2;189;174;147m(\u001b[38;2;251;241;199m\u001b[48;2;102;92;84m\u001b[4mre\u001b[38;2;235;219;178m\u001b[24m: \u001b[38;2;252;107;89m&\u001b[38;2;142;192;124mstr\u001b[38;2;189;174;147m\u001b[48;2;60;56;54m)\u001b[38;2;235;219;178m \u001b[38;2;131;165;152m->\u001b[38;2;235;219;178m \u001b[38;2;142;192;124mResult\u001b[38;2;189;174;147m<\u001b[38;2;142;192;124mRegex\u001b[38;2;189;174;147m,\u001b[38;2;235;219;178m \u001b[38;2;142;192;124mError\u001b[38;2;189;174;147m>\u001b[39m \u001b[38;2;235;219;178m▐\u001b[5;22H\u001b[39m ───────────────────────────────────────────────────────────────────────\u001b[38;2;235;219;178m▐\u001b[6;22H\u001b[39m \u001b[38;2;235;219;178mCompiles a regular expression. Once compiled, it can be used repeatedly▐\u001b[7;22H\u001b[39m \u001b[38;2;235;219;178mto search, split or replace "] +[23.30612, "o", "substrings in a haystack.\u001b[39m \u001b[38;2;235;219;178m▐\u001b[8;22H\u001b[39m \u001b[38;2;235;219;178m▐\u001b[9;22H\u001b[39m \u001b[38;2;235;219;178mNote that regex compilation tends to be a somewhat expensive process,\u001b[39m \u001b[38;2;235;219;178m▐\u001b[10;22H\u001b[39m \u001b[38;2;235;219;178mand unlike higher level environments, compilation is not automatically\u001b[39m \u001b[38;2;235;219;178m▐\u001b[11;22H\u001b[39m \u001b[38;2;235;219;178mcached for you. One should endeavor to compile a regex once and then\u001b[39m \u001b[38;2;235;219;178m▐\u001b[12;22H\u001b[39m \u001b[38;2;235;219;178mreuse it. For example, it's a bad idea to compile the same regex\u001b[39m \u001b[38;2;235;219;178m▐\u001b[13;22H\u001b[39m \u001b[38;2;235;219;178mrepeatedly in a loop.\u001b[39m \u001b[38;2;235;219;178m▐\u001b[14;22H\u001b[39m \u001b[38;2;235;219;178m▐\u001b[15;22H\u001b[39m \u001b[1m\u001b[38;2;204;36;29mErrors\u001b[22m\u001b[39m "] +[23.306182, "o", " \u001b[38;2;235;219;178m▐\u001b[16;22H\u001b[39m \u001b[38;2;235;219;178m▐\u001b[17;22H\u001b[39m \u001b[38;2;235;219;178mIf an invalid pattern is given, then an error is returned.\u001b[39m \u001b[38;2;235;219;178m▐\u001b[18;22H\u001b[39m \u001b[38;2;235;219;178mAn error is also returned if the pattern is valid, but would\u001b[39m \u001b[38;2;235;219;178m▐\u001b[19;22H\u001b[39m \u001b[38;2;235;219;178mproduce a regex that is bigger than the configured size limit via\u001b[39m \u001b[38;2;235;219;178m▐\u001b[20;22H\u001b[39m \u001b[38;2;235;219;178m[\u001b[38;2;168;153;132mRegexBuilder::size_limit\u001b[38;2;235;219;178m]. (A reasonable size limit is enabled by\u001b[39m \u001b[38;2;80;73;69m▐\u001b[21;22H\u001b[39m \u001b[38;2;235;219;178mdefault.)\u001b[39m \u001b[38;2;80;73;69m▐\u001b[22;22H\u001b[39m \u001b[38;2;80;73;69m▐\u001b[23;22H\u001b[39m \u001b[1m\u001b[38;2;204;36;29mExample\u001b[22m\u001b[39m "] +[23.306219, "o", " \u001b[38;2;80;73;69m▐\u001b[24;22H\u001b[39m \u001b[38;2;80;73;69m▐\u001b[25;22H\u001b[39m \u001b[38;2;251;73;52muse\u001b[38;2;235;219;178m \u001b[38;2;184;187;38mregex\u001b[38;2;189;174;147m::\u001b[38;2;142;192;124mRegex\u001b[38;2;189;174;147m;\u001b[39m \u001b[38;2;80;73;69m▐\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[25.504191, "o", "\u001b[3;22H\u001b[48;2;40;40;40m \u001b[38;2;251;73;52m│\u001b[39m \u001b[38;2;251;73;52m└─Syntax\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mError:\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mSEMICOLON\u001b[38;2;80;73;69m \u001b[39m \u001b[4;22H \u001b[38;2;251;73;52m└─expected\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m1\u001b[38;2;80;73;69m \u001b[38;2;251;73;52margument,\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mfound\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m0\u001b[38;2;80;73;69m \u001b[39m \u001b[5;22H\u001b[38;2;184;187;38mHello,\u001b[38;2;80;73;69m \u001b[38;2;184;187;38mworld!\"\u001b[38;5;3m)\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[6;22H \u001b[7;22H \u001b[8;22H \u001b[9;22H \u001b[10;22H"] +[25.504308, "o", " \u001b[11;22H \u001b[12;22H \u001b[13;22H \u001b[14;22H \u001b[15;22H \u001b[16;22H \u001b[17;22H \u001b[18;22H \u001b[19;22H \u001b[20;22H \u001b[21;22H \u001b[22;22H "] +[25.504343, "o", " \u001b[23;22H \u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mNOR\u001b[24;22H] \u001b[38;2;251;73;52m●\u001b[38;2;235;219;178m 2 1 sel 2:35 \u001b[25;22H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[25.679876, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;42H\u001b[?25l"] +[25.88799, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-next \u001b[24;20H \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;78H \u001b[24;80"] +[25.888013, "o", "H \u001b[24;83H \u001b[24;85H \u001b[24;90H \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[38;2;146;131;116mw\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[26.207929, "o", "\u001b[15;1H\u001b[48;2;40;40;40m \u001b[16;1H \u001b[17;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[39m\u001b[48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Close the current view. │\u001b[39m\u001b[48;2;40;40;40m \u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: q │\u001b[39m\u001b[48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└──────────────────────────────────"] +[26.207953, "o", "──────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mq\u001b[21;3Hit \u001b[21;32Hwrite-quit\u001b[21;63Hcquit \u001b[22;1Hq\u001b[22;3Hit! \u001b[22;32Hwrite-quit! \u001b[22;63Hcquit! \u001b[23;1Hq\u001b[23;3Hit-all \u001b[23;32Hwrite-qu\u001b[23;41Ht-all\u001b[23;63H \u001b[24;1Hq\u001b[24;3Hit-all! \u001b[24;32Hwrite-quit-all!\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mq\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[26.536077, "o", "\u001b[17;1H\u001b[48;2;40;40;40m \u001b[18;1H \u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[20;1H│ Force close the current view, ignoring unsaved changes. │\u001b[21;1H│ Aliases: q! │\u001b[39m\u001b[48;2;40;40;40m \u001b[22;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────"] +[26.536147, "o", "────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[23;5H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m! \u001b[23;32Hqu\u001b[23;36H-all! \u001b[23;63Hcquit!\u001b[24;1Hwr\u001b[24;5He-quit!\u001b[25;3H\u001b[48;2;40;40;40m!\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;4H\u001b[?25h\u001b[2 q"] +[27.055868, "o", "\u001b[?25h\u001b[2 q\u001b[0 q\u001b[?1006l\u001b[?1015l\u001b[?1003l\u001b[?1002l\u001b[?1000l\u001b[?2004l\u001b[?1004l\u001b[?1049l"] +[27.06488, "o", "\u001b[2m⏎\u001b(B\u001b[m \r⏎ \r\u001b[K"] +[27.069373, "o", "\u001b[?2004h"] +[27.094513, "o", "\u001b]0;~/hello\u0007\u001b[30m\u001b(B\u001b[m\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m~/hello\u001b(B\u001b[m (main)\u001b(B\u001b[m> \u001b[K\r\u001b[85C \u001b[38;2;85;85;85m14:02:32\u001b(B\u001b[m\r\u001b[85C\r\u001b[31C"] +[27.367534, "o", "\r\n\u001b[30m\u001b(B\u001b[m\u001b[30m"] +[27.367612, "o", "\u001b(B\u001b[m"] +[27.367658, "o", "\u001b[?2004l"] diff --git a/news/index.html b/news/index.html index be7b72f..8b7dd77 100644 --- a/news/index.html +++ b/news/index.html @@ -55,6 +55,22 @@


    +
  • +
    +
    + +
    +
    +

    + Release 23.10 Highlights +

    + + Highlights of the 23.10 release. + +
    +
    +
  • +
  • diff --git a/news/release-23-10-highlights/index.html b/news/release-23-10-highlights/index.html new file mode 100644 index 0000000..aa7da93 --- /dev/null +++ b/news/release-23-10-highlights/index.html @@ -0,0 +1,162 @@ + + + + + + + Helix + + + + + + + + + + + + +
    + +
    + + +

    Release 23.10 Highlights

    + + +

    The Helix 23.10 release is finally here! 23.10 introduces some very large +internal changes that enable some powerful features. A very big thank you to +everyone who made this release possible.

    +

    New to Helix? +Helix is a modal text editor with built-in support for multiple selections, +Language Server Protocol (LSP), tree-sitter, and experimental support for Debug +Adapter Protocol (DAP).

    +

    Let's check out this release's highlights.

    +

    Multiple language servers

    +

    23.10 brings a big change to the way we handle language servers. +Previously each language could only support one language server at a time but +now you can configure multiple to work in tandem. For example you might use +the TypeScript language server for JavaScript/TypeScript development and also +configure efm-langserver for +Prettier formatting and ESLint diagnostics. With the new support for multiple +language servers, you can specify which features to use from each language +server.

    +

    This brings a big change to the way language servers are configured in your +language configuration (languages.toml). All language servers are now +specified separately from languages and then each language selects which +language server(s) to use. From the example above, you might configure efm- +langserver and typescript-language-server like so:

    +
    [language-server.efm]
    +command = "efm-langserver"
    +config.documentFormatting = true
    +
    +[language-server.typescript-language-server]
    +command = "typescript-language-server"
    +args = ["--stdio"]
    +config.hostInfo = "helix"
    +
    +[[language]]
    +name = "typescript"
    +auto-format = true
    +language-servers = [
    +  { name = "efm", only-features = ["format", "diagnostics"] },
    +  { name = "typescript-language-server", except-features = ["format", "diagnostics"] },
    +]
    +
    +

    See more details in the language configuration docs.

    +

    Fuzzy matching with Nucleo

    + +

    Helix uses "fuzzy" matching to filter as-you-type in components like the file +picker. Previously we used the popular skim/fuzzy-matcher crates but in the +23.10 release we've switched to the new +nucleo crate. Nucleo is +significantly faster than skim and fzf, handles Unicode correctly, and uses a +bonus system that feels more intuitive.

    +

    Nucleo also enables us to lazily stream in new items, which is a big boost for +the user experience for pickers. In the asciicast above I'm scanning through +my computer's /nix/store, a huge directory containing more than twenty +million files. The file picker now works gradually as we scan through the +directory and matches files as we find them.

    +

    Nucleo also paves the way for future picker upgrades. Stay tuned to the +upcoming release notes to see where we'll take the picker.

    +

    Smart tab

    +

    Smart tab is a new feature bound to the tab key in the default keymap. When +you press tab and the line to the left of the cursor isn't all whitespace, +the cursor will jump to the end of the syntax tree's parent node. For example:

    +
    {
    +  key = "value";
    +  nested = {
    +    key2 = "value2"; # When the cursor is at the end of the line here, <tab>
    +                     # jumps right after the closing brace on the next line.
    +  };
    +}
    +
    +

    This is useful in languages like Nix for adding semicolons at the end of an +attribute set or jumping to the end of a block in a C-like language:

    + +

    Expanded support for registers

    + +

    Registers allow you to save and paste values. For example you might select +a paragraph, use "ay to yank it into the a register, and later use "ap +to paste that paragraph. Some registers have special effects when read or +written to though like the _ "blackhole" register: any values written are +discarded and nothing can be read. Special registers have been expanded to +include some useful ones from Kakoune and clipboard registers:

    +
      +
    • %: the current buffer name
    • +
    • #: the number of each selection, 1-indexed
    • +
    • .: the contents of each selection
    • +
    • * and +: system and primary clipboards
    • +
    +

    Also check out the new register statusline element. It appears when you select +a register with ". Notice the reg=# in the bottom-right corner of the +statusline in the asciicast when we select the # register and how it goes +away when we paste that register (p) or increment the selections (C-a).

    +

    Initial support for LSP DidChangeWatchedFiles

    + +

    Some language servers use the DidChangeWatchedFiles notification to discover +changes to related files in other languages. For example, rust-analyzer will +fetch and index new dependencies when you add them to your Cargo.toml. +Helix will now send file change notifications when the file is changed by +Helix itself. Full support for DidChangeWatchedFiles will require a file +watcher but for now we're able to support the most common use-case for +DidChangeWatchedFiles.

    +

    Syntax highlight regex prompts

    + +

    Regex prompts like those created with s, S or | are now syntax highlighted +via tree-sitter-regex. The highlighting makes special characters more obvious +and can catch syntax errors like trailing backslashes.

    +

    Wrapping up

    +

    As always, this is just the tip of the iceberg for the 23.10 release. Check out +the changelog for the full details.

    +

    Come chat about usage and development questions in the Matrix space +and follow along with Helix's development in the GitHub repository.

    + + + + + + +
    + + diff --git a/nucleo-nix-store.cast b/nucleo-nix-store.cast new file mode 100644 index 0000000..6fab6a0 --- /dev/null +++ b/nucleo-nix-store.cast @@ -0,0 +1,709 @@ +{"version": 2, "width": 94, "height": 25, "timestamp": 1696874624, "env": {"SHELL": "/run/current-system/sw/bin/fish", "TERM": "xterm-256color"}} +[0.117581, "o", "Welcome to fish, the friendly interactive shell\r\nType \u001b[32mhelp\u001b(B\u001b[m for instructions on how to use fish\r\n"] +[0.122065, "o", "\u001b[?2004h"] +[0.122209, "o", "\u001b]7;file://mango2/nix/store\u0007"] +[0.145081, "o", "\u001b]0;/n/store\u0007\u001b[30m\u001b(B\u001b[m"] +[0.145137, "o", "\r"] +[0.145173, "o", "\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m/n/store\u001b(B\u001b[m\u001b(B\u001b[m> \u001b[K\r\u001b[85C \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[25C"] +[0.878261, "o", "h\r\u001b[85C \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[26C"] +[0.879143, "o", "\b\u001b[38;2;255;0;0mh\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[26C"] +[0.882649, "o", "\u001b[38;2;85;85;85mx\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[26C"] +[0.990065, "o", "\u001b[38;2;255;0;0mx\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[27C"] +[0.990367, "o", "\r\u001b[85C \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[27C\b\b\u001b[38;2;0;95;215mhx\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[27C"] +[1.118773, "o", "\r\u001b[85C \u001b[38;2;85;85;85m13:03:44\u001b(B\u001b[m\r\u001b[85C\r\u001b[27C\r\n\u001b[30m\u001b(B\u001b[m"] +[1.118836, "o", "\u001b[?2004l"] +[1.119515, "o", "\u001b]0;hx /n/store\u0007\u001b[30m\u001b(B\u001b[m\r"] +[1.136143, "o", "\u001b[?1049h\u001b[?2004h\u001b[?1004h\u001b[2J\u001b[?1000h\u001b[?1002h\u001b[?1003h\u001b[?1015h\u001b[?1006h\u001b[?u\u001b[c"] +[1.139737, "o", "\u001b[1;1H\u001b[48;2;40;40;40m \u001b[38;2;250;189;47m 1\u001b[39m \u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[2;1H \u001b[38;2;124;111;100m ~\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[3;1H \u001b[4;1H \u001b[5;1H \u001b[6;1H \u001b[7;1H \u001b[8;1H \u001b[9;1H "] +[1.139787, "o", " \u001b[10;1H \u001b[11;1H \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H "] +[1.139827, "o", " \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m NOR [scratch] 1 sel 1:1 \u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[1.590318, "o", "\u001b[1;43H\u001b[48;2;60;56;54m┌Space─────────────────────────────────────────────┐\u001b[2;43H│ \u001b[38;2;235;219;178mf Open file picker \u001b[39m │\u001b[3;43H│ \u001b[38;2;235;219;178mF Open file picker at current working directory\u001b[39m │\u001b[4;43H│ \u001b[38;2;235;219;178mb Open buffer picker \u001b[39m │\u001b[5;43H│ \u001b[38;2;235;219;178mj Open jumplist picker \u001b[39m │\u001b[6;43H│ \u001b[38;2;235;219;178ms Open symbol picker \u001b[39m │\u001b[7;43H│ \u001b[38;2;235;219;178mS Open workspace symbol picker \u001b[39m │\u001b[8;43H│ \u001b[38;2;235;219;178md Open diagnostic picker \u001b[39m │\u001b[9;43H│ \u001b[38;2;235;219;178mD Open workspace diagnostic picker \u001b[39m │\u001b[10;43H│ \u001b[38;2;235;219;178ma Perform code action \u001b[39m │\u001b[11;43H│ \u001b[38;2;235;219;178m' Open last picker "] +[1.590344, "o", " \u001b[39m │\u001b[12;43H│ \u001b[38;2;235;219;178mg Debug (experimental) \u001b[39m │\u001b[13;43H│ \u001b[38;2;235;219;178mw Window \u001b[39m │\u001b[14;43H│ \u001b[38;2;235;219;178my Yank selections to clipboard \u001b[39m │\u001b[15;43H│ \u001b[38;2;235;219;178mY Yank main selection to clipboard \u001b[39m │\u001b[16;43H│ \u001b[38;2;235;219;178mp Paste clipboard after selections \u001b[39m │\u001b[17;43H│ \u001b[38;2;235;219;178mP Paste clipboard before selections \u001b[39m │\u001b[18;43H│ \u001b[38;2;235;219;178mR Replace selections by clipboard content \u001b[39m │\u001b[19;43H│ \u001b[38;2;235;219;178m/ Global search in workspace folder \u001b[39m │\u001b[20;43H│ \u001b[38;2;235;219;178mk Show docs for item under cursor \u001b[39m │\u001b[21;43H│ \u001b[38;2;235;219;178mr Rename symbol \u001b[39m │\u001b[22;43H│ \u001b[38;2;235;219;178mh Select symbol references \u001b[39m │\u001b[23;43H│ \u001b[38;2;235;219;178mc Toggl"] +[1.590429, "o", "e comments \u001b[39m │\u001b[24;43H│ \u001b[38;2;235;219;178m? Open command palette \u001b[39m │\u001b[25;43H└────────────────────────────────────\u001b[38;2;235;219;178m\u001b[39m───────┘\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[2.488271, "o", "\u001b[1;43H\u001b[48;2;40;40;40m \u001b[2;6H┌────────────────────────────────────────┐┌────────────────────────────────────────┐ \u001b[3;6H│\u001b[3;43H\u001b[38;2;235;219;178m4/4\u001b[39m ││ \u001b[38;2;235;219;178mDerive([(\"out\",\"/nix/store/qx2kpf1j2sg\u001b[39m │ \u001b[4;6H│────────────────────────────────────────││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mm0kiqz35nn8s6z0mphdkg-cargo-package-\u001b[39m │ \u001b[5;6H│\u001b[1m\u001b[38;2;235;219;178m > …-cargo-package-smartstring-1.0.1.drv\u001b[22m\u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msmartstring-1.0.1\",\"\",\"\")],[(\"/nix/\u001b[39m │ \u001b[6;6H│\u001b[38;2;235;219;178m …3cgd1d14fd3vwvk8xrx8-audit-2.8.5.drv\u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2"] +[2.488321, "o", ";235;219;178mstore/j7if1l3jjsvr8qh7051qw2nc7fq3n7\u001b[39m │ \u001b[7;6H│\u001b[38;2;235;219;178m …037c1wx9b-automake-1.16.5.tar.xz.drv\u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m3p-smartstring-1.0.1.drv\",[\"out\"]),(\u001b[39m │ \u001b[8;6H│\u001b[38;2;235;219;178m …-nix-persist-home-michael-cache-nix-\u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"/nix/store/lwd2xw7q40ljgvhwn96riffj\u001b[39m │ \u001b[9;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m7zxvydhx-stdenv-linux.drv\",[\"out\"]),\u001b[39m │ \u001b[10;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(\"/nix/store/zz9qm8bq0v169h6gmsyn1qx\u001b[39m │ \u001b[11;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m9lyy94p6s-bash-5.2-p15.drv\",[\"out\"])\u001b[39m │ \u001b[12;6H│\u001b[38;2;235;219;"] +[2.488468, "o", "178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m],[\"/nix/store/6xg259477c90a229xwmb5\u001b[39m │ \u001b[13;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m3pdfkn6ig3g-default-builder.sh\"],\"\u001b[39m │ \u001b[14;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mi686-linux\",\"/nix/store/cdkgxjrlbvss\u001b[39m │ \u001b[15;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mj8rvihq2s1dnfh7hps0k-bash-5.2-p15/\u001b[39m │ \u001b[16;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbin/bash\",[\"-e\",\"/nix/store/\u001b[39m │ \u001b[17;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;"] +[2.488514, "o", "69m \u001b[38;2;235;219;178m6xg259477c90a229xwmb53pdfkn6ig3g-\u001b[39m │ \u001b[18;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdefault-builder.sh\"],[(\"__structured\u001b[39m │ \u001b[19;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAttrs\",\"\"),(\"allowSubstitutes\",\"\"),(\u001b[39m │ \u001b[20;6H│\u001b[38;2;235;219;178m \u001b[39m││ \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"buildCommand\",\"mkdir\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-p\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$out\\ntar\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-\u001b[39m │ \u001b[21;6H└────────────────────────────────────────┘└────────────────────────────────────────┘ \u001b[22;43H "] +[2.488557, "o", " \u001b[23;43H \u001b[24;43H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m 1 sel 1:1 \u001b[25;43H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.522629, "o", "\u001b[3;33H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.557193, "o", "\u001b[3;27H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) 7260/7260\u001b[9;10H…hl9-libgcrypt-1.9.4/lib/libgcrypt.la\u001b[10;10H…gcrypt-1.9.4/lib/libgcrypt.so.20.3.4\u001b[11;10H…cqfqhsnk50-ansi-styles-4.3.0.tgz.drv\u001b[12;10H…lq57538n906jj7222-readline63-008.drv\u001b[13;10H…wx42jshc38djdr53-make-4.4.tar.gz.drv\u001b[14;10H…3i-perl5.34.0-Encode-Locale-1.05.drv\u001b[15;10H…rl5/site_perl/5.38.0/File/BaseDir.pm\u001b[16;10H…5/site_perl/5.38.0/File/IconTheme.pm\u001b[17;10H…l5/site_perl/5.38.0/File/UserDirs.pm\u001b[18;10H…/nix-support/propagated-build-inputs\u001b[19;10H…gib7pdlf-hook/nix-support/setup-hook\u001b[20;10H…isdzv22nddafh-lz4-java-1.4.1.pom.drv\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.591586, "o", "\u001b[3;25H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(runni\u001b[3;32Hg) 10654/10654\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.6261, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4312\u001b[3;42H4312\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.659468, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;38H9\u001b[3;42H6\u001b[3;44H9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.693917, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8578\u001b[3;42H8578\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.728043, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m21330\u001b[3;41H21330\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.739492, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3723\u001b[3;42H3723\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.77385, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4880\u001b[3;42H4880\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.808282, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6416\u001b[3;42H6416\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.842635, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8245\u001b[3;42H8245\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.877067, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m30054\u001b[3;41H30054\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.911499, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2287\u001b[3;42H2287\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.945937, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4656\u001b[3;42H4656\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[2.980307, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m691\u001b[3;42H691\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.014678, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;38H49\u001b[3;42H8\u001b[3;44H49\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.049137, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4170\u001b[3;41H4170\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.083529, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5587\u001b[3;42H5587\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.117994, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7638\u001b[3;42H7638\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.152375, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m50000\u001b[3;41H50000\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.186834, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2497\u001b[3;42H2497\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.221221, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5011\u001b[3;42H5011\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.255681, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m774\u001b[3;42H774\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.290242, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9185\u001b[3;42H9185\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.324726, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m61012\u001b[3;41H61012\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.35912, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2849\u001b[3;42H2849\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.393811, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4657\u001b[3;42H4657\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.428241, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6876\u001b[3;42H6876\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.462631, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9295\u001b[3;42H9295\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.497109, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m71726\u001b[3;41H71726\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.530502, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;38H72\u001b[3;42H3\u001b[3;44H72\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.56508, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6694\u001b[3;42H6694\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.59952, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8310\u001b[3;42H8310\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[3.628383, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mc\u001b[3;25H\u001b[39m \u001b[38;2;235;219;178m82431\u001b[3;41H83155\u001b[3;50H\u001b[39m \u001b[4;50H \u001b[5;11H\u001b[1m\u001b[38;2;235;219;178m7z4yxhhgw45d72h-shadow-4.13/bin/\u001b[38;2;251;73;52mc\u001b[38;2;235;219;178mhfn\u001b[5;50H\u001b[22m\u001b[39m \u001b[6;11H\u001b[38;2;235;219;178m7z4yxhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhsh\u001b[6;50H\u001b[39m \u001b[7;11H\u001b[38;2;235;219;178mz4yxhhgw45d72h-shadow-4\u001b[7;35H13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhage\u001b[7;50H\u001b[39m \u001b[8;11H\u001b[38;2;235;219;178mxhhgw45d72h-s\u001b[8;25Hadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[8;41H\u001b[22m\u001b[38;2;235;219;178mpasswd\u001b[8;50H\u001b[39m \u001b[9;12H\u001b[38;2;235;219;178mhgw45d72h-shadow-\u001b[9;30H.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhgpasswd\u001b[9;50H\u001b[39m \u001b[10;11H\u001b[38;2;235;219"] +[3.628441, "o", ";178m52i0q7\u001b[10;18Hlibkrb5-1.20.1/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mompile_et\u001b[10;50H\u001b[39m \u001b[11;11H\u001b[38;2;235;219;178mp8zjvg-libkrb5-1.20.1/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mompile_et\u001b[11;50H\u001b[39m \u001b[12;11H\u001b[38;2;235;219;178m.3.51-lib/share/pip\u001b[12;31Hwire/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mlient.conf\u001b[12;50H\u001b[39m \u001b[38;2;235;219;178m\u001b[39m \u001b[13;11H\u001b[38;2;235;219;178m10.0/lib/node_modules/npm/lib/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mli.js\u001b[13;50H\u001b[39m \u001b[14;11H\u001b[38;2;235;219;178m51\u001b[14;14Hlib/share/pipewire/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mlient-rt.conf\u001b[14;50H\u001b[39m \u001b[15;11H\u001b[38;2;235;219;178mlib\u001b[15;15H\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mmake/libssh/libssh-config.cmake\u001b[15;50H\u001b[39m \u001b[16;11H\u001b[38;2;235;219;178m/lib/nod\u001b[16;20H_"] +[3.628479, "o", "modules/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178morepack/README\u001b[16;45Hmd\u001b[16;50H\u001b[39m \u001b[17;11H\u001b[38;2;235;219;178m/lib/node_modules/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178morepack/shims/n\u001b[17;50H\u001b[39m \u001b[18;12H\u001b[38;2;235;219;178ml\u001b[18;14Hb/node_modules/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mor\u001b[18;33Hpack/shims/npx\u001b[18;50H\u001b[39m \u001b[19;11H\u001b[38;2;235;219;178ml\u001b[19;14H/node_m\u001b[19;22Hdules/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178more\u001b[19;33Hack\u001b[19;37HLICENSE.md\u001b[19;50H\u001b[39m \u001b[20;11H\u001b[38;2;235;219;178mlib/node_modules/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178morepack/shims/pnpm\u001b[20;50H\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[3.633856, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[3.683111, "o", "\u001b[3;25H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[3.721478, "o", "\u001b[3;39H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[3.73511, "o", "\u001b[3;9H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mo\u001b[3;25H\u001b[39m \u001b[38;2;235;219;178m78\u001b[3;38H64\u001b[3;42H5048\u001b[3;50HCopyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(c)\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2003-2022\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mEelco\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDolstra\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNixpkgs/NixOS\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontributors\u001b[38;2;80;73;69m \u001b[5;12H\u001b[1m\u001b[38;2;235;219;178ml3a37wrqyrjnk405f804-source/\u001b[38;2;251;73;52mCO\u001b[38;2;235;219;178mPYING\u001b[5;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[6;11H\u001b[38;2;235;219;178mqp299d0aqq0y8j9alijkh-source/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[6;50HPermission\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhereby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mgranted,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfree\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[7;11H\u001b[38;2;235;219;178m"] +[3.73518, "o", "wrqyrjnk\u001b[7;20H05f804-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[7;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcharge,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178many\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mperson\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mobtaining\u001b[38;2;80;73;69m \u001b[8;11H\u001b[38;2;235;219;178m0aqq0y8j9alijkh-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[8;50Ha\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopy\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msoftware\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178massociated\u001b[9;11Hqyrjnk405f804-s\u001b[9;27Hurce/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mNTRIBUTING.m\u001b[9;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdocumentation\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfiles\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(the\u001b[38;2;80;73;69m \u001b[10;11H\u001b[38;2;235;219;178mqq0y8j9alijkh-source/\u001b[1m\u001b[38"] +[3.73521, "o", ";2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mNTRIBUTING.md\u001b[10;50H\"Software\"),\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdeal\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSoftware\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178madp8i6z0dl3-source/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mntrib/hel\u001b[11;42Hx.png\u001b[11;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwithout\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrestriction,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mincluding\u001b[38;2;80;73;69m \u001b[12;11H\u001b[38;2;235;219;178m90lab29cri4-source/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mntrib/h\u001b[12;40Hlix.p\u001b[12;46Hg\u001b[12;50Hwithout\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlimitation\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrights\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muse,\u001b[38;2;80;73;69m \u001b[13;11H\u001b[38;2;235;219;178mj9alijkh-s\u001b[13;22Hurce/pkgs/test\u001b[13;37H\u001b[1m\u001b[38;2;251"] +[3.73524, "o", ";73;52mco\u001b[22m\u001b[38;2;235;219;178mnfig.nix\u001b[13;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopy,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmodify,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmerge,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpublish,\u001b[38;2;80;73;69m \u001b[14;11H\u001b[38;2;235;219;178mz2q3\u001b[14;16Hzy9-coreutils-9.3/b\u001b[14;36Hn/\u001b[1m\u001b[38;2;251;73;52mco\u001b[14;41H\u001b[22m\u001b[38;2;235;219;178meutils\u001b[14;50Hdistribute,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msublicense,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand/or\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msell\u001b[38;2;80;73;69m \u001b[15;11H\u001b[38;2;235;219;178m8\u001b[15;13H6z0dl3-source/book/\u001b[15;33Hrc/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mmmands.md\u001b[15;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopies\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSoftware,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[16;11H\u001b[38;2;235;219;178m8i6z0dl3-source/docs/\u001b[1m\u001b[38;2;251;73;"] +[3.735269, "o", "52mCO\u001b[22m\u001b[38;2;235;219;178mNTRIBUTING\u001b[16;50Hpermit\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpersons\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwhom\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSoftware\u001b[38;2;80;73;69m \u001b[17;11H\u001b[38;2;235;219;178mab29cri4-source/book/src/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mmmands.md\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfurnished\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdo\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mso,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msubject\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[18;11H\u001b[38;2;235;219;178mab29cri4-source/docs/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mNTRIBUTING.md\u001b[18;50Hthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfollowing\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconditions:\u001b[38;2;80;73;69m \u001b[19;11H\u001b[38;2;235;219;178m9alijkh-source/nix\u001b[19;30Hs/tests/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b"] +[3.735302, "o", "[38;2;235;219;178mder.nix\u001b[19;50H\u001b[38;2;80;73;69m \u001b[20;11H\u001b[38;2;235;219;178mi6z0dl3-source/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mnt\u001b[20;31Hib/Helix.desktop\u001b[20;50HThe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mabove\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnotice\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[3.755898, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[3.797148, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mn\u001b[3;36H1822\u001b[3;44H50\u001b[3;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mHow\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontribute\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;11H\u001b[1m\u001b[38;2;235;219;178mqyrjnk405f804-source/\u001b[38;2;251;73;52mCON\u001b[38;2;235;219;178mTRIBUTING.md\u001b[5;50H\u001b[22mNote:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontributing\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mimplies\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlicensing\u001b[38;2;80;73;69m \u001b[6;12H\u001b[38;2;235;219;178mq0y8j9\u001b[6;19Hlijkh-source/\u001b[1m\u001b[38;2;251;73;52mCON\u001b[22m\u001b[38;2;235;219;178mTRIBUTING.md\u001b[6;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtho\u001b[6;56He\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontributions\u001b[38;2;80;73;69m \u001b[39m \u001b[7;11H\u001b[38;2;235;219;178madp8i6z0dl3-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtr\u001b[7;36Hb/helix.png\u001b[7;50Hunder\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[7;61Herms\u001b[38;"] +[3.797203, "o", "2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m[COPYING](COPYING),\u001b[8;11H90lab29cri4-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtr\u001b[8;36Hb/helix.png\u001b[8;50H\u001b[38;2;102;92;84m↪\u001b[8;52H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwhich\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178man\u001b[8;65HMIT-lik\u001b[8;74Hlicen\u001b[8;80He.\u001b[38;2;80;73;69m \u001b[39m \u001b[9;11H\u001b[38;2;235;219;178mj9alijkh-source/pkgs\u001b[9;32Htest/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mfig.nix\u001b[9;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[10;11H\u001b[38;2;235;219;178m8i6z0dl3-source/do\u001b[10;30Hs\u001b[10;34H\u001b[1m\u001b[38;2;251;73;52mN\u001b[10;50H\u001b[22m\u001b[38;2;235;219;178m##\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mOpening\u001b[38;2;80;73;69m \u001b[38;2;235;219;178missues\u001b[38;2;80;73;69m \u001b[39m \u001b[11;12H\u001b[38;2;235;219;178mb29cri4-source/docs/\u001b[1m\u001b[38;2;251;73;52mCON\u001b[22m\u001b[38;2;235;219;178mTRIBUTING.md\u001b[11;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[12;11H\u001b[38;2;235;219;178mi6z0dl3-source/\u001b[1m\u001b"] +[3.797238, "o", "[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib/Helix.desktop\u001b[12;50H*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mMake\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msure\u001b[38;2;80;73;69m \u001b[38;2;235;219;178myou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhave\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[12;73H[GitHub\u001b[38;2;80;73;69m \u001b[39m \u001b[13;11H\u001b[38;2;235;219;178mb29cri4-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib/Helix.desktop\u001b[13;52Haccount](https://\u001b[13;70Hithub.com/signup/\u001b[14;11H05f804-sourc\u001b[14;24H/n\u001b[14;27Hxos/tests/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178msul.nix\u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfree)\u001b[38;2;80;73;69m \u001b[39m \u001b[15;11H\u001b[38;2;235;219;178m05f8\u001b[15;16H4-source/nix\u001b[15;29Hs/tests/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mvos.nix\u001b[15;50H*\u001b[15;52HMake\u001b[38;2;80;73;69m \u001b[15;58H\u001b[38;2;235;219;178mure\u001b[15;65Hre\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mno\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mope\u001b[15;78H\u001b[38;2;80;7"] +[3.797271, "o", "3;69m \u001b[38;2;235;219;178missue\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mon\u001b[38;2;80;73;69m \u001b[16;11H\u001b[38;2;235;219;178malijkh-source/nix\u001b[16;29Hs/tests/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178msul.nix\u001b[16;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtopic\u001b[38;2;80;73;69m \u001b[39m \u001b[17;12H\u001b[38;2;235;219;178mlijkh-source/nix\u001b[17;29Hs/tests/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mvos.nix\u001b[17;50H*\u001b[17;52H[Submit\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnew\u001b[38;2;80;73;69m \u001b[38;2;235;219;178missue](https://gi\u001b[17;84Hhub.\u001b[18;11Hlijkh-source/nixos/tests/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mnman.nix\u001b[18;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcom/NixOS/nixpkgs/\u001b[18;71Hssues/new/choose)\u001b[19;11Hn6vvq-\u001b[19;18Helix-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib\u001b[19;38Hhelix\u001b[19;44Hpng\u001b[19;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mby\u001b[38;2;80;73;69m \u001b"] +[3.797302, "o", "[38;2;235;219;178mchoosing\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mkind\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtopic\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[20;11H\u001b[38;2;235;219;178mf804-source/nixos/\u001b[20;30Hests/fc\u001b[20;38Htx/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mfig\u001b[20;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfill\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mout\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtemplate\u001b[38;2;80;73;69m \u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[3.797919, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[3.828509, "o", "\u001b[3;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mf\u001b[3;35H42691\u001b[3;50H{\u001b[3;52Hlib,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m...\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m}:\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;235;219;178mlib.recurseIntoAttrs\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{\u001b[38;2;80;73;69m \u001b[5;11H\u001b[1m\u001b[38;2;235;219;178mj9alijkh-source/pkgs\u001b[5;32Htest/\u001b[38;2;251;73;52mconf\u001b[38;2;235;219;178mig.nix\u001b[5;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[39m \u001b[6;11H\u001b[38;2;235;219;178mf8\u001b[6;14H4-source/nix\u001b[6;27Hs/t\u001b[6;31Hsts/fcitx/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig\u001b[6;50H\u001b[38;2;80;73;69m \u001b[6;52H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhttps://g\u001b[6;64Hthub.com/NixOS/nixpkgs/\u001b[7;11H0\u001b[7;13Hl3-source/helix-core/src\u001b[7;38H\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[7;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178missu\u001b[7;59Hs/175196\u001b[38;2;80;73;69m \u001b[39m \u001b[8;11H\u001b[38;2;235;219;178m0d\u001b[8;14H3-sou\u001b[8;20Hce/helix-term/src\u001b[8;38H\u001b[1m\u001b[38;2;251"] +[3.828565, "o", ";73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[8;50H\u001b[38;2;80;73;69m \u001b[8;52H\u001b[38;2;235;219;178mallowPkg\u001b[8;61HInPermittedInse\u001b[8;77HurePackages\u001b[9;11Hcri4-source/helix-core/\u001b[9;35Hrc/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[9;50H\u001b[39m \u001b[9;52H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[10;11H\u001b[38;2;235;219;178mcri4-source/helix-term/src/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig\u001b[10;45Hrs\u001b[10;50H\u001b[38;2;80;73;69m \u001b[10;53H \u001b[38;2;235;219;178ml\u001b[10;56Ht\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpkgs\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mimport\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m../..\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178m804-source/pkgs\u001b[11;27Ht\u001b[11;29Hp-level/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.nix\u001b[11;51H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconfig\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{\u001b[38;2;80;73;69m \u001b[12;11H\u001b[38;2;235;219;178mjkh-so"] +[3.828601, "o", "urce/nixos/tests\u001b[12;34Hfcit\u001b[12;39H5/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig\u001b[12;50H\u001b[38;2;80;73;69m \u001b[12;52H \u001b[12;57H \u001b[12;62H\u001b[38;2;235;219;178mpermitt\u001b[12;70HdInsecurePackages\u001b[38;2;80;73;69m \u001b[13;11H\u001b[38;2;235;219;178mjkh-source/pkgs/top-level/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.nix\u001b[13;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[39m \u001b[14;11H\u001b[38;2;235;219;178mdl3-source/book/src\u001b[14;31H\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178miguration.md\u001b[14;50H\u001b[38;2;80;73;69m \u001b[14;52H \u001b[14;58H \u001b[38;2;235;219;178mtempAllow\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpkgs.authy\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"2.\u001b[15;11Hri4-source/book/src\u001b[15;31H\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178miguration.md\u001b[15;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m1.0\"\u001b[15;71H[\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"el\u001b[15;77Hctron-9.4.\u001b[39m \u001b[16;11H\u001b[38;2;235;219;178m04-source/pkgs/"] +[3.828635, "o", "games/gimx\u001b[16;40H\u001b[1m\u001b[38;2;251;73;52mf\u001b[22m\u001b[38;2;235;219;178m.patch\u001b[16;50H\u001b[39m \u001b[16;64H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m4\"\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m];\u001b[38;2;80;73;69m \u001b[17;11H\u001b[38;2;235;219;178mkh-source/pkgs/games/gimx\u001b[17;40H\u001b[1m\u001b[38;2;251;73;52mf\u001b[22m\u001b[38;2;235;219;178m.patch\u001b[17;50H\u001b[38;2;80;73;69m \u001b[17;52H \u001b[17;60H\u001b[38;2;235;219;178m};\u001b[38;2;80;73;69m \u001b[39m \u001b[18;12H\u001b[38;2;235;219;178m3-source/h\u001b[18;23Hlix-load\u001b[18;32Hr/\u001b[18;35Hrc/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[18;50H\u001b[38;2;80;73;69m \u001b[18;52H \u001b[38;2;235;219;178m};\u001b[38;2;80;73;69m \u001b[39m \u001b[19;11H\u001b[38;2;235;219;178mi4-source/helix-loader/src\u001b[19;38H\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[19;50H\u001b[38;2;80;73;69m \u001b[19;53H \u001b[19;56H \u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mA\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msimplificati\u001b[19;75Hn\u001b[19;77Hof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m`\u001b[39m \u001b[20;11H\u001b[3"] +[3.828666, "o", "8;2;235;219;178mh-source/nixos/modules/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig\u001b[20;41Hqt.n\u001b[20;46Hx\u001b[20;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtempAllow`\u001b[38;2;80;73;69m \u001b[20;72H\u001b[38;2;235;219;178mhat\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdoesn't\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[3.864259, "o", "\u001b[3;25H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[3.902936, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m92\u001b[3;42H8967\u001b[11;11H1n7n-source/helix-cor\u001b[11;33H/src/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[12;11H1n7n-source/helix-term\u001b[12;34Hsrc/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig.rs\u001b[13;11H804\u001b[14;11Hjkh\u001b[14;22Hnixos/tests/fcitx5/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178mig\u001b[15;11Hjkh\u001b[15;22Hpkgs\u001b[15;27Htop-level/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[15;42H\u001b[22m\u001b[38;2;235;219;178mg.nix\u001b[16;11Hdl3-source/book/src/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178miguration.md\u001b[17;11Hri4-source/book/src/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178miguration.md\u001b[18;11Hn7n-source/book/src/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178miguration\u001b[18;45Hmd\u001b[19;11H0\u001b[19;21Hpkgs/games/gimx/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178m.patch\u001b[20;11Hkh-source/pkg\u001b[20;26Hgames/gimx/\u001b[1m\u001b[38;2;251;73;52mconf\u001b[22m\u001b[38;2;235;219;178m.patch\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[3.939511, "o", "\u001b[3;12H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mi\u001b[3;36H1407\u001b[3;41H94133\u001b[5;41H\u001b[1m\u001b[38;2;251;73;52mi\u001b[6;45Hi\u001b[7;42Hi\u001b[8;42Hi\u001b[9;42Hi\u001b[10;42Hi\u001b[11;42Hi\u001b[12;42Hi\u001b[13;11H\u001b[22m\u001b[38;2;235;219;178ma\u001b[13;13Hbs-source/helix-cor\u001b[13;33H/src/\u001b[1m\u001b[38;2;251;73;52mconfi\u001b[22m\u001b[38;2;235;219;178mg.rs\u001b[14;11Ha0bs-source/helix-term\u001b[14;34Hsrc/\u001b[1m\u001b[38;2;251;73;52mconfi\u001b[22m\u001b[38;2;235;219;178mg.rs\u001b[15;11H804\u001b[15;41H\u001b[1m\u001b[38;2;251;73;52mi\u001b[16;11H\u001b[22m\u001b[38;2;235;219;178mjkh\u001b[16;22Hnixos/tests/fcitx5/\u001b[1m\u001b[38;2;251;73;52mconfi\u001b[22m\u001b[38;2;235;219;178mg\u001b[17;11Hjkh\u001b[17;22Hpkgs\u001b[17;27Htop-level/\u001b[1m\u001b[38;2;251;73;52mconfi\u001b[22m\u001b[38;2;235;219;178mg.nix\u001b[18;11Hdl3\u001b[18;35H\u001b[1m\u001b[38;2;251;73;52mi\u001b[19;11H\u001b[22m\u001b[38;2;235;219;178mri4-source/book/src/\u001b[1m\u001b[38;2;251;73;52mconfi\u001b[22m\u001b[38;2;235;219;178mguration.md\u001b[20;11Hn7n-source/book/src/\u001b[1m\u001b[38;2;251;73;52mconfi\u001b[22m\u001b[38;2;235;219;178mguration.md\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[3.943432, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m18\u001b[3;43H55\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[3.978029, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m36\u001b[3;43H680\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[4.012142, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;39H4\u001b[3;42H8321\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[4.019696, "o", "\u001b[3;13H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mg\u001b[3;25H\u001b[39m \u001b[38;2;235;219;178m6772/101658\u001b[5;42H\u001b[1m\u001b[38;2;251;73;52mg\u001b[6;46Hg\u001b[7;43Hg\u001b[8;43Hg\u001b[9;43Hg\u001b[10;43Hg\u001b[11;43Hg\u001b[12;43Hg\u001b[13;43Hg\u001b[14;43Hg\u001b[15;42Hg\u001b[16;46Hg\u001b[17;42Hg\u001b[18;36Hg\u001b[19;36Hg\u001b[20;36Hg\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.080312, "o", "\u001b[3;25H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.114792, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7010\u001b[3;42H6472\u001b[15;11Hzzvi-source/nixos/tests/fcitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[16;11H\u001b[22m\u001b[38;2;235;219;178m804\u001b[16;22Hpkgs/top-level/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[17;22Hnixos/tests/fcitx5/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[18;11H\u001b[22m\u001b[38;2;235;219;178mjkh\u001b[18;22Hpkgs\u001b[18;27Htop-level/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[19;11Hdl3\u001b[20;11Hri4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.148768, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m91\u001b[3;42H8683\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.183238, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m184\u001b[3;41H10865\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.217785, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2\u001b[3;38H2\u001b[3;42H3458\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.252176, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m397\u001b[3;42H5944\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.265584, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m450\u001b[3;42H8673\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.290099, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2\u001b[3;43H966\u001b[3;50H\u001b[38;2;189;174;147m{\u001b[3;52H\u001b[38;2;251;241;199m\u001b[4mlib\u001b[38;2;189;174;147m\u001b[24m,\u001b[3;57H...\u001b[3;61H}:\u001b[4;50H\u001b[3m\u001b[38;2;251;241;199mlib\u001b[23m\u001b[38;2;189;174;147m.\u001b[4;71H{\u001b[6;52H\u001b[3m\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mhttps://github.com/NixOS/nixpkgs/\u001b[7;54Hissues/175196\u001b[8;52H\u001b[23m\u001b[38;2;131;165;152mallowPkgsInPermittedInsecurePackages\u001b[9;55H\u001b[38;2;189;174;147m=\u001b[10;54H\u001b[38;2;251;73;52mlet\u001b[10;58H\u001b[38;2;131;165;152mpkgs\u001b[10;63H\u001b[38;2;189;174;147m=\u001b[10;65H\u001b[1m\u001b[38;2;235;219;178mimport\u001b[10;72H\u001b[22m\u001b[38;2;177;98;134m../..\u001b[10;78H\u001b[38;2;189;174;147m{\u001b[11;60H\u001b[38;2;131;165;152mconfig\u001b[11;67H\u001b[38;2;189;174;147m=\u001b[11;69H{\u001b[12;62H\u001b[38;2;131;165;152mpermittedInsecurePackages\u001b[13;64H\u001b[38;2;189;174;147m=\u001b[14;74H\u001b[3m\u001b[38;2;251;241;199mpkgs\u001b[23m\u001b[38;2;189;174;147m.\u001b[38;2;131;165;152mauthy\u001b[14;85H\u001b[38;2;184;187;38m\"2.\u001b[15;66H1.0\"\u001b[15;71H\u001b[38;2;189;174;147m[\u001b[15;73H\u001b[38;2;184;187;38m\"electron-9.4.\u001b[16;66H4\"\u001b[16;69H\u001b[38;2;189;174;147m];\u001b[17;60H};\u001b[18;58"] +[4.290182, "o", "H};\u001b[19;58H\u001b[3m\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mA\u001b[38;2;80;73;69m \u001b[38;2;146;131;116msimplification\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mof\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m`\u001b[20;60HtempAllow`\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mthat\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mdoesn't\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.300037, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m69\u001b[3;41H20228\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.334613, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m85\u001b[3;43H746\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.36919, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m502\u001b[3;42H2561\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.403807, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m17\u001b[3;42H4379\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.438365, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m73\u001b[3;42H6553\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.472999, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m621\u001b[3;42H886\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.507591, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m62\u001b[3;41H31217\u001b[6;11Hvsl3zzvi-source/pkgs/\u001b[6;33Hest/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[7;11Hf804\u001b[7;23Hnixos/tests/f\u001b[7;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[8;29H\u001b[22m\u001b[38;2;235;219;178mco\u001b[8;32He\u001b[9;11H0dl3\u001b[9;29Hte\u001b[9;32Hm\u001b[10;29Hco\u001b[10;32He\u001b[11;11Hcri4\u001b[11;29Hte\u001b[11;32Hm\u001b[12;29Hco\u001b[12;32He\u001b[13;11H1n7n\u001b[13;29Hte\u001b[13;32Hm\u001b[14;29Hco\u001b[14;32He\u001b[15;11Ha0bs\u001b[15;23Hhelix-\u001b[15;31Hrm/sr\u001b[15;37H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[16;11Hzzvi-source/nixos/tests/fcitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[17;11H\u001b[22m\u001b[38;2;235;219;178m804\u001b[17;22Hpkgs/top-level/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[18;22Hnixos/tests/fcitx5/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[19;11H\u001b[22m\u001b[38;2;235;219;178mjkh\u001b[19;22Hpkgs\u001b[19;27Htop-level/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[20;11Hdl3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.54226, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m706\u001b[3;42H3\u001b[3;45H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.576844, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m850\u001b[3;42H6658\u001b[17;11Hhym8-source/helix-cor\u001b[17;33H/src/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[18;11Hhym8-source/helix-term\u001b[18;34Hsrc/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[19;11H804\u001b[20;11Hjkh\u001b[20;22Hnixos/tests/fcitx5/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.611478, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m948\u001b[3;41H404\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.646111, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;42H26\u001b[3;45H1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.680655, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m80\u001b[3;38H5\u001b[3;42H4796\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.715304, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m18\u001b[3;42H7209\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.749941, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m313\u001b[3;42H995\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.784435, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m81\u001b[3;41H52631\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.819073, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m403\u001b[3;42H414\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.852721, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m37\u001b[3;42H59\u001b[3;45H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.887231, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m54\u001b[3;42H7706\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.921834, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m73\u001b[3;42H9532\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.956435, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m505\u001b[3;41H61\u001b[3;44H07\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[4.991101, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;42H3890\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.025671, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m618\u001b[3;42H6483\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.060323, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m39\u001b[3;42H8590\u001b[7;11H3\u001b[7;13Hqdajgf-source/pkgs/\u001b[7;33Hest/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[8;11Hf804\u001b[8;23Hnixos/tests/f\u001b[8;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[9;29H\u001b[22m\u001b[38;2;235;219;178mco\u001b[9;32He\u001b[10;11H0dl3\u001b[10;29Hte\u001b[10;32Hm\u001b[11;29Hco\u001b[11;32He\u001b[12;11Hcri4\u001b[12;29Hte\u001b[12;32Hm\u001b[13;29Hco\u001b[13;32He\u001b[14;11H1n7n\u001b[14;29Hte\u001b[14;32Hm\u001b[15;29Hco\u001b[15;32He\u001b[16;11Ha0bs\u001b[16;23Hhelix-\u001b[16;31Hrm/sr\u001b[16;37H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[17;11Hzzvi\u001b[17;23Hnixos/tests/f\u001b[17;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[18;29H\u001b[22m\u001b[38;2;235;219;178mco\u001b[18;32He\u001b[19;11Hhym8-source/helix-term/src/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[20;11H804\u001b[20;22Hpkgs/top-level/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.094961, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m62\u001b[3;41H70611\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.129578, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m833\u001b[3;42H4704\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.164219, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m921\u001b[3;42H7846\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.198803, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m73\u001b[3;42H99\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.233451, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m90\u001b[3;38H4\u001b[3;41H82162\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.268108, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m155\u001b[3;42H4485\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.30276, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;42H5338\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.337395, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m232\u001b[3;43H953\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.372038, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;42H6317\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H"] +[5.372124, "o", "\u001b[?25h\u001b[2 q"] +[5.406584, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m60\u001b[3;43H753\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.441252, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m84\u001b[3;42H7208\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.475821, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m300\u001b[3;43H544\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.510449, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H890\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.545118, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m16\u001b[3;42H8269\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.579687, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m27\u001b[3;43H741\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.614317, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m34\u001b[3;42H9135\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.64883, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m51\u001b[3;43H94\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.683496, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m66\u001b[3;41H90626\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.718018, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H9\u001b[3;45H1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.751642, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m71\u001b[3;42H1205\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.758433, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H473\u001b[3;50H{\u001b[3;52Hlib,\u001b[3;57H...\u001b[3;61H}:\u001b[4;50Hlib.\u001b[4;71H{\u001b[5;7H …j9alijkh-source/pkgs/test/\u001b[5;43H.nix\u001b[6;7H\u001b[1m > …vsl3zzvi-source/pkgs/test/\u001b[6;43H.nix\u001b[6;52H\u001b[22m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhttps://github.com/NixOS/nixpkgs/\u001b[7;54Hissues/175196\u001b[8;52HallowPkgsInPermittedInsecurePackages\u001b[9;55H=\u001b[10;54Hlet\u001b[10;58Hpkgs\u001b[10;63H=\u001b[10;65Himport\u001b[10;72H../..\u001b[10;78H{\u001b[11;60Hconfig\u001b[11;67H=\u001b[11;69H{\u001b[12;62HpermittedInsecurePackages\u001b[13;64H=\u001b[14;74Hpkgs.authy\u001b[14;85H\"2.\u001b[15;66H1.0\"\u001b[15;71H[\u001b[15;73H\"electron-9.4.\u001b[16;66H4\"\u001b[16;69H];\u001b[17;60H};\u001b[18;58H};\u001b[19;58H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mA\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msimplification\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m`\u001b[20;60HtempAllow`\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthat\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdoesn't\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.786014, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;43H521\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.82039, "o", "\u001b[3;43H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m735\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.854764, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;42H2028\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.889143, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H3\u001b[3;45H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.923505, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m90\u001b[3;43H617\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.926335, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H884\u001b[6;7H …vsl3zzvi-source/pkgs/test/\u001b[6;43H.nix\u001b[7;7H\u001b[1m > …38qdajgf-source/pkgs/test/\u001b[7;43H.nix\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.957895, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H906\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[5.992051, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m407\u001b[3;42H3161\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.02642, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H4\u001b[3;45H0\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.060819, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m15\u001b[3;43H744\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.07026, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;42H400\u001b[3;50H[Hotkey]\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;235;219;178mSwitchKey=Disabled\u001b[38;2;80;73;69m \u001b[39m \u001b[5;50H\u001b[38;2;235;219;178mIMSwitchHotkey=ALT_SHIFT\u001b[38;2;80;73;69m \u001b[6;50H\u001b[38;2;235;219;178mTimeIn\u001b[6;57Herval=240\u001b[38;2;80;73;69m \u001b[39m \u001b[7;7H\u001b[38;2;235;219;178m …38qdajgf-source/pkgs/test/\u001b[7;43H.nix\u001b[7;50H\u001b[38;2;80;73;69m \u001b[7;52H\u001b[39m \u001b[8;7H\u001b[1m\u001b[38;2;235;219;178m > …f804-source/nixos/tests/fcitx/\u001b[8;50H\u001b[22m[Program]\u001b[38;2;80;73;69m \u001b[39m \u001b[9;50H\u001b[38;2;235;219;178mDelayStart=5\u001b[38;2;80;73;69m \u001b[10;51H\u001b[39m \u001b[11;50H\u001b[38;2;235;219;178m[Output]\u001b[11;59H\u001b[39m \u001b[12;51H \u001b[13;50H\u001b[38;2;235;219;178m[Appearance]\u001b[38;2;80;73;69m \u001b[39m \u001b[14;51H \u001b[15;50H\u001b[38;2;80;73;69m \u001b[15;64H\u001b[39m \u001b[16;64H \u001b[17;50H \u001b[18;50H \u001b[19;50H "] +[6.070353, "o", " \u001b[20;58H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.095129, "o", "\u001b[3;44H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m76\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.130263, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H299\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.164637, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m20\u001b[3;43H611\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.19904, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;43H920\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.23341, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;42H5255\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.267732, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m30\u001b[3;43H543\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.302027, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;43H82\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.321359, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;42H6095\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.355766, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m40\u001b[3;43H242\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.390211, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2\u001b[3;43H51\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.424491, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H778\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.458853, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;42H7059\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.493131, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;43H331\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.527487, "o", "\u001b[3;43H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m609\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.561797, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m50\u001b[3;43H895\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.590359, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m65\u001b[3;42H8344\u001b[3;50H///\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSyntax\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconfiguration\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mloader\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbased\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mon\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbuilt-\u001b[4;62Hn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlanguages.toml.\u001b[38;2;80;73;69m \u001b[5;50H\u001b[38;2;235;219;178mpub\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdefault_syntax_loader()\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m->\u001b[38;2;80;73;69m \u001b[6;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcrate::syntax::Configuration\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{\u001b[38;2;80;73;69m \u001b[7;51H \u001b[38;2;235;219;178mhelix_loader::config::default_lang\u001b[8;7H …f804-source/nixos/tests/fcitx/\u001b[8;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m_config()\u001b[38;2;80;73;69m \u001b[9;7H\u001b[1m\u001b[38;2;235;219;178m > …0dl3-source/helix-cor"] +[6.590476, "o", "e/src/\u001b[9;44H.rs\u001b[9;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m.\u001b[9;60Hry_into()\u001b[38;2;80;73;69m \u001b[10;51H \u001b[38;2;235;219;178m.expect(\"Could\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnot\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mserialize\u001b[38;2;80;73;69m \u001b[11;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbuilt-in\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlanguages.toml\")\u001b[38;2;80;73;69m \u001b[12;50H\u001b[38;2;235;219;178m}\u001b[38;2;80;73;69m \u001b[13;50H\u001b[38;2;235;219;178m///\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSyntax\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconfiguration\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mloader\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbased\u001b[38;2;80;73;69m \u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mon\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muser\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconfigured\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlanguages.toml.\u001b[38;2;80;73;69m \u001b[15;50H\u001b[38;2;235;219;178mpub\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muser_syntax_loader()\u001b[38;2"] +[6.590541, "o", ";80;73;69m \u001b[38;2;235;219;178m->\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mResult<\u001b[16;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcrate::syntax::Configuration,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtoml::\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mde::Error>\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{\u001b[38;2;80;73;69m \u001b[18;50H \u001b[38;2;235;219;178mhelix_loader::config::user_lang_co\u001b[19;54H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnfig()?.try_into()\u001b[38;2;80;73;69m \u001b[20;50H\u001b[38;2;235;219;178m}\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.596458, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H632\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.631025, "o", "\u001b[3;44H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m94\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.665447, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m81\u001b[3;42H9069\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.69986, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m94\u001b[3;43H473\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.734242, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m502\u001b[3;43H88\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.768674, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;40H200245\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.803102, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m10\u001b[3;43H610\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.837216, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2\u001b[3;43H971\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.841296, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m20\u001b[3;42H1356\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.875693, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2\u001b[3;44H99\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.882968, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m33\u001b[3;43H785\u001b[3;50H\u001b[3m\u001b[38;2;146;131;116m///\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mSyntax\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mconfiguration\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mloader\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mbased\u001b[38;2;80;73;69m \u001b[4;52H\u001b[38;2;146;131;116mon\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mbuilt-in\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mlanguages.toml.\u001b[5;50H\u001b[23m\u001b[38;2;251;73;52mpub\u001b[5;54H\u001b[38;2;252;107;89mfn\u001b[5;78H\u001b[38;2;189;174;147m()\u001b[5;81H\u001b[38;2;131;165;152m->\u001b[6;52H\u001b[38;2;251;73;52mcrate\u001b[38;2;189;174;147m::\u001b[38;2;184;187;38msyntax\u001b[38;2;189;174;147m::\u001b[38;2;142;192;124mConfiguration\u001b[6;81H\u001b[38;2;189;174;147m{\u001b[7;54H\u001b[38;2;184;187;38mhelix_loader\u001b[38;2;189;174;147m::\u001b[38;2;184;187;38mconfig\u001b[38;2;189;174;147m::\u001b[8;63H()\u001b[9;58H.\u001b[9;67H()\u001b[10;58H.\u001b[10;65H(\u001b[38;2;184;187;38m\"Could\u001b[10;73Hnot\u001b[10;77Hserialize\u001b[11;60Hbuilt-in\u001b[11;69Hlanguages.toml\"\u001b[38;2;189;174;147m)\u001b[12;50H}\u001b[13;50H\u001b[3m\u001b[38;2;146;131;116m///\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mSyntax\u001b[38;2;80;7"] +[6.883038, "o", "3;69m \u001b[38;2;146;131;116mconfiguration\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mloader\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mbased\u001b[38;2;80;73;69m \u001b[14;52H\u001b[38;2;146;131;116mon\u001b[38;2;80;73;69m \u001b[38;2;146;131;116muser\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mconfigured\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mlanguages.toml.\u001b[15;50H\u001b[23m\u001b[38;2;251;73;52mpub\u001b[15;54H\u001b[38;2;252;107;89mfn\u001b[15;75H\u001b[38;2;189;174;147m()\u001b[15;78H\u001b[38;2;131;165;152m->\u001b[15;81H\u001b[38;2;142;192;124mResult\u001b[38;2;189;174;147m<\u001b[16;52H\u001b[38;2;251;73;52mcrate\u001b[38;2;189;174;147m::\u001b[38;2;184;187;38msyntax\u001b[38;2;189;174;147m::\u001b[38;2;142;192;124mConfiguration\u001b[38;2;189;174;147m,\u001b[16;82H\u001b[38;2;184;187;38mtoml\u001b[38;2;189;174;147m::\u001b[17;52H\u001b[38;2;184;187;38mde\u001b[38;2;189;174;147m::\u001b[38;2;142;192;124mError\u001b[38;2;189;174;147m>\u001b[17;63H{\u001b[18;54H\u001b[38;2;184;187;38mhelix_loader\u001b[38;2;189;174;147m::\u001b[38;2;184;187;38mconfig\u001b[38;2;189;174;147m::\u001b[19;60H()\u001b[1m\u001b[38;2;251;73;52m?\u001b[22m\u001b[38;2;189;174;147m.\u001b[19;72H()\u001b[20;50H}\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.910258, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H892\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.944772, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m42\u001b[3;42H2201\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[6.979342, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H580\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.013922, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m56\u001b[3;43H978\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.048408, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m77\u001b[3;42H3489\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.083012, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m84\u001b[3;43H9\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.117485, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m92\u001b[3;42H434\u001b[3;50H[Hotkey]\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;235;219;178mSwitchKey=Disabled\u001b[38;2;80;73;69m \u001b[39m \u001b[5;50H\u001b[38;2;235;219;178mIMSwitchHotkey=ALT_SHIFT\u001b[38;2;80;73;69m \u001b[39m \u001b[6;50H\u001b[38;2;235;219;178mTimeInterval=240\u001b[38;2;80;73;69m \u001b[39m \u001b[7;51H \u001b[8;11H\u001b[38;2;235;219;178mhrfrn1h7-source/pkgs/\u001b[8;33Hest/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[8;50H[Program]\u001b[38;2;80;73;69m \u001b[39m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178mf804\u001b[9;23Hnixos/tests/f\u001b[9;37Hitx/\u001b[38;2;251;73;52mconfig\u001b[9;50H\u001b[22m\u001b[38;2;235;219;178mDelayStar\u001b[9;60H=5\u001b[38;2;80;73;69m \u001b[39m \u001b[10;29H\u001b[38;2;235;219;178mco\u001b[10;32He\u001b[10;51H\u001b[39m \u001b[11;11H\u001b[38;2;235;219;178m0dl3\u001b[11;29Hte\u001b[11;32Hm\u001b[11;50H[Output]\u001b[38;2;80;73;69m \u001b[39m \u001b[12;29H\u001b[38;2;235;219;178mco\u001b[12;32He\u001b[12;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[13;11H\u001b[38;2;235;219;178mc"] +[7.117656, "o", "ri4\u001b[13;29Hte\u001b[13;32Hm\u001b[13;50H[Appearance]\u001b[38;2;80;73;69m \u001b[39m \u001b[14;29H\u001b[38;2;235;219;178mco\u001b[14;32He\u001b[14;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[15;11H\u001b[38;2;235;219;178m1n7n\u001b[15;29Hte\u001b[15;32Hm\u001b[15;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[16;29H\u001b[38;2;235;219;178mco\u001b[16;32He\u001b[16;50H\u001b[39m \u001b[17;11H\u001b[38;2;235;219;178ma0bs\u001b[17;23Hhelix-\u001b[17;31Hrm/sr\u001b[17;37H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[17;50H\u001b[39m \u001b[18;11H\u001b[38;2;235;219;178mzzvi\u001b[18;23Hnixos/tests/f\u001b[18;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[18;50H\u001b[22m\u001b[39m \u001b[19;29H\u001b[38;2;235;219;178mco\u001b[19;32He\u001b[19;54H\u001b[39m \u001b[20;11H\u001b[38;2;235;219;178mhym8-source/helix-term/src/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[20;50H\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.151814, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H732\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.186183, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;42H5055\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.220555, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H386\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.254924, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m604\u001b[3;43H729\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.289406, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;42H6057\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.323772, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m12\u001b[3;43H379\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.358206, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;43H712\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.392512, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m21\u001b[3;42H70\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.426912, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H352\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.461271, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m30\u001b[3;43H679\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.495641, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2\u001b[3;42H8017\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.529997, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;43H346\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.564369, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;43H687\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.59875, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;42H9019\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.633216, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m52\u001b[3;43H380\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.667636, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m64\u001b[3;41H102\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.702329, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.736951, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H87\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.772419, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m77\u001b[3;42H1027\u001b[3;50Hmode=drun\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;235;219;178mallow_images=tru\u001b[4;67H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;50H\u001b[38;2;235;219;178mimage_size=24\u001b[38;2;80;73;69m \u001b[39m \u001b[6;50H\u001b[38;2;235;219;178mterm=kitty\u001b[38;2;80;73;69m \u001b[39m \u001b[7;50H\u001b[38;2;235;219;178minsensitive=true\u001b[38;2;80;73;69m \u001b[8;50H\u001b[38;2;235;219;178mlocation=center\u001b[38;2;80;73;69m \u001b[9;12H\u001b[1m\u001b[38;2;235;219;178mcw\u001b[9;15H65iz-source/defaults/wofi\u001b[9;50H\u001b[22mno_\u001b[9;54Hctions\u001b[9;61Htrue\u001b[38;2;80;73;69m \u001b[10;11H\u001b[38;2;235;219;178mf804\u001b[10;23Hnixos/tests/f\u001b[10;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[10;50H\u001b[22m\u001b[38;2;235;219;178mprompt=Search\u001b[38;2;80;73;69m \u001b[11;29H\u001b[38;2;235;219;178mco\u001b[11;32He\u001b[11;50H\u001b[39m \u001b[12;11H\u001b[38;2;235;219;178m0dl3\u001b[12;29Hte\u001b[12;32Hm\u001b[12;50H\u001b[39m \u001b[13;29H\u001b[38;2;235;219;178mco\u001b[13;32He\u001b[13;50H\u001b[39m \u001b[14;11H\u001b[38;2;235;219;178mcri4\u001b[14;29Hte\u001b[14;32Hm\u001b[14;50H\u001b[39m \u001b[15;29H\u001b[38;2;235;219;178mco\u001b[15;32He\u001b[15;50H\u001b[39m \u001b[16;11H\u001b[38;2;235;219;178m1n7n\u001b[1"] +[7.772504, "o", "6;29Hte\u001b[16;32Hm\u001b[17;29Hco\u001b[17;32He\u001b[18;11Ha0bs\u001b[18;23Hhelix-\u001b[18;31Hrm/sr\u001b[18;37H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[19;11Hzzvi\u001b[19;23Hnixos/tests/f\u001b[19;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[20;29H\u001b[22m\u001b[38;2;235;219;178mco\u001b[20;32He\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.807848, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m744\u001b[3;42H2751\u001b[3;50Hdnl\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mProcess\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfile\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwith\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mautoconf\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mt\u001b[4;54H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mproduce\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconfigure\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mscript.\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-*-\u001b[5;11Hn7h6nmh7jvwmv\u001b[5;25Ha82rj-source/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[5;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAutoconf-*-\u001b[6;11Hnmh7jvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[6;44Hsrc\u001b[6;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[7;11H\u001b[38;2;235;219;178mmh7jvwmvca82\u001b[7;24Hj-source/\u001b[7;34Hr\u001b[7;36Hs/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[7;50Hd\u001b[7;52Hl\u001b[38;2;80;73;"] +[7.807955, "o", "69m \u001b[38;2;235;219;178m%CopyrightB\u001b[7;66Hgin%\u001b[38;2;80;73;69m \u001b[8;11H\u001b[38;2;235;219;178m7jvwmvca82rj-source/ert\u001b[8;35H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.h.\u001b[8;46Hn\u001b[8;50Hdnl\u001b[38;2;80;73;69m \u001b[39m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178mjv\u001b[9;14Hmvca82rj-sourc\u001b[9;29H/erts/\u001b[38;2;251;73;52mconfig\u001b[38;2;235;219;178mure.ac\u001b[9;50H\u001b[22mdnl\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mCopyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mEricsson\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAB\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m1997-2022.\u001b[38;2;80;73;69m \u001b[10;11H\u001b[38;2;235;219;178mj9alijkh-source/pkgs/\u001b[10;33Hest/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[10;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAll\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mRights\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mReserved.\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178mvs\u001b[11;15Hzzvi-source/pkgs/te\u001b[11;35Ht/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[11;50Hdnl\u001b[38;2;80;73;69m \u001b[12;11H\u001b[38;2;235;219;178m38qdajgf-source/pk"] +[7.807994, "o", "gs/te\u001b[12;35Ht/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[12;50Hdnl\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicensed\u001b[38;2;80;73;69m \u001b[38;2;235;219;178munder\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mApache\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense,\u001b[13;11Hh\u001b[13;13Hfrn1h7-source/pkgs/te\u001b[13;35Ht/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[13;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mVersion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2.0\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(the\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"License\");\u001b[38;2;80;73;69m \u001b[14;11H\u001b[38;2;235;219;178mfcw\u001b[14;15H65iz-source/default\u001b[14;35H/wofi/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[14;50H\u001b[22m\u001b[38;2;235;219;178mdnl\u001b[38;2;80;73;69m \u001b[38;2;235;219;178myou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmay\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnot\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muse\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfile\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mexcept\u001b[38"] +[7.808041, "o", ";2;80;73;69m \u001b[15;11H\u001b[38;2;235;219;178mf804\u001b[15;23Hnixos/tests/f\u001b[15;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[15;50H\u001b[22m\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcompliance\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwith\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense.\u001b[38;2;80;73;69m \u001b[16;11H\u001b[38;2;235;219;178m0dl3\u001b[16;29Hco\u001b[16;32He\u001b[16;50Hdnl\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mYou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmay\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mobtain\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopy\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[17;11H\u001b[38;2;235;219;178m0dl3\u001b[17;29Hte\u001b[17;32Hm\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mat\u001b[38;2;80;73;69m \u001b[18;11H\u001b[38;2;235;219;178mcri4\u001b[18;29Hco\u001b[18;32He\u001b[18;50Hdnl\u001b[38;2;80;73;69m \u001b[19;11H\u001b[38;2;235;219;178mcri4\u001b[19;23Hhelix-\u001b[19;31Hrm/s"] +[7.808079, "o", "r\u001b[19;37H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.rs\u001b[19;50Hdnl\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhttp://www.apache.org/\u001b[20;11H1n7n\u001b[20;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlicenses/LICENSE-2.0\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.842363, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m838\u001b[3;42H453\u001b[15;11Hmvca82rj-source/lib/crypto/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[16;11Ha82rj-source/lib/crypto/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[16;45Hac\u001b[17;11Hf804\u001b[17;23Hnixos/\u001b[17;31Hsts/f\u001b[17;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[18;11H\u001b[22m\u001b[38;2;235;219;178m0dl3\u001b[19;11H0dl3\u001b[20;11Hcri4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.876772, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m76\u001b[3;42H5899\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.91123, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;38H3\u001b[3;42H7104\u001b[16;11Hmvca82rj-source/lib/megaco/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[17;11Ha\u001b[17;13H2rj-source/lib/cryp\u001b[17;33Ho\u001b[17;35H\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure.ac\u001b[18;11Ha82rj-source/lib/megaco/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[18;45Hac\u001b[19;11Hf804\u001b[19;23Hnixos/\u001b[19;31Hsts/f\u001b[19;37Hitx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[20;11H\u001b[22m\u001b[38;2;235;219;178m0dl3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.945628, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(run\u001b[3;29Hing) 10004\u001b[3;42H8465\u001b[10;11Hvwmvca82rj-source/lib/odbc/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[11;11Hj9alijkh\u001b[12;11Hvsl3zzvi\u001b[13;11H38qdajgf\u001b[14;11Hhrfrn1h7\u001b[14;27Hpkgs/te\u001b[14;35Ht/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[15;11Hfcw465iz\u001b[15;27Hdefaults/wofi/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[16;31H\u001b[22m\u001b[38;2;235;219;178mcrypt\u001b[17;11Hmvca82rj-source/lib/megaco/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[18;11Hvca82rj-source/lib/odbc\u001b[19;11Ha\u001b[19;13H2rj-source/lib/cryp\u001b[19;33Ho\u001b[19;35H\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure.ac\u001b[20;11Ha82rj-source/lib/megaco/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[20;45Hac\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[7.980079, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m12\u001b[3;42H9004\u001b[11;11Hvwmvca82rj-source/lib/snmp/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[12;11Hj9alijkh\u001b[13;11Hvsl3zzvi\u001b[14;11H38qdajgf\u001b[15;11Hhrfrn1h7\u001b[15;27Hpkgs/te\u001b[15;35Ht/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[16;11Hfcw465iz\u001b[16;27Hdefaults/wofi/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[17;31H\u001b[22m\u001b[38;2;235;219;178mcrypt\u001b[18;11Hmvca82rj-source/lib/megaco/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[19;11Hvca82rj-source/lib/odbc\u001b[20;11Hvca82rj-source/lib/snmp\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.014494, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m50\u001b[3;41H2119\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.05038, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[3;37H\u001b[38;2;235;219;178m83\u001b[3;42H237\u001b[3;50H/*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconfig.h.in.\u001b[38;2;80;73;69m \u001b[3;67H\u001b[38;2;235;219;178mGen\u001b[3;71Hrated\u001b[3;77Hfrom\u001b[38;2;80;73;69m \u001b[39m \u001b[4;52H\u001b[38;2;235;219;178mc\u001b[4;54Hnfigure.ac\u001b[4;65Hby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mautoh\u001b[4;74Hade\u001b[4;78H.\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m*/\u001b[38;2;80;73;69m \u001b[39m \u001b[5;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[7;50H\u001b[38;2;235;219;178m#ifndef\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m__ERTS_CONFIG_H__\u001b[38;2;80;73;69m \u001b[8;11H\u001b[38;2;235;219;178mmh7jvwmvca82rj-sourc\u001b[8;32H/make/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[8;50H#define\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m__ERTS_CONFIG_H__\u001b[38;2;80;73;69m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178m7jvwmvca82rj-source/erts/\u001b[38;2;251;73;52mconfig\u001b[38;2;235;219;178m.h\u001b[9;45Hin\u001b[9;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[39m \u001b[10;11H\u001b[38;2;235;219;178m7jvwmvca82rj-source/lib/wx\u001b[10;50H#define\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mGH"] +[8.050441, "o", "BN_\u001b[10;64H_SOLARIS\u001b[10;73H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178mjvwmvca82rj-source/ert\u001b[11;34H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure.ac\u001b[11;50H#define\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mGHBN_R_AIX\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m3\u001b[38;2;80;73;69m \u001b[12;12H\u001b[38;2;235;219;178mvwmvca82rj-source/mak\u001b[12;34H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure.ac\u001b[12;50H#define\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mGHBN_R_GLIBC\u001b[38;2;80;73;69m \u001b[12;73H \u001b[38;2;235;219;178m4\u001b[38;2;80;73;69m \u001b[39m \u001b[13;12H\u001b[38;2;235;219;178mwmvca82rj-source/lib/odbc/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[13;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[14;11H\u001b[38;2;235;219;178mvwmvca82rj-source/lib/snmp/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure\u001b[14;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[15;11H\u001b[38;2;235;219;178mwmvca82rj-source/lib\u001b[15;32Hwx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178"] +[8.050493, "o", "m.mk.\u001b[15;46Hn\u001b[15;50H/*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDefine\u001b[38;2;80;73;69m \u001b[15;61H\u001b[38;2;235;219;178mf\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbuilding\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muniversal\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(\u001b[39m \u001b[16;11H\u001b[38;2;235;219;178mwmvca82rj-source/lib/wx/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178mure.ac\u001b[16;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178minternal\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhelper\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mm\u001b[16;70Hcr\u001b[16;73H)\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m*/\u001b[38;2;80;73;69m \u001b[39m \u001b[17;11H\u001b[38;2;235;219;178mj9alijkh\u001b[17;27Hpkgs/tes\u001b[17;36H/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[17;50H#undef\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAC_APPLE_UNIVERSAL_BUILD\u001b[38;2;80;73;69m \u001b[18;11H\u001b[38;2;235;219;178mvsl3zzvi\u001b[18;27Hpkgs/test/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[18;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[19;11H\u001b[38;2;235;219;178m38qdajgf-source/pkgs/test/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2"] +[8.050524, "o", ";235;219;178m.nix\u001b[19;50H/*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAssumed\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcache-line\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msize\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(in\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbytes)\u001b[38;2;80;73;69m \u001b[20;11H\u001b[38;2;235;219;178mhrfrn1h7-source/pkg\u001b[20;31H/test/\u001b[1m\u001b[38;2;251;73;52mconfig\u001b[22m\u001b[38;2;235;219;178m.nix\u001b[20;52H*/\u001b[38;2;80;73;69m \u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.086664, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.1211, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[3;38H\u001b[38;2;235;219;178m5\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.321543, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.355941, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m420\u001b[3;42H3623\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.391516, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[3;37H\u001b[38;2;235;219;178m4\u001b[3;43H791\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.485453, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.519804, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;42H4689\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.554307, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m64\u001b[3;43H858\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[8.589179, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[3;38H\u001b[38;2;235;219;178m7\u001b[3;42H5530\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25h\u001b[2 q"] +[10.066097, "o", "\u001b[3;13H\u001b[48;2;40;40;40m \u001b[3;24H\u001b[38;2;235;219;178m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[10.104928, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[38;2;235;219;178m1\u001b[3;35H481\u001b[5;43Hg\u001b[6;39Hg\u001b[7;43Hg\u001b[8;43Hg\u001b[9;41H\u001b[1mg\u001b[10;43H\u001b[22mg\u001b[11;40Hg\u001b[12;40Hg\u001b[13;43Hg\u001b[14;43Hg\u001b[15;40Hg\u001b[16;40Hg\u001b[17;42Hg\u001b[18;42Hg\u001b[19;42Hg\u001b[20;42Hg\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[10.265577, "o", "\u001b[3;12H\u001b[48;2;40;40;40m \u001b[3;23H\u001b[38;2;235;219;178m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[10.305934, "o", "\u001b[3;11H\u001b[48;2;40;40;40m \u001b[3;34H\u001b[38;2;235;219;178m200\u001b[3;38H9\u001b[5;42Hi\u001b[6;38Hi\u001b[7;42Hi\u001b[8;42Hi\u001b[9;40H\u001b[1mi\u001b[10;42H\u001b[22mi\u001b[11;39Hi\u001b[12;39Hi\u001b[13;42Hi\u001b[14;42Hi\u001b[15;39Hi\u001b[16;39Hi\u001b[17;41Hi\u001b[18;41Hi\u001b[19;41Hi\u001b[20;41Hi\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[10.309081, "o", "\u001b[3;23H\u001b[48;2;40;40;40m \u001b[3;34H\u001b[38;2;235;219;178m97657\u001b[3;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mHow\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontribut\u001b[3;69H\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[5;41H\u001b[38;2;235;219;178mf\u001b[5;50HNote:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontributing\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mimplies\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlicensing\u001b[38;2;80;73;69m \u001b[6;37H\u001b[38;2;235;219;178mf\u001b[6;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthose\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontributions\u001b[38;2;80;73;69m \u001b[7;41H\u001b[38;2;235;219;178mf\u001b[7;50Hunder\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mterms\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m[COPYING](COPYING),\u001b[8;41Hf\u001b[8;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwhich\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178man\u001b[38;2;80"] +[10.309158, "o", ";73;69m \u001b[38;2;235;219;178mMIT-like\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlicense.\u001b[38;2;80;73;69m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178mqyrjnk405f804-source/\u001b[38;2;251;73;52mCON\u001b[38;2;235;219;178mTRIBUTING\u001b[9;45Hmd\u001b[10;11H\u001b[22mqq0y8j9\u001b[10;19Hlijkh-source/\u001b[1m\u001b[38;2;251;73;52mCON\u001b[22m\u001b[38;2;235;219;178mTRIBUTING.md\u001b[10;51H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mOpening\u001b[38;2;80;73;69m \u001b[38;2;235;219;178missues\u001b[38;2;80;73;69m \u001b[39m \u001b[11;11H\u001b[38;2;235;219;178mv7kjpvsl3zzvi-sourc\u001b[11;31H/\u001b[1m\u001b[38;2;251;73;52mCON\u001b[22m\u001b[38;2;235;219;178mTRIBUTING\u001b[11;45Hmd\u001b[11;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[12;11H\u001b[38;2;235;219;178msf\u001b[12;14Hcw38qda\u001b[12;22Hgf-source/\u001b[1m\u001b[38;2;251;73;52mCON\u001b[22m\u001b[38;2;235;219;178mTRIBUTING\u001b[12;45Hmd\u001b[12;50H*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mMake\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msure\u001b[38;2;80;73;69m \u001b[38;2;235;219;178myou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhave\u001b[12;71Ha\u001b[12;73H[GitHub\u001b[38;2;80;73;69m \u001b[13;11H\u001b[38;2;235;219;178mjn7b4hrf\u001b[13;20Hn1h7-source/\u001b[1m\u001b[38;2;251;73;52mCON\u001b"] +[10.309211, "o", "[22m\u001b[38;2;235;219;178mTRIBUTING.md\u001b[13;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178maccount](https://github.com/signup/\u001b[14;11Hh7j\u001b[14;15Hwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mCON\u001b[22m\u001b[38;2;235;219;178mTRIBUTING.md\u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfree)\u001b[38;2;80;73;69m \u001b[15;11H\u001b[38;2;235;219;178m7j\u001b[15;14Hwmvca82rj-source/erts/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mfig.h\u001b[15;50H*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mMake\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msure\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthere\u001b[38;2;80;73;69m \u001b[15;69H\u001b[38;2;235;219;178ms\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mno\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mop\u001b[15;77Hn\u001b[38;2;80;73;69m \u001b[38;2;235;219;178missue\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mon\u001b[38;2;80;73;69m \u001b[16;11H\u001b[38;2;235;219;178m7j\u001b[16;14Hwmvca82rj-source/lib\u001b[16;35Hwx/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mfigure\u001b[16;52Hthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtopic\u001b[38;2;80;73;69m \u001b[39m \u001b[17;11H\u001b[38;2;235;219;178ma"] +[10.309261, "o", "dp8\u001b[17;16H6z0dl3-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib/hel\u001b[17;42Hx\u001b[17;44Hpng\u001b[17;50H*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m[Submit\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnew\u001b[38;2;80;73;69m \u001b[38;2;235;219;178missue](https://github.\u001b[18;11H90\u001b[18;14Hab29cri4-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib/hel\u001b[18;42Hx\u001b[18;44Hpng\u001b[18;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcom/NixOS/nixpkgs/issues/new/choose)\u001b[19;11Hfv2l9\u001b[19;17Hx1n7n-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib/hel\u001b[19;42Hx\u001b[19;44Hpng\u001b[19;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[19;53H\u001b[38;2;235;219;178mby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mchoosing\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mkind\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[19;77Htopic\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[39m \u001b[20;11H\u001b[38;2;235;219;178mrbphlyva0bs-source/\u001b[1m\u001b[38;2;251;73;52mcon\u001b[22m\u001b[38;2;235;219;178mtrib/hel\u001b[20;"] +[10.309286, "o", "42Hx\u001b[20;44Hpng\u001b[20;52Hfill\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mout\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mtemplate\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[10.345409, "o", "\u001b[3;10H\u001b[48;2;40;40;40m \u001b[3;23H\u001b[38;2;235;219;178m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[10.385809, "o", "\u001b[3;9H\u001b[48;2;40;40;40m \u001b[3;33H\u001b[38;2;235;219;178m21298\u001b[3;50HCopyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(c)\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2003-2023\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mEelco\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDolstra\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNixpkgs/NixOS\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcontributors\u001b[38;2;80;73;69m \u001b[5;11H\u001b[38;2;235;219;178m7l3a37wrqyrjnk405f804-source/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[5;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[6;11H\u001b[38;2;235;219;178mqp299d0aqq0y8j9alijkh-source/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[6;50HPermi\u001b[6;56Hsion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhereby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mgranted,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfree\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[7;11H\u001b[38;2;235;219;178m94c"] +[10.385924, "o", "vfmqdv7kjpvsl3zzvi-source/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[7;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcharge,\u001b[7;61Ho\u001b[38;2;80;73;69m \u001b[38;2;235;219;178many\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mperson\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mobtaining\u001b[38;2;80;73;69m \u001b[39m \u001b[8;11H\u001b[38;2;235;219;178m03vlpal4sfwcw38qdajgf-source/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[8;50Ha\u001b[8;52Hcopy\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[8;65Hsoftwar\u001b[8;74Hand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[8;80Hsociated\u001b[9;11H\u001b[1m4b0n2ak6jn7b\u001b[9;24Hhrfrn1h7-source/\u001b[38;2;251;73;52mCO\u001b[38;2;235;219;178mPYING\u001b[9;50H\u001b[22m\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdocumentation\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfiles\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(the\u001b[38;2;80;73;69m \u001b[10;11H\u001b[38;2;235;219;178mn7h6nmh7jvwmvca82\u001b[10;29Hj-source/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mnfigure\u001b[10;50H\"Software\"),\u001b[38;2;80;73;69m \u001b[38;2;235;219;"] +[10.385963, "o", "178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdeal\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSoftware\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178mwrqyrjnk405f804-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[11;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwithout\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrestriction,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mincluding\u001b[38;2;80;73;69m \u001b[12;11H\u001b[38;2;235;219;178m0aqq0y\u001b[12;18Hj9\u001b[12;21Hlijkh-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[12;50Hwithout\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlimitation\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[12;73Hrights\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muse,\u001b[38;2;80;73;69m \u001b[13;11H\u001b[38;2;235;219;178mqdv7kjpvsl3zzvi-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[13;52Hcopy,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmodify,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmer\u001b[13;70He,\u001b[38;2;"] +[10.386012, "o", "80;73;69m \u001b[38;2;235;219;178mpublish,\u001b[38;2;80;73;69m \u001b[39m \u001b[14;11H\u001b[38;2;235;219;178ml4sf\u001b[14;16Hcw38qda\u001b[14;24Hgf-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[14;50Hdistribute,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msublicense,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand/or\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msell\u001b[38;2;80;73;69m \u001b[15;11H\u001b[38;2;235;219;178mk6jn7b4hrf\u001b[15;22Hn1h7-source/nixos/\u001b[1m\u001b[38;2;251;73;52mCO\u001b[22m\u001b[38;2;235;219;178mPYING\u001b[15;50H\u001b[38;2;102;92;84m↪\u001b[15;52H\u001b[38;2;235;219;178mcopie\u001b[15;58H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[15;65H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSoftware,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[15;78Hd\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[39m \u001b[16;11H\u001b[38;2;235;219;178mnmh7j\u001b[16;17Hwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mnfigure.s\u001b[16;46Hc\u001b[16;50Hpermit\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpersons\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwhom\u001b[38;2;80;73;69m \u001b[38;2;235;219"] +[10.386049, "o", ";178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSoftware\u001b[38;2;80;73;69m \u001b[17;11H\u001b[38;2;235;219;178m4sfwcw38qdajgf-source/doc/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mmmon\u001b[17;44Hnix\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[17;52H\u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfurnished\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdo\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mso,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msubject\u001b[38;2;80;73;69m \u001b[17;84H\u001b[38;2;235;219;178mo\u001b[38;2;80;73;69m \u001b[39m \u001b[18;11H\u001b[38;2;235;219;178m6jn7\u001b[18;16H4hrfrn1h7-source/doc/\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mmmon\u001b[18;44Hnix\u001b[18;50Hthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfollowing\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcondit\u001b[18;71Hons:\u001b[38;2;80;73;69m \u001b[39m \u001b[19;11H\u001b[38;2;235;219;178mmh7jvwmvca82rj-source/e\u001b[19;35Hts\u001b[19;38H\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mnfigure\u001b[19;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[20;11H\u001b[38;2;235;219;178mmh7jvwmvca82rj-source/make\u001b[20"] +[10.386064, "o", ";38H\u001b[1m\u001b[38;2;251;73;52mco\u001b[22m\u001b[38;2;235;219;178mnfigure\u001b[20;50HThe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mabove\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnotice\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[10.388377, "o", "\u001b[3;23H\u001b[48;2;40;40;40m \u001b[3;34H\u001b[38;2;235;219;178m23112\u001b[3;50H\u001b[39m \u001b[4;50H \u001b[5;12H\u001b[38;2;235;219;178mz4yxhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhfn\u001b[5;50H\u001b[39m \u001b[6;11H\u001b[38;2;235;219;178m7z4yxhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhsh\u001b[6;50H\u001b[39m \u001b[7;11H\u001b[38;2;235;219;178m0lydxfdy2gg2ndw-perl-5.38.0/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mpan\u001b[7;50H\u001b[39m \u001b[8;11H\u001b[38;2;235;219;178mz4yxhhgw45d72h-sh\u001b[8;29Hdow\u001b[8;33H4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhage\u001b[8;50H\u001b[39m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178mjwb54i4s0j9xna-libjxl\u001b[9;33H0.7.0/bin/\u001b[38;2;251;73;52mc\u001b[38;2;235;219;178mjxl\u001b[9;50H\u001b[22m\u001b[39m \u001b[10;11H\u001b[38;2;235;219;178m9ba56pfqy2d0-s\u001b[10;26Hmba-4.17.7/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[10;43H\u001b[22m\u001b[38;2;235;219;"] +[10.388435, "o", "178mfsdd\u001b[10;50H\u001b[39m \u001b[11;11H\u001b[38;2;235;219;178mxhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhpasswd\u001b[11;50H\u001b[39m \u001b[12;11H\u001b[38;2;235;219;178mxfdy2gg2ndw-perl-5.38.0/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178morelist\u001b[12;50H\u001b[39m \u001b[38;2;235;219;178m\u001b[39m \u001b[13;11H\u001b[38;2;235;219;178mhhgw45d72h-shadow-4.13\u001b[13;34Hb\u001b[13;36Hn/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhgpasswd\u001b[13;50H\u001b[39m \u001b[14;11H\u001b[38;2;235;219;178mi\u001b[14;14H0j9xna-libjxl-0.7.0\u001b[14;34Hb\u001b[14;36Hn/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mjpeg_hdr\u001b[14;50H\u001b[39m \u001b[15;11H\u001b[38;2;235;219;178m52i0q7-libkrb5-1.20.1/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mompile_et\u001b[15;50H\u001b[39m \u001b[16;11H\u001b[38;2;235;219;178mp8zjvg-libkrb5-1.20.1/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mompile_et\u001b[16;50H\u001b[39m "] +[10.38847, "o", " \u001b[17;11H\u001b[38;2;235;219;178mnizv3-openssl-3.0.8-bin/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178m_rehash\u001b[17;50H\u001b[39m \u001b[18;11H\u001b[38;2;235;219;178md0-samba-4.\u001b[18;23H7.7/lib/samba\u001b[18;37Hvfs/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178map.so\u001b[18;50H\u001b[39m \u001b[19;11H\u001b[38;2;235;219;178m-syste\u001b[19;18H-p\u001b[19;21Hth/share/mim\u001b[19;34H/\u001b[19;36Hext/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mss.xml\u001b[19;50H\u001b[39m \u001b[20;11H\u001b[38;2;235;219;178m-syste\u001b[20;18H-p\u001b[20;21Hth/share/mime/t\u001b[20;37Hxt/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178msv.xml\u001b[20;50H\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[10.415833, "o", "\u001b[3;8H\u001b[48;2;40;40;40m \u001b[3;35H\u001b[38;2;235;219;178m5530\u001b[3;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibgcrypt.la\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibtool\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibrary\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfile\u001b[38;2;80;73;69m \u001b[5;11H\u001b[38;2;235;219;178m-cargo-package-smartstring-1.0.1.drv\u001b[5;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mGenerated\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibtool\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(GNU\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibtool)\u001b[38;2;80;73;69m \u001b[6;11H\u001b[38;2;235;219;178m3cgd1d14fd3vwvk8xrx8-audit-2.8.5.drv\u001b[6;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2.4.2\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDebian-2.4.2-1\u001b[38;2;80;73;69m \u001b[7;12H\u001b[38;2;235;219;178m37c1wx9b-automak\u001b[7;29H-1.16.5\u001b[7;37Htar.xz.drv\u001b[7;50H#\u001b[38;2;80;73;69m \u001b[8;11H\u001b[38;2;235;219;178m-ni\u001b[8;15H-persist-\u001b[8;25Home-michae"] +[10.415869, "o", "l-cache-nix-\u001b[8;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mPlease\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDO\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNOT\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdelete\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfile!\u001b[38;2;80;73;69m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178mhl9-l\u001b[9;17Hbgcrypt-1.9.4/\u001b[9;32Hib/libgcrypt.la\u001b[9;50H\u001b[22m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mIt\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnecessary\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfor\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlinking\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[10;11H\u001b[38;2;235;219;178mgcrypt-1.9.4/lib/libgcrypt.so.20.3.4\u001b[10;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibrary.\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178mcqfqhsnk50-ansi-styles-4.3.0.tgz.drv\u001b[11;50H\u001b[38;2;80;73;69m \u001b[12;11H\u001b[38;2;235;219;178mlq57538n906jj7222-readline63-008.drv\u001b[12;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mThe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mname\u001b["] +[10.415908, "o", "38;2;80;73;69m \u001b[38;2;235;219;178mthat\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcan\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdlopen(3).\u001b[38;2;80;73;69m \u001b[13;11H\u001b[38;2;235;219;178mwx42jshc38djdr53-make-4.4.tar.gz.drv\u001b[13;50Hdlname='libgcrypt.so.20'\u001b[38;2;80;73;69m \u001b[14;11H\u001b[38;2;235;219;178m3i-perl5.34.0-Encode-Locale-1.05.drv\u001b[14;50H\u001b[38;2;80;73;69m \u001b[15;11H\u001b[38;2;235;219;178mrl5/site_pe\u001b[15;23Hl/5.38.0/File\u001b[15;37HBaseDir.pm\u001b[15;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNames\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibrary.\u001b[38;2;80;73;69m \u001b[16;11H\u001b[38;2;235;219;178m5/site_perl/5.38\u001b[16;28H0/File/IconThem\u001b[16;44H.pm\u001b[16;50Hlibrary_names='libgcrypt.so.20.3.4\u001b[38;2;80;73;69m \u001b[17;11H\u001b[38;2;235;219;178ml5/site_perl/5.38\u001b[17;29H0/F\u001b[17;33Hle/UserDirs.pm\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibgcrypt.so.20\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlibgcrypt.so'\u001b[38;2;80;73;69m \u001b[18;11H\u001b[38;2;235;219"] +[10.415934, "o", ";178m/nix-support/propagated-build-in\u001b[18;44Huts\u001b[18;50H\u001b[38;2;80;73;69m \u001b[19;11H\u001b[38;2;235;219;178mgib7pdlf-hook/nix-suppor\u001b[19;36H/setup-hook\u001b[19;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mThe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mname\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mstatic\u001b[38;2;80;73;69m \u001b[38;2;235;219;178marchive.\u001b[38;2;80;73;69m \u001b[20;11H\u001b[38;2;235;219;178mi\u001b[20;13Hdzv22nddafh-lz4-java-1.4.1.pom\u001b[20;44Hdrv\u001b[20;50Hold_library=''\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[10.455141, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[10.495184, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[10.584254, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mm\u001b[3;23H(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[10.623654, "o", "\u001b[3;23H\u001b[48;2;40;40;40m \u001b[38;2;235;219;178m19\u001b[3;36H105\u001b[3;50H/*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mSome\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfunctions\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfor\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmanipulating\u001b[4;52Hmeta\u001b[4;57Hattributes,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mas\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwell\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mas\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[5;11H\u001b[38;2;235;219;178m7wrqyrjnk405f804-source/doc/\u001b[1m\u001b[38;2;251;73;52mM\u001b[22m\u001b[38;2;235;219;178makefile\u001b[5;50H\u001b[38;2;80;73;69m \u001b[5;52H \u001b[38;2;235;219;178mname\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mattribute.\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m*/\u001b[38;2;80;73;69m \u001b[39m \u001b[6;11H\u001b[38;2;235;219;178m7wrqyrjnk405f804-source/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta\u001b[6;44Hnix\u001b[6;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[7;11H\u001b[38;2;235;219;178md0aqq0y8j9\u001b[7;22Hlijkh-source/doc/\u001b[1m\u001b[38;2;251;73;52mM\u001b[22m\u001b[38;2;235;219;178makefile\u001b[7;50H{\u001b[7;52Hlib"] +[10.623725, "o", "\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m}:\u001b[38;2;80;73;69m \u001b[8;11H\u001b[38;2;235;219;178md0aqq0y8j9alijkh-source/\u001b[8;36Hib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta.nix\u001b[8;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178ma\u001b[9;13H4sfwcw38qdajgf-source\u001b[9;38H/\u001b[38;2;251;73;52mm\u001b[38;2;235;219;178meta.nix\u001b[9;50H\u001b[22mrec\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{\u001b[38;2;80;73;69m \u001b[39m \u001b[10;11H\u001b[38;2;235;219;178mak6jn7b4hrfrn1h7-sour\u001b[10;33He/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta\u001b[10;44Hnix\u001b[10;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[11;11H\u001b[38;2;235;219;178mr\u001b[11;13Hyrjnk405f804-sourc\u001b[11;32H/doc/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178manual\u001b[11;44Hxml\u001b[12;11Hr\u001b[12;13Hyrjnk405f804-sou\u001b[12;30Hce/\u001b[12;35Hb/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178minver\u001b[12;44Hnix\u001b[12;50H\u001b[38;2;80;73;69m \u001b[12;52H\u001b[38;2;235;219;178m/*\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAdd\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mor\u001b[38;"] +[10.623766, "o", "2;80;73;69m \u001b[38;2;235;219;178mov\u001b[12;68Hrride\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmeta\u001b[38;2;80;73;69m \u001b[39m \u001b[13;11H\u001b[38;2;235;219;178maqq0y8j9ali\u001b[13;23Hkh-sourc\u001b[13;32H/doc/\u001b[1m\u001b[38;2;251;73;52mm\u001b[13;39H\u001b[22m\u001b[38;2;235;219;178mnual\u001b[13;44Hxml\u001b[13;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mattributes\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mgiven\u001b[38;2;80;73;69m \u001b[14;11H\u001b[38;2;235;219;178maqq0y8j9alijkh-source/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178minver\u001b[14;44Hnix\u001b[14;51H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mderivation.\u001b[38;2;80;73;69m \u001b[15;11H\u001b[38;2;235;219;178m4sfwcw38qdajgf-source/lib\u001b[15;37H\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178minver.nix\u001b[15;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[16;11H\u001b[38;2;235;219;178m6jn7b4hrf\u001b[16;21Hn1h7-source/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178minv\u001b[16;42Hr.nix\u001b[16;50H\u001b[38;2;80;73;69m \u001b[38;2;235;219"] +[10.623803, "o", ";178mExampl\u001b[16;62H:\u001b[38;2;80;73;69m \u001b[39m \u001b[17;11H\u001b[38;2;235;219;178mqyrjnk405f804-source/lib\u001b[17;36H\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178modules.nix\u001b[17;50H\u001b[38;2;80;73;69m \u001b[17;52H \u001b[38;2;235;219;178maddMetaAttrs\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m{description\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"\u001b[18;11Hqq0y8j9alijkh-s\u001b[18;27Hurce/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178modules.nix\u001b[18;50H\u001b[39m \u001b[18;57H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mBla\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mblah\";}\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msomePkg\u001b[38;2;80;73;69m \u001b[19;11H\u001b[38;2;235;219;178msfwcw38qdajgf-source/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178modules.nix\u001b[19;50H\u001b[38;2;80;73;69m \u001b[19;52H\u001b[38;2;235;219;178m*/\u001b[38;2;80;73;69m \u001b[39m \u001b[20;11H\u001b[38;2;235;219;178mjn7b4hrfrn1h7\u001b[20;25Hsource/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178modules\u001b[20;44Hnix\u001b[20;50H\u001b[38;2;80;73;69m \u001b[38;2;235;219"] +[10.623838, "o", ";178maddMet\u001b[20;59HAttrs\u001b[20;65H=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnewAttrs:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdrv:\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[10.640342, "o", "\u001b[3;9H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40ma\u001b[3;23H(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[10.676103, "o", "\u001b[3;23H\u001b[48;2;40;40;40m \u001b[3;34H\u001b[38;2;235;219;178m78839\u001b[3;50HMD_TARGETS=$(add\u001b[3;67Hu\u001b[3;69Hfix\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m.xml,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(\u001b[39m \u001b[4;52H\u001b[38;2;235;219;178mbasen\u001b[4;58Hme\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(sh\u001b[4;66Hll\u001b[4;69Hfind\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m.\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-type\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mf\u001b[4;84H-\u001b[5;11Hh6nmh7\u001b[5;18Hvwmvca\u001b[5;25H2rj-source/\u001b[1m\u001b[38;2;251;73;52mMa\u001b[22m\u001b[38;2;235;219;178mkefile.in\u001b[5;50H\u001b[38;2;102;92;84m↪\u001b[5;52H\u001b[38;2;235;219;178mregex\u001b[5;58H'.*\\.md$$'\u001b[5;69H-not\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-name\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mREADME.\u001b[6;11Hh6nmh7\u001b[6;18Hvwmvca\u001b[6;25H2rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/doc.mk\u001b[6;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmd)))\u001b[38;2;80;73;69m \u001b[7;11H\u001b[38;2;235;219;178m7wr\u001b[7;15Hyrjnk405f804\u001b[7;40H\u001b[1m\u001b[38;2;251;73;52ma\u001b[7;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[39m \u001b[8;35H\u001b[38;2;235;219;178mdoc\u001b[8;"] +[10.676145, "o", "39H\u001b[1m\u001b[38;2;251;73;52mMa\u001b[22m\u001b[38;2;235;219;178mkefile\u001b[8;50HPANDOC\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m?=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpandoc\u001b[38;2;80;73;69m \u001b[9;11H\u001b[1m\u001b[38;2;235;219;178mmqdv7kjpvsl3zzvi\u001b[9;35Hdoc\u001b[9;39H\u001b[38;2;251;73;52mMa\u001b[38;2;235;219;178mkefile\u001b[9;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[39m \u001b[10;11H\u001b[38;2;235;219;178m6nmh7jvwmvca82rj\u001b[10;39H\u001b[1m\u001b[38;2;251;73;52mMa\u001b[22m\u001b[38;2;235;219;178mkefile\u001b[10;50Hpandoc_media_dir\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmedia\u001b[38;2;80;73;69m \u001b[11;11H\u001b[38;2;235;219;178m6nmh7jvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/f\u001b[11;42Hkefop\u001b[11;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNOTE:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mKeep\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msync\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwith\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNixOS\u001b[38;2;80;73;69m \u001b[12;11H\u001b[38;2;235;219;178mnmh7\u001b[12;16Hvwmvca\u001b[12;23H2rj-source/erts/\u001b[1m\u001b[38;2;251;73;52mMa\u001b[22m\u001b[38;2;235;"] +[10.676182, "o", "219;178mkefile\u001b[12;50H\u001b[38;2;102;92;84m↪\u001b[12;52H\u001b[38;2;235;219;178mmanual\u001b[12;59H(/nixos/doc/manual/\u001b[12;79Hd-to-db.\u001b[13;11Hr\u001b[13;13Hyrjnk405f804\u001b[13;38H\u001b[1m\u001b[38;2;251;73;52ma\u001b[13;50H\u001b[22m\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msh)\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconversion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mscript\u001b[13;78H(/\u001b[14;33Hdoc\u001b[14;38H\u001b[1m\u001b[38;2;251;73;52ma\u001b[14;40H\u001b[22m\u001b[38;2;235;219;178mual\u001b[14;44Hxml\u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[14;52H\u001b[38;2;235;219;178mmainta\u001b[14;59Hners/scripts/db-to-md.sh).\u001b[38;2;80;73;69m \u001b[15;12H\u001b[38;2;235;219;178mhksgc7aw\u001b[15;21H33cg\u001b[15;26Hprofile/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mnifest.json\u001b[15;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mTODO:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mRemove\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mraw-attribute\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwhen\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwe\u001b[38;2;80;73;69m \u001b[16;11H\u001b[38;2;235;219;178mdv7kjpvsl3zzvi\u001b[16;33Hdoc\u001b[16;38H\u001b[1m\u001b[38;2;251;73;52ma"] +[10.676219, "o", "\u001b[16;40H\u001b[22m\u001b[38;2;235;219;178mual\u001b[16;44Hxml\u001b[16;50H\u001b[38;2;102;92;84m↪\u001b[16;52H\u001b[38;2;235;219;178mcan\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mget\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrid\u001b[16;64Hof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDocBook\u001b[38;2;80;73;69m \u001b[38;2;235;219;178maltogether.\u001b[38;2;80;73;69m \u001b[17;11H\u001b[38;2;235;219;178mmh7\u001b[17;15Hvwmvca\u001b[17;22H2rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/configure\u001b[17;50Hpandoc_commonmark_enabled_ex\u001b[17;79Hensions\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[18;11Hmh7jvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/otp.mk.\u001b[18;46Hn\u001b[18;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m+attributes+fenced_divs+footnotes+\u001b[19;11Hmh7jvwmvc\u001b[19;21H82rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/sav\u001b[19;42H_args\u001b[19;50H\u001b[38;2;102;92;84m↪\u001b[19;52H\u001b[38;2;235;219;178mbracketed_spans+definition_lists+\u001b[20;11Hmh\u001b[20;14Hjvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/target.mk\u001b[20;50H\u001b[38;2;102;92;84m↪\u001b[20;"] +[10.676253, "o", "52H\u001b[38;2;235;219;178mpipe_\u001b[20;59Hbles+raw_attribute\u001b[38;2;80;73;69m \u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[10.711941, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mk\u001b[3;33H\u001b[39m \u001b[38;2;235;219;178m36094\u001b[5;38H\u001b[1m\u001b[38;2;251;73;52mk\u001b[6;38Hk\u001b[7;41Hk\u001b[8;41Hk\u001b[9;41Hk\u001b[10;41Hk\u001b[11;37Hk\u001b[12;41Hk\u001b[13;11H\u001b[22m\u001b[38;2;235;219;178mmh7jvwmvca82rj\u001b[13;33H\u001b[1m\u001b[38;2;251;73;52mmak\u001b[22m\u001b[38;2;235;219;178me/configure\u001b[14;11Hmh7jvwmvca82rj\u001b[14;33H\u001b[1m\u001b[38;2;251;73;52mmak\u001b[22m\u001b[38;2;235;219;178me/otp.mk.in\u001b[15;11Hm\u001b[15;13H7jvwmvca82rj\u001b[15;26Hsource/\u001b[1m\u001b[38;2;251;73;52mmak\u001b[22m\u001b[38;2;235;219;178me/save_args\u001b[16;11Hmh\u001b[16;14Hjvwmvca82rj\u001b[16;33H\u001b[1m\u001b[38;2;251;73;52mmak\u001b[22m\u001b[38;2;235;219;178me/target.\u001b[16;46Hk\u001b[17;11Hywaazivcwhc4m-gnumak\u001b[17;32H-4.4.1/bin/\u001b[1m\u001b[38;2;251;73;52mmak\u001b[18;11H\u001b[22m\u001b[38;2;235;219;178mh7jvwmvca82rj-source/lib/\u001b[18;37Ht/\u001b[1m\u001b[38;2;251;73;52mMak\u001b[22m\u001b[38;2;235;219;178mefile\u001b[19;11Hh7jvwmvca82rj-source/lib/wx/\u001b[1m\u001b[38;2;251;73;52mMak\u001b[22m\u001b[38;2;235;219;178mefile\u001b[20;11H7jvwmvca82rj-source/lib/ftp/\u001b[1m\u001b[38;2;251;73;52mMak\u001b[20;43H\u001b[22m\u001b[38;2;235;219;178mfile\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[10.715451, "o", "\u001b[3;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40me\u001b[3;35H0215\u001b[5;39H\u001b[1m\u001b[38;2;251;73;52me\u001b[6;39He\u001b[7;42He\u001b[8;42He\u001b[9;42He\u001b[10;42He\u001b[11;38He\u001b[12;42He\u001b[13;36He\u001b[14;36He\u001b[15;36He\u001b[16;36He\u001b[17;46He\u001b[18;42He\u001b[19;42He\u001b[20;42He\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[10.96271, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[10.978909, "o", "\u001b[3;50H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mMD_TARGETS\u001b[23m\u001b[38;2;131;165;152m=\u001b[38;2;177;98;134m$\u001b[38;2;189;174;147m(\u001b[38;2;252;107;89maddsuffix\u001b[3;73H\u001b[38;2;184;187;38m.xml,\u001b[3;79H\u001b[38;2;177;98;134m$\u001b[38;2;189;174;147m(\u001b[4;52H\u001b[38;2;252;107;89mbasename\u001b[4;61H\u001b[38;2;177;98;134m$\u001b[38;2;189;174;147m(\u001b[38;2;252;107;89mshell\u001b[4;69H\u001b[38;2;184;187;38mfind\u001b[4;74H.\u001b[4;76H-type\u001b[4;82Hf\u001b[4;84H-\u001b[5;52Hregex\u001b[5;58H'.*\\.md$$'\u001b[5;69H-not\u001b[5;74H-name\u001b[5;80HREADME.\u001b[6;52Hmd\u001b[38;2;189;174;147m)))\u001b[8;50H\u001b[3m\u001b[38;2;251;241;199mPANDOC\u001b[8;57H\u001b[23m\u001b[38;2;131;165;152m?=\u001b[8;60H\u001b[38;2;184;187;38mpandoc\u001b[10;50H\u001b[3m\u001b[38;2;251;241;199mpandoc_media_dir\u001b[10;67H\u001b[23m\u001b[38;2;131;165;152m=\u001b[10;69H\u001b[38;2;184;187;38mmedia\u001b[11;50H\u001b[3m\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;142;192;124mNOTE\u001b[38;2;189;174;147m:\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mKeep\u001b[38;2;80;73;69m \u001b[38;2;146;131;116min\u001b[38;2;80;73;69m \u001b[38;2;146;131;116msync\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mwith\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mNixOS\u001b[38;2;80;73;69m \u001b[12;52H\u001b[38;2;146"] +[10.978935, "o", ";131;116mmanual\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m(/nixos/doc/manual/md-to-db.\u001b[13;52Hsh)\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mand\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mconversion\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mscript\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m(/\u001b[14;52Hmaintainers/scripts/db-to-md.sh).\u001b[15;50H#\u001b[38;2;80;73;69m \u001b[38;2;142;192;124mTODO\u001b[38;2;189;174;147m:\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mRemove\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mraw-attribute\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mwhen\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mwe\u001b[38;2;80;73;69m \u001b[16;52H\u001b[38;2;146;131;116mcan\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mget\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mrid\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mof\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mDocBook\u001b[38;2;80;73;69m \u001b[38;2;146;131;116maltogether.\u001b[17;50H\u001b[38;2;251;241;199mpandoc_commonmark_enabled_extensions\u001b[17;87H\u001b[23m\u001b[38;2;131;165;152m=\u001b[18;53H\u001b[38;2;184;187;38m+attributes+fenced_divs+footnotes+\u001b[19;52Hbracketed_spans+definition_lists+\u001b[20;52Hpipe_tables+raw_attribute\u001b[59m\u001b["] +[10.979006, "o", "39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.059625, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.094297, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m357\u001b[3;42H7416\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.128958, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m423\u001b[3;42H92\u001b[3;45H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.163622, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;43H559\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.198291, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m32\u001b[3;43H878\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.232898, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m521\u001b[3;41H30323\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.267545, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m46\u001b[3;43H710\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.302404, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m61\u001b[3;42H12\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.337005, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m99\u001b[3;43H54\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.371566, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m632\u001b[3;43H871\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.40608, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m63\u001b[3;42H21\u001b[3;45H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.439732, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H53\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.474371, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H871\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.508994, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m713\u001b[3;42H3210\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.543665, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m27\u001b[3;43H565\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.578271, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m34\u001b[3;43H872\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.612887, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m53\u001b[3;42H4221\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.647497, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m88\u001b[3;43H544\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.682106, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m804\u001b[3;43H917\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.715794, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m35\u001b[3;42H5331\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.750431, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m951\u001b[3;43H856\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.785055, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m89\u001b[3;42H6121\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.818722, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m1007\u001b[3;43H417\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.853339, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m39\u001b[3;43H7\u001b[3;45H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.888016, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m71\u001b[3;42H7053\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.922566, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m1\u001b[3;43H518\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.957239, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m209\u001b[3;42H8221\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[11.991855, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m48\u001b[3;43H710\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.026491, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m339\u001b[3;42H9301\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.061044, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m78\u001b[3;43H656\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.095669, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m433\u001b[3;41H40099\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.130227, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m610\u001b[3;43H54\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.164843, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m43\u001b[3;43H876\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.199513, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m65\u001b[3;42H1209\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.234076, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m707\u001b[3;43H556\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.267694, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m79\u001b[3;42H2048\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.272462, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m806\u001b[3;43H367\u001b[3;50HMD_TARGETS=$(addsuffix\u001b[3;73H.xml,\u001b[3;79H$(\u001b[4;52Hbasename\u001b[4;61H$(shell\u001b[4;69Hfind\u001b[4;74H.\u001b[4;76H-type\u001b[4;82Hf\u001b[4;84H-\u001b[5;52Hregex\u001b[5;58H'.*\\.md$$'\u001b[5;69H-not\u001b[5;74H-name\u001b[5;80HREADME.\u001b[6;52Hmd)))\u001b[8;7H\u001b[1m > …d0aqq0y8j9alijkh-source/doc/\u001b[8;43Hfile\u001b[8;50H\u001b[22mPANDOC\u001b[8;57H?=\u001b[8;60Hpandoc\u001b[9;7H …mqdv7kjpvsl3zzvi-source/doc/\u001b[9;43Hfile\u001b[10;50Hpandoc_media_dir\u001b[10;67H=\u001b[10;69Hmedia\u001b[11;50H#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mNOTE:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mKeep\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msync\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwith\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mconversion\u001b[38;2;80;73;69m \u001b[12;52H\u001b[38;2;235;219;178mscript\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(/maintainers/scripts/db-to-\u001b[13;52Hmd.sh).\u001b[38;2;80;73;69m \u001b[39m \u001b[14;50H\u001b[38;2;235;219;178m#\u001b[14;52HTODO:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mRemove\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mraw-attribute\u001b[38;2;80;73;69m"] +[12.272509, "o", " \u001b[38;2;235;219;178mwhen\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwe\u001b[38;2;80;73;69m \u001b[15;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcan\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mget\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrid\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDocBook\u001b[38;2;80;73;69m \u001b[38;2;235;219;178maltogether.\u001b[38;2;80;73;69m \u001b[16;50H\u001b[38;2;235;219;178mpandoc_commonmark_enabled_extensions\u001b[16;87H=\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m+attributes+fenced_divs+footnotes+\u001b[39m \u001b[18;52H\u001b[38;2;235;219;178mbracketed_spans+definition_lists+\u001b[39m \u001b[19;52H\u001b[38;2;235;219;178mpipe_tables+raw_attribute\u001b[38;2;80;73;69m \u001b[39m \u001b[20;50H\u001b[38;2;235;219;178m#\u001b[20;52HNot\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mneeded:\u001b[38;2;80;73;69m \u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.30214, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;44H99\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.336507, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m88\u001b[3;42H3154\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.358868, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m993\u001b[3;43H537\u001b[7;7H\u001b[1m > …7wrqyrjnk405f804-source/doc/\u001b[7;43Hfile\u001b[8;7H\u001b[22m …d0aqq0y8j9alijkh-source/doc/\u001b[8;43Hfile\u001b[11;76HNixOS\u001b[38;2;80;73;69m \u001b[39m \u001b[12;52H\u001b[38;2;235;219;178mmanual\u001b[12;61Hnixos/doc/manual/md-to\u001b[12;84Hdb.\u001b[13;52Hsh)\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[13;60Hconversion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mscript\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(/\u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[14;52H\u001b[38;2;235;219;178mmaintainers/scripts/db-to-md.sh).\u001b[38;2;80;73;69m \u001b[39m \u001b[15;50H\u001b[38;2;235;219;178m#\u001b[15;52HTODO:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mRemove\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mraw-attribute\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwhen\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwe\u001b[16;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcan\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mget\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrid\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mDocBook\u001b[38;2;80;73;69m \u001b[38;2;235;219;178maltogether.\u001b["] +[12.358935, "o", "16;87H\u001b[39m \u001b[17;50H\u001b[38;2;235;219;178mpandoc_commonmark_enabled_extension\u001b[17;86H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[18;52H\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m+\u001b[18;55Httributes+fenc\u001b[18;70Hd_d\u001b[18;74Hvs+footnotes+\u001b[19;52Hbracketed_\u001b[19;63Hpans+definition_lists+\u001b[20;50H\u001b[38;2;102;92;84m↪\u001b[20;52H\u001b[38;2;235;219;178mpipe_tables+raw_attribute\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.370901, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2022\u001b[3;43H802\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.405246, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H926\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.439588, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m93\u001b[3;42H426\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.473997, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m12\u001b[3;43H430\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.502568, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m48\u001b[3;43H698\u001b[3;50H#\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;235;219;178m#\u001b[4;52H%CopyrightBegin%\u001b[4;69H\u001b[39m \u001b[5;50H\u001b[38;2;235;219;178m#\u001b[5;52H\u001b[39m \u001b[6;7H\u001b[1m\u001b[38;2;235;219;178m > …h6nmh7jvwmvca82rj-source/\u001b[6;40H/doc.mk\u001b[6;50H\u001b[22m#\u001b[6;52HCopyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mEricsson\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAB\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m1997-2022.\u001b[38;2;80;73;69m \u001b[7;7H\u001b[38;2;235;219;178m …7wrqyrjnk405f804-source/doc/\u001b[7;43Hfile\u001b[7;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAll\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mRights\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mReserved.\u001b[38;2;80;73;69m \u001b[8;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[39m \u001b[9;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicensed\u001b[38;2;80;73;69m \u001b[38;2;235;219;178munder\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mApache\u001b[38;2;80;73;6"] +[12.502615, "o", "9m \u001b[38;2;235;219;178mLicense,\u001b[38;2;80;73;69m \u001b[10;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mVersion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2.0\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(the\u001b[10;69H\"License\");\u001b[38;2;80;73;69m \u001b[11;52H\u001b[38;2;235;219;178myou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmay\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnot\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muse\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfile\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mexcept\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[12;52H\u001b[38;2;235;219;178mcompliance\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwith\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense.\u001b[38;2;80;73;69m \u001b[39m \u001b[13;50H\u001b[38;2;235;219;178m#\u001b[13;52HYou\u001b[13;56Hmay\u001b[13;60Hobtain\u001b[38;2;80;73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopy\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[14;52H\u001b[38;2;235;219;178mLicense\u001b[38;2;80;"] +[12.502637, "o", "73;69m \u001b[38;2;235;219;178mat\u001b[38;2;80;73;69m \u001b[39m \u001b[15;52H \u001b[16;50H\u001b[38;2;235;219;178m#\u001b[16;52H\u001b[38;2;80;73;69m \u001b[16;56H\u001b[38;2;235;219;178mht\u001b[16;59Hp://www.apache.org/licenses/\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLICENSE-2.0\u001b[38;2;80;73;69m \u001b[39m \u001b[18;50H\u001b[38;2;235;219;178m#\u001b[18;52H\u001b[39m \u001b[19;50H\u001b[38;2;235;219;178m#\u001b[19;52HUnless\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrequired\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mappl\u001b[19;76Hcab\u001b[19;80He\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlaw\u001b[38;2;80;73;69m \u001b[20;52H\u001b[38;2;235;219;178mor\u001b[38;2;80;73;69m \u001b[38;2;235;219;178magreed\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwrit\u001b[20;73Hng,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msoftware\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.508298, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H919\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.54248, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m92\u001b[3;44H67\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.57678, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m203\u001b[3;42H5254\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.611157, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m26\u001b[3;43H528\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.645621, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m41\u001b[3;43H80\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.648592, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m64\u001b[3;42H6087\u001b[5;7H\u001b[1m > …h6nmh7jvwmvca82rj-source/\u001b[5;40Hfile.in\u001b[6;7H\u001b[22m …h6nmh7jvwmvca82rj-source/\u001b[6;40H/doc.mk\u001b[6;77H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.680134, "o", "\u001b[3;43H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m106\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.715116, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m343\u001b[3;43H375\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.74851, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m50\u001b[3;43H652\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.782936, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m62\u001b[3;43H918\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.817291, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m77\u001b[3;42H7204\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.852446, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m98\u001b[3;43H473\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.886808, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m412\u001b[3;43H758\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.896963, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;42H8031\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.931243, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m24\u001b[3;43H107\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[12.965706, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m33\u001b[3;43H390\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.000087, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m40\u001b[3;43H665\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.03372, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m56\u001b[3;43H943\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.068204, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m74\u001b[3;42H9236\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.102596, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m86\u001b[3;43H50\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.137027, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m95\u001b[3;43H77\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.170452, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m509\u001b[3;41H50057\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.204807, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m26\u001b[3;43H323\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.239291, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m40\u001b[3;43H597\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.273694, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H87\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.308248, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m51\u001b[3;42H1135\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.342544, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m60\u001b[3;43H4\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.376953, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m82\u001b[3;43H885\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.411309, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m711\u001b[3;42H21\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.445735, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m48\u001b[3;43H551\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.480157, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m74\u001b[3;43H926\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.514552, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m97\u001b[3;42H3352\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.549117, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m813\u001b[3;43H733\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.583463, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m35\u001b[3;42H4114\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.617923, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m62\u001b[3;43H476\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.6522, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m87\u001b[3;43H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.686487, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m94\u001b[3;42H5299\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.720822, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m912\u001b[3;43H661\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.755264, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m20\u001b[3;42H6032\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.789603, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;43H458\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H"] +[13.789687, "o", "\u001b[?25h\u001b[2 q"] +[13.824181, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m67\u001b[3;42H7005\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.858585, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m82\u001b[3;43H491\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.893011, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3060\u001b[3;43H7\u001b[3;45H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.926416, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m84\u001b[3;42H8176\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.96079, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H495\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[13.995235, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m11\u001b[3;43H823\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.029533, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m29\u001b[3;42H9144\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.06398, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m43\u001b[3;43H472\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.098346, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m60\u001b[3;43H786\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.132752, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;41H6010\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.167131, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m79\u001b[3;43H390\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.201523, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m85\u001b[3;43H724\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.235917, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;42H10\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.270369, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m220\u001b[3;43H382\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.304809, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;43H711\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.339236, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m34\u001b[3;42H2045\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.373672, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H301\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H"] +[14.373791, "o", "\u001b[?25h\u001b[2 q"] +[14.408106, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m52\u001b[3;43H633\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.44155, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m79\u001b[3;42H3156\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.475929, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m306\u001b[3;43H707\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.511923, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m1\u001b[3;42H4126\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.546303, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m52\u001b[3;43H445\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.580736, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;42H525\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.615121, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m80\u001b[3;42H6086\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.648508, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m462\u001b[3;43H702\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.682923, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m535\u001b[3;43H9\u001b[3;45H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.717313, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m63\u001b[3;42H706\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.754158, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;38H2\u001b[3;43H292\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.788675, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m77\u001b[3;43H56\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.823067, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m78\u001b[3;42H8483\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.857761, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m859\u001b[3;41H7006\u001b[3;50HVERSION\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m:=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m0.20.10\u001b[38;2;80;73;69m \u001b[4;50H \u001b[39m \u001b[5;11H\u001b[1m\u001b[38;2;235;219;178m491zj9vwnr0r91x38nk7-source/\u001b[38;2;251;73;52mMake\u001b[38;2;235;219;178mfile\u001b[5;52H\u001b[22minstall\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdirectory\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlayout\u001b[38;2;80;73;69m \u001b[6;36H\u001b[1m\u001b[38;2;251;73;52mM\u001b[6;40H\u001b[22m\u001b[38;2;235;219;178mfile\u001b[6;45Hin\u001b[6;50HPREFIX\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m?=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m/us\u001b[6;64H/local\u001b[6;71H\u001b[39m \u001b[7;11H\u001b[38;2;235;219;178mh6nmh7\u001b[7;18Hvwmvca\u001b[7;25H2rj-source/\u001b[1m\u001b[38;2;251;73;52mmake\u001b[22m\u001b[38;2;235;219;178m/doc.mk\u001b[7;50HINCLUDEDIR\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m?=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(PREFIX)/include\u001b[38;2;80;73;69m \u001b[8;11H\u001b[38;2;235;219;178m7wr\u001b[8;15Hyrjnk405f804\u001b[8;50HLIBDIR\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m?=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(PREFIX)/lib\u001b[38;"] +[14.857834, "o", "2;80;73;69m \u001b[9;11H\u001b[38;2;235;219;178md0aqq0y8j9alijkh\u001b[9;50HPC\u001b[9;53HIBDIR\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m?=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(LIBDIR)/\u001b[9;73Hkgconf\u001b[9;80Hg\u001b[38;2;80;73;69m \u001b[39m \u001b[10;11H\u001b[38;2;235;219;178mmqdv\u001b[10;16Hkjpvsl3zzvi\u001b[10;35Hdoc\u001b[10;50H\u001b[38;2;80;73;69m \u001b[39m \u001b[11;35H\u001b[38;2;235;219;178mlib/\u001b[1m\u001b[38;2;251;73;52mMake\u001b[22m\u001b[38;2;235;219;178mfile\u001b[11;52Hc\u001b[11;54Hllect\u001b[11;60Hs\u001b[11;62Hurces\u001b[11;68H\u001b[39m \u001b[12;11H\u001b[38;2;235;219;178m6nmh7jvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mmake\u001b[22m\u001b[38;2;235;219;178m/fakefop\u001b[12;50Hifneq\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m($(AMALGAMATED),1)\u001b[38;2;80;73;69m \u001b[39m \u001b[13;11H\u001b[38;2;235;219;178mnmh7jvwmvca82rj-source/erts/\u001b[1m\u001b[38;2;251;73;52mMake\u001b[22m\u001b[38;2;235;219;178mfil\u001b[13;50H\u001b[38;2;80;73;69m \u001b[13;52H \u001b[38;2;235;219;178mSRC\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m:=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(w\u001b[13;65Hldcard\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlib/src/*.c)\u001b[38;2;80;73;69m \u001b[14;38H\u001b[38"] +[14.857897, "o", ";2;235;219;178mconfigure\u001b[14;50H\u001b[38;2;80;73;69m \u001b[14;52H \u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mdo\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mno\u001b[14;63Hdouble-include\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mamalgamati\u001b[15;38Hotp.mk.in\u001b[15;50H\u001b[39m \u001b[15;54H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mon\u001b[38;2;80;73;69m \u001b[16;38H\u001b[38;2;235;219;178ms\u001b[16;40Hve_args\u001b[16;50H\u001b[38;2;80;73;69m \u001b[16;54H\u001b[38;2;235;219;178mSRC\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m:=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(filter-out\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlib\u001b[16;78Hsr\u001b[16;81H/lib.c,\u001b[17;11Hmh7jvwmvca82rj-sourc\u001b[17;32H/\u001b[1m\u001b[38;2;251;73;52mmake\u001b[22m\u001b[38;2;235;219;178m/target.mk\u001b[17;50H\u001b[39m \u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$(SRC))\u001b[18;11Hywaazi\u001b[18;19Hwhc4m\u001b[18;25Hgn\u001b[18;28Hmake-4.4.1\u001b[18;39Hbin/\u001b[1m\u001b[38;2;251;73;52mmake\u001b[18;50H\u001b[22m\u001b[38;2;235;219;178melse\u001b[38;2;80;73;69m \u001b[19;36H\u001b[38;2;235;219;178met\u001b[19;50H\u001b[38;2;80;73;69m \u001b[19;52H \u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;1"] +[14.857935, "o", "78mu\u001b[19;58He\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mamalgamated\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mbuild\u001b[38;2;80;73;69m \u001b[39m \u001b[20;11H\u001b[38;2;235;219;178mh7jvwmvca82rj-source/lib/wx\u001b[20;50H\u001b[38;2;80;73;69m \u001b[20;52H \u001b[38;2;235;219;178mSRC\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m:=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlib/src/l\u001b[20;71Hb.c\u001b[38;2;80;73;69m \u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.894364, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[3;36H\u001b[38;2;235;219;178m903\u001b[3;43H495\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.93277, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[14.969771, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m96\u001b[3;42H1\u001b[3;44H82\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[15.004632, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4147\u001b[3;42H2761\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[15.039059, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m36\u001b[3;42H3919\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[15.073459, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m414\u001b[3;42H4586\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[15.090503, "o", "\u001b[3;11H\u001b[48;2;40;40;40m \u001b[3;36H\u001b[38;2;235;219;178m972\u001b[3;42H5922\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[15.107973, "o", "\u001b[3;34H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m42496\u001b[3;42H6047\u001b[5;42H\u001b[1me\u001b[6;39H\u001b[22me\u001b[7;39He\u001b[8;42He\u001b[9;42He\u001b[10;42He\u001b[11;42He\u001b[12;38He\u001b[13;42He\u001b[14;36He\u001b[15;36He\u001b[16;36He\u001b[17;36He\u001b[18;46He\u001b[19;42He\u001b[20;42He\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H"] +[15.108192, "o", "\u001b[?25h\u001b[2 q"] +[15.142709, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;38H7\u001b[3;43H5\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[15.177114, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4285\u001b[3;42H7836\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[15.211508, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5408\u001b[3;42H8959\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[15.245908, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6011\u001b[3;42H9562\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[15.289025, "o", "\u001b[3;10H\u001b[48;2;40;40;40m \u001b[3;35H\u001b[38;2;235;219;178m7\u001b[3;37H80\u001b[3;41H80634\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[15.293556, "o", "\u001b[3;23H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(run\u001b[3;28Hing) 220602\u001b[3;44H65\u001b[5;41H\u001b[1mk\u001b[6;38H\u001b[22mk\u001b[7;38Hk\u001b[8;41Hk\u001b[9;41Hk\u001b[10;41Hk\u001b[11;41Hk\u001b[12;37Hk\u001b[13;41Hk\u001b[14;11Hrqyrjnk405f804\u001b[14;33Hdoc/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mnual.xml\u001b[15;11Haqq0y8j9alijkh\u001b[15;33Hdoc/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mnual.xml\u001b[16;11H4\u001b[16;13Hksgc7awd33cg\u001b[16;26Hprofile/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mnifest.json\u001b[17;11Hdv\u001b[17;14Hkjpvsl3zzvi\u001b[17;33Hdoc/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mnual.x\u001b[17;46Hl\u001b[18;11Hmh7jvwmvca82rj-sourc\u001b[18;32H/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/configur\u001b[19;11Hmh7jvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mk\u001b[19;37H/otp.mk.in\u001b[20;11Hmh7jvwmvca82rj-source/\u001b[1m\u001b[38;2;251;73;52mma\u001b[22m\u001b[38;2;235;219;178mke/save_args\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[15.329132, "o", "\u001b[3;9H\u001b[48;2;40;40;40m \u001b[3;38H\u001b[38;2;235;219;178m4\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[15.33633, "o", "\u001b[3;34H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m41\u001b[3;37H28\u001b[3;42H1026\u001b[5;40H\u001b[1ma\u001b[6;11H\u001b[22m7wrqyr\u001b[6;18Hnk405f\u001b[6;25H04-source/doc/\u001b[1m\u001b[38;2;251;73;52mM\u001b[22m\u001b[38;2;235;219;178makefile\u001b[7;11H7wrqyr\u001b[7;18Hnk405f\u001b[7;25H04-source/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta.nix\u001b[8;11Hd0a\u001b[8;15Hq0y8j9alijkh\u001b[8;40Ha\u001b[9;35Hlib\u001b[9;39H\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta.nix\u001b[10;11Hal4sfwcw38qdajgf\u001b[10;35Hlib\u001b[10;39H\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta.nix\u001b[11;11Hak6jn7b4hrfrn1h7\u001b[11;39H\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta.nix\u001b[12;11H91bcxwrjxawpk1g2\u001b[12;35Hlib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178meta.nix\u001b[13;11Hrqyr\u001b[13;16Hnk405f\u001b[13;23H04-source/doc/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178manual.xml\u001b[14;33Hlib\u001b[14;38Hi\u001b[14;40Hver\u001b[14;44Hnix\u001b[15;38Ha\u001b[16;11Haqq0y8j9alijkh\u001b[16;26Hsource/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178minver.nix\u001b[17;11H4sfwcw38qdajgf\u001b[17;33Hlib\u001b[17;38Hi\u001b[17;40Hver\u001b[17;44Hnix\u001b[18;11H6jn7b4hrfrn1h7\u001b[18;33Hlib/\u001b[1m\u001b[38;2;251;73;"] +[15.33644, "o", "52mm\u001b[22m\u001b[38;2;235;219;178minver.nix\u001b[19;11Hbcxwrjxawpk1g2\u001b[19;33Hlib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178minver.n\u001b[19;46Hx\u001b[20;11Hqyr\u001b[20;15Hnk405f\u001b[20;22H04-source/lib/\u001b[1m\u001b[38;2;251;73;52mm\u001b[22m\u001b[38;2;235;219;178modul\u001b[20;42Hs.nix\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[15.364606, "o", "\u001b[3;8H\u001b[48;2;40;40;40m \u001b[3;23H \u001b[3;34H\u001b[38;2;235;219;178m8\u001b[3;36H14\u001b[3;43H148\u001b[3;50HDerive([(\"out\",\"/nix/store/qx2kpf1j2sg\u001b[4;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mm0kiqz35nn8s6z0mphdkg-cargo-package-\u001b[5;11H\u001b[1m-cargo-package-smartstring-1.0.1.drv\u001b[5;50H\u001b[22m\u001b[38;2;102;92;84m↪\u001b[5;52H\u001b[38;2;235;219;178msmartstring-1.0.1\",\"\",\"\")],[(\"/nix/\u001b[6;11H3cgd1d14fd3vwvk8xrx8-audit-2.8.5.drv\u001b[6;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mstore/j7if1l3jjsvr8qh7051qw2nc7fq3n7\u001b[7;11H037c1wx9b-automake-1.16.5.tar.xz\u001b[7;44Hdrv\u001b[7;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m3p-smartstring-1.0.1.drv\",[\"out\"]),(\u001b[8;11H-nix-persist-home-michael-\u001b[8;38Hache-n\u001b[8;45Hx-\u001b[8;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"/nix/store/lwd2xw7q40ljgvhwn96riffj\u001b[9;11Hhl9-libgcrypt-1.9.4/lib\u001b[9;38Hgcrypt.la\u001b[9;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m7zxvydhx-stdenv-linux.drv\",[\"out\"]),\u001b[10;11Hgcrypt-1.9.4/lib/libg\u001b[10;33Hrypt.so.20\u001b[10;44H3.4\u001b[10;50"] +[15.364663, "o", "H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(\"/nix/store/zz9qm8bq0v169h6gmsyn1qx\u001b[11;11Hcqfqhsnk50-a\u001b[11;24Hsi-styles-4.3.0.tgz\u001b[11;44Hdrv\u001b[11;50H\u001b[38;2;102;92;84m↪\u001b[11;52H\u001b[38;2;235;219;178m9lyy94p6\u001b[11;61H-bash-5.2-p15.drv\",[\"out\"])\u001b[12;11Hlq57538n906jj72\u001b[12;27H2-readline63-008\u001b[12;44Hdrv\u001b[12;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m],[\"/nix/store/6xg259477c90a229xwmb5\u001b[13;11Hwx42\u001b[13;16Hshc38djdr53-mak\u001b[13;32H-4.4.t\u001b[13;39Hr.gz\u001b[13;44Hdrv\u001b[13;50H\u001b[38;2;102;92;84m↪\u001b[13;52H\u001b[38;2;235;219;178m3pdfkn6ig3g-default-builder.sh\"],\"\u001b[14;11H3i-perl5.34.\u001b[14;24H-Encode-Locale-1.05\u001b[14;44Hdrv\u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[14;52H\u001b[38;2;235;219;178mi686-li\u001b[14;60Hux\",\"/nix/store/cdkgxjrlbvss\u001b[15;11Hrl5/site_perl/5.38.0/File\u001b[15;37HB\u001b[15;39HseDir.pm\u001b[15;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mj8rvihq2s1dnfh7hps0k-bash-5.2-p15/\u001b[16;11H5/site_perl/5.38.0/File/IconTh\u001b[16;42Hme.pm\u001b[16;50H\u001b[38;2;102;92;84m↪\u001b[16;52H\u001b[38;2;235;219;178mbin/bash\",[\"-e\",\"/nix/store/\u001b[39m "] +[15.364701, "o", " \u001b[17;11H\u001b[38;2;235;219;178ml5/site_perl/5.38.0/Fi\u001b[17;34He/UserDi\u001b[17;43Hs.pm\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m6xg259477c90a229xwmb53pdfkn6ig3g-\u001b[18;11H/nix-support/propagated-\u001b[18;36Huild-inputs\u001b[18;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178md\u001b[18;54Hfault-builder.sh\"],[(\"__structured\u001b[19;11Hgib7pdlf-hook/nix-support\u001b[19;37Hsetup-hook\u001b[19;50H\u001b[38;2;102;92;84m↪\u001b[19;52H\u001b[38;2;235;219;178mAttrs\",\"\"),(\"\u001b[19;66HllowSu\u001b[19;73Hstitutes\",\"\"),(\u001b[20;11Hisdzv22nddafh\u001b[20;25Hlz4-java-1.4.1.pom\u001b[20;44Hdrv\u001b[20;50H\u001b[38;2;102;92;84m↪\u001b[20;52H\u001b[38;2;235;219;178m\"buildCommand\",\"mkdir\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-p\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m$out\\ntar\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m-\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.370687, "o", "\u001b[3;23H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.399166, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m201\u001b[3;43H201\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.405496, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m63\u001b[3;44H63\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.439213, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m78\u001b[3;44H78\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.440281, "o", "\u001b[3;23H\u001b[48;2;40;40;40m \u001b[3;37H\u001b[38;2;235;219;178m95\u001b[3;44H95\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.474664, "o", "\u001b[3;23H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.479221, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m340\u001b[3;43H340\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.509488, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m71\u001b[3;44H71\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.519367, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m462\u001b[3;43H462\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.544565, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m51\u001b[3;43H51\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.579198, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m770\u001b[3;43H770\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.614073, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2139\u001b[3;42H2139\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.648585, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;38H7\u001b[3;43H9\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.68301, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3059\u001b[3;42H3059\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.717075, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m548\u001b[3;43H548\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.751448, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4437\u001b[3;42H4437\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.769507, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5783\u001b[3;42H5783\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.803922, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6441\u001b[3;42H6441\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.838269, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7868\u001b[3;42H7868\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.872684, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m818\u001b[3;42H818\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.907023, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m459\u001b[3;43H459\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.941426, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m842\u001b[3;43H842\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[15.975824, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9169\u001b[3;42H9169\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.010176, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m652\u001b[3;43H652\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.044619, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m97\u001b[3;43H97\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.078935, "o", "\u001b[3;34H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m90267\u001b[3;41H90267\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.113336, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m553\u001b[3;43H553\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.147682, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m86\u001b[3;43H86\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.182104, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m11\u001b[3;42H11\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.21645, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m455\u001b[3;43H455\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.250862, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m787\u001b[3;43H787\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.285214, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2105\u001b[3;42H2105\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.319827, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m430\u001b[3;43H430\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.354363, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m79\u001b[3;43H79\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.388829, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3128\u001b[3;42H3128\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.423289, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m587\u001b[3;43H587\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.457689, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;38H1\u001b[3;43H9\u001b[3;45H1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.492163, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4260\u001b[3;42H4260\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.526578, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m579\u001b[3;43H579\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.561034, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m962\u001b[3;43H962\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.595453, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5476\u001b[3;42H5476\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.630111, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6103\u001b[3;42H6103\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.664533, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m730\u001b[3;43H730\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.699006, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m709\u001b[3;42H709\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.733434, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m478\u001b[3;43H478\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.767914, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m995\u001b[3;43H995\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.802315, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m82\u001b[3;38H3\u001b[3;42H82\u001b[3;45H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.836783, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m60\u001b[3;43H60\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.871252, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m914\u001b[3;43H914\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.905661, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9255\u001b[3;42H9255\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.940224, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m748\u001b[3;43H748\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[16.975079, "o", "\u001b[3;33H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m300502\u001b[3;40H300502\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.008666, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;38H1\u001b[3;43H9\u001b[3;45H1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.043059, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m1285\u001b[3;42H1285\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.076715, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m557\u001b[3;43H557\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.1111, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;38H0\u001b[3;43H7\u001b[3;45H0\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.144547, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2026\u001b[3;42H2026\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.17894, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m284\u001b[3;43H284\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.213396, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m539\u001b[3;43H539\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.247778, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m801\u001b[3;43H801\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.282229, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3022\u001b[3;42H3022\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.316816, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m275\u001b[3;43H275\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.351253, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m510\u001b[3;43H510\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.38581, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m773\u001b[3;43H773\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.420246, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4038\u001b[3;42H4038\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.454827, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m301\u001b[3;43H301\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.489738, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m536\u001b[3;43H536\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.524327, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m818\u001b[3;43H818\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.558712, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5083\u001b[3;42H5083\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.593183, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m357\u001b[3;43H357\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.627568, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m642\u001b[3;43H642\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.662018, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m909\u001b[3;43H909\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.696395, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6178\u001b[3;42H6178\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.73084, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m441\u001b[3;43H441\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25h\u001b[2 q"] +[17.76867, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mc\u001b[3;36H679\u001b[3;43H679\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[17.774708, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4360\u001b[3;43H886\u001b[3;50H\u001b[39m \u001b[4;50H \u001b[5;11H\u001b[1m\u001b[38;2;235;219;178m7z4yxhhgw45d72h-shadow-4.13/bin/\u001b[38;2;251;73;52mc\u001b[38;2;235;219;178mhfn\u001b[5;50H\u001b[22m\u001b[39m \u001b[6;11H\u001b[38;2;235;219;178m7z4yxhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhsh\u001b[6;50H\u001b[39m \u001b[7;12H\u001b[38;2;235;219;178mlydxfdy2gg2ndw-p\u001b[7;29Hrl-5.38\u001b[7;37H0/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mpan\u001b[7;50H\u001b[39m \u001b[8;11H\u001b[38;2;235;219;178mz4y\u001b[8;15Hhhgw45d72\u001b[8;25H-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhage\u001b[8;50H\u001b[39m \u001b[9;11H\u001b[38;2;235;219;178mjwb54\u001b[9;17H4s0j9xna-libjx\u001b[9;32H-0.7.0/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mjxl\u001b[9;50H\u001b[39m \u001b[10;11H\u001b[38;2;235;219;178m9ba56pfqy2d0-samba-4.17.7/b"] +[17.774836, "o", "in/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mifsdd\u001b[10;50H\u001b[39m \u001b[11;11H\u001b[38;2;235;219;178mxhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhpasswd\u001b[11;50H\u001b[39m \u001b[12;11H\u001b[38;2;235;219;178mxfdy2gg2ndw-perl-5.38.0/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178morelist\u001b[12;50H\u001b[39m \u001b[38;2;235;219;178m\u001b[39m \u001b[13;11H\u001b[38;2;235;219;178mhhgw45d72h-shadow-4.13/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mhgpasswd\u001b[13;50H\u001b[39m \u001b[14;11H\u001b[38;2;235;219;178mi4s0j9xna-libjxl-0.7.0/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mjpeg_hdr\u001b[14;50H\u001b[39m \u001b[15;11H\u001b[38;2;235;219;178m52i0q7-libk\u001b[15;23Hb5-1.20.1/bin\u001b[15;37H\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mompile_et\u001b[15;50H\u001b[39m \u001b[16;11H\u001b[38;2;235;219;178mp8zjvg-libkrb5-1\u001b[16;28H20.1/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[3"] +[17.774884, "o", "8;2;235;219;178mompil\u001b[16;44H_et\u001b[16;50H\u001b[39m \u001b[17;11H\u001b[38;2;235;219;178mnizv3-openssl-3.0\u001b[17;29H8-b\u001b[17;33Hn/bin/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178m_rehash\u001b[17;50H\u001b[39m \u001b[18;11H\u001b[38;2;235;219;178md0-samba-4.17.7/lib/samba/vfs/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178ma\u001b[18;44H.so\u001b[18;50H\u001b[39m \u001b[19;11H\u001b[38;2;235;219;178m-system-path/share/mime/\u001b[19;36Hext/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178mss.xml\u001b[19;50H\u001b[39m \u001b[20;11H\u001b[38;2;235;219;178m-\u001b[20;13Hystem-path/share/mime/text/\u001b[1m\u001b[38;2;251;73;52mc\u001b[22m\u001b[38;2;235;219;178msv\u001b[20;44Hxml\u001b[20;50H\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25h\u001b[2 q"] +[17.827328, "o", "\u001b[3;9H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mr\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[17.837627, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[17.872487, "o", "\u001b[3;33H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m269527\u001b[3;42H7321\u001b[3;50Hgroup:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcomm\u001b[38;2;80;73;69m \u001b[4;50H\u001b[38;2;235;219;178mshort:\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mCryptographical\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msupport\u001b[38;2;80;73;69m \u001b[5;11H\u001b[1m\u001b[38;2;235;219;178mh7jvwmvca82rj-source/lib/\u001b[38;2;251;73;52mcr\u001b[38;2;235;219;178mypto\u001b[5;43Hin\u001b[5;46Ho\u001b[5;50H\u001b[22m\u001b[38;2;80;73;69m \u001b[6;11H\u001b[38;2;235;219;178mrjnk405f804-source/\u001b[6;32Hc/old/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moss.txt\u001b[7;12Hy8j9alijkh-sourc\u001b[7;29H/doc/old/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moss.txt\u001b[8;11Hkjpvsl3zzvi-source/doc/old\u001b[8;38H\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moss.txt\u001b[9;11Hwcw38qdajgf-source/doc/old/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moss.t\u001b[9;46Ht\u001b[10;11H7\u001b[10;13H4hrfrn1h7-source/doc/old/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moss.txt\u001b[11;11Hjvwmvca82rj\u001b[11;24Hource/lib/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178mypto/vsn.mk\u001b[12;11Hwrjxawpk1g2\u001b[12;2"] +[17.872557, "o", "3Hsource/doc/old/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[12;41H\u001b[22m\u001b[38;2;235;219;178mss.tx\u001b[12;62H\u001b[39m \u001b[13;11H\u001b[38;2;235;219;178m48mab1bc41n-source/doc\u001b[13;34Hold\u001b[13;39H\u001b[1m\u001b[38;2;251;73;52mr\u001b[22m\u001b[38;2;235;219;178moss.txt\u001b[14;11Hvwmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178mypto/AUTHORS\u001b[15;11Hwmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178mypto/Makefile\u001b[16;11Hk405f804-source/nixos\u001b[16;33Htests/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moc.nix\u001b[17;11Hj9alijkh-source/nixos/tests\u001b[17;40H\u001b[1m\u001b[38;2;251;73;52mr\u001b[22m\u001b[38;2;235;219;178moc.nix\u001b[18;11Hvsl3zzvi\u001b[18;20Hsource\u001b[18;27Hn\u001b[18;29Hxo\u001b[18;32H/tests/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moc.nix\u001b[19;11H38qdajgf-source/nixos/tests/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moc\u001b[19;44Hnix\u001b[20;11Hhrfrn1h7-source/nixos/tests/\u001b[1m\u001b[38;2;251;73;52mcr\u001b[22m\u001b[38;2;235;219;178moc\u001b[20;44Hnix\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[17.907371, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m912\u001b[3;43H706\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25h\u001b[2 q"] +[17.931208, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40my\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[17.941944, "o", "\u001b[3;23H\u001b[48;2;40;40;40m \u001b[38;2;235;219;178m(ru\u001b[3;28Hning) 76031\u001b[3;42H8219\u001b[5;38H\u001b[1m\u001b[38;2;251;73;52my\u001b[6;11H\u001b[22m\u001b[38;2;235;219;178mjvwmvca82rj\u001b[6;30Hlib\u001b[6;34H\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/v\u001b[6;43Hn.mk\u001b[7;11Hvwmvc\u001b[7;17H82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/AUTHORS\u001b[8;11Hwmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/Makefile\u001b[9;11Hmvca\u001b[9;16H2rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto\u001b[9;38Hconfigure\u001b[10;11Hvca82rj-source/lib\u001b[10;30H\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/c_src/bn.c\u001b[11;11Hvca82rj-source/lib\u001b[11;30H\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/c_src/bn.h\u001b[12;11Hvca82rj-source/lib\u001b[12;30H\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/c_src/dh.c\u001b[13;11Hvca82rj-source/lib\u001b[13;30H\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/c_src/dh.h\u001b[14;12Hca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/c_src/ec.c\u001b[15;11Hvca82rj-source/lib/\u001b[1m\u001b[38;2;251;"] +[17.942161, "o", "73;52mcry\u001b[22m\u001b[38;2;235;219;178mpto/c_src/ec.h\u001b[16;11Hca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mp\u001b[16;34Ho/c_src/aes.c\u001b[17;11Hca82r\u001b[17;17H-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mp\u001b[17;34Ho/c_src/aes.h\u001b[18;11Hca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mp\u001b[18;34Ho/c_src/dss.c\u001b[19;11Hca82r\u001b[19;17H-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mp\u001b[19;34Ho/c_src/dss.h\u001b[20;11Hca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcry\u001b[22m\u001b[38;2;235;219;178mp\u001b[20;34Ho/c_src/evp.c\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[17.975976, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[18.010619, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m68\u001b[3;43H647\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[18.045086, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m129\u001b[3;42H9109\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[18.079401, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m91\u001b[3;43H437\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25h\u001b[2 q"] +[18.092916, "o", "\u001b[3;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mp\u001b[3;34H3\u001b[3;36H233\u001b[3;43H9\u001b[3;45H0\u001b[5;39H\u001b[1m\u001b[38;2;251;73;52mp\u001b[6;37Hp\u001b[7;36Hp\u001b[8;35Hp\u001b[9;34Hp\u001b[10;33Hp\u001b[11;33Hp\u001b[12;33Hp\u001b[13;33Hp\u001b[14;33Hp\u001b[15;33Hp\u001b[16;32Hp\u001b[17;32Hp\u001b[18;32Hp\u001b[19;32Hp\u001b[20;32Hp\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[18.113788, "o", "\u001b[3;44H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m51\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[18.149008, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;41H10144\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[18.183184, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m54\u001b[3;43H468\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25h\u001b[2 q"] +[18.193922, "o", "\u001b[3;12H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mt\u001b[3;35H1\u001b[3;37H81\u001b[3;43H852\u001b[5;40H\u001b[1m\u001b[38;2;251;73;52mt\u001b[6;38Ht\u001b[7;37Ht\u001b[8;36Ht\u001b[9;35Ht\u001b[10;34Ht\u001b[11;34Ht\u001b[12;34Ht\u001b[13;34Ht\u001b[14;34Ht\u001b[15;34Ht\u001b[16;33Ht\u001b[17;33Ht\u001b[18;33Ht\u001b[19;33Ht\u001b[20;33Ht\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H"] +[18.194026, "o", "\u001b[?25h\u001b[2 q"] +[18.217602, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;44H75\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.251967, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m97\u001b[3;42H1162\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.286005, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m331\u001b[3;43H479\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.320451, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m57\u001b[3;43H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.355441, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m402\u001b[3;42H2424\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.389724, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m14\u001b[3;43H847\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H"] +[18.389884, "o", "\u001b[?25h\u001b[2 q"] +[18.423917, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;42H3221\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.440959, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m61\u001b[3;43H590\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.475326, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m50\u001b[3;43H736\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.509782, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m52\u001b[3;42H409\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.54422, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m60\u001b[3;43H385\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.578493, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m74\u001b[3;43H6\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H"] +[18.578551, "o", "\u001b[?25h\u001b[2 q"] +[18.612943, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m89\u001b[3;43H992\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.647942, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m601\u001b[3;42H527\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.682348, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m13\u001b[3;43H593\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.716599, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m28\u001b[3;43H906\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.751056, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m94\u001b[3;42H6227\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.785542, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m84\u001b[3;43H560\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.820134, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m951\u001b[3;43H891\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.854585, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m66\u001b[3;42H7183\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.888965, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m2103\u001b[3;43H560\u001b[9;11Hnbwv995ri-extra-utils/bin/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178msetup\u001b[10;11Hmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/configure\u001b[11;46Hc\u001b[12;43Hbn\u001b[12;46Hh\u001b[13;46Hc\u001b[14;43Hdh\u001b[14;46Hh\u001b[15;46Hc\u001b[16;11Hvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/c_src/\u001b[16;44Hc\u001b[16;46Hh\u001b[17;46Hc\u001b[18;42Hae\u001b[18;46Hh\u001b[19;46Hc\u001b[20;42Hdss\u001b[20;46Hh\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.927046, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m15\u001b[3;43H881\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[18.962468, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;42H84\u001b[3;45H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.000751, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m30\u001b[3;43H691\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.035052, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;42H9029\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.072075, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m210\u001b[3;43H648\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.105482, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m76\u001b[3;41H20705\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.139598, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m613\u001b[3;42H13\u001b[3;45H1\u001b[6;11Hsfk5w\u001b[6;17Hrfif762-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/info\u001b[7;11Hjvwmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/vsn.mk\u001b[8;11Hk5w\u001b[8;15Hrfif762-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/vsn.mk\u001b[9;11Hvwm\u001b[9;15Hca82rj-source/lib\u001b[9;33H\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/AUTHORS\u001b[10;11H5w\u001b[10;14Hrfif762-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/AUTHORS\u001b[11;11Hwmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/Makefile\u001b[12;11Hnbwv995ri-extra-utils/bin\u001b[12;37H\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178msetup\u001b[13;11Hw\u001b[13;13Hrfif762-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/Makefile\u001b[14;11Hmvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/configure\u001b[15;11Hcrfif762-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/configure\u001b[16;43Hbn\u001b[16;46Hc\u001b[17;11Hvca8"] +[19.139684, "o", "2rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/c_src/bn\u001b[17;46Hh\u001b[18;11Hvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/c_src/dh\u001b[18;46Hc\u001b[19;11Hvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/c_src/dh\u001b[19;46Hh\u001b[20;11Hvca82rj-source/lib/\u001b[1m\u001b[38;2;251;73;52mcrypt\u001b[22m\u001b[38;2;235;219;178mo/c_src/ec\u001b[20;46Hc\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.175081, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m770\u001b[3;42H2\u001b[3;44H20\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.209325, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;42H32\u001b[3;45H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.24369, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H864\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.278205, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3425\u001b[3;42H4948\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.312763, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;42H5184\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.347603, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m35\u001b[3;42H60\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.382439, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m58\u001b[3;42H816\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.416684, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m653\u001b[3;42H9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.451104, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m77\u001b[3;41H30300\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.484527, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m726\u001b[3;42H2452\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.519015, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m54\u001b[3;42H3319\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.553304, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m70\u001b[3;43H650\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.587659, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m91\u001b[3;43H977\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.622008, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m812\u001b[3;42H4452\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.656375, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m28\u001b[3;43H796\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.69078, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m33\u001b[3;42H530\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.72512, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m44\u001b[3;43H621\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.759532, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m58\u001b[3;43H947\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.793925, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m76\u001b[3;42H6235\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.828198, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m83\u001b[3;43H590\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.862499, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m95\u001b[3;43H927\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.896921, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m91\u001b[3;42H7280\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.931328, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m38\u001b[3;43H618\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.965657, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m97\u001b[3;43H924\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.982534, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4026\u001b[3;42H8231\u001b[5;7H …h7jvwmvca82rj-source/lib/\u001b[5;41Ho/info\u001b[6;7H\u001b[1m > …sfk5wcrfif762-source/lib/\u001b[6;41Ho/info\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[19.999973, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m31\u001b[3;43H380\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.034367, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;43H525\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.06886, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m62\u001b[3;43H904\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.10336, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m90\u001b[3;42H9333\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.137774, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m117\u001b[3;43H8\u001b[3;45H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.172147, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m25\u001b[3;41H40119\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.190483, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m34\u001b[3;43H4\u001b[3;45H7\u001b[3;50HCRYPTO_VSN\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m=\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m5.1.2\u001b[38;2;80;73;69m \u001b[4;50H \u001b[39m \u001b[5;50H \u001b[6;7H\u001b[38;2;235;219;178m …sfk5wcrfif762-source/lib/\u001b[6;41Ho/info\u001b[7;7H\u001b[1m > …jvwmvca82rj-source/lib/\u001b[7;39Ho/vsn.mk\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.207272, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H584\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.241579, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H75\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.275948, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m90\u001b[3;42H1112\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.310546, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m219\u001b[3;43H691\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H"] +[20.310588, "o", "\u001b[?25h\u001b[2 q"] +[20.345, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m77\u001b[3;42H233\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.379348, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m95\u001b[3;43H806\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.382562, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m404\u001b[3;42H3245\u001b[7;7H …jvwmvca82rj-source/lib/\u001b[7;39Ho/vsn.mk\u001b[8;7H\u001b[1m > …k5wcrfif762-source/lib/\u001b[8;39Ho/vsn.mk\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.413451, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5\u001b[3;44H71\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.447735, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m1\u001b[3;43H563\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.482127, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m33\u001b[3;42H4000\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.516495, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m44\u001b[3;43H4\u001b[3;45H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.550792, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m53\u001b[3;43H713\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.575348, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m68\u001b[3;42H5021\u001b[3;50HOriginal\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAuthors\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mand\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mContributors:\u001b[38;2;80;73;69m \u001b[5;50H\u001b[38;2;235;219;178mPeter\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mHögfeldt\u001b[38;2;80;73;69m \u001b[6;50H\u001b[38;2;235;219;178mJakob\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mCederlund\u001b[38;2;80;73;69m \u001b[7;50H \u001b[8;7H\u001b[38;2;235;219;178m …k5wcrfif762-source/lib/\u001b[8;39Ho/vsn.mk\u001b[9;7H\u001b[1m > …vwmvca82rj-source/lib/\u001b[9;38Ho/AUTHORS\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.584968, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m84\u001b[3;43H256\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.61923, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H361\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.653589, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m523\u001b[3;43H833\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.687867, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m45\u001b[3;42H61\u001b[3;45H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.72225, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m71\u001b[3;43H901\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.75134, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m84\u001b[3;42H728\u001b[9;7H …vwmvca82rj-source/lib/\u001b[9;38Ho/AUTHORS\u001b[10;7H\u001b[1m > …5wcrfif762-source/lib/\u001b[10;38Ho/AUTHORS\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.756617, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m95\u001b[3;43H600\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.790939, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6\u001b[3;44H58\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.825395, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m60\u001b[3;43H987\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.859834, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m30\u001b[3;42H8143\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.894171, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;38H4\u001b[3;43H394\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.928508, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m811\u001b[3;43H650\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.962801, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m93\u001b[3;43H929\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[20.996927, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m969\u001b[3;42H9190\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.00099, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m5055\u001b[3;43H459\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.03535, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m62\u001b[3;44H88\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.069968, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m149\u001b[3;43H747\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.104377, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m223\u001b[3;41H5000\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.138666, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;43H265\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.158687, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m439\u001b[3;43H542\u001b[3;50H#\u001b[38;2;80;73;69m \u001b[39m \u001b[4;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m%CopyrightBegin%\u001b[38;2;80;73;69m \u001b[5;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[39m \u001b[6;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mC\u001b[6;54Hpyright\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mEricsson\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAB\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m1999-2021.\u001b[38;2;80;73;69m \u001b[7;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mAll\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mRights\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mReserved.\u001b[38;2;80;73;69m \u001b[8;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[9;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicensed\u001b[38;2;80;73;69m \u001b[38;2;235;219;178munder\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mApache\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense,\u001b[38;2;80;73;69m \u001b[10;7H\u001b[38;2;235;219;178m …5wcrfif762-source/lib/\u001b["] +[21.158758, "o", "10;38Ho/AUTHORS\u001b[10;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mVersion\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m2.0\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(the\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m\"License\");\u001b[38;2;80;73;69m \u001b[11;7H\u001b[1m\u001b[38;2;235;219;178m > …wmvca82rj-source/lib/\u001b[11;37Ho/Makefile\u001b[11;50H\u001b[22m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178myou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmay\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mnot\u001b[38;2;80;73;69m \u001b[38;2;235;219;178muse\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthis\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mfile\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mexcept\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b[12;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcompliance\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mwith\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense.\u001b[38;2;80;73;69m \u001b[13;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mYou\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mmay\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mobtain\u001b[38;2;80;"] +[21.158805, "o", "73;69m \u001b[38;2;235;219;178ma\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mcopy\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mof\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mthe\u001b[38;2;80;73;69m \u001b[14;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLicense\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mat\u001b[38;2;80;73;69m \u001b[15;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[16;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mhttp://www.apache.org/licenses/\u001b[17;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mLICENSE-2.0\u001b[38;2;80;73;69m \u001b[18;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[19;50H\u001b[38;2;235;219;178m#\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mUnless\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mrequired\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mby\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mapplicable\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mlaw\u001b[38;2;80;73;69m \u001b[20;50H\u001b[38;2;102;92;84m↪\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mor\u001b[38;2;80;73;69m \u001b[38;2;235;219;178magreed\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mto\u001b[38;2;80;73;69m \u001b[38;2;235;219;178min\u001b[38;2;80;73;69m \u001b"] +[21.158854, "o", "[38;2;235;219;178mwriting,\u001b[38;2;80;73;69m \u001b[38;2;235;219;178msoftware\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.173091, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m500\u001b[3;43H701\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.206512, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H823\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.240951, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m64\u001b[3;42H1095\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.27527, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m736\u001b[3;43H376\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.309735, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m879\u001b[3;43H661\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.344137, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m6108\u001b[3;43H925\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.379226, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m377\u001b[3;42H2196\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.409379, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m652\u001b[3;43H472\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.41242, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m914\u001b[3;43H735\u001b[3;50H\u001b[3m\u001b[38;2;146;131;116m#\u001b[4;50H#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m%CopyrightBegin%\u001b[5;50H#\u001b[38;2;80;73;69m \u001b[6;50H\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mCopyright\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mEricsson\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mAB\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m1999-2021.\u001b[38;2;80;73;69m \u001b[7;52H\u001b[38;2;146;131;116mAll\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mRights\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mReserved.\u001b[8;50H#\u001b[38;2;80;73;69m \u001b[9;50H\u001b[38;2;146;131;116m#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mLicensed\u001b[38;2;80;73;69m \u001b[38;2;146;131;116munder\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mthe\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mApache\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mLicense,\u001b[38;2;80;73;69m \u001b[10;52H\u001b[38;2;146;131;116mVersion\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m2.0\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m(the\u001b[38;2;80;73;69m \u001b[38;2;146;131;116m\"License\");\u001b[11;50H#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116myou\u001b[38;2;80;73;69m \u001b[38;2;146;131;1"] +[21.412476, "o", "16mmay\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mnot\u001b[38;2;80;73;69m \u001b[38;2;146;131;116muse\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mthis\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mfile\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mexcept\u001b[38;2;80;73;69m \u001b[38;2;146;131;116min\u001b[38;2;80;73;69m \u001b[12;52H\u001b[38;2;146;131;116mcompliance\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mwith\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mthe\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mLicense.\u001b[13;50H#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mYou\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mmay\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mobtain\u001b[38;2;80;73;69m \u001b[38;2;146;131;116ma\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mcopy\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mof\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mthe\u001b[38;2;80;73;69m \u001b[14;52H\u001b[38;2;146;131;116mLicense\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mat\u001b[15;50H#\u001b[16;50H#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mhttp://www.apache.org/licenses/\u001b[17;52HLICENSE-2.0\u001b[18;50H#\u001b[19;50H#\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mUnless\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mrequired\u001b[38;2;80;73;69m \u001b["] +[21.412512, "o", "38;2;146;131;116mby\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mapplicable\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mlaw\u001b[38;2;80;73;69m \u001b[20;52H\u001b[38;2;146;131;116mor\u001b[38;2;80;73;69m \u001b[38;2;146;131;116magreed\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mto\u001b[38;2;80;73;69m \u001b[38;2;146;131;116min\u001b[38;2;80;73;69m \u001b[38;2;146;131;116mwriting,\u001b[38;2;80;73;69m \u001b[38;2;146;131;116msoftware\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.44402, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m37\u001b[3;44H58\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.477657, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m717\u001b[3;43H99\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.512274, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m416\u001b[3;42H3279\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.546928, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H537\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.581545, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m627\u001b[3;43H819\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.616222, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m784\u001b[3;42H4100\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.650828, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;38H7\u001b[3;43H374\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.685497, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m963\u001b[3;43H647\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.720124, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8088\u001b[3;43H953\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.754796, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m124\u001b[3;42H5377\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.789403, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H706\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.824125, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m40\u001b[3;42H605\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.858687, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9\u001b[3;43H423\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.89336, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m96\u001b[3;43H869\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.928051, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m218\u001b[3;42H7246\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.962653, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m34\u001b[3;43H594\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[21.997332, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;43H952\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.031969, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m67\u001b[3;42H8318\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.066694, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m91\u001b[3;43H702\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.101296, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m305\u001b[3;42H9087\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.135984, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m44\u001b[3;43H46\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.170596, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m91\u001b[3;43H884\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.205279, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m42\u001b[3;41H6043\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.239933, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m33\u001b[3;43H879\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.274544, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m52\u001b[3;42H1268\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.309214, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m79\u001b[3;43H650\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.343832, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m564\u001b[3;43H98\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.378464, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m72\u001b[3;42H2314\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.413096, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H632\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.446747, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m96\u001b[3;43H967\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.48138, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m605\u001b[3;42H32\u001b[3;45H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.516061, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m17\u001b[3;43H580\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.550692, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m31\u001b[3;43H8\u001b[3;45H8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.585335, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m42\u001b[3;42H4206\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.606559, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m85\u001b[3;43H568\u001b[3;50H\u001b[39m \u001b[4;50H \u001b[5;50H \u001b[6;50H \u001b[7;50H \u001b[8;50H \u001b[9;50H \u001b[10;50H \u001b[11;7H\u001b[38;2;235;219;178m …wmvca82rj-source/lib/\u001b[11;37Ho/Makefile\u001b[11;50H\u001b[39m \u001b[12;7H\u001b[1m\u001b[38;2;235;219;178m > …nbwv995ri-extra-utils/bin/\u001b[12;42Hsetup\u001b[12;50H\u001b[22m\u001b[39m \u001b[38;2;235;219;178m\u001b[39m \u001b[13;50H \u001b[14;50H \u001b[15;50H \u001b[16;50H \u001b[17;50H \u001b[18;50H \u001b[19;50H \u001b[20;50H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.619603, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m750\u001b[3;43H7\u001b[3;45H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.653975, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m83\u001b[3;43H871\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.688284, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m941\u001b[3;42H5206\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.722648, "o", "\u001b[3;35H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m9028\u001b[3;43H538\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.756995, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m85\u001b[3;43H856\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.791509, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m19\u001b[3;42H6322\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.825495, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m7\u001b[3;43H519\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.856525, "o", "\u001b[3;44H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m82\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.891576, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;43H67\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.927776, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m204\u001b[3;42H7454\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.962739, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m16\u001b[3;43H729\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[22.997033, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m309\u001b[3;42H8160\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.031751, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m12\u001b[3;43H678\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.066115, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m27\u001b[3;42H929\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.100486, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m3\u001b[3;43H829\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.135661, "o", "\u001b[3;24H\u001b[48;2;40;40;40m \u001b[3;41H\u001b[38;2;235;219;178m70185\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.175637, "o", "\u001b[3;24H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m(running) \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.210004, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m581\u001b[3;42H2940\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.244308, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m4\u001b[3;42H4005\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.278843, "o", "\u001b[3;36H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m706\u001b[3;43H581\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.313237, "o", "\u001b[3;38H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m8\u001b[3;42H5102\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.347649, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m14\u001b[3;43H638\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25h\u001b[2 q"] +[23.381975, "o", "\u001b[3;37H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m55\u001b[3;42H6205\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H"] +[23.382054, "o", "\u001b[?25h\u001b[2 q"] +[23.390962, "o", "\u001b[2;6H\u001b[48;2;40;40;40m \u001b[38;2;80;73;69m \u001b[39m \u001b[3;6H \u001b[3;8H \u001b[3;24H \u001b[3;47H \u001b[3;89H \u001b[4;6H \u001b[4;89H \u001b[5;6H \u001b[5;89H \u001b[6;6H \u001b[6;89H \u001b[7;6H \u001b[7;89H \u001b[8;6H \u001b[8;89H \u001b[9;6H \u001b[9;89H \u001b[10;6H \u001b[10;89H \u001b[11;6H \u001b[11;89H \u001b[12;6H \u001b[12;62H \u001b[12;89H \u001b[13;6H \u001b[13;89H \u001b[14;6H \u001b[14;89H \u001b[15;6H \u001b[15;89H \u001b[16;6H \u001b[16;89H \u001b[17;6H \u001b[17;89"] +[23.390981, "o", "H \u001b[18;6H \u001b[18;89H \u001b[19;6H \u001b[19;89H \u001b[20;6H \u001b[20;89H \u001b[21;6H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[23.420552, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[24.014493, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[24.142313, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-next \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;84H \u001b[24;86H \u001b[24;91H "] +[24.142381, "o", " \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[24.478422, "o", "\u001b[15;1H\u001b[48;2;40;40;40m \u001b[16;1H \u001b[17;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[39m\u001b[48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Close the current view. │\u001b[39m\u001b[48;2;40;40;40m \u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: q │\u001b[39m\u001b[48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└──────────────────────────────────"] +[24.478531, "o", "──────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mq\u001b[21;3Hit \u001b[21;32Hwrite-quit\u001b[21;63Hcquit \u001b[22;1Hq\u001b[22;3Hit! \u001b[22;32Hwrite-quit! \u001b[22;63Hcquit! \u001b[23;1Hq\u001b[23;3Hit-all \u001b[23;32Hwrite-qu\u001b[23;41Ht-all\u001b[23;63H \u001b[24;1Hq\u001b[24;3Hit-all! \u001b[24;32Hwrite-quit-all!\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mq\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[24.614197, "o", "\u001b[?25h\u001b[2 q\u001b[0 q\u001b[?1006l\u001b[?1015l\u001b[?1003l\u001b[?1002l\u001b[?1000l\u001b[?2004l\u001b[?1004l\u001b[?1049l"] +[24.624141, "o", "\u001b[2m⏎\u001b(B\u001b[m \r⏎ \r\u001b[K"] +[24.628413, "o", "\u001b[?2004h"] +[24.64575, "o", "\u001b]0;/n/store\u0007\u001b[30m\u001b(B\u001b[m"] +[24.645795, "o", "\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m/n/store\u001b(B\u001b[m\u001b(B\u001b[m> \u001b[K\r\u001b[85C \u001b[38;2;85;85;85m13:04:08\u001b(B\u001b[m\r\u001b[85C\r\u001b[25C"] +[25.134197, "o", "\r\n\u001b[30m\u001b(B\u001b[m\u001b[30m\u001b(B\u001b[m"] +[25.134283, "o", "\u001b[?2004l"] diff --git a/regex-prompt-highlighting.png b/regex-prompt-highlighting.png new file mode 100644 index 0000000..a516bd0 Binary files /dev/null and b/regex-prompt-highlighting.png differ diff --git a/search_index.en.js b/search_index.en.js index b3adbc7..ff012df 100644 --- a/search_index.en.js +++ b/search_index.en.js @@ -1 +1 @@ -window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"1":{"docs":{},"df":0,"0":{"docs":{},"df":0,"2":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"1":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"2":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0}},"df":1},"5":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2},"7":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"8":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979}},"df":1}},"1":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"2":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178}},"df":1}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"5":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"6":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"0":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"8":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"7":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"9":{"docs":{},"df":0,"9":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}},"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"k":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":2}}},"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"x":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}}},"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":1}}}}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.8284271247461903}},"df":1},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}},"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":3},"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":4}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}},"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}},"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":2}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}},"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":3,"e":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"x":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":4,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{},"df":0,"z":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}},"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":3}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":5}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":3,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"f":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"f":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.6457513110645907}},"df":3}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":4}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":4}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2},"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}}}}}}},"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"j":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979}},"df":3}}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":3},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1,"b":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":4}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":4}}}},"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.6457513110645907}},"df":5}}}},"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979}},"df":1}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":4}},"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2},"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.6457513110645907}},"df":2,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":3,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178}},"df":2,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}},"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":4.0}},"df":1,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0}},"df":2,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":2}}}}}},"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":2}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.4641016151377544},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":5,"'":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"l":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.6457513110645907}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"7":{"docs":{},"df":0,"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"2":{"docs":{},"df":0,"7":{"docs":{},"df":0,"8":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"8":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"8":{"docs":{},"df":0,"l":{"docs":{},"df":0,"3":{"docs":{},"df":0,"0":{"docs":{},"df":0,"8":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"h":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"x":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"h":{"docs":{},"df":0,"8":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}},"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178}},"df":3}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979}},"df":2}},"x":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"j":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":4}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178}},"df":1}}}}}}}},"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"y":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":4,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":3.605551275463989},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":5,"e":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":2}}}}}}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2},"v":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":5},"u":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979}},"df":5,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,";":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}},"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178}},"df":1,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"f":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5}}}}}},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"w":{"docs":{"https://helix-editor.com/news/":{"tf":1.0},"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":6,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1},"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":5}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}}},"o":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4},"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":5,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}},"g":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":3.3166247903554}},"df":2}},"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.8284271247461903}},"df":2}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"!":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2,"'":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0}},"df":2}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":5}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":3}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979}},"df":4}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}},"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0}},"df":1}}}},"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":5}},"v":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"v":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}}},"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":3}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"s":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}},"w":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}},"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":2}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":5}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.3166247903554},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"f":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}}}}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":2}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.8284271247461903}},"df":5}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":4}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":3.0}},"df":3}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":2}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979}},"df":1,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":5,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"t":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"p":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"'":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.1622776601683795},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5}},"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2},"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"{":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.8284271247461903}},"df":1}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"x":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":5,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":3.1622776601683795},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":5,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"v":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2},"s":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"y":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"z":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0}},"df":1,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":5,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.8284271247461903}},"df":4,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":2}}}}},"y":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"title":{"root":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"5":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"8":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"1":{"docs":{},"df":0,"2":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":5}}}}}}}}},"documentStore":{"save":true,"docs":{"https://helix-editor.com/":{"body":"","id":"https://helix-editor.com/","title":""},"https://helix-editor.com/news/":{"body":"","id":"https://helix-editor.com/news/","title":"News"},"https://helix-editor.com/news/release-22-03-highlights/":{"body":"Ranging from small quality-of-life improvements and fixes to large features\nand refactors, Helix 22.03 brings some exciting changes. Helix is a modal\ntext editor with built-in support for multiple selections, Language\nServer Protocol (LSP), tree-sitter, and now Debug Adapter Protocol (DAP).\nBefore we look at the highlights, there are some administrative notes.\nmaster branch changes are now published separately from the release\ndocumentation. Find the new master docs here.\nHelix is switching versioning schemes. Expect to find new releases in\nCalendar Version format: YY.0M(.MICRO). We're aiming to cut regular\nreleases every two months or so. Check out the changelog\nfor all of the new features and fixes from this release.\nWith that out of the way, let's check out the highlights!\nHealth-check\nHelix 22.03 brings a new CLI flag: hx --health. Use the new health-check\nflag to troubleshoot missing language servers and queries.\nCheck the health of all languages with hx --health or ask for details\nabout a specific language with hx --health <lang>.\n\nExperimental DAP Support\nDebug Adapter Protocol (DAP) is an abstract protocol for editors and debuggers\nto communicate. It's very similar in spirit to the Language Server Protocol\n(LSP), but built for debugging. Interact with the debug adapter with\n<space-d>.\n\nNote that the DAP adapter is experimental: it isn't yet documented, there may\nbe bugs, and the UX is a bit clunky. Contributions are very welcome!\nIncremental Injection Parsing Rewrite\nOne of the cooler features of syntax highlight driven by tree-sitter is the\nability to inject a language into another language's document. For example,\nif you're writing Markdown, you might use a code-fence like so:\nThis is some rust:\n\n```rust\nprintln!(\"Hello, world!\")\n```\n\nHelix highlights the Rust block by injecting tree-sitter-rust. Injections\nhave been rewritten so that changes within are now parsed incrementally, which\nis a big speed boost when editing documents with large injected blocks.\nAlong with this rewrite, Helix now supports combined injections. For example,\nwhen highlighting Interactive Elixir (IEx), we might have a block of code like\nthe following:\niex> send(self(), :hello)\niex> receive do: (:hello -> :ok)\n\nThe IEx grammar injects tree-sitter-elixir into each line after the prompt\ntoken. Combined injections cover the case where separate injected documents\nmust be parsed in one combined document, like so:\niex> if true do\n...> :ok\n...> end\n\nHelix can now parse all three lines together. In the future this can be used\nto add support for templating languages like EJS or ERB.\nTree-Sitter Grammars Refactor\nIn the past, tree-sitter grammar repositories have been added to the Helix\nrepository as Git submodules. Submodules can be painful to work with though,\nespecially when there are more than 50 in a repository. Cloning, CI, and\npackaging times have slowed down as language support has improved.\nHelix 22.03 completely overhauls the system for tree-sitter grammars. The headline\nis that submodules are gone! If you're working with the source, you can\nnow clone with a standard git clone https://github.com/helix-editor/helix.\nSo where did the tree-sitter submodules go? They've been replaced with two\nnew CLI flags: hx --grammar fetch to clone grammar repositories into the\nruntime directory and hx --grammar build to compile them. Use -g for\nshort. Grammar repositories are shallow-cloned in parallel, so fetching all\n60 grammars can now take as little as 6 seconds on a good connection.\nIf you're building from source or developing Helix, note that fetching and\nbuilding are included in the helix-term build step, so you should not\nneed to manually fetch or build grammars.\nAdditionally, if you would like to customize which tree-sitter grammars\nyou fetch and build, you may now add the use-grammars key to the top of\nyour languages.toml:\n\nIf you're writing a tree-sitter grammar, you can try out integrating it\nby pointing helix to your grammar's local path in languages.toml without\nneeding to publish changes to a Git remote:\n[[language]]\nname = \"mylang\"\n# ..\n\n[[grammar]]\nname = \"mylang\"\nsource = { path = \"/local/path/to/tree-sitter-mylang\" }\n\nRunning hx -g build will build the grammar. Add some queries and you're\non your way to interactive grammar development.\nUp Next\nThe next release is sure to be exciting as well. Contribute and follow\nalong with development in the GitHub repository and be sure to\njoin in on discussions in the Matrix channel.\n","id":"https://helix-editor.com/news/release-22-03-highlights/","title":"Release 22.03 Highlights"},"https://helix-editor.com/news/release-22-05-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday marks the 22.05 release, a featureful release with over double the number\nof contributors as last release (110!). A big thanks to all involved! 🙌\nAlso a big shout out to @amirrezaask for\nthis great Helix introduction video!\nLet's check out the flashy features of 22.05.\nIndentation rework\nThe indentation system has been fully reworked. Indentation still works by\nquerying the parsed tree-sitter syntax tree for a document, but now query files\ncan use the full expressive power of tree-sitter queries rather than just\nsimple node names. Expect more robust indentation with fewer edge cases.\nConfigurable gutters\nGutters can now be configured in your config.toml file. For example, you can\nremove the line-number gutter while still showing LSP diagnostics.\n[editor]\ngutters = [\"diagnostics\"] # default is [\"diagnostics\", \"line-numbers\"]\n\nLocal language configuration\nLanguage configuration can now be specified local to a project. Create a\n.helix directory and a languages.toml under it to override values from the\ndefault language configuration. For example, override a C project's indents\nto use tabs instead of spaces for indentation:\n# my_c_project/.helix/languages.toml\n[[language]]\nname = \"c\"\nindent = { tab-width = 8, unit = \"\\t\" }\n\nRulers\n\nVertical rulers may now be configured through the rulers option. Use them\nas a guide when adhering to a maximum line length.\nShow visible whitespace\n\nWhitespace characters like spaces, tabs, and newlines may now be rendered. Use\nthe whitespace.render option either at runtime with the :set command or in\nyour config.toml under the editor section. Visible whitespace indicators can\nmake Helix's selection model more intuitive, especially around line endings.\nThe characters used for tabs, spaces, non-breaking space, and newlines may also\nbe customized as well as whether any of the characters are rendered at all. In\nfact, for the remaining asciicasts in this post, you'll be seeing my custom tab\nand newline characters!\nUse registers in prompts\n\nValues stored in registers may now be used in prompts like search or global\nsearch. In the above example, we yank a selection to the \" register with\ny and then open up the global search prompt with Space /. The available\nregisters are shown above the prompt and we hit \" to insert the contents of\nthe \" register.\nReflow paragraphs\n\nThe new :reflow command hard-wraps text to a given column width. Default\ncolumn widths may be configured on a per-language basis. Reflow recognizes\nmatching prefixes between lines, so you may reflow line-comments, markdown\nquotes or lines with leading whitespace and the leading characters will be\nplaced appropriately.\nSwap windows\n\nWindows may now be swapped with neighbor windows and splits may be transposed.\nWith the window menu open (C-w or space w), use H, J, K, and L\nto swap the current window with the left, down, up, and right neighbors,\nrespectively. Use t or C-t to switch between a vertical and horizontal\nsplit or vice versa.\nSet a language at runtime\n\nThe language for a buffer may now be set at runtime. Use\n:set-language language (or :lang language for short) to set the language\nand switch language servers.\nWrapping up\nThese are just some highlights from the changes in 22.05. Check out the\nchangelog for the full set. Pick up the release binaries for 22.05 on the\nrelease page. Starting with this release, an AppImage is included in the\nrelease binaries for easier usage from Linux.\nExpect plenty more features and improvements in Helix 22.07 coming in July.\nContribute and follow along with development in the\nGitHub repository and be sure to join in on discussions in the\nMatrix channel.\n","id":"https://helix-editor.com/news/release-22-05-highlights/","title":"Release 22.05 Highlights"},"https://helix-editor.com/news/release-22-08-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday marks the 22.08 release, a release with plenty of fixes and new features.\nA big thank you to our contributors! This release had 87 contributors. 🎉\nLet's check out the highlighted features for 22.08.\nIndent guides\n\nIndent guides provide a visual representation for the current indentation\nlevel. Enable indent guides with the editor.indent-guides.render key.\nThe character used as a guide is also customizable.\nCursorline\n\nThe cursorline is a horizontal highlighted bar that follows your cursor.\nCursorlines may be themed for the primary and all secondary cursors and\ncan be enabled or disabled separate from theming with the editor.cursorline\noption.\nMode colors\n\nThe mode indicator in the statusline may now be styled based on the current\nmode. This feature may be enabled with the editor.color-modes option and\ncolors may be configured using ui.statusline.{insert,normal,select} keys\nin themes.\nConfigurable statusline\n\nThe statusline may now be configured in the editor.statusline section\nof the config. Elements may be placed on the left, center or right of\nthe statusline with a configurable separator and spacers. Two new elements\nmay now also be added to your statusline: file-line-ending and\nposition-percentage.\nLSP signature help\n\nSignature help provides documentation as you type the arguments to a function\ncall and tracks which function parameter is currently being entered. Signature\nhelp is enabled by default.\nLSP document highlight\n\nThe document highlight request (Space-h) creates a selection for all\ninstances of the symbol under the primary cursor. Helix has robust support for\nmultiple selections, so you may edit all selections simultaneously (for\nexample with c) or cycle between selections ((/)).\nLSP diagnostics pickers\n\nThe new buffer and workspace diagnostics pickers may be used to jump to\nLanguage Server diagnostics like warnings and errors. Use Space-g to\nopen the picker with diagnostics for the current buffer and Space-G\nto view all diagnostics in a workspace.\nJumplist picker\n\nThe jumplist saves a history of selections. Save selections with C-s and jump\nforward with C-i and backward with C-o. The jumplist is a powerful tool,\nespecially when working with Language Server goto-definition or global search\nwhich both save to the jumplist automatically.\n22.08 adds a new picker that can be used to jump across entries in the jumplist.\nThe preview pane shows the line of the saved primary selection. Bring up the\njumplist picker with Space-j.\nExternal formatters\n\nMany Language Servers provide format-on-save capabilities. For languages\nwithout Language Servers or for Language Servers that do not implement\nformatting, an external formatter binary may now be configured. The document\nis passed through the formatter's stdin and replaced with the formatted output\nfrom stdout.\nAn external formatter may also be used when you prefer the formatting from an\nexternal tool over formatting provided by a Language Server. For example if you\nconfigure black for formatting Python, formatting will be accomplished with\nblack rather than pylsp.\nBracketed paste\n\nBracketed paste is terminal emulator feature that allows terminal programs to\nrecognize paste sequences and handle the pasted text. Without bracketed paste\nsupport, text pasted with operating-system level paste (C-v) looked to Helix\nlike text that was entered very quickly which lead to some odd side-effects\nlike awkward indentation or mysteriously appearing auto-pair characters.\n22.08 adds support for bracketed paste, so now all pastes into Helix from\nterminal emulators that support bracketed paste work as if you had pressed\nSpace-p in normal mode. In the above cast, the entire text of Moby-Dick\nis pasted with C-v in insert mode instantly.\nWrapping up\nThese changes are just the highlights. Check out the full changelog to see\nall that's changed since 22.05. Release binaries can be found on the release\npage.\nBe ready for more exciting changes in Helix 22.10 expected in October!\nContribute and follow along with development in the\nHelix GitHub repository and be sure to join in on discussions in\nthe Matrix channel.\n","id":"https://helix-editor.com/news/release-22-08-highlights/","title":"Release 22.08 Highlights"},"https://helix-editor.com/news/release-22-12-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday we cut the 22.12 release. This release is big and featureful and saw\ncontributions from 99 contributors. Thank you all! 🎊\nHelix now has a logo! Thank you @jakehl for your\ncontribution!\n\nLooking for an introduction to Helix or to see Helix out in the wild? Check out\nthese new videos on Helix.\n\nhttps://www.youtube.com/watch?v=xHebvTGOdH8\nhttps://www.youtube.com/watch?v=8L308PdmhMY\nhttps://www.youtube.com/watch?v=7mTi278jUS8\n\nNow let's jump into the highlights.\nGit diff gutter\n\nThe new git diff gutter tracks the changes in the current buffer compared to\nthe the git index. The markers in the gutter indicate additions, modifications,\nand removals compared to the file checked in to git. The git diff gutter is\nenabled by default.\nAlso be sure to try out the new hunk textobject: ]g jumps to the next changed\nhunk and [g jumps to the previous.\nUnderline styles and colors\n\nTerminals with support for extended underlines can render underlines with\nstyles like curls or dots as well as colors. Extended underlines can be used to\nimprove the display of LSP diagnostics. These can be configured in themes with\nthe new underline key:\n\"diagnostic.error\" = { underline = { style = \"curl\", color = \"red\" } }\n\nThe existing underline modifier is now an alias for the \"line\" style.\nIf you're looking to use this in a theme that hasn't configured it yet, you\ncan use the new theme inheritance feature to modify just the scopes you would\nlike to change:\n# ~/.config/helix/themes/my-onedark.toml\ninherits = \"onedark\"\n\n\"diagnostic.error\" = { fg = \"errorfg\", bg = \"errorbg\", underline = { color = \"red\" } }\n\nAutosave when the terminal loses focus\n\nTerminals with support for focus events can now automatically save the current\nfile when you focus on a new window. Enable this behavior by setting the\neditor.auto-save configuration key to true.\nMulti-cursor completion\n\nEditing with multiple selections is a central feature within helix. LSP\nauto-completion now applies to all cursors when editing with multiple\nselections, making it easy to replace multiple instances of a symbol with\nauto-complete's help.\nBufferline\n\nThe bufferline is a listing of buffers displayed at the top of a window. It\nprovides an at-a-glance view of the buffers you're working with. Set\nthe editor.bufferline configuration key to \"always\" to always show the\nbufferline, \"multiple\" to show the bufferline only when there are multiple\nbuffers open, and \"never\" to disable it.\nBehind-the-scenes improvements\n22.12 brings also brings important changes to Helix's plumbing:\n\nThe code-path for writing files has been overhauled. This fixes a number of\nedge cases around writing large files and failures to write.\nPerformance has been improved for tree-sitter parsing, querying and the\nhandling of injections. This is a noticeable speed boost for large markdown\nfiles in particular since markdown uses injections extensively.\nFailure handling in the LSP code-paths has been improved. Helix now\ngracefully handles cases like language servers not supporting capabilities\nand unexpected language server crashes.\nThe speed and memory usage of the :reload command has been vastly improved.\nThis comes from the creation of imara-diff, a new diffing\nimplementation which is faster than the one used internally by git!\n\nWrapping up\nThere are many more changes arriving now in 22.12 than we can fit in this post.\nCheck out the 22.12 changelog for the full details on all of the performance\nboosts, usability improvements and fixes in 22.12.\nContribute and follow along with development in the Helix GitHub\nrepository and be sure to join in on discussions in the Matrix\nchannel.\n","id":"https://helix-editor.com/news/release-22-12-highlights/","title":"Release 22.12 Highlights"},"https://helix-editor.com/news/release-23-03-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday marks the 23.03 release. First, a big thank you to everyone involved!\nThis release includes changes from 102 contributors. Today's release brings\nsome especially useful and exciting features, so let's jump right in.\nSoft-wrap\n\nSoft-wrap breaks up lines to fit in view without inserting actual line break\ncharacters into the text (so called \"hard-wrapping\"). This can be useful for\nreading and editing documentation or code with especially long lines. Enable\nsoft-wrap in your config with the editor.soft-wrap.enable key:\n# ~/.config/helix/config.toml\n[editor.soft-wrap]\nenable = true\n\nHeuristics for where to break lines and the wrap indicator may also be\nconfigured.\nSoft-wrap is the first feature implemented on top of a new \"virtual text\" API\nwithin the Helix codebase. The virtual text API allows us to decorate and\nmanipulate the actual text in a document without disturbing positioning and\nmodifications. The virtual text API opens the door for many new exciting\nfeatures like the inlay hints we'll see next.\nInlay hints\n\nInlay hints are a new feature in the latest LSP specification. Language servers\ncan provide editors with hints to show in a document. In the example above,\nrust-analyzer provides type hints for variables and intermediary expressions\nas well as parameter names in function calls.\nInlay hints can be enabled in your config with the lsp.display-inlay-hints\nkey.\nInitial support for snippets\n\nLSP snippets are a way for language servers to provide more complex completions\nfor an editor. Language servers can specify where to place cursors within a\ncompletion (tabstops), placeholder values and more. Helix now has initial\nsupport for LSP completions, leaving more advanced snippet features like\nvirtual placeholders, multiple tabstops, and variable substitutions for future\nwork.\nDynamic workspace symbol picker\n\nThe workspace symbol picker (<space>S) is an LSP-driven feature for looking\nup a symbol in a project. Large projects might have many symbols, though, so\nthis symbol picker typically wouldn't load them all at once. The workspace\nsymbol picker has been reworked in this release though to dynamically\nre-request symbols with a new query as you type in the picker. This lets the\nlanguage server narrow down the number of symbols and only tell Helix about the\nones relevant to the search. This rework fixes compatibility with some language\nservers which returned empty symbols with no query (gopls, pyright,\nclangd) or limited results (rust-analyzer).\nThe \"dynamic picker\" introduced in this refactor may benefit other pickers in\nthe future, for example allowing the global search picker (<space>/) to\nupdate on-the-fly as you change the query.\nVersion control HEAD statusline element\n\nA new statusline element has been added which displays the version control\nHEAD. Add this to your statusline by introducing the \"version-control\"\nelement in the\neditor.statusline\nsection of your config for the left, center or right sides.\nEnhanced keyboard protocol\nSupport for the enhanced keyboard protocol is now enabled. Terminals that\nsupport the protocol (Kitty, WezTerm) can now send unambiguous keycodes to\nHelix, enabling key combinations that weren't possible to bind before like\nC-/, C-h or S-backspace. This functionality works out-of-the-box for\nterminals that support the protocol.\nRuntime directory refactor\nHelix keeps files like tree-sitter parsers and queries, themes and the tutor\nfile in a special \"runtime\" directory. This directory is typically installed\nby your package manager and shouldn't be modified by hand. Multiple runtime\ndirectories are now supported, so you can keep the runtime files installed by\nyour package manager unchanged while adding new tree-sitter parsers and\nqueries to a local runtime directory. On Unix systems you can add files to the\n~/.config/helix/runtime directory which take precedence over the runtime\ndirectory installed by a package manager.\nWrapping up\nThese flashy features are just the tip of the iceberg though. Check out the\n23.03 changelog for the full details on all of the changes in this release.\nCome chat about usage and development questions in the Matrix space\nand follow along with Helix's development in the GitHub repository.\n","id":"https://helix-editor.com/news/release-23-03-highlights/","title":"Release 23.03 Highlights"}},"docInfo":{"https://helix-editor.com/":{"body":0,"title":0},"https://helix-editor.com/news/":{"body":0,"title":1},"https://helix-editor.com/news/release-22-03-highlights/":{"body":457,"title":3},"https://helix-editor.com/news/release-22-05-highlights/":{"body":394,"title":3},"https://helix-editor.com/news/release-22-08-highlights/":{"body":422,"title":3},"https://helix-editor.com/news/release-22-12-highlights/":{"body":362,"title":3},"https://helix-editor.com/news/release-23-03-highlights/":{"body":447,"title":3}},"length":7},"lang":"English"}; \ No newline at end of file +window.searchIndex = {"fields":["title","body"],"pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5","index":{"body":{"root":{"docs":{},"df":0,"1":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"0":{"docs":{},"df":0,"2":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"1":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"2":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0}},"df":1},"5":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2},"7":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"8":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979}},"df":1}},"1":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"2":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178}},"df":1}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}},"1":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.449489742783178}},"df":1}}}}},"5":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"6":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"0":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"8":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"7":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"9":{"docs":{},"df":0,"9":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"_":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"c":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"z":{"docs":{},"df":0,"a":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"y":{"docs":{},"df":0,"z":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"p":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":2}}}}}}},"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"y":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":6},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":2}}},"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"x":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979}},"df":1}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":5}}}},"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":1}}}}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.8284271247461903}},"df":1},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}}},"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4},"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.449489742783178}},"df":6,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":4}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}}},"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":6}}}},"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1,"p":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":2}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}},"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":3,"e":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"x":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"r":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"/":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.449489742783178}},"df":5}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":4,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}}}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":4,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1}}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{},"df":0,"z":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"y":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}},"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":6}}}}}},"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":4,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}}}}}}}}},"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":1}}}}}}}}}}}}}}}}},"f":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"f":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":1}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4}}}}}}},"s":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":4}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"o":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2,"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":4}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"w":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"y":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":2}},"s":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2},"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6,".":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}}}}}}},"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"f":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":1}},"j":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}}}},"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4}}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":4},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2,"b":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":4}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}}}},"x":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":5}}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"s":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":6}}}},"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"g":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.8284271247461903}},"df":5},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2},"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1},"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":1}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":3,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":5,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}},"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"z":{"docs":{},"df":0,"f":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":3,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178}},"df":2,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}},"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}},"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":4.0}},"df":1,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0}},"df":2,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":2}}}}}},"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3}}},"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.4641016151377544},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.6457513110645907}},"df":6,"'":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}},"l":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":2}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":6}}}}}}},"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.6457513110645907}},"df":1}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"z":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"p":{"docs":{},"df":0,"s":{"docs":{},"df":0,":":{"docs":{},"df":0,"/":{"docs":{},"df":0,"/":{"docs":{},"df":0,"g":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}},"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,"w":{"docs":{},"df":0,".":{"docs":{},"df":0,"y":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"/":{"docs":{},"df":0,"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"?":{"docs":{},"df":0,"v":{"docs":{},"df":0,"=":{"docs":{},"df":0,"7":{"docs":{},"df":0,"m":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"2":{"docs":{},"df":0,"7":{"docs":{},"df":0,"8":{"docs":{},"df":0,"j":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"8":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"8":{"docs":{},"df":0,"l":{"docs":{},"df":0,"3":{"docs":{},"df":0,"0":{"docs":{},"df":0,"8":{"docs":{},"df":0,"p":{"docs":{},"df":0,"d":{"docs":{},"df":0,"m":{"docs":{},"df":0,"h":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"x":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"t":{"docs":{},"df":0,"g":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"h":{"docs":{},"df":0,"8":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}},"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178}},"df":1}},"i":{"docs":{},"df":0,"'":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178}},"df":3}}}}},"n":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979}},"df":2}},"x":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":2}},"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979}},"df":1}}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1},"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2},"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}},"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"v":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}}},"s":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"t":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}},"j":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"v":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":4}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":4,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178}},"df":1}}}}}}}},"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"k":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"y":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":5,"2":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":3.605551275463989},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":5.196152422706632}},"df":6,"e":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}}}}}}}}}}},"r":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"z":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2},"v":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"f":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}},"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"'":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":6},"u":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"/":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"/":{"docs":{},"df":0,"t":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"g":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":6,".":{"docs":{},"df":0,"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}},"t":{"docs":{},"df":0,";":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,";":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"&":{"docs":{},"df":0,"g":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"k":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":2,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}},"x":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"u":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"n":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}},"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178}},"df":1,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"f":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":6}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":6}}}}}},"y":{"docs":{},"df":0,"_":{"docs":{},"df":0,"c":{"docs":{},"df":0,"_":{"docs":{},"df":0,"p":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"/":{"docs":{},"df":0,".":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"x":{"docs":{},"df":0,"/":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":4}},"r":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"w":{"docs":{"https://helix-editor.com/news/":{"tf":1.0},"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.6457513110645907}},"df":7,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}},"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2},"h":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2},"f":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}},"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.449489742783178}},"df":6}},"u":{"docs":{},"df":0,"c":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":1}}}},"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}}}}}},"o":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1,"b":{"docs":{},"df":0,"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"d":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1},"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1},"e":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,".":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4},"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":6,"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}},"g":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":3,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":3.3166247903554},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":3}},"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}},"v":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"f":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":3}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}},"u":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"f":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"s":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1,"s":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"n":{"docs":{},"df":0,"!":{"docs":{},"df":0,"(":{"docs":{},"df":0,"\"":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2,"'":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3}}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":6}}}}},"v":{"docs":{},"df":0,"i":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":3}}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.23606797749979}},"df":4}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":2,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"c":{"docs":{},"df":0,"e":{"docs":{},"df":0,"i":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"g":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}},"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":1},"f":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0}},"df":1}}}},"g":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"e":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":3.3166247903554}},"df":2}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.449489742783178}},"df":6,"e":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"v":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"v":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}}},"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":3}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}}},"i":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":2}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951}},"df":1,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}},"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4}}}},"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}}}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}}},"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178}},"df":3}}}},"s":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}}},"s":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3,"a":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}},"w":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}},"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}}}}},"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":5},"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.8284271247461903}},"df":6}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}},"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2,"(":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"f":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}},"q":{"docs":{},"df":0,"u":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"v":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.6457513110645907},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":3.872983346207417}},"df":6,"(":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"f":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"t":{"docs":{},"df":0,"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":2}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"n":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2}},"g":{"docs":{},"df":0,"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"i":{"docs":{},"df":0,"f":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}},"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"p":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"t":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.3166247903554},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":6}}}}},"k":{"docs":{},"df":0,"i":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1,"/":{"docs":{},"df":0,"f":{"docs":{},"df":0,"u":{"docs":{},"df":0,"z":{"docs":{},"df":0,"z":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"l":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"n":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}}}},"o":{"docs":{},"df":0,"f":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":1}},"u":{"docs":{},"df":0,"r":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.7320508075688772}},"df":1}}}},"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4,"r":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":2}},"f":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":2,"i":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"e":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}},"i":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}},"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3}}}}}},"y":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1},"o":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}},"e":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"i":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"y":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.0}},"df":2}}}},"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"m":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"u":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.0}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"p":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.8284271247461903}},"df":6}}}}},"r":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":4}}},"w":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}}}},"y":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":3.0}},"df":3}}}},"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":3}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":5}}}}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1,"a":{"docs":{},"df":0,"b":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.0}},"df":2,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"k":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"m":{"docs":{},"df":0,"p":{"docs":{},"df":0,"l":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}},"r":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}},"x":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6,"o":{"docs":{},"df":0,"b":{"docs":{},"df":0,"j":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}}}}},"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":5}},"t":{"docs":{},"df":0,"'":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}},"e":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"y":{"docs":{},"df":0,"'":{"docs":{},"df":0,"v":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3}}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3}}}}}},"i":{"docs":{},"df":0,"m":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"p":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"o":{"docs":{},"df":0,"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"y":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4,"'":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"g":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}},"k":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"o":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1}},"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}},"i":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"o":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}},"e":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":3.1622776601683795},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":6,"'":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"h":{"docs":{},"df":0,"o":{"docs":{},"df":0,"o":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}},"u":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":4}}},"u":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}},"w":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"t":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2}},"y":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":3,"s":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"p":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":2.23606797749979}},"df":1}}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"u":{"docs":{},"df":0,"i":{"docs":{},"df":0,".":{"docs":{},"df":0,"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"s":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"{":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,",":{"docs":{},"df":0,"n":{"docs":{},"df":0,"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,",":{"docs":{},"df":0,"s":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}}},"n":{"docs":{},"df":0,"a":{"docs":{},"df":0,"m":{"docs":{},"df":0,"b":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"g":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":2,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.8284271247461903}},"df":1}}}}}},"e":{"docs":{},"df":0,"x":{"docs":{},"df":0,"p":{"docs":{},"df":0,"e":{"docs":{},"df":0,"c":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}}},"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"t":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"x":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"p":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"d":{"docs":{},"df":0,"a":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}},"g":{"docs":{},"df":0,"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":3.1622776601683795},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":2.449489742783178},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":3.4641016151377544}},"df":6,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"g":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":4}},"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}},"x":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}},"v":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"l":{"docs":{},"df":0,"u":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":3,"e":{"docs":{},"df":0,"2":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}},"r":{"docs":{},"df":0,"i":{"docs":{},"df":0,"a":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"s":{"docs":{},"df":0,"t":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}}},"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"i":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":3},"s":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"i":{"docs":{},"df":0,"o":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}},"t":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}}}},"i":{"docs":{},"df":0,"a":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1},"c":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"d":{"docs":{},"df":0,"e":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":2}}},"e":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":3}},"r":{"docs":{},"df":0,"t":{"docs":{},"df":0,"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.0}},"df":1}}}}},"s":{"docs":{},"df":0,"i":{"docs":{},"df":0,"b":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1}}},"u":{"docs":{},"df":0,"a":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}}}}}},"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951}},"df":1,"a":{"docs":{},"df":0,"r":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"t":{"docs":{},"df":0,"c":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"y":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.7320508075688772}},"df":3}},"e":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}},"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2},"v":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}},"l":{"docs":{},"df":0,"c":{"docs":{},"df":0,"o":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"l":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":4}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"z":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{},"df":0,"m":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}},"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"e":{"docs":{},"df":0,"r":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2,"e":{"docs":{},"df":0,".":{"docs":{},"df":0,"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"i":{"docs":{},"df":0,"d":{"docs":{},"df":0,"t":{"docs":{},"df":0,"h":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.7320508075688772}},"df":1}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}},"n":{"docs":{},"df":0,"d":{"docs":{},"df":0,"o":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"t":{"docs":{},"df":0,"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951}},"df":3}}}}}},"o":{"docs":{},"df":0,"r":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":6,"s":{"docs":{},"df":0,"p":{"docs":{},"df":0,"a":{"docs":{},"df":0,"c":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.7320508075688772}},"df":2}}}}},"l":{"docs":{},"df":0,"d":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}},"u":{"docs":{},"df":0,"l":{"docs":{},"df":0,"d":{"docs":{},"df":0,"n":{"docs":{},"df":0,"'":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}}}},"r":{"docs":{},"df":0,"a":{"docs":{},"df":0,"p":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":2.8284271247461903},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":5,".":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}}}}},"i":{"docs":{},"df":0,"t":{"docs":{},"df":0,"e":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.4142135623730951},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.7320508075688772}},"df":2},"t":{"docs":{},"df":0,"e":{"docs":{},"df":0,"n":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.4142135623730951}},"df":1}}}}}}},"y":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1,"a":{"docs":{},"df":0,"n":{"docs":{},"df":0,"k":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":2}}},"o":{"docs":{},"df":0,"u":{"docs":{},"df":0,"'":{"docs":{},"df":0,"l":{"docs":{},"df":0,"l":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1}},"r":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":2.23606797749979},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.4142135623730951}},"df":2}}}},"y":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"m":{"docs":{},"df":0,"(":{"docs":{},"df":0,".":{"docs":{},"df":0,"m":{"docs":{},"df":0,"i":{"docs":{},"df":0,"c":{"docs":{},"df":0,"r":{"docs":{},"df":0,"o":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1}}}}}}}}}}}}}},"title":{"root":{"docs":{},"df":0,"2":{"docs":{},"df":0,"2":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0}},"df":1},"5":{"docs":{"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0}},"df":1},"8":{"docs":{"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0}},"df":1}},"1":{"docs":{},"df":0,"2":{"docs":{"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0}},"df":1}}}},"3":{"docs":{},"df":0,".":{"docs":{},"df":0,"0":{"docs":{},"df":0,"3":{"docs":{"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0}},"df":1}},"1":{"docs":{},"df":0,"0":{"docs":{"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":1}}}}},"h":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"l":{"docs":{},"df":0,"i":{"docs":{},"df":0,"g":{"docs":{},"df":0,"h":{"docs":{},"df":0,"t":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}}}}}}},"n":{"docs":{},"df":0,"e":{"docs":{},"df":0,"w":{"docs":{"https://helix-editor.com/news/":{"tf":1.0}},"df":1}}},"r":{"docs":{},"df":0,"e":{"docs":{},"df":0,"l":{"docs":{},"df":0,"e":{"docs":{},"df":0,"a":{"docs":{},"df":0,"s":{"docs":{"https://helix-editor.com/news/release-22-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-05-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-08-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-22-12-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-03-highlights/":{"tf":1.0},"https://helix-editor.com/news/release-23-10-highlights/":{"tf":1.0}},"df":6}}}}}}}}},"documentStore":{"save":true,"docs":{"https://helix-editor.com/":{"body":"","id":"https://helix-editor.com/","title":""},"https://helix-editor.com/news/":{"body":"","id":"https://helix-editor.com/news/","title":"News"},"https://helix-editor.com/news/release-22-03-highlights/":{"body":"Ranging from small quality-of-life improvements and fixes to large features\nand refactors, Helix 22.03 brings some exciting changes. Helix is a modal\ntext editor with built-in support for multiple selections, Language\nServer Protocol (LSP), tree-sitter, and now Debug Adapter Protocol (DAP).\nBefore we look at the highlights, there are some administrative notes.\nmaster branch changes are now published separately from the release\ndocumentation. Find the new master docs here.\nHelix is switching versioning schemes. Expect to find new releases in\nCalendar Version format: YY.0M(.MICRO). We're aiming to cut regular\nreleases every two months or so. Check out the changelog\nfor all of the new features and fixes from this release.\nWith that out of the way, let's check out the highlights!\nHealth-check\nHelix 22.03 brings a new CLI flag: hx --health. Use the new health-check\nflag to troubleshoot missing language servers and queries.\nCheck the health of all languages with hx --health or ask for details\nabout a specific language with hx --health <lang>.\n\nExperimental DAP Support\nDebug Adapter Protocol (DAP) is an abstract protocol for editors and debuggers\nto communicate. It's very similar in spirit to the Language Server Protocol\n(LSP), but built for debugging. Interact with the debug adapter with\n<space-d>.\n\nNote that the DAP adapter is experimental: it isn't yet documented, there may\nbe bugs, and the UX is a bit clunky. Contributions are very welcome!\nIncremental Injection Parsing Rewrite\nOne of the cooler features of syntax highlight driven by tree-sitter is the\nability to inject a language into another language's document. For example,\nif you're writing Markdown, you might use a code-fence like so:\nThis is some rust:\n\n```rust\nprintln!(\"Hello, world!\")\n```\n\nHelix highlights the Rust block by injecting tree-sitter-rust. Injections\nhave been rewritten so that changes within are now parsed incrementally, which\nis a big speed boost when editing documents with large injected blocks.\nAlong with this rewrite, Helix now supports combined injections. For example,\nwhen highlighting Interactive Elixir (IEx), we might have a block of code like\nthe following:\niex> send(self(), :hello)\niex> receive do: (:hello -> :ok)\n\nThe IEx grammar injects tree-sitter-elixir into each line after the prompt\ntoken. Combined injections cover the case where separate injected documents\nmust be parsed in one combined document, like so:\niex> if true do\n...> :ok\n...> end\n\nHelix can now parse all three lines together. In the future this can be used\nto add support for templating languages like EJS or ERB.\nTree-Sitter Grammars Refactor\nIn the past, tree-sitter grammar repositories have been added to the Helix\nrepository as Git submodules. Submodules can be painful to work with though,\nespecially when there are more than 50 in a repository. Cloning, CI, and\npackaging times have slowed down as language support has improved.\nHelix 22.03 completely overhauls the system for tree-sitter grammars. The headline\nis that submodules are gone! If you're working with the source, you can\nnow clone with a standard git clone https://github.com/helix-editor/helix.\nSo where did the tree-sitter submodules go? They've been replaced with two\nnew CLI flags: hx --grammar fetch to clone grammar repositories into the\nruntime directory and hx --grammar build to compile them. Use -g for\nshort. Grammar repositories are shallow-cloned in parallel, so fetching all\n60 grammars can now take as little as 6 seconds on a good connection.\nIf you're building from source or developing Helix, note that fetching and\nbuilding are included in the helix-term build step, so you should not\nneed to manually fetch or build grammars.\nAdditionally, if you would like to customize which tree-sitter grammars\nyou fetch and build, you may now add the use-grammars key to the top of\nyour languages.toml:\n\nIf you're writing a tree-sitter grammar, you can try out integrating it\nby pointing helix to your grammar's local path in languages.toml without\nneeding to publish changes to a Git remote:\n[[language]]\nname = \"mylang\"\n# ..\n\n[[grammar]]\nname = \"mylang\"\nsource = { path = \"/local/path/to/tree-sitter-mylang\" }\n\nRunning hx -g build will build the grammar. Add some queries and you're\non your way to interactive grammar development.\nUp Next\nThe next release is sure to be exciting as well. Contribute and follow\nalong with development in the GitHub repository and be sure to\njoin in on discussions in the Matrix channel.\n","id":"https://helix-editor.com/news/release-22-03-highlights/","title":"Release 22.03 Highlights"},"https://helix-editor.com/news/release-22-05-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday marks the 22.05 release, a featureful release with over double the number\nof contributors as last release (110!). A big thanks to all involved! 🙌\nAlso a big shout out to @amirrezaask for\nthis great Helix introduction video!\nLet's check out the flashy features of 22.05.\nIndentation rework\nThe indentation system has been fully reworked. Indentation still works by\nquerying the parsed tree-sitter syntax tree for a document, but now query files\ncan use the full expressive power of tree-sitter queries rather than just\nsimple node names. Expect more robust indentation with fewer edge cases.\nConfigurable gutters\nGutters can now be configured in your config.toml file. For example, you can\nremove the line-number gutter while still showing LSP diagnostics.\n[editor]\ngutters = [\"diagnostics\"] # default is [\"diagnostics\", \"line-numbers\"]\n\nLocal language configuration\nLanguage configuration can now be specified local to a project. Create a\n.helix directory and a languages.toml under it to override values from the\ndefault language configuration. For example, override a C project's indents\nto use tabs instead of spaces for indentation:\n# my_c_project/.helix/languages.toml\n[[language]]\nname = \"c\"\nindent = { tab-width = 8, unit = \"\\t\" }\n\nRulers\n\nVertical rulers may now be configured through the rulers option. Use them\nas a guide when adhering to a maximum line length.\nShow visible whitespace\n\nWhitespace characters like spaces, tabs, and newlines may now be rendered. Use\nthe whitespace.render option either at runtime with the :set command or in\nyour config.toml under the editor section. Visible whitespace indicators can\nmake Helix's selection model more intuitive, especially around line endings.\nThe characters used for tabs, spaces, non-breaking space, and newlines may also\nbe customized as well as whether any of the characters are rendered at all. In\nfact, for the remaining asciicasts in this post, you'll be seeing my custom tab\nand newline characters!\nUse registers in prompts\n\nValues stored in registers may now be used in prompts like search or global\nsearch. In the above example, we yank a selection to the \" register with\ny and then open up the global search prompt with Space /. The available\nregisters are shown above the prompt and we hit \" to insert the contents of\nthe \" register.\nReflow paragraphs\n\nThe new :reflow command hard-wraps text to a given column width. Default\ncolumn widths may be configured on a per-language basis. Reflow recognizes\nmatching prefixes between lines, so you may reflow line-comments, markdown\nquotes or lines with leading whitespace and the leading characters will be\nplaced appropriately.\nSwap windows\n\nWindows may now be swapped with neighbor windows and splits may be transposed.\nWith the window menu open (C-w or space w), use H, J, K, and L\nto swap the current window with the left, down, up, and right neighbors,\nrespectively. Use t or C-t to switch between a vertical and horizontal\nsplit or vice versa.\nSet a language at runtime\n\nThe language for a buffer may now be set at runtime. Use\n:set-language language (or :lang language for short) to set the language\nand switch language servers.\nWrapping up\nThese are just some highlights from the changes in 22.05. Check out the\nchangelog for the full set. Pick up the release binaries for 22.05 on the\nrelease page. Starting with this release, an AppImage is included in the\nrelease binaries for easier usage from Linux.\nExpect plenty more features and improvements in Helix 22.07 coming in July.\nContribute and follow along with development in the\nGitHub repository and be sure to join in on discussions in the\nMatrix channel.\n","id":"https://helix-editor.com/news/release-22-05-highlights/","title":"Release 22.05 Highlights"},"https://helix-editor.com/news/release-22-08-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday marks the 22.08 release, a release with plenty of fixes and new features.\nA big thank you to our contributors! This release had 87 contributors. 🎉\nLet's check out the highlighted features for 22.08.\nIndent guides\n\nIndent guides provide a visual representation for the current indentation\nlevel. Enable indent guides with the editor.indent-guides.render key.\nThe character used as a guide is also customizable.\nCursorline\n\nThe cursorline is a horizontal highlighted bar that follows your cursor.\nCursorlines may be themed for the primary and all secondary cursors and\ncan be enabled or disabled separate from theming with the editor.cursorline\noption.\nMode colors\n\nThe mode indicator in the statusline may now be styled based on the current\nmode. This feature may be enabled with the editor.color-modes option and\ncolors may be configured using ui.statusline.{insert,normal,select} keys\nin themes.\nConfigurable statusline\n\nThe statusline may now be configured in the editor.statusline section\nof the config. Elements may be placed on the left, center or right of\nthe statusline with a configurable separator and spacers. Two new elements\nmay now also be added to your statusline: file-line-ending and\nposition-percentage.\nLSP signature help\n\nSignature help provides documentation as you type the arguments to a function\ncall and tracks which function parameter is currently being entered. Signature\nhelp is enabled by default.\nLSP document highlight\n\nThe document highlight request (Space-h) creates a selection for all\ninstances of the symbol under the primary cursor. Helix has robust support for\nmultiple selections, so you may edit all selections simultaneously (for\nexample with c) or cycle between selections ((/)).\nLSP diagnostics pickers\n\nThe new buffer and workspace diagnostics pickers may be used to jump to\nLanguage Server diagnostics like warnings and errors. Use Space-g to\nopen the picker with diagnostics for the current buffer and Space-G\nto view all diagnostics in a workspace.\nJumplist picker\n\nThe jumplist saves a history of selections. Save selections with C-s and jump\nforward with C-i and backward with C-o. The jumplist is a powerful tool,\nespecially when working with Language Server goto-definition or global search\nwhich both save to the jumplist automatically.\n22.08 adds a new picker that can be used to jump across entries in the jumplist.\nThe preview pane shows the line of the saved primary selection. Bring up the\njumplist picker with Space-j.\nExternal formatters\n\nMany Language Servers provide format-on-save capabilities. For languages\nwithout Language Servers or for Language Servers that do not implement\nformatting, an external formatter binary may now be configured. The document\nis passed through the formatter's stdin and replaced with the formatted output\nfrom stdout.\nAn external formatter may also be used when you prefer the formatting from an\nexternal tool over formatting provided by a Language Server. For example if you\nconfigure black for formatting Python, formatting will be accomplished with\nblack rather than pylsp.\nBracketed paste\n\nBracketed paste is terminal emulator feature that allows terminal programs to\nrecognize paste sequences and handle the pasted text. Without bracketed paste\nsupport, text pasted with operating-system level paste (C-v) looked to Helix\nlike text that was entered very quickly which lead to some odd side-effects\nlike awkward indentation or mysteriously appearing auto-pair characters.\n22.08 adds support for bracketed paste, so now all pastes into Helix from\nterminal emulators that support bracketed paste work as if you had pressed\nSpace-p in normal mode. In the above cast, the entire text of Moby-Dick\nis pasted with C-v in insert mode instantly.\nWrapping up\nThese changes are just the highlights. Check out the full changelog to see\nall that's changed since 22.05. Release binaries can be found on the release\npage.\nBe ready for more exciting changes in Helix 22.10 expected in October!\nContribute and follow along with development in the\nHelix GitHub repository and be sure to join in on discussions in\nthe Matrix channel.\n","id":"https://helix-editor.com/news/release-22-08-highlights/","title":"Release 22.08 Highlights"},"https://helix-editor.com/news/release-22-12-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday we cut the 22.12 release. This release is big and featureful and saw\ncontributions from 99 contributors. Thank you all! 🎊\nHelix now has a logo! Thank you @jakehl for your\ncontribution!\n\nLooking for an introduction to Helix or to see Helix out in the wild? Check out\nthese new videos on Helix.\n\nhttps://www.youtube.com/watch?v=xHebvTGOdH8\nhttps://www.youtube.com/watch?v=8L308PdmhMY\nhttps://www.youtube.com/watch?v=7mTi278jUS8\n\nNow let's jump into the highlights.\nGit diff gutter\n\nThe new git diff gutter tracks the changes in the current buffer compared to\nthe the git index. The markers in the gutter indicate additions, modifications,\nand removals compared to the file checked in to git. The git diff gutter is\nenabled by default.\nAlso be sure to try out the new hunk textobject: ]g jumps to the next changed\nhunk and [g jumps to the previous.\nUnderline styles and colors\n\nTerminals with support for extended underlines can render underlines with\nstyles like curls or dots as well as colors. Extended underlines can be used to\nimprove the display of LSP diagnostics. These can be configured in themes with\nthe new underline key:\n\"diagnostic.error\" = { underline = { style = \"curl\", color = \"red\" } }\n\nThe existing underline modifier is now an alias for the \"line\" style.\nIf you're looking to use this in a theme that hasn't configured it yet, you\ncan use the new theme inheritance feature to modify just the scopes you would\nlike to change:\n# ~/.config/helix/themes/my-onedark.toml\ninherits = \"onedark\"\n\n\"diagnostic.error\" = { fg = \"errorfg\", bg = \"errorbg\", underline = { color = \"red\" } }\n\nAutosave when the terminal loses focus\n\nTerminals with support for focus events can now automatically save the current\nfile when you focus on a new window. Enable this behavior by setting the\neditor.auto-save configuration key to true.\nMulti-cursor completion\n\nEditing with multiple selections is a central feature within helix. LSP\nauto-completion now applies to all cursors when editing with multiple\nselections, making it easy to replace multiple instances of a symbol with\nauto-complete's help.\nBufferline\n\nThe bufferline is a listing of buffers displayed at the top of a window. It\nprovides an at-a-glance view of the buffers you're working with. Set\nthe editor.bufferline configuration key to \"always\" to always show the\nbufferline, \"multiple\" to show the bufferline only when there are multiple\nbuffers open, and \"never\" to disable it.\nBehind-the-scenes improvements\n22.12 brings also brings important changes to Helix's plumbing:\n\nThe code-path for writing files has been overhauled. This fixes a number of\nedge cases around writing large files and failures to write.\nPerformance has been improved for tree-sitter parsing, querying and the\nhandling of injections. This is a noticeable speed boost for large markdown\nfiles in particular since markdown uses injections extensively.\nFailure handling in the LSP code-paths has been improved. Helix now\ngracefully handles cases like language servers not supporting capabilities\nand unexpected language server crashes.\nThe speed and memory usage of the :reload command has been vastly improved.\nThis comes from the creation of imara-diff, a new diffing\nimplementation which is faster than the one used internally by git!\n\nWrapping up\nThere are many more changes arriving now in 22.12 than we can fit in this post.\nCheck out the 22.12 changelog for the full details on all of the performance\nboosts, usability improvements and fixes in 22.12.\nContribute and follow along with development in the Helix GitHub\nrepository and be sure to join in on discussions in the Matrix\nchannel.\n","id":"https://helix-editor.com/news/release-22-12-highlights/","title":"Release 22.12 Highlights"},"https://helix-editor.com/news/release-23-03-highlights/":{"body":"Helix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nToday marks the 23.03 release. First, a big thank you to everyone involved!\nThis release includes changes from 102 contributors. Today's release brings\nsome especially useful and exciting features, so let's jump right in.\nSoft-wrap\n\nSoft-wrap breaks up lines to fit in view without inserting actual line break\ncharacters into the text (so called \"hard-wrapping\"). This can be useful for\nreading and editing documentation or code with especially long lines. Enable\nsoft-wrap in your config with the editor.soft-wrap.enable key:\n# ~/.config/helix/config.toml\n[editor.soft-wrap]\nenable = true\n\nHeuristics for where to break lines and the wrap indicator may also be\nconfigured.\nSoft-wrap is the first feature implemented on top of a new \"virtual text\" API\nwithin the Helix codebase. The virtual text API allows us to decorate and\nmanipulate the actual text in a document without disturbing positioning and\nmodifications. The virtual text API opens the door for many new exciting\nfeatures like the inlay hints we'll see next.\nInlay hints\n\nInlay hints are a new feature in the latest LSP specification. Language servers\ncan provide editors with hints to show in a document. In the example above,\nrust-analyzer provides type hints for variables and intermediary expressions\nas well as parameter names in function calls.\nInlay hints can be enabled in your config with the lsp.display-inlay-hints\nkey.\nInitial support for snippets\n\nLSP snippets are a way for language servers to provide more complex completions\nfor an editor. Language servers can specify where to place cursors within a\ncompletion (tabstops), placeholder values and more. Helix now has initial\nsupport for LSP completions, leaving more advanced snippet features like\nvirtual placeholders, multiple tabstops, and variable substitutions for future\nwork.\nDynamic workspace symbol picker\n\nThe workspace symbol picker (<space>S) is an LSP-driven feature for looking\nup a symbol in a project. Large projects might have many symbols, though, so\nthis symbol picker typically wouldn't load them all at once. The workspace\nsymbol picker has been reworked in this release though to dynamically\nre-request symbols with a new query as you type in the picker. This lets the\nlanguage server narrow down the number of symbols and only tell Helix about the\nones relevant to the search. This rework fixes compatibility with some language\nservers which returned empty symbols with no query (gopls, pyright,\nclangd) or limited results (rust-analyzer).\nThe \"dynamic picker\" introduced in this refactor may benefit other pickers in\nthe future, for example allowing the global search picker (<space>/) to\nupdate on-the-fly as you change the query.\nVersion control HEAD statusline element\n\nA new statusline element has been added which displays the version control\nHEAD. Add this to your statusline by introducing the \"version-control\"\nelement in the\neditor.statusline\nsection of your config for the left, center or right sides.\nEnhanced keyboard protocol\nSupport for the enhanced keyboard protocol is now enabled. Terminals that\nsupport the protocol (Kitty, WezTerm) can now send unambiguous keycodes to\nHelix, enabling key combinations that weren't possible to bind before like\nC-/, C-h or S-backspace. This functionality works out-of-the-box for\nterminals that support the protocol.\nRuntime directory refactor\nHelix keeps files like tree-sitter parsers and queries, themes and the tutor\nfile in a special \"runtime\" directory. This directory is typically installed\nby your package manager and shouldn't be modified by hand. Multiple runtime\ndirectories are now supported, so you can keep the runtime files installed by\nyour package manager unchanged while adding new tree-sitter parsers and\nqueries to a local runtime directory. On Unix systems you can add files to the\n~/.config/helix/runtime directory which take precedence over the runtime\ndirectory installed by a package manager.\nWrapping up\nThese flashy features are just the tip of the iceberg though. Check out the\n23.03 changelog for the full details on all of the changes in this release.\nCome chat about usage and development questions in the Matrix space\nand follow along with Helix's development in the GitHub repository.\n","id":"https://helix-editor.com/news/release-23-03-highlights/","title":"Release 23.03 Highlights"},"https://helix-editor.com/news/release-23-10-highlights/":{"body":"The Helix 23.10 release is finally here! 23.10 introduces some very large\ninternal changes that enable some powerful features. A very big thank you to\neveryone who made this release possible.\nNew to Helix?\nHelix is a modal text editor with built-in support for multiple selections,\nLanguage Server Protocol (LSP), tree-sitter, and experimental support for Debug\nAdapter Protocol (DAP).\nLet's check out this release's highlights.\nMultiple language servers\n23.10 brings a big change to the way we handle language servers.\nPreviously each language could only support one language server at a time but\nnow you can configure multiple to work in tandem. For example you might use\nthe TypeScript language server for JavaScript/TypeScript development and also\nconfigure efm-langserver for\nPrettier formatting and ESLint diagnostics. With the new support for multiple\nlanguage servers, you can specify which features to use from each language\nserver.\nThis brings a big change to the way language servers are configured in your\nlanguage configuration (languages.toml). All language servers are now\nspecified separately from languages and then each language selects which\nlanguage server(s) to use. From the example above, you might configure efm-\nlangserver and typescript-language-server like so:\n[language-server.efm]\ncommand = \"efm-langserver\"\nconfig.documentFormatting = true\n\n[language-server.typescript-language-server]\ncommand = \"typescript-language-server\"\nargs = [\"--stdio\"]\nconfig.hostInfo = \"helix\"\n\n[[language]]\nname = \"typescript\"\nauto-format = true\nlanguage-servers = [\n { name = \"efm\", only-features = [\"format\", \"diagnostics\"] },\n { name = \"typescript-language-server\", except-features = [\"format\", \"diagnostics\"] },\n]\n\nSee more details in the language configuration docs.\nFuzzy matching with Nucleo\n\nHelix uses \"fuzzy\" matching to filter as-you-type in components like the file\npicker. Previously we used the popular skim/fuzzy-matcher crates but in the\n23.10 release we've switched to the new\nnucleo crate. Nucleo is\nsignificantly faster than skim and fzf, handles Unicode correctly, and uses a\nbonus system that feels more intuitive.\nNucleo also enables us to lazily stream in new items, which is a big boost for\nthe user experience for pickers. In the asciicast above I'm scanning through\nmy computer's /nix/store, a huge directory containing more than twenty\nmillion files. The file picker now works gradually as we scan through the\ndirectory and matches files as we find them.\nNucleo also paves the way for future picker upgrades. Stay tuned to the\nupcoming release notes to see where we'll take the picker.\nSmart tab\nSmart tab is a new feature bound to the tab key in the default keymap. When\nyou press tab and the line to the left of the cursor isn't all whitespace,\nthe cursor will jump to the end of the syntax tree's parent node. For example:\n{\n key = \"value\";\n nested = {\n key2 = \"value2\"; # When the cursor is at the end of the line here, <tab>\n # jumps right after the closing brace on the next line.\n };\n}\n\nThis is useful in languages like Nix for adding semicolons at the end of an\nattribute set or jumping to the end of a block in a C-like language:\n\nExpanded support for registers\n\nRegisters allow you to save and paste values. For example you might select\na paragraph, use \"ay to yank it into the a register, and later use \"ap\nto paste that paragraph. Some registers have special effects when read or\nwritten to though like the _ \"blackhole\" register: any values written are\ndiscarded and nothing can be read. Special registers have been expanded to\ninclude some useful ones from Kakoune and clipboard registers:\n\n%: the current buffer name\n#: the number of each selection, 1-indexed\n.: the contents of each selection\n* and +: system and primary clipboards\n\nAlso check out the new register statusline element. It appears when you select\na register with \". Notice the reg=# in the bottom-right corner of the\nstatusline in the asciicast when we select the # register and how it goes\naway when we paste that register (p) or increment the selections (C-a).\nInitial support for LSP DidChangeWatchedFiles\n\nSome language servers use the DidChangeWatchedFiles notification to discover\nchanges to related files in other languages. For example, rust-analyzer will\nfetch and index new dependencies when you add them to your Cargo.toml.\nHelix will now send file change notifications when the file is changed by\nHelix itself. Full support for DidChangeWatchedFiles will require a file\nwatcher but for now we're able to support the most common use-case for\nDidChangeWatchedFiles.\nSyntax highlight regex prompts\n\nRegex prompts like those created with s, S or | are now syntax highlighted\nvia tree-sitter-regex. The highlighting makes special characters more obvious\nand can catch syntax errors like trailing backslashes.\nWrapping up\nAs always, this is just the tip of the iceberg for the 23.10 release. Check out\nthe changelog for the full details.\nCome chat about usage and development questions in the Matrix space\nand follow along with Helix's development in the GitHub repository.\n","id":"https://helix-editor.com/news/release-23-10-highlights/","title":"Release 23.10 Highlights"}},"docInfo":{"https://helix-editor.com/":{"body":0,"title":0},"https://helix-editor.com/news/":{"body":0,"title":1},"https://helix-editor.com/news/release-22-03-highlights/":{"body":457,"title":3},"https://helix-editor.com/news/release-22-05-highlights/":{"body":394,"title":3},"https://helix-editor.com/news/release-22-08-highlights/":{"body":422,"title":3},"https://helix-editor.com/news/release-22-12-highlights/":{"body":362,"title":3},"https://helix-editor.com/news/release-23-03-highlights/":{"body":447,"title":3},"https://helix-editor.com/news/release-23-10-highlights/":{"body":500,"title":3}},"length":8},"lang":"English"}; \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml index dda5a90..7f0bec6 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -26,4 +26,8 @@ https://helix-editor.com/news/release-23-03-highlights/ 2023-03-31T00:00:00Z + + https://helix-editor.com/news/release-23-10-highlights/ + 2023-10-24T00:00:00Z + diff --git a/smart-tab.cast b/smart-tab.cast new file mode 100644 index 0000000..5d6d0cf --- /dev/null +++ b/smart-tab.cast @@ -0,0 +1,228 @@ +{"version": 2, "width": 94, "height": 25, "timestamp": 1696881150, "env": {"SHELL": "/run/current-system/sw/bin/fish", "TERM": "xterm-256color"}} +[0.11981, "o", "Welcome to fish, the friendly interactive shell\r\nType \u001b[32mhelp\u001b(B\u001b[m for instructions on how to use fish\r\n"] +[0.124181, "o", "\u001b[?2004h"] +[0.12433, "o", "\u001b]7;file://mango2/home/michael\u0007"] +[0.14698, "o", "\u001b]0;~\u0007\u001b[30m\u001b(B\u001b[m\r"] +[0.147006, "o", "\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m~\u001b(B\u001b[m\u001b(B\u001b[m> \u001b[K\r\u001b[85C \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[18C"] +[0.593746, "o", "h\r\u001b[85C \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[19C"] +[0.594699, "o", "\b\u001b[38;2;255;0;0mh\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[19C"] +[0.598101, "o", "\u001b[38;2;85;85;85mx default.nix\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[19C"] +[0.681552, "o", "\u001b[38;2;255;0;0mx\u001b[38;2;85;85;85m default.nix\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[20C"] +[0.681943, "o", "\b\b\u001b[38;2;0;95;215mhx\u001b[38;2;85;85;85m default.nix\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[20C"] +[0.769327, "o", "\u001b[38;2;0;95;215m \u001b[38;2;85;85;85mdefault.nix\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[21C"] +[0.769715, "o", "\b \u001b[38;2;85;85;85mdefault.nix\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[21C"] +[1.193646, "o", "\b\b\bhx default.nix\r\u001b[85C \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C"] +[1.194009, "o", "\r\u001b[85C \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C\u001b[14D\u001b[38;2;0;95;215mhx\u001b[30m\u001b(B\u001b[m \u001b[38;2;0;175;255m\u001b[4mdefault.nix\r\u001b[85C\u001b[30m\u001b(B\u001b[m \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C"] +[1.649614, "o", "\r\u001b[85C \u001b[38;2;85;85;85m14:52:30\u001b(B\u001b[m\r\u001b[85C\r\u001b[32C\r\n\u001b[30m\u001b(B\u001b[m"] +[1.649827, "o", "\u001b[?2004l"] +[1.65048, "o", "\u001b]0;hx default.nix ~\u0007\u001b[30m\u001b(B\u001b[m\r"] +[1.690631, "o", "\u001b[?1049h\u001b[?2004h\u001b[?1004h\u001b[2J\u001b[?1000h\u001b[?1002h\u001b[?1003h\u001b[?1015h\u001b[?1006h\u001b[?u\u001b[c"] +[1.694339, "o", "\u001b[1;1H\u001b[48;2;40;40;40m \u001b[38;2;250;189;47m 1\u001b[39m \u001b[38;5;1m\u001b[48;2;102;92;84m\u001b[4m{\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[39m \u001b[2;1H \u001b[38;2;124;111;100m 2\u001b[39m \u001b[38;2;80;73;69m \u001b[38;2;131;165;152mkey\u001b[38;2;80;73;69m \u001b[38;2;189;174;147m=\u001b[38;2;80;73;69m \u001b[38;2;184;187;38m\"value\"\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m \u001b[39m \u001b[3;1H \u001b[38;2;124;111;100m 3\u001b[39m \u001b[38;5;1m\u001b[4m}\u001b[38;2;80;73;69m\u001b[24m \u001b[39m \u001b[4;1H \u001b[38;2;124;111;100m ~\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[5;1H \u001b[6;1H \u001b[7;1H "] +[1.694354, "o", " \u001b[8;1H \u001b[9;1H \u001b[10;1H \u001b[11;1H \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H \u001b[17;1H "] +[1.69441, "o", " \u001b[18;1H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m NOR default.nix 1 sel 1:1 \u001b[25;1H\u001b[48;2;40;40;40mLoaded 1 file.\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[1.72878, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[2.20165, "o", "\u001b[1;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 1\u001b[1;8H\u001b[38;5;1m{\u001b[2;3H\u001b[38;2;250;189;47m 2\u001b[2;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[3;8H\u001b[38;5;1m\u001b[48;2;40;40;40m\u001b[24m}\u001b[24;91H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m2\u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;8H\u001b[?25l"] +[2.457747, "o", "\u001b[2;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 2\u001b[2;8H\u001b[38;2;80;73;69m \u001b[3;3H\u001b[38;2;250;189;47m 3\u001b[3;8H\u001b[38;2;80;73;69m \u001b[3;10H\u001b[48;2;102;92;84m\u001b[4m \u001b[4;5H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m4\u001b[4;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[5;3H\u001b[38;2;124;111;100m ~\u001b[5;8H\u001b[38;2;80;73;69m \u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mINS\u001b[24;20H[+]\u001b[24;91H3\u001b[24;93H3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25l"] +[2.579346, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25l"] +[2.754152, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mn\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25l"] +[2.789162, "o", "\u001b[4;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m●\u001b[4;8H\u001b[38;5;1m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[5;3H\u001b[39m\u001b[59m\u001b[24m \u001b[5;8H\u001b[38;2;251;73;52m├─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\";\"\u001b[38;2;80;73;69m \u001b[6;8H\u001b[38;2;251;73;52m└─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\"=\"\u001b[38;2;80;73;69m \u001b[7;3H\u001b[38;2;124;111;100m ~\u001b[7;8H\u001b[38;2;80;73;69m \u001b[24;79H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m●\u001b[24;81H\u001b[38;2;235;219;178m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25l"] +[2.85773, "o", "\u001b[3;11H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40me\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25l"] +[2.863875, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25l"] +[2.864312, "o", "\u001b[4;12H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m inherit keyword \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25l"] +[2.954055, "o", "\u001b[3;12H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40ms\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[4;12H\u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25l"] +[2.960129, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25l"] +[2.960288, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25l"] +[2.985468, "o", "\u001b[3;13H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mt\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l"] +[2.991873, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l"] +[3.10699, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l"] +[3.169757, "o", "\u001b[3;14H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40me\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;15H\u001b[?25l"] +[3.175817, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;15H\u001b[?25l"] +[3.176032, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;15H\u001b[?25l"] +[3.266065, "o", "\u001b[3;15H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40md\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;16H\u001b[?25l"] +[3.272418, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;16H\u001b[?25l"] +[3.272606, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;16H\u001b[?25l"] +[3.313564, "o", "\u001b[3;16H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m\u001b[24m●\u001b[38;2;235;219;178m 2 \u001b[24;83H1 sel \u001b[24;90H3:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;17H\u001b[?25l"] +[3.434795, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;17H\u001b[?25l"] +[3.681679, "o", "\u001b[3;17H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m=\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;18H\u001b[?25l"] +[3.697638, "o", "\u001b[3;18H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[6;20H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m\u001b[24man\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpression\u001b[38;2;80;73;69m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;19H\u001b[?25l"] +[3.715806, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;19H\u001b[?25l"] +[3.81895, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;19H\u001b[?25l"] +[3.961645, "o", "\u001b[3;10H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40mnested\u001b[3;19H\u001b[38;5;3m\u001b[4m{\u001b[48;2;102;92;84m}\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;20H\u001b[?25l"] +[3.996079, "o", "\u001b[5;8H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m└\u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[7;3H \u001b[7;8H \u001b[24;80H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;20H\u001b[?25l"] +[4.083249, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;20H\u001b[?25l"] +[4.5537, "o", "\u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 3\u001b[3;19H\u001b[38;5;3m{\u001b[38;2;80;73;69m \u001b[39m \u001b[4;1H \u001b[4;3H\u001b[38;2;250;189;47m 4\u001b[4;8H\u001b[38;2;80;73;69m \u001b[4;10H \u001b[48;2;102;92;84m\u001b[4m \u001b[5;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 5\u001b[5;8H\u001b[38;2;80;73;69m \u001b[38;5;3m}\u001b[38;2;80;73;69m \u001b[39m \u001b[6;1H\u001b[38;2;251;73;52m●\u001b[6;5H\u001b[38;2;124;111;100m6\u001b[6;8H\u001b[38;5;1m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[38;2;80;73;69m\u001b[59m\u001b[24m \u001b[7;8H\u001b[38;2;251;73;52m└─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\";\"\u001b[38;2;80;73;69m \u001b[8;3H\u001b[38;2;124;111;100m ~\u001b[8;8H\u001b[38;2;80;73;69m \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[38;2;251;73;52m●\u001b[38;2;235;219;178m 1\u001b[24;83H 1 sel\u001b[24;90H 4:5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;12H\u001b[?25l"] +[4.587967, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;12H\u001b[?25l"] +[4.675138, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;12H\u001b[?25l"] +[5.161648, "o", "\u001b[3;10H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mnested\u001b[4;12H\u001b[38;2;251;241;199m\u001b[4mk\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;13H\u001b[?25l"] +[5.193645, "o", "\u001b[4;13H\u001b[38;2;251;241;199m\u001b[48;2;40;40;40m\u001b[4me\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m \u001b[5;1H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m\u001b[24m●\u001b[5;10H\u001b[38;5;3m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[6;1H\u001b[39m\u001b[59m\u001b[24m \u001b[6;3H \u001b[6;8H \u001b[38;2;251;73;52m├─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\";\"\u001b[38;2;80;73;69m \u001b[7;8H\u001b[39m \u001b[38;2;251;73;52m└─Expecting\u001b[38;2;80;73;69m \u001b[7;23H\u001b[38;2;251;73;52m=\"\u001b[38;2;80;73;69m \u001b[8;1H\u001b[38;2;251;73;52m●\u001b[8;5H\u001b[38;2;124;111;100m6\u001b[8;8H\u001b[38;5;1m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[38;2;80;73;69m\u001b[59m\u001b[24m \u001b[9;8H\u001b[38;2;251;73;52m└─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\";\"\u001b[38;2;80;73;69m \u001b[10;3H\u001b[38;2;124;111;100m ~\u001b[10;8H\u001b[38;2;80;73;69m \u001b[24;81H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m3\u001b[24;93H7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;14H\u001b[?25l"] +[5.19567, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;14H\u001b[?25l"] +[5.199899, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;14H\u001b[?25l"] +[5.200019, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;14H\u001b[?25l"] +[5.315279, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;14H\u001b[?25l"] +[5.433819, "o", "\u001b[4;14H\u001b[38;2;251;241;199m\u001b[48;2;40;40;40m\u001b[4my\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;15H\u001b[?25l"] +[5.440057, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;15H\u001b[?25l"] +[5.440347, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;15H\u001b[?25l"] +[5.554576, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;15H\u001b[?25l"] +[5.761667, "o", "\u001b[4;15H\u001b[38;2;251;241;199m\u001b[48;2;40;40;40m\u001b[4m2\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;16H\u001b[?25l"] +[5.767805, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;16H\u001b[?25l"] +[5.768317, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;16H\u001b[?25l"] +[5.882593, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;16H\u001b[?25l"] +[6.025751, "o", "\u001b[4;16H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;78H\u001b[38;2;251;73;52m\u001b[48;2;80;73;69m\u001b[24m●\u001b[38;2;235;219;178m 3 \u001b[24;83H1 sel \u001b[24;90H4:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;17H\u001b[?25l"] +[6.146882, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;17H\u001b[?25l"] +[6.265698, "o", "\u001b[1;8H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m{\u001b[3;19H{\u001b[4;12H\u001b[38;2;235;219;178mkey2\u001b[4;17H\u001b[38;2;189;174;147m=\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[5;10H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[8;8H}\u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[59m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;18H\u001b[?25l"] +[6.300304, "o", "\u001b[7;22H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40man\u001b[38;2;80;73;69m \u001b[38;2;251;73;52mexpression\u001b[38;2;80;73;69m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;18H\u001b[?25l"] +[6.385976, "o", "\u001b[4;18H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;19H\u001b[?25l"] +[6.507393, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;19H\u001b[?25l"] +[6.753656, "o", "\u001b[4;19H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40m\u001b[4m\"\u001b[48;2;102;92;84m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;20H\u001b[?25l"] +[6.788218, "o", "\u001b[6;10H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40m└\u001b[7;1H●\u001b[7;3H\u001b[38;2;124;111;100m 6\u001b[7;8H\u001b[38;2;189;174;147m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[38;2;80;73;69m\u001b[59m\u001b[24m \u001b[39m \u001b[8;1H \u001b[8;3H \u001b[8;8H\u001b[38;2;251;73;52m└─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\";\"\u001b[38;2;80;73;69m \u001b[9;3H\u001b[38;2;124;111;100m ~\u001b[9;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[10;3H \u001b[10;8H \u001b[24;80H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;20H\u001b[?25l"] +[6.849664, "o", "\u001b[4;20H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40mv\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;21H\u001b[?25l"] +[6.97091, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;21H\u001b[?25l"] +[6.99363, "o", "\u001b[4;21H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40ma\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;22H\u001b[?25l"] +[6.99976, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;22H\u001b[?25l"] +[7.025737, "o", "\u001b[4;22H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40ml\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;23H\u001b[?25l"] +[7.031842, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;23H\u001b[?25l"] +[7.147217, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;23H\u001b[?25l"] +[7.225732, "o", "\u001b[4;23H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40mu\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;24H\u001b[?25l"] +[7.231935, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;24H\u001b[?25l"] +[7.289695, "o", "\u001b[4;24H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40me\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;25H\u001b[?25l"] +[7.295757, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;25H\u001b[?25l"] +[7.411105, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;25H\u001b[?25l"] +[7.657908, "o", "\u001b[4;25H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40m2\u001b[48;2;102;92;84m\u001b[4m\"\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;26H\u001b[?25l"] +[7.664086, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;26H\u001b[?25l"] +[7.778498, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;26H\u001b[?25l"] +[8.065623, "o", "\u001b[4;19H\u001b[38;2;184;187;38m\u001b[48;2;40;40;40m\"\u001b[4;26H\"\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;92H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m20\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;27H\u001b[?25l"] +[8.186831, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;27H\u001b[?25l"] +[8.561982, "o", "\u001b[1;8H\u001b[38;5;1m\u001b[48;2;40;40;40m{\u001b[3;10H\u001b[38;2;131;165;152mnested\u001b[3;19H\u001b[38;5;3m{\u001b[4;12H\u001b[38;2;131;165;152mkey2\u001b[4;27H\u001b[38;2;189;174;147m;\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[5;10H\u001b[38;5;3m\u001b[48;2;40;40;40m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[7;8H\u001b[38;5;1m}\u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[59m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;28H\u001b[?25l"] +[8.596714, "o", "\u001b[5;1H\u001b[48;2;40;40;40m \u001b[5;10H\u001b[38;5;3m}\u001b[6;1H\u001b[38;2;251;73;52m●\u001b[6;3H\u001b[38;2;124;111;100m 6\u001b[6;8H\u001b[38;5;1m\u001b[58:2::251:73:52m\u001b[4:3m}\u001b[38;2;80;73;69m\u001b[59m\u001b[24m \u001b[39m \u001b[7;1H \u001b[7;3H \u001b[7;8H\u001b[38;2;251;73;52m└─Expecting\u001b[38;2;80;73;69m \u001b[38;2;251;73;52m\";\"\u001b[38;2;80;73;69m \u001b[8;3H\u001b[38;2;124;111;100m ~\u001b[8;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[9;3H \u001b[9;8H \u001b[24;80H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;28H\u001b[?25l"] +[8.682828, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;28H\u001b[?25l"] +[9.457654, "o", "\u001b[4;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 4\u001b[4;28H\u001b[38;2;80;73;69m \u001b[5;3H\u001b[38;2;250;189;47m 5\u001b[5;11H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;78H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m \u001b[38;2;251;73;52m●\u001b[38;2;235;219;178m 1\u001b[24;83H 1 sel\u001b[24;90H 5:4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;11H\u001b[?25l"] +[9.578859, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;11H\u001b[?25l"] +[9.969712, "o", "\u001b[5;11H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m;\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;12H\u001b[?25l"] +[10.00422, "o", "\u001b[6;1H\u001b[48;2;40;40;40m \u001b[6;8H\u001b[38;5;1m}\u001b[7;3H\u001b[38;2;124;111;100m ~\u001b[7;8H\u001b[38;2;80;73;69m \u001b[39m \u001b[8;3H \u001b[8;8H \u001b[24;79H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;81H \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;12H\u001b[?25l"] +[10.091365, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;12H\u001b[?25l"] +[10.745758, "o", "\u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mNOR\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;12H\u001b[?25l"] +[10.881726, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-n\u001b[24;10Hxt \u001b[24;20H \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;84H "] +[10.881833, "o", "\u001b[24;86H \u001b[24;91H \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[11.257714, "o", "\u001b[14;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[15;1H│ Write changes to disk. Accepts an optional path (:write some/path.txt) │\u001b[39m\u001b[48;2;40;40;40m \u001b[16;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: w │\u001b[39m\u001b[48;2;40;40;40m \u001b[17;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mwrit\u001b[18;6H \u001b[18;38Hall! \u001b[18;63H"] +[11.25779, "o", "show-directory\u001b[19;1Hwrit\u001b[19;6H! \u001b[19;38Hq\u001b[19;40Hit-all \u001b[19;63Hvsplit-new\u001b[20;1Hwrit\u001b[20;6H-buffer\u001b[20;14Hclose \u001b[20;32Hwrite-quit-all!\u001b[20;63Hhsplit-new \u001b[21;1Hwrit\u001b[21;6H-buffer\u001b[21;14Hclose! \u001b[21;32Hlsp-workspace-command\u001b[21;63Hreflow \u001b[22;1Hwrit\u001b[22;6H-quit \u001b[22;32Hconfig\u001b[22;39Hopen-workspace\u001b[22;63Hredraw \u001b[23;1Hwrit\u001b[23;6H-quit! \u001b[23;32Hnew \u001b[23;63H \u001b[24;1Hwrit\u001b[24;6H-all \u001b[24;32Hshow-clipboard-provider\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mw\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[11.609915, "o", "\u001b[14;1H\u001b[48;2;40;40;40m \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;"] +[11.610005, "o", "235;219;178m\u001b[48;2;80;73;69m NOR default.nix\u001b[24;20H[+]\u001b[24;32H \u001b[24;84H1\u001b[24;86Hsel\u001b[24;91H5:5\u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;12H\u001b[?25l"] +[11.61034, "o", "\u001b[24;20H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[25;1H\u001b[48;2;40;40;40m'default.nix' written, 7L 60B\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;12H\u001b[?25l"] +[12.665752, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-n\u001b[24;10Hxt \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;84H \u001b[24;86H "] +[12.665791, "o", "\u001b[24;91H \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[38;2;146;131;116mw\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[12.921597, "o", "\u001b[11;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[12;1H│ Create a new scratch buffer. │\u001b[13;1H│ Aliases: n │\u001b[14;1H└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[15;1H\u001b[48;2;80;73;69mnew \u001b[15;32Hclipboard-yank-join\u001b[15;63Hge\u001b[15;66H-option\u001b[16;1Hb\u001b[16;3Hffer-next\u001b[16;32Hp\u001b[16;35Hmary-clipboard-yank\u001b[16;63Hconfig-reload\u001b[17;1Htr\u001b[17;4He-sitter-highlight-name\u001b[17;32Hp\u001b[17;35Hmary-clipboard-ya"] +[12.921615, "o", "nk-join\u001b[17;63Hconfig-open\u001b[18;1Hvsplit\u001b[18;8Hnew \u001b[18;32Hchange-current-directory\u001b[18;63Hconfig-open-workspace\u001b[19;1Hhsplit\u001b[19;8Hnew \u001b[19;32Hencoding \u001b[19;63Hlog-open \u001b[20;1Hopen \u001b[20;32Hcharacter-info\u001b[20;63Hinsert-ou\u001b[20;73Hput \u001b[21;1Hindent\u001b[21;8Hstyl\u001b[21;13H \u001b[21;32Hlsp-workspace-command\u001b[21;63Happend-ou\u001b[21;73Hput \u001b[22;1Hline-ending \u001b[22;32Hset-languag\u001b[22;63Hr\u001b[22;65Hn-she\u001b[22;71Hl-command\u001b[23;1Hyank-join \u001b[23;32Hset-optio\u001b[23;42H \u001b[23;63Hreset-diff-change\u001b[24;1Hclipboard-yank\u001b[24;32Htoggl\u001b[24;38H-option\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mn\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[12.993631, "o", "\u001b[11;1H\u001b[48;2;40;40;40m \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mnew \u001b[20;32Hline-ending \u001b[20;63Hrun-shell-command\u001b[21;1Hbuffer\u001b[21;8Hne"] +[12.993753, "o", "xt \u001b[21;32Hindent-style \u001b[21;63Hset-lang\u001b[21;72Hage \u001b[22;1Hvsplit-new \u001b[22;32Hchange-c\u001b[22;41Hrr\u001b[22;44Hnt-directory\u001b[22;63Hco\u001b[22;66Hfig-reload \u001b[23;1Hhsplit-new\u001b[23;32Hinsert-output\u001b[23;63Hconfig-open \u001b[24;1Htree-sitter-highlight-name\u001b[24;32Hreset-diff-change\u001b[24;63Hconfig-open-workspace\u001b[25;3H\u001b[48;2;40;40;40me\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;4H\u001b[?25h\u001b[2 q"] +[13.105601, "o", "\u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[20;1H│ Create a new scratch buffer. │\u001b[39m\u001b[48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: n │\u001b[39m\u001b[48;2;40;40;40m \u001b[22;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[23;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mnew \u001b[23;32Hhspli\u001b[23;39Hnew \u001b[23;63H "] +[13.105667, "o", " \u001b[24;1Hvsplit-new \u001b[24;32Hconfig-open-workspace\u001b[24;63H \u001b[25;4H\u001b[48;2;40;40;40mw\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;5H\u001b[?25h\u001b[2 q"] +[13.849857, "o", "\u001b[1;3H\u001b[38;2;250;189;47m\u001b[48;2;40;40;40m 1\u001b[1;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[2;5H\u001b[38;2;124;111;100m~\u001b[2;9H\u001b[39m \u001b[3;3H \u001b[3;8H \u001b[4;3H \u001b[4;8H \u001b[5;3H \u001b[5;8H \u001b[6;3H \u001b[6;8H \u001b[7;3H \u001b[7;8H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m NOR [scratch]\u001b[24;32H \u001b[24;84H1\u001b[24;86Hsel\u001b[24;91H1:1\u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[14.321992, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-next \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;84H \u001b[24;86H \u001b[24;91H "] +[14.322147, "o", " \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[38;2;146;131;116mnew\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[14.521755, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mline-ending\u001b[15;39Hclose-others!\u001b[15;63Hwrite-quit-all!\u001b[16;1Hlater\u001b[16;32Hbuff\u001b[16;37Hr-close-all\u001b[16;63Hqu\u001b[16;67H-all \u001b[17;1Hlsp-workspace-command\u001b[17;32Hbuff\u001b[17;37Hr-close-all!\u001b[17;63Hqu\u001b[17;67H-all! \u001b[18;1Hlsp-restart \u001b[18;63Hcl\u001b[18;66Hpbo\u001b[18;70Hrd-yank\u001b[19;1Hlsp-stop \u001b[19;63Hcl\u001b[19;66Hpbo\u001b[19;70Hrd-yank-join\u001b[20;1Hlog-open \u001b[20;32Hindent-style\u001b[20;63Hp\u001b[20;66Hmary-clipboard-yank\u001b[21;1Hset-languag\u001b[21;13H \u001b[21;32Hea\u001b[21;35Hlier\u001b[21;63Hp\u001b[21;66Hmary-clipboard-yank-join\u001b[22;13H \u001b[22;32Hwrite-all \u001b[22;63Hcl\u001b[22;66Hpboard-paste-after\u001b[23;13H! \u001b[23;32Hwrite-all! \u001b[23;63Hcl\u001b[23;66Hpboard-paste-before\u001b[24;8Hclose-others\u001b[24;32Hwrite-quit-all\u001b[24;64Hlipboard-paste-replace\u001b[25;2H\u001b[48;2;40;40;40ml\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[14.649707, "o", "\u001b[15;1H\u001b[48;2;40;40;40m \u001b[16;1H \u001b[17;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mater \u001b[17;32Hreload\u001b[17;39Ha\u001b[17;41Hl \u001b[17;63Hcl\u001b[17;66Hpboard-paste-after\u001b[18;1Hset\u001b[18;5Hlanguage\u001b[18;32Hreload \u001b[18;73Hp\u001b[18;75Hste-before\u001b[19;5Hrestart\u001b[19;32Hconfig-reload \u001b[19;63Hpr\u001b[19;66Hmary-clipboard-paste-after\u001b[20;2Hsp\u001b[20;5Hworkspace-command\u001b[20;32Hclear-register\u001b[20;81Hp\u001b[20;83Hste-befor\u001b[21;1Hclipboard-paste-replace\u001b[21;32Hclipboard-yank\u001b[21;63Hshow-clipboard-provider \u001b[22;1Hprima\u001b[22;7Hy-clipboard-paste-repla\u001b[22;32Hcl\u001b[22;35Hpbo\u001b[22;39Hrd-yank-join\u001b[22;63Hrun-shell\u001b[22;73Hcommand \u001b[23;13H-all\u001b[23;32Hp\u001b[23;35Hmary-clipboard-yank\u001b[23;63Htree-sitter-highlight-name\u001b[24;14Hall! \u001b[24;32Hp\u001b[24;35Hmary-clipboard-yank-join\u001b[24;63H \u001b[25;3H\u001b[48;2;40;40;40ma\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;4H\u001b"] +[14.649829, "o", "[?25h\u001b[2 q"] +[14.753728, "o", "\u001b[17;1H\u001b[48;2;40;40;40m \u001b[18;1H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mset-language \u001b[22;46H \u001b[22;63Hprimary-clipbo\u001b[22;78Hr\u001b[22;80H-yank-join\u001b[23;1Hlsp-workspace-command\u001b[23;32Hcl\u001b[23;35Hpboard-yank-join \u001b[23;63H \u001b[24;1Hr\u001b[24;3Hn-shel\u001b[24;10H-command\u001b[24;54H \u001b[25;4H\u001b[48;2;40;40;40mn\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;5H\u001b[?25h\u001b[2 q"] +[14.785575, "o", "\u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[21;1H│ Set the language of current buffer (show current language if no value specified). │\u001b[22;1H│ Aliases: lang │\u001b[39m\u001b[48;2;40;40;40m \u001b[23;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mset\u001b[24;5Hlanguage \u001b[24;32H \u001b[25;5H\u001b[48;2;40;40;40mg\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;6H\u001b[?"] +[14.785596, "o", "25h\u001b[2 q"] +[15.073783, "o", "\u001b[11;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[12;1H│ Set the language of current buffer (show current language if no value specified). │\u001b[13;1H│ Aliases: lang │\u001b[14;1H└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[15;1H\u001b[48;2;80;73;69mrust cpp tsx \u001b[16;1Hsway crystal css \u001b[17;1Htoml "] +[15.073809, "o", " c-sharp scss \u001b[18;1Hawk go html \u001b[19;1Hprotobuf gomod python \u001b[20;1Helixir gotmpl nickel \u001b[21;1Hfish gowork nix \u001b[22;1Hmint javascript ruby \u001b[23;1Hjson jsx bash \u001b[24;1Hc \u001b[24;32Htypescript\u001b[24;63Hphp\u001b[25;6H\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;7H\u001b[?25h\u001b[2 q"] +[15.145703, "o", "\u001b[15;32H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mrego\u001b[15;63Hledger\u001b[16;1Hrub\u001b[16;32Hgit-rebase\u001b[16;63Hocaml-interface\u001b[17;1Hracket\u001b[17;32Hgodot-resource\u001b[17;63Hha\u001b[17;66Hkell-persistent\u001b[18;1Hregex\u001b[18;32Hprotobuf\u001b[18;63Hpurescript\u001b[19;1Hrescript\u001b[19;32Helixir\u001b[19;64Hrol\u001b[19;68Hg\u001b[20;1Hron \u001b[20;32Hcrystal\u001b[20;63Hperl \u001b[21;1Hrobot\u001b[21;32Hc-sharp\u001b[21;63Hllvm-mir\u001b[22;1Hr \u001b[22;32Hgowork \u001b[22;63Hllvm-mir-yaml\u001b[23;1Hrmarkdown\u001b[23;33Havascript\u001b[23;63Hm\u001b[23;65Hrkdown\u001b[24;1Hrst\u001b[24;63Hmarkdown.inline\u001b[25;7H\u001b[48;2;40;40;40mr\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;8H\u001b[?25h\u001b[2 q"] +[15.241696, "o", "\u001b[11;1H\u001b[48;2;40;40;40m \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H \u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌─────────────────────────────────────────────────────────"] +[15.241722, "o", "───────────────────────────────┐\u001b[39m\u001b[48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Set the language of current buffer (show current language if no value specified). │\u001b[39m\u001b[48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: lang │\u001b[39m\u001b[48;2;40;40;40m \u001b[22;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[23;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69must \u001b[23;32Hgodot-\u001b[23;39Hesource\u001b[23;63Hprotobuf\u001b[24;2Huby\u001b[24;32Hgit-attributes\u001b[24;63H \u001b[25;8H\u001b[48;2;40;40;40mu\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;9H\u001b[?25h\u001b[2 q"] +[15.305733, "o", "\u001b[19;1H\u001b[48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[21;3HSet the language\u001b[21;20Hof\u001b[21;23Hcurrent\u001b[21;31Hbuffer\u001b[21;38H(show\u001b[21;44Hcurrent\u001b[21;52Hlanguage\u001b[21;61Hif\u001b[21;64Hno\u001b[21;67Hvalue\u001b[21;73Hspecified).\u001b[22;1H│ Aliases: lang │\u001b[23;1H└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[24;3H\u001b[38;2;235;219;178m\u001b[48;2;80;73"] +[15.305755, "o", ";69mst\u001b[25;9H\u001b[48;2;40;40;40ms\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;10H\u001b[?25h\u001b[2 q"] +[15.369667, "o", "\u001b[24;32H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[25;10H\u001b[48;2;40;40;40mt\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;11H\u001b[?25h\u001b[2 q"] +[16.096321, "o", "\u001b[20;1H\u001b[48;2;40;40;40m \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m NOR\u001b[24;8H[scratch]\u001b[24;84H1\u001b[24;86Hsel\u001b[24;91H1:1\u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[16.769849, "o", "\u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mINS\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[16.7758, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[16.891067, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[17.274072, "o", "\u001b[1;8H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ml\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;18H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m[+]\u001b[24;93H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;9H\u001b[?25l"] +[17.280231, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;9H\u001b[?25l"] +[17.377695, "o", "\u001b[1;9H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;10H\u001b[?25l"] +[17.383811, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;10H\u001b[?25l"] +[17.465612, "o", "\u001b[1;8H\u001b[38;2;252;107;89m\u001b[48;2;40;40;40mlet\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;11H\u001b[?25l"] +[17.471732, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;11H\u001b[?25l"] +[17.505599, "o", "\u001b[1;11H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;12H\u001b[?25l"] +[17.626825, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;12H\u001b[?25l"] +[17.673735, "o", "\u001b[1;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mx\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;13H\u001b[?25l"] +[17.761551, "o", "\u001b[1;13H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;14H\u001b[?25l"] +[17.882725, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;14H\u001b[?25l"] +[18.145634, "o", "\u001b[1;14H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40m=\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;15H\u001b[?25l"] +[18.161518, "o", "\u001b[1;15H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;16H\u001b[?25l"] +[18.282675, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;16H\u001b[?25l"] +[18.785693, "o", "\u001b[1;16H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mi\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1 sel \u001b[24;90H1:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;17H\u001b[?25l"] +[18.857614, "o", "\u001b[1;16H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40mif\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;18H\u001b[?25l"] +[18.863748, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;18H\u001b[?25l"] +[18.881828, "o", "\u001b[1;18H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;19H\u001b[?25l"] +[19.003058, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;19H\u001b[?25l"] +[19.090049, "o", "\u001b[1;19H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;20H\u001b[?25l"] +[19.153666, "o", "\u001b[1;20H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mn\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;21H\u001b[?25l"] +[19.159761, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;21H\u001b[?25l"] +[19.257937, "o", "\u001b[1;21H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ma\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;22H\u001b[?25l"] +[19.264057, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;22H\u001b[?25l"] +[19.361868, "o", "\u001b[1;22H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mb\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;23H\u001b[?25l"] +[19.367992, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;23H\u001b[?25l"] +[19.417627, "o", "\u001b[1;23H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ml\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;24H\u001b[?25l"] +[19.423724, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;24H\u001b[?25l"] +[19.51362, "o", "\u001b[1;24H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;25H\u001b[?25l"] +[19.519707, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;25H\u001b[?25l"] +[19.634914, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;25H\u001b[?25l"] +[19.681656, "o", "\u001b[1;25H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40md\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;26H\u001b[?25l"] +[19.687747, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;26H\u001b[?25l"] +[19.721619, "o", "\u001b[1;26H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;92H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m20\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;27H\u001b[?25l"] +[19.842793, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;27H\u001b[?25l"] +[20.089695, "o", "\u001b[1;27H\u001b[38;5;1m\u001b[48;2;40;40;40m\u001b[4m{\u001b[48;2;102;92;84m}\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;28H\u001b[?25l"] +[20.210826, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;28H\u001b[?25l"] +[20.455399, "o", "\u001b[1;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 1\u001b[1;27H\u001b[38;5;1m{\u001b[38;2;80;73;69m \u001b[39m \u001b[2;3H\u001b[38;2;250;189;47m 2\u001b[2;9H\u001b[38;2;80;73;69m \u001b[48;2;102;92;84m\u001b[4m \u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 3\u001b[3;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[4;3H\u001b[38;2;124;111;100m ~\u001b[4;8H\u001b[38;2;80;73;69m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m 1 sel\u001b[24;90H 2:5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[20.576633, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;12H\u001b[?25l"] +[20.905898, "o", "\u001b[2;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40mz\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;13H\u001b[?25l"] +[20.961869, "o", "\u001b[2;13H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[21.083287, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;14H\u001b[?25l"] +[21.417904, "o", "\u001b[2;14H\u001b[38;2;131;165;152m\u001b[48;2;40;40;40m+\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;15H\u001b[?25l"] +[21.425812, "o", "\u001b[2;15H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[21.546937, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;16H\u001b[?25l"] +[21.841875, "o", "\u001b[2;16H\u001b[38;2;211;134;155m\u001b[48;2;40;40;40m2\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m1 sel \u001b[24;90H2:10\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[21.962975, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;17H\u001b[?25l"] +[22.337775, "o", "\u001b[2;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 2\u001b[2;17H\u001b[38;2;80;73;69m \u001b[3;3H\u001b[38;2;250;189;47m 3\u001b[3;9H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m 1 sel\u001b[24;90H 3:2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25l"] +[22.458997, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;9H\u001b[?25l"] +[22.834591, "o", "\u001b[3;9H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;10H\u001b[?25l"] +[22.946012, "o", "\u001b[3;10H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40me\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;11H\u001b[?25l"] +[22.985773, "o", "\u001b[3;11H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ml\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25l"] +[22.991923, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25l"] +[23.107554, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;12H\u001b[?25l"] +[23.242025, "o", "\u001b[3;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40ms\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25l"] +[23.248147, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25l"] +[23.363566, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;13H\u001b[?25l"] +[23.393724, "o", "\u001b[3;10H\u001b[38;2;251;73;52m\u001b[48;2;40;40;40melse\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m7\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l"] +[23.399846, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l"] +[23.515056, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;14H\u001b[?25l"] +[23.529681, "o", "\u001b[3;14H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m8\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;15H\u001b[?25l"] +[23.650831, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;15H\u001b[?25l"] +[23.922017, "o", "\u001b[3;15H\u001b[38;5;1m\u001b[48;2;40;40;40m\u001b[4m{\u001b[48;2;102;92;84m}\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m9\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;16H\u001b[?25l"] +[24.043532, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;16H\u001b[?25l"] +[24.466023, "o", "\u001b[3;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 3\u001b[3;15H\u001b[38;5;1m{\u001b[38;2;80;73;69m \u001b[39m \u001b[4;3H\u001b[38;2;250;189;47m 4\u001b[4;9H\u001b[38;2;80;73;69m \u001b[48;2;102;92;84m\u001b[4m \u001b[5;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m\u001b[24m 5\u001b[5;8H\u001b[38;5;1m}\u001b[38;2;80;73;69m \u001b[6;3H\u001b[38;2;124;111;100m ~\u001b[6;8H\u001b[38;2;80;73;69m \u001b[24;91H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m4\u001b[24;93H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;12H\u001b[?25l"] +[24.587301, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;12H\u001b[?25l"] +[25.257825, "o", "\u001b[4;12H\u001b[3m\u001b[38;2;251;241;199m\u001b[48;2;40;40;40my\u001b[23m\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m6\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;13H\u001b[?25l"] +[25.378948, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;13H\u001b[?25l"] +[26.097879, "o", "\u001b[4;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 4\u001b[4;13H\u001b[38;2;80;73;69m \u001b[5;3H\u001b[38;2;250;189;47m 5\u001b[5;9H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;91H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m5\u001b[24;93H2\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;9H\u001b[?25l"] +[26.219149, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;9H\u001b[?25l"] +[26.609767, "o", "\u001b[5;9H\u001b[38;2;189;174;147m\u001b[48;2;40;40;40m;\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;93H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;10H\u001b[?25l"] +[26.730884, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;10H\u001b[?25l"] +[28.282052, "o", "\u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mNOR\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;10H\u001b[?25l"] +[28.426015, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-next \u001b[24;18H \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;84H \u001b[24;86H "] +[28.426142, "o", " \u001b[24;91H \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[38;2;146;131;116mlang rust\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[28.666139, "o", "\u001b[14;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[15;1H│ Write changes to disk. Accepts an optional path (:write some/path.txt) │\u001b[39m\u001b[48;2;40;40;40m \u001b[16;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: w │\u001b[39m\u001b[48;2;40;40;40m \u001b[17;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mwrit\u001b[18;6H \u001b[18;38Hall! \u001b[18;63H"] +[28.666199, "o", "show-directory\u001b[19;1Hwrit\u001b[19;6H! \u001b[19;38Hq\u001b[19;40Hit-all \u001b[19;63Hvsplit-new\u001b[20;1Hwrit\u001b[20;6H-buffer\u001b[20;14Hclose \u001b[20;32Hwrite-quit-all!\u001b[20;63Hhsplit-new \u001b[21;1Hwrit\u001b[21;6H-buffer\u001b[21;14Hclose! \u001b[21;32Hlsp-workspace-command\u001b[21;63Hreflow \u001b[22;1Hwrit\u001b[22;6H-quit \u001b[22;32Hconfig\u001b[22;39Hopen-workspace\u001b[22;63Hredraw \u001b[23;1Hwrit\u001b[23;6H-quit! \u001b[23;32Hnew \u001b[23;63H \u001b[24;1Hwrit\u001b[24;6H-all \u001b[24;32Hshow-clipboard-provider\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mw\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[28.866026, "o", "\u001b[14;1H\u001b[48;2;40;40;40m \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[39m\u001b[48;2;40;40;40m \u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Write changes to disk and close the current view. Accepts an optional path (:wq │\u001b[39m\u001b[48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ some/path.txt) "] +[28.866172, "o", " │\u001b[39m\u001b[48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: wq, x │\u001b[39m\u001b[48;2;40;40;40m \u001b[22;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[23;11H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[23;32Hwrite-quit-all\u001b[24;7Hquit!\u001b[24;32Hwrite-quit-\u001b[24;44Hll! \u001b[25;3H\u001b[48;2;40;40;40mq\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;4H\u001b[?25h\u001b[2 q"] +[28.889753, "o", "\u001b[18;1H\u001b[48;2;40;40;40m \u001b[19;1H \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[21;3HWr\u001b[21;6Hte changes from\u001b[21;22Hall\u001b[21;26Hbuffers\u001b[21;34Hto\u001b[21;37Hdisk\u001b[21;42Hand\u001b[21;46Hclose\u001b[21;52Hall\u001b[21;56Hviews.\u001b[22;1H│ Aliases: wqa, xa │\u001b[23;1H└───────────────────────────────────────────────────────────────────────────────────────"] +[28.889809, "o", "─┘\u001b[39m\u001b[48;2;40;40;40m \u001b[24;11H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m-all\u001b[25;4H\u001b[48;2;40;40;40ma\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;5H\u001b[?25h\u001b[2 q"] +[29.585843, "o", "\u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[20;1H│ Write changes from all buffers to disk and close all views forcefully (ignoring │\u001b[21;3Hunsaved changes). \u001b[21;22H \u001b[21;26H \u001b[21;34H \u001b[21;37H \u001b[21;42H \u001b[21;46H \u001b[21;52H \u001b[21;56H \u001b[22;15H!, xa!\u001b[24;15H\u001b[48;2;80;73;69m!\u001b[24;32H \u001b[25;5H\u001b[48;2;40;40;40m!\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;6H\u001b[?25h\u001b[2 q"] +[30.034142, "o", "\u001b[?25h\u001b[2 q"] +[30.034167, "o", "\u001b[0 q\u001b[?1006l\u001b[?1015l\u001b[?1003l\u001b[?1002l\u001b[?1000l\u001b[?2004l\u001b[?1004l\u001b[?1049l"] +[30.03886, "o", "\u001b[2m⏎\u001b(B\u001b[m \r⏎ \r\u001b[K"] +[30.043314, "o", "\u001b[?2004h"] +[30.060994, "o", "\u001b]0;~\u0007\u001b[30m\u001b(B\u001b[m\u001b[92mmichael\u001b(B\u001b[m@\u001b(B\u001b[mmango2\u001b(B\u001b[m \u001b[32m~\u001b(B\u001b[m\u001b(B\u001b[m> \u001b[K\r\u001b[85C \u001b[38;2;85;85;85m14:53:00\u001b(B\u001b[m\r\u001b[85C\r\u001b[18C"] +[30.609583, "o", "\r\n\u001b[30m\u001b(B\u001b[m\u001b[30m\u001b(B\u001b[m"] +[30.609785, "o", "\u001b[?2004l"] diff --git a/special-registers.cast b/special-registers.cast new file mode 100644 index 0000000..e688d39 --- /dev/null +++ b/special-registers.cast @@ -0,0 +1,33 @@ +{"version": 2, "width": 94, "height": 25, "timestamp": 1696873780, "env": {"SHELL": "/run/current-system/sw/bin/fish", "TERM": "xterm-256color"}} +[0.0, "o", "\u001b[?1049h\u001b[?2004h\u001b[?1004h\u001b[2J\u001b[?1000h\u001b[?1002h\u001b[?1003h\u001b[?1015h\u001b[?1006h\u001b[?u\u001b[c"] +[0.3622, "o", "\u001b[1;1H\u001b[48;2;40;40;40m \u001b[38;2;250;189;47m 1\u001b[39m \u001b[38;2;235;219;178m\u001b[48;2;102;92;84m\u001b[4mC\u001b[48;2;40;40;40m\u001b[24murrent\u001b[38;2;80;73;69m \u001b[38;2;235;219;178mpath\u001b[38;2;80;73;69m \u001b[38;2;235;219;178m(\"%):\u001b[38;2;80;73;69m \u001b[39m \u001b[2;1H \u001b[38;2;124;111;100m 2\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[3;1H \u001b[38;2;124;111;100m 3\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[4;1H \u001b[38;2;124;111;100m 4\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[5;1H \u001b[38;2;124;111;100m 5\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[6;1H \u001b[38;2;124;111;100m 6\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[7;1H "] +[0.3693, "o", "\u001b[38;2;124;111;100m ~\u001b[39m \u001b[38;2;80;73;69m \u001b[39m \u001b[8;1H \u001b[9;1H \u001b[10;1H \u001b[11;1H \u001b[12;1H \u001b[13;1H \u001b[14;1H \u001b[15;1H \u001b[16;1H "] +[0.3737, "o", " \u001b[17;1H \u001b[18;1H \u001b[19;1H \u001b[20;1H \u001b[21;1H \u001b[22;1H \u001b[23;1H \u001b[24;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m NOR registers.txt 1 sel 1:1 \u001b[25;1H\u001b[48;2;40;40;40mLoaded 1 file.\u001b[39m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;8H\u001b[?25l"] +[1.185573, "o", "\u001b[1;8H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40mC\u001b[1;26H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24mINS\u001b[24;83H1 sel \u001b[24;90H1:19\u001b[25;1H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;26H\u001b[?25l"] +[1.306707, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;26H\u001b[?25l"] +[1.873336, "o", "\u001b[1;26H\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[48;2;102;92;84m\u001b[4m \u001b[24;22H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m[+]\u001b[24;92H20\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;27H\u001b[?25l"] +[1.994593, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;27H\u001b[?25l"] +[2.561693, "o", "\u001b[16;61H\u001b[48;2;60;56;54m┌Registers───────────────────────┐\u001b[17;61H│ \u001b[38;2;235;219;178m_ \u001b[39m │\u001b[18;61H│ \u001b[38;2;235;219;178m# \u001b[39m │\u001b[19;61H│ \u001b[38;2;235;219;178m. \u001b[39m │\u001b[20;61H│ \u001b[38;2;235;219;178m% \u001b[39m │\u001b[21;61H│ \u001b[38;2;235;219;178m* \u001b[39m │\u001b[22;61H│ \u001b[38;2;235;219;178m+ \u001b[39m │\u001b[23;61H└────────────────────────────────┘\u001b[25;80H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;27H\u001b[?25l"] +[3.873667, "o", "\u001b[1;27H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m/home/michael/registers.txt\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[16;61H\u001b[39m\u001b[48;2;40;40;40m\u001b[24m \u001b[17;61H \u001b[18;61H \u001b[19;61H \u001b[20;61H \u001b[21;61H \u001b[22;61H \u001b[23;61H \u001b[24;92H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m47\u001b[25;80H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;54H\u001b[?25l"] +[3.993804, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;54H\u001b[?25l"] +[5.841522, "o", "\u001b[24;2H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mNOR\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[1;54H\u001b[?25l"] +[6.257647, "o", "\u001b[1;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 1\u001b[1;54H\u001b[38;2;80;73;69m \u001b[2;3H\u001b[38;2;250;189;47m 2\u001b[2;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m 1 sel\u001b[24;90H 2:1\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[2;8H\u001b[?25l"] +[6.577465, "o", "\u001b[2;3H\u001b[38;2;124;111;100m\u001b[48;2;40;40;40m 2\u001b[2;8H\u001b[38;2;80;73;69m \u001b[3;3H\u001b[38;2;250;189;47m 3\u001b[3;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;91H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[3;8H\u001b[?25l"] +[7.137655, "o", "\u001b[3;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m \u001b[4;3H\u001b[38;2;250;189;47m\u001b[48;2;40;40;40m 4\u001b[4;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m2 sels\u001b[24;91H4\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[4;8H\u001b[?25l"] +[7.489672, "o", "\u001b[4;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m \u001b[5;3H\u001b[38;2;250;189;47m\u001b[48;2;40;40;40m 5\u001b[5;8H\u001b[38;2;80;73;69m\u001b[48;2;102;92;84m\u001b[4m \u001b[24;83H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m\u001b[24m3\u001b[24;91H5\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[8.521624, "o", "\u001b[16;61H\u001b[48;2;60;56;54m┌Registers───────────────────────┐\u001b[17;61H│ \u001b[38;2;235;219;178m_ \u001b[39m │\u001b[18;61H│ \u001b[38;2;235;219;178m# \u001b[39m │\u001b[19;61H│ \u001b[38;2;235;219;178m. \u001b[39m │\u001b[20;61H│ \u001b[38;2;235;219;178m% \u001b[39m │\u001b[21;61H│ \u001b[38;2;235;219;178m* \u001b[39m │\u001b[22;61H│ \u001b[38;2;235;219;178m+ \u001b[39m │\u001b[23;61H└────────────────────────────────┘\u001b[25;80H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m\"\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[9.473496, "o", "\u001b[16;61H\u001b[48;2;40;40;40m \u001b[17;61H \u001b[18;61H \u001b[19;61H \u001b[20;61H \u001b[21;61H \u001b[22;61H \u001b[23;61H \u001b[24;76H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m3\u001b[24;78Hsels\u001b[24;83H reg=#\u001b[25;80H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[10.953709, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;102;92;84m1\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[4;8H\u001b[38;2;235;219;178m\u001b[48;2;102;92;84m2\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m \u001b[5;8H\u001b[38;2;235;219;178m\u001b[48;2;102;92;84m\u001b[4m3\u001b[38;2;80;73;69m\u001b[48;2;40;40;40m\u001b[24m \u001b[24;76H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[24;78H \u001b[24;83H3 sels\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[12.409667, "o", "\u001b[16;61H\u001b[48;2;60;56;54m┌Registers───────────────────────┐\u001b[17;61H│ \u001b[38;2;235;219;178m_ \u001b[39m │\u001b[18;61H│ \u001b[38;2;235;219;178m# \u001b[39m │\u001b[19;61H│ \u001b[38;2;235;219;178m. \u001b[39m │\u001b[20;61H│ \u001b[38;2;235;219;178m% \u001b[39m │\u001b[21;61H│ \u001b[38;2;235;219;178m* \u001b[39m │\u001b[22;61H│ \u001b[38;2;235;219;178m+ \u001b[39m │\u001b[23;61H└────────────────────────────────┘\u001b[25;80H\u001b[38;2;235;219;178m\u001b[48;2;40;40;40m\"\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[12.801493, "o", "\u001b[16;61H\u001b[48;2;40;40;40m \u001b[17;61H \u001b[18;61H \u001b[19;61H \u001b[20;61H \u001b[21;61H \u001b[22;61H \u001b[23;61H \u001b[24;76H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m3\u001b[24;78Hsels\u001b[24;83H reg=#\u001b[25;80H\u001b[39m\u001b[48;2;40;40;40m \u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[13.88162, "o", "\u001b[3;8H\u001b[38;2;235;219;178m\u001b[48;2;102;92;84m2\u001b[4;8H4\u001b[5;8H\u001b[4m6\u001b[24;76H\u001b[48;2;80;73;69m\u001b[24m \u001b[24;78H \u001b[24;83H3 sels\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[16.329761, "o", "\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[5;8H\u001b[?25l"] +[16.529664, "o", "\u001b[15;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mquit buffer-previous later \u001b[16;1Hquit! write write-quit \u001b[17;1Hopen write! write-quit! \u001b[18;1Hbuffer-close write-buffer-close write-all \u001b[19;1Hbuffer-close! write-buffer-close! write-all! \u001b[20;1Hbuffer-close-others new write-quit-all \u001b[21;1Hbuffer-close-others! format write-quit-all! \u001b[22;1Hbuffer-close-all indent-style quit-all \u001b[23;1Hbuffer-close-all! line-ending quit-all! \u001b[24;1Hbuffer-n\u001b[24;10Hxt \u001b[24;22H \u001b[24;32Hearlier\u001b[24;63Hcquit\u001b[24;83"] +[16.529683, "o", "H \u001b[24;85H \u001b[24;91H \u001b[25;1H\u001b[48;2;40;40;40m:\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;2H\u001b[?25h\u001b[2 q"] +[16.97764, "o", "\u001b[14;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[15;1H│ Write changes to disk. Accepts an optional path (:write some/path.txt) │\u001b[39m\u001b[48;2;40;40;40m \u001b[16;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: w │\u001b[39m\u001b[48;2;40;40;40m \u001b[17;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69mwrit\u001b[18;6H \u001b[18;38Hall! \u001b[18;63H"] +[16.977673, "o", "show-directory\u001b[19;1Hwrit\u001b[19;6H! \u001b[19;38Hq\u001b[19;40Hit-all \u001b[19;63Hvsplit-new\u001b[20;1Hwrit\u001b[20;6H-buffer\u001b[20;14Hclose \u001b[20;32Hwrite-quit-all!\u001b[20;63Hhsplit-new \u001b[21;1Hwrit\u001b[21;6H-buffer\u001b[21;14Hclose! \u001b[21;32Hlsp-workspace-command\u001b[21;63Hreflow \u001b[22;1Hwrit\u001b[22;6H-quit \u001b[22;32Hconfig\u001b[22;39Hopen-workspace\u001b[22;63Hredraw \u001b[23;1Hwrit\u001b[23;6H-quit! \u001b[23;32Hnew \u001b[23;63H \u001b[24;1Hwrit\u001b[24;6H-all \u001b[24;32Hshow-clipboard-provider\u001b[24;63H \u001b[25;2H\u001b[48;2;40;40;40mw\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;3H\u001b[?25h\u001b[2 q"] +[17.121576, "o", "\u001b[14;1H\u001b[48;2;40;40;40m \u001b[15;1H \u001b[16;1H \u001b[17;1H \u001b[18;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m┌────────────────────────────────────────────────────────────────────────────────────────┐\u001b[39m\u001b[48;2;40;40;40m \u001b[19;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Write changes to disk and close the current view. Accepts an optional path (:wq │\u001b[39m\u001b[48;2;40;40;40m \u001b[20;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ some/path.txt) "] +[17.121599, "o", " │\u001b[39m\u001b[48;2;40;40;40m \u001b[21;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m│ Aliases: wq, x │\u001b[39m\u001b[48;2;40;40;40m \u001b[22;1H\u001b[38;2;235;219;178m\u001b[48;2;60;56;54m└────────────────────────────────────────────────────────────────────────────────────────┘\u001b[39m\u001b[48;2;40;40;40m \u001b[23;11H\u001b[38;2;235;219;178m\u001b[48;2;80;73;69m \u001b[23;32Hwrite-quit-all\u001b[24;7Hquit!\u001b[24;32Hwrite-quit-\u001b[24;44Hll! \u001b[25;3H\u001b[48;2;40;40;40mq\u001b[59m\u001b[39m\u001b[49m\u001b[0m\u001b[25;4H\u001b[?25h\u001b[2 q"] +[17.489663, "o", "\u001b[?25h\u001b[2 q\u001b[0 q\u001b[?1006l\u001b[?1015l\u001b[?1003l\u001b[?1002l\u001b[?1000l\u001b[?2004l\u001b[?1004l\u001b[?1049l"] +[17.493139, "o", "\u001b[2m⏎\u001b(B\u001b[m \r⏎ \r\u001b[K"] +[17.497125, "o", "\u001b[?2004h"]