mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-04-13 12:30:40 +08:00
perf(bundle): use telescope 0.1.8 for nvim 0.10.0
This commit is contained in:
parent
a10d464ca9
commit
6a97b72dc3
@ -45,7 +45,9 @@ endfunction
|
||||
|
||||
function! SpaceVim#layers#telescope#plugins() abort
|
||||
let plugins = []
|
||||
if has('nvim-0.7.2')
|
||||
if has('nvim-0.10.0')
|
||||
call add(plugins, [g:_spacevim_root_dir . 'bundle/telescope.nvim-0.1.8', {'merged' : 0, 'loadconf' : 1}])
|
||||
elseif has('nvim-0.7.2')
|
||||
call add(plugins, [g:_spacevim_root_dir . 'bundle/telescope.nvim-0.1.5', {'merged' : 0, 'loadconf' : 1}])
|
||||
elseif has('nvim-0.7.0')
|
||||
call add(plugins, [g:_spacevim_root_dir . 'bundle/telescope.nvim-0.1.2', {'merged' : 0, 'loadconf' : 1}])
|
||||
|
1
bundle/telescope.nvim-0.1.8/.github/FUNDING.yml
vendored
Normal file
1
bundle/telescope.nvim-0.1.8/.github/FUNDING.yml
vendored
Normal file
@ -0,0 +1 @@
|
||||
github: [tjdevries, Conni2461, fdschmidt93]
|
119
bundle/telescope.nvim-0.1.8/.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
119
bundle/telescope.nvim-0.1.8/.github/ISSUE_TEMPLATE/bug_report.yml
vendored
Normal file
@ -0,0 +1,119 @@
|
||||
name: Bug report
|
||||
description: Report a problem with Telescope
|
||||
labels: [bug]
|
||||
body:
|
||||
- type: markdown
|
||||
attributes:
|
||||
value: |
|
||||
Before reporting: search [existing issues](https://github.com/nvim-telescope/telescope.nvim/issues) and make sure that both Telescope and its dependencies are updated to the latest version.
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Description"
|
||||
description: "A short description of the problem you are reporting."
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Neovim version"
|
||||
description: "Output of `nvim --version`"
|
||||
render: markdown
|
||||
placeholder: |
|
||||
NVIM v0.6.0-dev+209-g0603eba6e
|
||||
Build type: Release
|
||||
LuaJIT 2.1.0-beta3
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Operating system and version"
|
||||
placeholder: "macOS 11.5"
|
||||
validations:
|
||||
required: true
|
||||
- type: input
|
||||
attributes:
|
||||
label: "Telescope version / branch / rev"
|
||||
placeholder: "telescope 0.1.0"
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "checkhealth telescope"
|
||||
description: "Output of `:checkhealth telescope`"
|
||||
render: markdown
|
||||
placeholder: |
|
||||
health#telescope#check
|
||||
========================================================================
|
||||
## Checking for required plugins
|
||||
- OK: plenary installed.
|
||||
- OK: nvim-treesitter installed.
|
||||
|
||||
## Checking external dependencies
|
||||
- OK: rg: found ripgrep 13.0.0
|
||||
- OK: fd: found fd 8.2.1
|
||||
|
||||
## ===== Installed extensions =====
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Steps to reproduce"
|
||||
description: "Steps to reproduce using the minimal config provided below."
|
||||
placeholder: |
|
||||
1. `nvim -nu minimal.lua`
|
||||
2. ...
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Expected behavior"
|
||||
description: "A description of the behavior you expected:"
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Actual behavior"
|
||||
description: "Observed behavior (may optionally include logs, images, or videos)."
|
||||
validations:
|
||||
required: true
|
||||
- type: textarea
|
||||
attributes:
|
||||
label: "Minimal config"
|
||||
description: "Minimal(!) configuration necessary to reproduce the issue. Save this as `minimal.lua`. If _absolutely_ necessary, add plugins and config options from your `init.lua` at the indicated lines."
|
||||
render: Lua
|
||||
value: |
|
||||
vim.cmd [[set runtimepath=$VIMRUNTIME]]
|
||||
vim.cmd [[set packpath=/tmp/nvim/site]]
|
||||
local package_root = '/tmp/nvim/site/pack'
|
||||
local install_path = package_root .. '/packer/start/packer.nvim'
|
||||
local function load_plugins()
|
||||
require('packer').startup {
|
||||
{
|
||||
'wbthomason/packer.nvim',
|
||||
{
|
||||
'nvim-telescope/telescope.nvim',
|
||||
requires = {
|
||||
'nvim-lua/plenary.nvim',
|
||||
{ 'nvim-telescope/telescope-fzf-native.nvim', run = 'make' },
|
||||
},
|
||||
},
|
||||
-- ADD PLUGINS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
|
||||
},
|
||||
config = {
|
||||
package_root = package_root,
|
||||
compile_path = install_path .. '/plugin/packer_compiled.lua',
|
||||
display = { non_interactive = true },
|
||||
},
|
||||
}
|
||||
end
|
||||
_G.load_config = function()
|
||||
require('telescope').setup()
|
||||
require('telescope').load_extension('fzf')
|
||||
-- ADD INIT.LUA SETTINGS THAT ARE _NECESSARY_ FOR REPRODUCING THE ISSUE
|
||||
end
|
||||
if vim.fn.isdirectory(install_path) == 0 then
|
||||
print("Installing Telescope and dependencies.")
|
||||
vim.fn.system { 'git', 'clone', '--depth=1', 'https://github.com/wbthomason/packer.nvim', install_path }
|
||||
end
|
||||
load_plugins()
|
||||
require('packer').sync()
|
||||
vim.cmd [[autocmd User PackerComplete ++once echo "Ready!" | lua load_config()]]
|
||||
validations:
|
||||
required: true
|
6
bundle/telescope.nvim-0.1.8/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
6
bundle/telescope.nvim-0.1.8/.github/ISSUE_TEMPLATE/config.yml
vendored
Normal file
@ -0,0 +1,6 @@
|
||||
blank_issues_enabled: false
|
||||
contact_links:
|
||||
- name: Question
|
||||
url: https://gitter.im/nvim-telescope/community
|
||||
about: Usage questions and support requests are answered in the Telescope Gitter
|
||||
|
20
bundle/telescope.nvim-0.1.8/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
20
bundle/telescope.nvim-0.1.8/.github/ISSUE_TEMPLATE/feature_request.md
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
name: Feature request
|
||||
about: Suggest an idea for this project
|
||||
title: ''
|
||||
labels: enhancement
|
||||
assignees: ''
|
||||
|
||||
---
|
||||
|
||||
**Is your feature request related to a problem? Please describe.**
|
||||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
|
||||
|
||||
**Describe the solution you'd like**
|
||||
A clear and concise description of what you want to happen.
|
||||
|
||||
**Describe alternatives you've considered**
|
||||
A clear and concise description of any alternative solutions or features you've considered.
|
||||
|
||||
**Additional context**
|
||||
Add any other context or screenshots about the feature request here.
|
33
bundle/telescope.nvim-0.1.8/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
33
bundle/telescope.nvim-0.1.8/.github/PULL_REQUEST_TEMPLATE.md
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
# Description
|
||||
|
||||
Please include a summary of the change and which issue is fixed. Please also
|
||||
include relevant motivation and context
|
||||
|
||||
Fixes # (issue)
|
||||
|
||||
## Type of change
|
||||
|
||||
Please delete options that are not relevant.
|
||||
|
||||
- Bug fix (non-breaking change which fixes an issue)
|
||||
- New feature (non-breaking change which adds functionality)
|
||||
- Breaking change (fix or feature that would cause existing functionality to not work as expected)
|
||||
- This change requires a documentation update
|
||||
|
||||
# How Has This Been Tested?
|
||||
|
||||
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list relevant details about your configuration
|
||||
|
||||
- [ ] Test A
|
||||
- [ ] Test B
|
||||
|
||||
**Configuration**:
|
||||
* Neovim version (nvim --version):
|
||||
* Operating system and version:
|
||||
|
||||
# Checklist:
|
||||
|
||||
- [ ] My code follows the style guidelines of this project (stylua)
|
||||
- [ ] I have performed a self-review of my own code
|
||||
- [ ] I have commented my code, particularly in hard-to-understand areas
|
||||
- [ ] I have made corresponding changes to the documentation (lua annotations)
|
41
bundle/telescope.nvim-0.1.8/.github/workflows/ci.yml
vendored
Normal file
41
bundle/telescope.nvim-0.1.8/.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
name: Tests
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
unit_tests:
|
||||
name: unit tests
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
os: [ubuntu-22.04, macos-12, windows-2022]
|
||||
rev: [nightly, v0.7.2, v0.8.3, v0.9.0, v0.10.0]
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
install-rg: sudo apt-get update && sudo apt-get install -y ripgrep
|
||||
- os: macos-12
|
||||
install-rg: brew update && brew install ripgrep
|
||||
- os: windows-2022
|
||||
install-rg: choco install ripgrep
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: rhysd/action-setup-vim@v1
|
||||
with:
|
||||
neovim: true
|
||||
version: ${{ matrix.rev }}
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
${{ matrix.install-rg }}
|
||||
rg --version
|
||||
|
||||
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ../plenary.nvim
|
||||
git clone --depth 1 https://github.com/nvim-tree/nvim-web-devicons ../nvim-web-devicons
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
nvim --version
|
||||
make test
|
66
bundle/telescope.nvim-0.1.8/.github/workflows/docgen.yml
vendored
Normal file
66
bundle/telescope.nvim-0.1.8/.github/workflows/docgen.yml
vendored
Normal file
@ -0,0 +1,66 @@
|
||||
name: Generate docs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches-ignore:
|
||||
- master
|
||||
|
||||
jobs:
|
||||
build-sources:
|
||||
name: Generate docs
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- os: ubuntu-22.04
|
||||
url: https://github.com/neovim/neovim/releases/download/v0.9.5/nvim-linux64.tar.gz
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: date +%F > todays-date
|
||||
- name: Restore cache for today's nightly.
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: _neovim
|
||||
key: ${{ runner.os }}-${{ matrix.url }}-${{ hashFiles('todays-date') }}
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
test -d _neovim || {
|
||||
mkdir -p _neovim
|
||||
curl -sL ${{ matrix.url }} | tar xzf - --strip-components=1 -C "${PWD}/_neovim"
|
||||
}
|
||||
mkdir -p ~/.local/share/nvim/site/pack/vendor/start
|
||||
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim ~/.local/share/nvim/site/pack/vendor/start/plenary.nvim
|
||||
git clone https://github.com/tjdevries/tree-sitter-lua ~/.local/share/nvim/site/pack/vendor/start/tree-sitter-lua
|
||||
ln -s $(pwd) ~/.local/share/nvim/site/pack/vendor/start
|
||||
|
||||
- name: Build parser
|
||||
run: |
|
||||
# We have to build the parser every single time to keep up with parser changes
|
||||
cd ~/.local/share/nvim/site/pack/vendor/start/tree-sitter-lua
|
||||
git checkout 86f74dfb69c570f0749b241f8f5489f8f50adbea
|
||||
make dist
|
||||
cd -
|
||||
|
||||
- name: Generating docs
|
||||
run: |
|
||||
export PATH="${PWD}/_neovim/bin:${PATH}"
|
||||
export VIM="${PWD}/_neovim/share/nvim/runtime"
|
||||
nvim --version
|
||||
make docgen
|
||||
|
||||
# inspired by nvim-lspconfigs
|
||||
- name: Update documentation
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
COMMIT_MSG: |
|
||||
[docgen] Update doc/telescope.txt
|
||||
skip-checks: true
|
||||
run: |
|
||||
git config user.email "actions@github"
|
||||
git config user.name "Github Actions"
|
||||
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
|
||||
git add doc/
|
||||
# Only commit and push if we have changes
|
||||
git diff --quiet && git diff --staged --quiet || (git commit -m "${COMMIT_MSG}"; git push origin HEAD:${GITHUB_REF})
|
31
bundle/telescope.nvim-0.1.8/.github/workflows/lint.yml
vendored
Normal file
31
bundle/telescope.nvim-0.1.8/.github/workflows/lint.yml
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
name: Linting and style checking
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
luacheck:
|
||||
name: Luacheck
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Prepare
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y luarocks
|
||||
sudo luarocks install luacheck
|
||||
|
||||
- name: Lint
|
||||
run: sudo make lint
|
||||
|
||||
stylua:
|
||||
name: stylua
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: JohnnyMorganz/stylua-action@v4
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
version: latest
|
||||
# CLI arguments
|
||||
args: --color always --check lua/
|
29
bundle/telescope.nvim-0.1.8/.github/workflows/release.yml
vendored
Normal file
29
bundle/telescope.nvim-0.1.8/.github/workflows/release.yml
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
name: "release"
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
jobs:
|
||||
luarocks-upload:
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: LuaRocks Upload
|
||||
uses: nvim-neorocks/luarocks-tag-release@v1.0.2
|
||||
env:
|
||||
LUAROCKS_API_KEY: ${{ secrets.LUAROCKS_API_KEY }}
|
||||
with:
|
||||
summary: "Find, Filter, Preview, Pick. All lua, all the time."
|
||||
detailed_description: |
|
||||
A highly extendable fuzzy finder over lists.
|
||||
Built on the latest awesome features from neovim core.
|
||||
Telescope is centered around modularity, allowing for easy customization.
|
||||
dependencies: |
|
||||
plenary.nvim
|
||||
copy_directories: |
|
||||
doc
|
||||
ftplugin
|
||||
plugin
|
||||
scripts
|
||||
autoload
|
||||
data
|
4
bundle/telescope.nvim-0.1.8/.gitignore
vendored
Normal file
4
bundle/telescope.nvim-0.1.8/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
build/
|
||||
doc/tags
|
||||
|
||||
.luacheckcache
|
33
bundle/telescope.nvim-0.1.8/.luacheckrc
Normal file
33
bundle/telescope.nvim-0.1.8/.luacheckrc
Normal file
@ -0,0 +1,33 @@
|
||||
-- Rerun tests only if their modification time changed.
|
||||
cache = true
|
||||
|
||||
std = luajit
|
||||
codes = true
|
||||
|
||||
self = false
|
||||
|
||||
-- Glorious list of warnings: https://luacheck.readthedocs.io/en/stable/warnings.html
|
||||
ignore = {
|
||||
"212", -- Unused argument, In the case of callback function, _arg_name is easier to understand than _, so this option is set to off.
|
||||
"122", -- Indirectly setting a readonly global
|
||||
}
|
||||
|
||||
globals = {
|
||||
"_",
|
||||
"TelescopeGlobalState",
|
||||
"_TelescopeConfigurationValues",
|
||||
"_TelescopeConfigurationPickers",
|
||||
}
|
||||
|
||||
-- Global objects defined by the C code
|
||||
read_globals = {
|
||||
"vim",
|
||||
}
|
||||
|
||||
files = {
|
||||
["lua/telescope/builtin/init.lua"] = {
|
||||
ignore = {
|
||||
"631", -- allow line len > 120
|
||||
}
|
||||
},
|
||||
}
|
6
bundle/telescope.nvim-0.1.8/.stylua.toml
Normal file
6
bundle/telescope.nvim-0.1.8/.stylua.toml
Normal file
@ -0,0 +1,6 @@
|
||||
column_width = 120
|
||||
line_endings = "Unix"
|
||||
indent_type = "Spaces"
|
||||
indent_width = 2
|
||||
quote_style = "AutoPreferDouble"
|
||||
call_parentheses = "None"
|
81
bundle/telescope.nvim-0.1.8/CONTRIBUTING.md
Normal file
81
bundle/telescope.nvim-0.1.8/CONTRIBUTING.md
Normal file
@ -0,0 +1,81 @@
|
||||
# Contributing
|
||||
|
||||
Thanks for taking the time to submit code to Telescope if you're reading this!
|
||||
We love having new contributors and love seeing the Neovim community come around this plugin and keep making it better.
|
||||
|
||||
At this time, we are content with the number and functionality of the pickers we offer built
|
||||
in with Telescope and so we are currently not accepting new pickers
|
||||
(see this [issue](https://github.com/nvim-telescope/telescope.nvim/issues/1228) for a discussion on this).
|
||||
|
||||
We are also conservative with integrating picker specific actions and features.
|
||||
If you're still interested in filling a particular picker need, we encourage packaging it up as its own Telescope extension.
|
||||
Read our [Bundling as extension](https://github.com/nvim-telescope/telescope.nvim/blob/master/developers.md#bundling-as-extension) guide here for more info on this.
|
||||
See other Telescope extensions (and add yours) [here](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions).
|
||||
|
||||
That said, we welcome bug fixes, documentation improvements and non-picker specific features.
|
||||
If you're submitting a new feature, it is a good idea to create an issue first to gauge interest and feasibility.
|
||||
|
||||
To learn how we go about writing documentation for this project, keep reading below!
|
||||
|
||||
## Documentation with treesitter
|
||||
|
||||
We are generating docs based on the tree sitter syntax tree. TJ wrote a grammar that includes the documentation in this syntax tree so we can do take this function header documentation and transform it into vim documentation. All documentation that is part of the returning module will be exported. For example:
|
||||
|
||||
```lua
|
||||
local m = {}
|
||||
|
||||
--- Test Header
|
||||
--@return 1: Returns always 1
|
||||
function m.a() -- or m:a()
|
||||
return 1
|
||||
end
|
||||
|
||||
--- Documentation
|
||||
function m.__b() -- or m:__b()
|
||||
return 2
|
||||
end
|
||||
|
||||
--- Documentation
|
||||
local c = function()
|
||||
return 2
|
||||
end
|
||||
|
||||
return m
|
||||
```
|
||||
|
||||
This will export function `a` with header documentation and the return value. Module function `b` and local function `c` will not be exported.
|
||||
|
||||
For a more in-depth look at how to write documentation take a look at this guide: [how to](https://github.com/tjdevries/tree-sitter-lua/blob/master/HOWTO.md)
|
||||
This guide contains all annotations and we will update it when we add new annotations.
|
||||
|
||||
## What is missing?
|
||||
|
||||
The docgen has some problems on which people can work. This would happen in [tree-sitter-lua](https://github.com/tjdevries/tree-sitter-lua) and documentation of some modules here.
|
||||
I would suggest we are documenting lua/telescope/builtin/init.lua rather than the files itself. We can use that init.lua file as "header" file, so we are not cluttering the other files.
|
||||
How to help out with documentation:
|
||||
|
||||
## Auto-updates from CI
|
||||
|
||||
The easy way would be:
|
||||
|
||||
- write some docs
|
||||
- commit, push and create draft PR
|
||||
- wait a minute until the CI generates a new commit with the changes
|
||||
- Look at this commit and the changes
|
||||
- Modify documentation until its perfect. You can do `git commit --amend` and `git push --force` to remove the github ci commit again
|
||||
|
||||
## Generate on your local machine
|
||||
|
||||
The other option would be setting up <https://github.com/tjdevries/tree-sitter-lua>
|
||||
|
||||
- Install Treesitter, either with package manager or with github release
|
||||
- Install plugin as usual
|
||||
- cd to plugin
|
||||
- `mkdir -p build parser` sadly those don't exist
|
||||
- `make build_parser`
|
||||
- `ln -s ../build/parser.so parser/lua.so` We need the shared object in parser/ so it gets picked up by neovim. Either copy or symbolic link
|
||||
- Make sure that nvim-treesitter lua parser is not installed and also delete the lua queries in that repository. `queries/lua/*`. If you are not doing that you will have a bad time!
|
||||
- cd into this project
|
||||
- Write doc
|
||||
- Run `make docgen`
|
||||
- Repeat last two steps
|
21
bundle/telescope.nvim-0.1.8/LICENSE
Normal file
21
bundle/telescope.nvim-0.1.8/LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2020-2021 nvim-telescope
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
10
bundle/telescope.nvim-0.1.8/Makefile
Normal file
10
bundle/telescope.nvim-0.1.8/Makefile
Normal file
@ -0,0 +1,10 @@
|
||||
.PHONY: test lint docgen
|
||||
|
||||
test:
|
||||
nvim --headless --noplugin -u scripts/minimal_init.vim -c "PlenaryBustedDirectory lua/tests/automated/ { minimal_init = './scripts/minimal_init.vim' }"
|
||||
|
||||
lint:
|
||||
luacheck lua/telescope
|
||||
|
||||
docgen:
|
||||
nvim --headless --noplugin -u scripts/minimal_init.vim -c "luafile ./scripts/gendocs.lua" -c 'qa'
|
607
bundle/telescope.nvim-0.1.8/README.md
Normal file
607
bundle/telescope.nvim-0.1.8/README.md
Normal file
@ -0,0 +1,607 @@
|
||||
# telescope.nvim
|
||||
|
||||
[](https://gitter.im/nvim-telescope/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
||||
[](https://luarocks.org/modules/Conni2461/telescope.nvim)
|
||||
|
||||
Gaze deeply into unknown regions using the power of the moon.
|
||||
|
||||
## What Is Telescope?
|
||||
|
||||
`telescope.nvim` is a highly extendable fuzzy finder over lists. Built on the
|
||||
latest awesome features from `neovim` core. Telescope is centered around
|
||||
modularity, allowing for easy customization.
|
||||
|
||||
Community driven builtin [pickers](#pickers), [sorters](#sorters) and
|
||||
[previewers](#previewers).
|
||||
|
||||

|
||||
<sub>For more showcases of Telescope, please visit the [Showcase
|
||||
section](https://github.com/nvim-telescope/telescope.nvim/wiki/Showcase) in the
|
||||
Telescope Wiki</sub>
|
||||
|
||||
## Telescope Table of Contents
|
||||
|
||||
- [Getting Started](#getting-started)
|
||||
- [Usage](#usage)
|
||||
- [Customization](#customization)
|
||||
- [Default Mappings](#default-mappings)
|
||||
- [Pickers](#pickers)
|
||||
- [Previewers](#previewers)
|
||||
- [Sorters](#sorters)
|
||||
- [Layout](#layout-display)
|
||||
- [Themes](#themes)
|
||||
- [Commands](#vim-commands)
|
||||
- [Autocmds](#autocmds)
|
||||
- [Extensions](#extensions)
|
||||
- [API](#api)
|
||||
- [Media](#media)
|
||||
- [Contributing](#contributing)
|
||||
- [Changelog](https://github.com/nvim-telescope/telescope.nvim/blob/master/doc/telescope_changelog.txt)
|
||||
|
||||
## Getting Started
|
||||
|
||||
This section should guide you to run your first builtin pickers.
|
||||
|
||||
[Neovim (v0.7.0)](https://github.com/neovim/neovim/releases/tag/v0.7.0) or the
|
||||
latest neovim nightly commit is required for `telescope.nvim` to work.
|
||||
|
||||
### Required dependencies
|
||||
|
||||
- [nvim-lua/plenary.nvim](https://github.com/nvim-lua/plenary.nvim) is required.
|
||||
|
||||
### Suggested dependencies
|
||||
|
||||
- [BurntSushi/ripgrep](https://github.com/BurntSushi/ripgrep) is required for
|
||||
`live_grep` and `grep_string`
|
||||
|
||||
We also suggest you install one native telescope sorter to significantly improve
|
||||
sorting performance. Take a look at either
|
||||
[telescope-fzf-native.nvim](https://github.com/nvim-telescope/telescope-fzf-native.nvim)
|
||||
or
|
||||
[telescope-fzy-native.nvim](https://github.com/nvim-telescope/telescope-fzy-native.nvim).
|
||||
For more information and a performance benchmark take a look at the
|
||||
[Extensions](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions)
|
||||
wiki.
|
||||
|
||||
### Optional dependencies
|
||||
|
||||
- [sharkdp/fd](https://github.com/sharkdp/fd) (finder)
|
||||
- [nvim-treesitter/nvim-treesitter](https://github.com/nvim-treesitter/nvim-treesitter) (finder/preview)
|
||||
- [neovim LSP]( https://neovim.io/doc/user/lsp.html) (picker)
|
||||
- [devicons](https://github.com/nvim-tree/nvim-web-devicons) (icons)
|
||||
|
||||
### Installation
|
||||
|
||||
It is suggested to either use the latest release
|
||||
[tag](https://github.com/nvim-telescope/telescope.nvim/tags) or our release
|
||||
branch (which will get consistent updates)
|
||||
[0.1.x](https://github.com/nvim-telescope/telescope.nvim/tree/0.1.x).
|
||||
|
||||
It is not suggested to run latest master.
|
||||
|
||||
Using [vim-plug](https://github.com/junegunn/vim-plug)
|
||||
|
||||
```viml
|
||||
Plug 'nvim-lua/plenary.nvim'
|
||||
Plug 'nvim-telescope/telescope.nvim', { 'tag': '0.1.1' }
|
||||
" or , { 'branch': '0.1.x' }
|
||||
```
|
||||
|
||||
Using [dein](https://github.com/Shougo/dein.vim)
|
||||
|
||||
```viml
|
||||
call dein#add('nvim-lua/plenary.nvim')
|
||||
call dein#add('nvim-telescope/telescope.nvim', { 'rev': '0.1.1' })
|
||||
" or , { 'rev': '0.1.x' })
|
||||
```
|
||||
Using [packer.nvim](https://github.com/wbthomason/packer.nvim)
|
||||
|
||||
```lua
|
||||
use {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||
-- or , branch = '0.1.x',
|
||||
requires = { {'nvim-lua/plenary.nvim'} }
|
||||
}
|
||||
```
|
||||
|
||||
Using [lazy.nvim](https://github.com/folke/lazy.nvim)
|
||||
|
||||
```lua
|
||||
-- init.lua:
|
||||
{
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||
-- or , branch = '0.1.x',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
}
|
||||
|
||||
-- plugins/telescope.lua:
|
||||
return {
|
||||
'nvim-telescope/telescope.nvim', tag = '0.1.1',
|
||||
-- or , branch = '0.1.x',
|
||||
dependencies = { 'nvim-lua/plenary.nvim' }
|
||||
}
|
||||
```
|
||||
|
||||
### checkhealth
|
||||
|
||||
Make sure you call `:checkhealth telescope` after installing telescope to ensure
|
||||
everything is set up correctly.
|
||||
|
||||
After this setup you can continue reading here or switch to `:help telescope`
|
||||
to get an understanding of how to use Telescope and how to configure it.
|
||||
|
||||
## Usage
|
||||
|
||||
Try the command `:Telescope find_files`
|
||||
to see if `telescope.nvim` is installed correctly.
|
||||
|
||||
Using VimL:
|
||||
|
||||
```viml
|
||||
" Find files using Telescope command-line sugar.
|
||||
nnoremap <leader>ff <cmd>Telescope find_files<cr>
|
||||
nnoremap <leader>fg <cmd>Telescope live_grep<cr>
|
||||
nnoremap <leader>fb <cmd>Telescope buffers<cr>
|
||||
nnoremap <leader>fh <cmd>Telescope help_tags<cr>
|
||||
|
||||
" Using Lua functions
|
||||
nnoremap <leader>ff <cmd>lua require('telescope.builtin').find_files()<cr>
|
||||
nnoremap <leader>fg <cmd>lua require('telescope.builtin').live_grep()<cr>
|
||||
nnoremap <leader>fb <cmd>lua require('telescope.builtin').buffers()<cr>
|
||||
nnoremap <leader>fh <cmd>lua require('telescope.builtin').help_tags()<cr>
|
||||
```
|
||||
|
||||
Using Lua:
|
||||
|
||||
```lua
|
||||
local builtin = require('telescope.builtin')
|
||||
vim.keymap.set('n', '<leader>ff', builtin.find_files, {})
|
||||
vim.keymap.set('n', '<leader>fg', builtin.live_grep, {})
|
||||
vim.keymap.set('n', '<leader>fb', builtin.buffers, {})
|
||||
vim.keymap.set('n', '<leader>fh', builtin.help_tags, {})
|
||||
```
|
||||
|
||||
See [builtin pickers](#pickers) for a list of all builtin functions.
|
||||
|
||||
## Customization
|
||||
|
||||
This section should help you explore available options to configure and
|
||||
customize your `telescope.nvim`.
|
||||
|
||||
Unlike most vim plugins, `telescope.nvim` can be customized by either applying
|
||||
customizations globally, or individually per picker.
|
||||
|
||||
- **Global Customization** affecting all pickers can be done through the main
|
||||
`setup()` method (see defaults below)
|
||||
- **Individual Customization** affecting a single picker by passing `opts` to
|
||||
builtin pickers (e.g. `builtin.find_files(opts)`) see
|
||||
[Configuration recipes](https://github.com/nvim-telescope/telescope.nvim/wiki/Configuration-Recipes)
|
||||
wiki page for ideas.
|
||||
|
||||
### Telescope setup structure
|
||||
|
||||
```lua
|
||||
require('telescope').setup{
|
||||
defaults = {
|
||||
-- Default configuration for telescope goes here:
|
||||
-- config_key = value,
|
||||
mappings = {
|
||||
i = {
|
||||
-- map actions.which_key to <C-h> (default: <C-/>)
|
||||
-- actions.which_key shows the mappings for your picker,
|
||||
-- e.g. git_{create, delete, ...}_branch for the git_branches picker
|
||||
["<C-h>"] = "which_key"
|
||||
}
|
||||
}
|
||||
},
|
||||
pickers = {
|
||||
-- Default configuration for builtin pickers goes here:
|
||||
-- picker_name = {
|
||||
-- picker_config_key = value,
|
||||
-- ...
|
||||
-- }
|
||||
-- Now the picker_config_key will be applied every time you call this
|
||||
-- builtin picker
|
||||
},
|
||||
extensions = {
|
||||
-- Your extension configuration goes here:
|
||||
-- extension_name = {
|
||||
-- extension_config_key = value,
|
||||
-- }
|
||||
-- please take a look at the readme of the extension you want to configure
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
To look at what default configuration options exist please read: `:help
|
||||
telescope.setup()`. For picker specific `opts` please read: `:help
|
||||
telescope.builtin`.
|
||||
|
||||
|
||||
To embed the above code snippet in a `.vim` file
|
||||
(for example in `after/plugin/telescope.nvim.vim`),
|
||||
wrap it in `lua << EOF code-snippet EOF`:
|
||||
|
||||
```lua
|
||||
lua << EOF
|
||||
require('telescope').setup{
|
||||
-- ...
|
||||
}
|
||||
EOF
|
||||
```
|
||||
|
||||
## Default Mappings
|
||||
|
||||
Mappings are fully customizable.
|
||||
Many familiar mapping patterns are set up as defaults.
|
||||
|
||||
| Mappings | Action |
|
||||
|----------------|------------------------------------------------------|
|
||||
| `<C-n>/<Down>` | Next item |
|
||||
| `<C-p>/<Up>` | Previous item |
|
||||
| `j/k` | Next/previous (in normal mode) |
|
||||
| `H/M/L` | Select High/Middle/Low (in normal mode) |
|
||||
| `gg/G` | Select the first/last item (in normal mode) |
|
||||
| `<CR>` | Confirm selection |
|
||||
| `<C-x>` | Go to file selection as a split |
|
||||
| `<C-v>` | Go to file selection as a vsplit |
|
||||
| `<C-t>` | Go to a file in a new tab |
|
||||
| `<C-u>` | Scroll up in preview window |
|
||||
| `<C-d>` | Scroll down in preview window |
|
||||
| `<C-/>` | Show mappings for picker actions (insert mode) |
|
||||
| `?` | Show mappings for picker actions (normal mode) |
|
||||
| `<C-c>` | Close telescope (insert mode) |
|
||||
| `<Esc>` | Close telescope (in normal mode) |
|
||||
| `<Tab>` | Toggle selection and move to next selection |
|
||||
| `<S-Tab>` | Toggle selection and move to prev selection |
|
||||
| `<C-q>` | Send all items not filtered to quickfixlist (qflist) |
|
||||
| `<M-q>` | Send all selected items to qflist |
|
||||
|
||||
|
||||
To see the full list of mappings, check out `lua/telescope/mappings.lua` and the
|
||||
`default_mappings` table.
|
||||
|
||||
**Tip**: you can use `<C-/>` and `?` in insert and normal mode, respectively, to show the actions mapped to your picker.
|
||||
|
||||
Much like [builtin pickers](#pickers), there are a number of
|
||||
[actions](https://github.com/nvim-telescope/telescope.nvim/blob/master/lua/telescope/actions/init.lua)
|
||||
you can pick from to remap your telescope buffer mappings, or create a new
|
||||
custom action:
|
||||
|
||||
```lua
|
||||
-- Built-in actions
|
||||
local transform_mod = require('telescope.actions.mt').transform_mod
|
||||
|
||||
-- or create your custom action
|
||||
local my_cool_custom_action = transform_mod({
|
||||
x = function(prompt_bufnr)
|
||||
print("This function ran after another action. Prompt_bufnr: " .. prompt_bufnr)
|
||||
-- Enter your function logic here. You can take inspiration from lua/telescope/actions.lua
|
||||
end,
|
||||
})
|
||||
```
|
||||
|
||||
To remap telescope mappings, please read `:help telescope.defaults.mappings`.
|
||||
To do picker specific mappings, its suggested to do this with the `pickers`
|
||||
table in `telescope.setup`. Each picker accepts a `mappings` table like its
|
||||
explained in `:help telescope.defaults.mappings`.
|
||||
|
||||
## Pickers
|
||||
|
||||
Built-in functions. Ready to be bound to any key you like.
|
||||
|
||||
```vim
|
||||
:lua require'telescope.builtin'.planets{}
|
||||
|
||||
:nnoremap <Leader>pp :lua require'telescope.builtin'.planets{}
|
||||
```
|
||||
|
||||
### File Pickers
|
||||
|
||||
| Functions | Description |
|
||||
|-------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| `builtin.find_files` | Lists files in your current working directory, respects .gitignore |
|
||||
| `builtin.git_files` | Fuzzy search through the output of `git ls-files` command, respects .gitignore |
|
||||
| `builtin.grep_string` | Searches for the string under your cursor in your current working directory |
|
||||
| `builtin.live_grep` | Search for a string in your current working directory and get results live as you type, respects .gitignore. (Requires [ripgrep](https://github.com/BurntSushi/ripgrep)) |
|
||||
|
||||
### Vim Pickers
|
||||
|
||||
| Functions | Description |
|
||||
|-------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| `builtin.buffers` | Lists open buffers in current neovim instance |
|
||||
| `builtin.oldfiles` | Lists previously open files |
|
||||
| `builtin.commands` | Lists available plugin/user commands and runs them on `<cr>` |
|
||||
| `builtin.tags` | Lists tags in current directory with tag location file preview (users are required to run ctags -R to generate tags or update when introducing new changes) |
|
||||
| `builtin.command_history` | Lists commands that were executed recently, and reruns them on `<cr>` |
|
||||
| `builtin.search_history` | Lists searches that were executed recently, and reruns them on `<cr>` |
|
||||
| `builtin.help_tags` | Lists available help tags and opens a new window with the relevant help info on `<cr>` |
|
||||
| `builtin.man_pages` | Lists manpage entries, opens them in a help window on `<cr>` |
|
||||
| `builtin.marks` | Lists vim marks and their value |
|
||||
| `builtin.colorscheme` | Lists available colorschemes and applies them on `<cr>` |
|
||||
| `builtin.quickfix` | Lists items in the quickfix list |
|
||||
| `builtin.quickfixhistory` | Lists all quickfix lists in your history and open them with `builtin.quickfix` |
|
||||
| `builtin.loclist` | Lists items from the current window's location list |
|
||||
| `builtin.jumplist` | Lists Jump List entries |
|
||||
| `builtin.vim_options` | Lists vim options, allows you to edit the current value on `<cr>` |
|
||||
| `builtin.registers` | Lists vim registers, pastes the contents of the register on `<cr>` |
|
||||
| `builtin.autocommands` | Lists vim autocommands and goes to their declaration on `<cr>` |
|
||||
| `builtin.spell_suggest` | Lists spelling suggestions for the current word under the cursor, replaces word with selected suggestion on `<cr>` |
|
||||
| `builtin.keymaps` | Lists normal mode keymappings |
|
||||
| `builtin.filetypes` | Lists all available filetypes |
|
||||
| `builtin.highlights` | Lists all available highlights |
|
||||
| `builtin.current_buffer_fuzzy_find` | Live fuzzy search inside of the currently open buffer |
|
||||
| `builtin.current_buffer_tags` | Lists all of the tags for the currently open buffer, with a preview |
|
||||
| `builtin.resume` | Lists the results incl. multi-selections of the previous picker |
|
||||
| `builtin.pickers` | Lists the previous pickers incl. multi-selections (see `:h telescope.defaults.cache_picker`) |
|
||||
|
||||
### Neovim LSP Pickers
|
||||
|
||||
| Functions | Description |
|
||||
|---------------------------------------------|---------------------------------------------------------------------------------------------------------------------------|
|
||||
| `builtin.lsp_references` | Lists LSP references for word under the cursor |
|
||||
| `builtin.lsp_incoming_calls` | Lists LSP incoming calls for word under the cursor |
|
||||
| `builtin.lsp_outgoing_calls` | Lists LSP outgoing calls for word under the cursor |
|
||||
| `builtin.lsp_document_symbols` | Lists LSP document symbols in the current buffer |
|
||||
| `builtin.lsp_workspace_symbols` | Lists LSP document symbols in the current workspace |
|
||||
| `builtin.lsp_dynamic_workspace_symbols` | Dynamically Lists LSP for all workspace symbols |
|
||||
| `builtin.diagnostics` | Lists Diagnostics for all open buffers or a specific buffer. Use option `bufnr=0` for current buffer. |
|
||||
| `builtin.lsp_implementations` | Goto the implementation of the word under the cursor if there's only one, otherwise show all options in Telescope |
|
||||
| `builtin.lsp_definitions` | Goto the definition of the word under the cursor, if there's only one, otherwise show all options in Telescope |
|
||||
| `builtin.lsp_type_definitions` | Goto the definition of the type of the word under the cursor, if there's only one, otherwise show all options in Telescope|
|
||||
|
||||
|
||||
### Git Pickers
|
||||
|
||||
| Functions | Description |
|
||||
|-------------------------------------|------------------------------------------------------------------------------------------------------------|
|
||||
| `builtin.git_commits` | Lists git commits with diff preview, checkout action `<cr>`, reset mixed `<C-r>m`, reset soft `<C-r>s` and reset hard `<C-r>h` |
|
||||
| `builtin.git_bcommits` | Lists buffer's git commits with diff preview and checks them out on `<cr>` |
|
||||
| `builtin.git_branches` | Lists all branches with log preview, checkout action `<cr>`, track action `<C-t>`, rebase action`<C-r>`, create action `<C-a>`, switch action `<C-s>`, delete action `<C-d>` and merge action `<C-y>` |
|
||||
| `builtin.git_status` | Lists current changes per file with diff preview and add action. (Multi-selection still WIP) |
|
||||
| `builtin.git_stash` | Lists stash items in current repository with ability to apply them on `<cr>` |
|
||||
|
||||
### Treesitter Picker
|
||||
|
||||
| Functions | Description |
|
||||
|-------------------------------------|---------------------------------------------------|
|
||||
| `builtin.treesitter` | Lists Function names, variables, from Treesitter! |
|
||||
|
||||
### Lists Picker
|
||||
|
||||
| Functions | Description |
|
||||
|-------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| `builtin.planets` | Use the telescope... |
|
||||
| `builtin.builtin` | Lists Built-in pickers and run them on `<cr>`. |
|
||||
| `builtin.reloader` | Lists Lua modules and reload them on `<cr>`. |
|
||||
| `builtin.symbols` | Lists symbols inside a file `data/telescope-sources/*.json` found in your rtp. More info and symbol sources can be found [here](https://github.com/nvim-telescope/telescope-symbols.nvim) |
|
||||
|
||||
## Previewers
|
||||
|
||||
| Previewers | Description |
|
||||
|------------------------------------|-----------------------------------------------------------|
|
||||
| `previewers.vim_buffer_cat.new` | Default previewer for files. Uses vim buffers |
|
||||
| `previewers.vim_buffer_vimgrep.new`| Default previewer for grep and similar. Uses vim buffers |
|
||||
| `previewers.vim_buffer_qflist.new` | Default previewer for qflist. Uses vim buffers |
|
||||
| `previewers.cat.new` | Terminal previewer for files. Uses `cat`/`bat` |
|
||||
| `previewers.vimgrep.new` | Terminal previewer for grep and similar. Uses `cat`/`bat` |
|
||||
| `previewers.qflist.new` | Terminal previewer for qflist. Uses `cat`/`bat` |
|
||||
|
||||
The default previewers are from now on `vim_buffer_` previewers. They use vim
|
||||
buffers for displaying files and use tree-sitter or regex for file highlighting.
|
||||
|
||||
These previewers are guessing the filetype of the selected file, so there might
|
||||
be cases where they miss, leading to wrong highlights. This is because we can't
|
||||
determine the filetype in the traditional way: We don't do `bufload` and instead
|
||||
read the file asynchronously with `vim.loop.fs_` and attach only a highlighter;
|
||||
otherwise the speed of the previewer would slow down considerably. If you want
|
||||
to configure more filetypes, take a look at
|
||||
[plenary wiki](https://github.com/nvim-lua/plenary.nvim#plenaryfiletype).
|
||||
|
||||
If you want to configure the `vim_buffer_` previewer (e.g. you want the line to wrap), do this:
|
||||
|
||||
```vim
|
||||
autocmd User TelescopePreviewerLoaded setlocal wrap
|
||||
```
|
||||
|
||||
## Sorters
|
||||
|
||||
| Sorters | Description |
|
||||
|------------------------------------|-----------------------------------------------------------------|
|
||||
| `sorters.get_fuzzy_file` | Telescope's default sorter for files |
|
||||
| `sorters.get_generic_fuzzy_sorter` | Telescope's default sorter for everything else |
|
||||
| `sorters.get_levenshtein_sorter` | Using Levenshtein distance algorithm (don't use :D) |
|
||||
| `sorters.get_fzy_sorter` | Using fzy algorithm |
|
||||
| `sorters.fuzzy_with_index_bias` | Used to list stuff with consideration to when the item is added |
|
||||
|
||||
A `Sorter` is called by the `Picker` on each item returned by the `Finder`. It
|
||||
returns a number, which is equivalent to the "distance" between the current
|
||||
`prompt` and the `entry` returned by a `finder`.
|
||||
|
||||
## Layout (display)
|
||||
|
||||
Layout can be configured by choosing a specific `layout_strategy` and
|
||||
specifying a particular `layout_config` for that strategy.
|
||||
For more details on available strategies and configuration options,
|
||||
see `:help telescope.layout`.
|
||||
|
||||
Some options for configuring sizes in layouts are "resolvable". This means that
|
||||
they can take different forms, and will be interpreted differently according to
|
||||
which form they take.
|
||||
For example, if we wanted to set the `width` of a picker using the `vertical`
|
||||
layout strategy to 50% of the screen width, we would specify that width
|
||||
as `0.5`, but if we wanted to specify the `width` to be exactly 80
|
||||
characters wide, we would specify it as `80`.
|
||||
For more details on resolving sizes, see `:help telescope.resolve`.
|
||||
|
||||
As an example, if we wanted to specify the layout strategy and width,
|
||||
but only for this instance, we could do something like:
|
||||
|
||||
```
|
||||
:lua require('telescope.builtin').find_files({layout_strategy='vertical',layout_config={width=0.5}})
|
||||
```
|
||||
|
||||
If we wanted to change the width for every time we use the `vertical`
|
||||
layout strategy, we could add the following to our `setup()` call:
|
||||
|
||||
```lua
|
||||
require('telescope').setup({
|
||||
defaults = {
|
||||
layout_config = {
|
||||
vertical = { width = 0.5 }
|
||||
-- other layout configuration here
|
||||
},
|
||||
-- other defaults configuration here
|
||||
},
|
||||
-- other configuration values here
|
||||
})
|
||||
```
|
||||
|
||||
## Themes
|
||||
|
||||
Common groups of settings can be set up to allow for themes.
|
||||
We have some built in themes but are looking for more cool options.
|
||||
|
||||

|
||||
|
||||
| Themes | Description |
|
||||
|--------------------------|---------------------------------------------------------------------------------------------|
|
||||
| `themes.get_dropdown` | A list like centered list. [dropdown](https://i.imgur.com/SorAcXv.png) |
|
||||
| `themes.get_cursor` | [A cursor relative list.](https://github.com/nvim-telescope/telescope.nvim/pull/878) |
|
||||
| `themes.get_ivy` | Bottom panel overlay. [Ivy #771](https://github.com/nvim-telescope/telescope.nvim/pull/771) |
|
||||
|
||||
To use a theme, simply append it to a builtin function:
|
||||
|
||||
```vim
|
||||
nnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({}))<cr>
|
||||
" Change an option
|
||||
nnoremap <Leader>f :lua require'telescope.builtin'.find_files(require('telescope.themes').get_dropdown({ winblend = 10 }))<cr>
|
||||
```
|
||||
|
||||
Or use with a command:
|
||||
|
||||
```vim
|
||||
Telescope find_files theme=dropdown
|
||||
```
|
||||
|
||||
Or you can configure it in the pickers table in `telescope.setup`:
|
||||
|
||||
```lua
|
||||
require('telescope').setup{
|
||||
defaults = {
|
||||
-- ...
|
||||
},
|
||||
pickers = {
|
||||
find_files = {
|
||||
theme = "dropdown",
|
||||
}
|
||||
},
|
||||
extensions = {
|
||||
-- ...
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
Themes should work with every `telescope.builtin` function. If you wish to make
|
||||
a theme, check out `lua/telescope/themes.lua`.
|
||||
|
||||
## Vim Commands
|
||||
|
||||
All `telescope.nvim` functions are wrapped in `vim` commands for easy access,
|
||||
tab completions and setting options.
|
||||
|
||||
```viml
|
||||
" Show all builtin pickers
|
||||
:Telescope
|
||||
|
||||
" Tab completion
|
||||
:Telescope |<tab>
|
||||
:Telescope find_files
|
||||
|
||||
" Setting options
|
||||
:Telescope find_files prompt_prefix=🔍
|
||||
|
||||
" If the option accepts a Lua table as its value, you can use, to connect each
|
||||
" command string, e.g.: find_command, vimgrep_arguments are both options that
|
||||
" accept a Lua table as a value. So, you can configure them on the command line
|
||||
"like so:
|
||||
:Telescope find_files find_command=rg,--ignore,--hidden,--files prompt_prefix=🔍
|
||||
```
|
||||
|
||||
for more information and how to realize more complex commands please read
|
||||
`:help telescope.command`.
|
||||
|
||||
## Autocmds
|
||||
|
||||
Telescope user autocmds:
|
||||
|
||||
| Event | Description |
|
||||
|---------------------------------|---------------------------------------------------------|
|
||||
| `User TelescopeFindPre` | Do it before Telescope creates all the floating windows |
|
||||
| `User TelescopePreviewerLoaded` | Do it after Telescope previewer window is created |
|
||||
|
||||
## Extensions
|
||||
|
||||
Telescope provides the capabilities to create & register extensions, which
|
||||
improves telescope in a variety of ways.
|
||||
|
||||
Some extensions provide integration with external tools, outside of the scope of
|
||||
`builtins`. Others provide performance enhancements by using compiled C and
|
||||
interfacing directly with Lua over LuaJIT's FFI library.
|
||||
|
||||
A list of community extensions can be found in the
|
||||
[Extensions](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions)
|
||||
wiki. Always read the README of the extension you want to install, but here is a
|
||||
general overview of how most extensions work.
|
||||
|
||||
### Loading extensions
|
||||
|
||||
To load an extension, use the `load_extension` function as shown in the example
|
||||
below:
|
||||
|
||||
```lua
|
||||
-- This will load fzy_native and have it override the default file sorter
|
||||
require('telescope').load_extension('fzy_native')
|
||||
```
|
||||
|
||||
You may skip explicitly loading extensions (they will then be lazy-loaded), but
|
||||
tab completions will not be available right away.
|
||||
|
||||
### Accessing pickers from extensions
|
||||
|
||||
Pickers from extensions are added to the `:Telescope` command under their
|
||||
respective name. For example:
|
||||
|
||||
```viml
|
||||
" Run the `configurations` picker from nvim-dap
|
||||
:Telescope dap configurations
|
||||
```
|
||||
|
||||
They can also be called directly from Lua:
|
||||
|
||||
```lua
|
||||
-- Run the `configurations` picker from nvim-dap
|
||||
require('telescope').extensions.dap.configurations()
|
||||
```
|
||||
|
||||
## API
|
||||
|
||||
For writing your own picker and for information about the API please read the
|
||||
[Developers Documentation](developers.md).
|
||||
|
||||
## Media
|
||||
|
||||
- [What is Telescope? (Video)](https://www.twitch.tv/teej_dv/clip/RichDistinctPlumberPastaThat)
|
||||
- [More advanced configuration (Video)](https://www.twitch.tv/videos/756229115)
|
||||
- [Example video](https://www.youtube.com/watch?v=65AVwHZflsU)
|
||||
|
||||
## Contributing
|
||||
|
||||
All contributions are welcome! Just open a pull request.
|
||||
Please read [CONTRIBUTING.md](./CONTRIBUTING.md)
|
||||
|
||||
## Related Projects
|
||||
|
||||
- [fzf.vim](https://github.com/junegunn/fzf.vim)
|
||||
- [denite.nvim](https://github.com/Shougo/denite.nvim)
|
||||
- [vim-clap](https://github.com/liuchengxu/vim-clap)
|
@ -0,0 +1,3 @@
|
||||
function! health#telescope#check()
|
||||
lua require 'telescope.health'.check()
|
||||
endfunction
|
36
bundle/telescope.nvim-0.1.8/data/memes/planets/earth
Normal file
36
bundle/telescope.nvim-0.1.8/data/memes/planets/earth
Normal file
@ -0,0 +1,36 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;103;48;5;236m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;103;48;5;236m▓[38;5;104;48;5;234m▒[38;5;69;48;5;234m▒[38;5;69;48;5;234m▒[38;5;62;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;17;48;5;233m░[38;5;61;48;5;235m▒[38;5;69;48;5;236m▓[38;5;69;48;5;239m▓[38;5;69;48;5;239m▓[38;5;69;48;5;240m▓[38;5;69;48;5;240m▓[38;5;69;48;5;240m▓[38;5;69;48;5;240m▓[38;5;69;48;5;240m▓[38;5;69;48;5;240m▓[38;5;60;48;5;240m▓[38;5;69;48;5;240m▓[38;5;69;48;5;239m▓[38;5;69;48;5;239m▓[38;5;60;48;5;239m▓[38;5;69;48;5;238m▓[38;5;60;48;5;238m▓[38;5;61;48;5;236m▓[38;5;69;48;5;236m▓[38;5;69;48;5;236m▓[38;5;69;48;5;236m▓[38;5;69;48;5;235m▓[38;5;104;48;5;234m▒[38;5;61;48;5;235m▒[38;5;62;48;5;233m▒[38;5;104;48;5;234m▒[38;5;62;48;5;234m▒[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;233m░[38;5;69;48;5;236m▒[38;5;69;48;5;235m▒[38;5;103;48;5;237m▓[38;5;103;48;5;238m▓[38;5;69;48;5;60m▓[38;5;61;48;5;237m▓[38;5;69;48;5;240m▓[38;5;69;48;5;244m▓[38;5;69;48;5;244m▓[38;5;69;48;5;244m▓[38;5;69;48;5;102m▓[38;5;60;48;5;102m▓[38;5;60;48;5;245m▓[38;5;60;48;5;244m▓[38;5;60;48;5;244m▓[38;5;60;48;5;243m▓[38;5;60;48;5;244m▓[38;5;60;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;59m▓[38;5;60;48;5;240m▓[38;5;60;48;5;60m▓[38;5;60;48;5;60m▓[38;5;60;48;5;60m▓[38;5;69;48;5;240m▓[38;5;69;48;5;239m▓[38;5;60;48;5;238m▓[38;5;69;48;5;237m▓[38;5;103;48;5;237m▓[38;5;60;48;5;240m▓[38;5;103;48;5;237m▓[38;5;104;48;5;234m▒[38;5;104;48;5;234m▒[38;5;61;48;5;234m▒[38;5;62;48;5;233m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;233m [38;5;27;48;5;236m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;69;48;5;102m▓[38;5;69;48;5;244m▓[38;5;69;48;5;103m▓[38;5;60;48;5;103m▓[38;5;60;48;5;247m▓[38;5;69;48;5;248m▓[38;5;69;48;5;247m▓[38;5;68;48;5;103m▓[38;5;60;48;5;243m▓[38;5;60;48;5;103m▓[38;5;60;48;5;103m▓[38;5;69;48;5;103m▓[38;5;60;48;5;103m▓[38;5;60;48;5;245m▓[38;5;69;48;5;244m▓[38;5;27;48;5;239m▓[38;5;69;48;5;60m▓[38;5;69;48;5;236m▒[38;5;69;48;5;60m▓[38;5;69;48;5;239m▓[38;5;69;48;5;235m▒[38;5;68;48;5;238m▓[38;5;69;48;5;240m▓[38;5;69;48;5;239m▓[38;5;60;48;5;238m▓[38;5;69;48;5;238m▓[38;5;61;48;5;234m▒[38;5;61;48;5;235m▒[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;69;48;5;233m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;238m▒[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;239m▒[38;5;69;48;5;109m▓[38;5;69;48;5;67m▓[38;5;68;48;5;60m▓[38;5;69;48;5;146m▓[38;5;69;48;5;102m▓[38;5;68;48;5;244m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;68;48;5;244m▓[38;5;69;48;5;103m▓[38;5;69;48;5;247m▓[38;5;69;48;5;244m▓[38;5;69;48;5;244m▓[38;5;60;48;5;244m▓[38;5;69;48;5;60m▓[38;5;60;48;5;103m▓[38;5;69;48;5;247m▓[38;5;26;48;5;245m▓[38;5;69;48;5;103m▓[38;5;60;48;5;248m▓[38;5;69;48;5;246m▓[38;5;60;48;5;244m▓[38;5;60;48;5;103m▓[38;5;60;48;5;238m▓[38;5;60;48;5;60m▓[38;5;69;48;5;60m▓[38;5;60;48;5;238m▓[38;5;60;48;5;242m▓[38;5;69;48;5;238m▓[38;5;69;48;5;235m▒[38;5;69;48;5;236m▒[38;5;61;48;5;236m▓[38;5;60;48;5;59m▓[38;5;60;48;5;239m▓[38;5;104;48;5;234m▒[38;5;104;48;5;234m▒[38;5;69;48;5;235m▓[38;5;62;48;5;233m▒[38;5;62;48;5;233m▒[38;5;69;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;233m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;249m▓[38;5;69;48;5;248m▓[38;5;69;48;5;247m▓[38;5;33;48;5;66m▓[38;5;69;48;5;247m▓[38;5;69;48;5;145m▓[38;5;69;48;5;244m▓[38;5;27;48;5;243m▓[38;5;69;48;5;247m▓[38;5;69;48;5;249m▓[38;5;69;48;5;244m▓[38;5;69;48;5;243m▓[38;5;69;48;5;60m▓[38;5;69;48;5;238m▓[38;5;69;48;5;246m▓[38;5;69;48;5;240m▓[38;5;69;48;5;239m▓[38;5;69;48;5;246m▓[38;5;69;48;5;245m▓[38;5;60;48;5;246m▓[38;5;60;48;5;247m▓[38;5;69;48;5;245m▓[38;5;69;48;5;59m▓[38;5;60;48;5;102m▓[38;5;69;48;5;236m▒[38;5;104;48;5;235m▒[38;5;69;48;5;238m▓[38;5;68;48;5;242m▓[38;5;61;48;5;236m▓[38;5;69;48;5;233m [38;5;69;48;5;234m░[38;5;69;48;5;237m▓[38;5;69;48;5;237m▓[38;5;69;48;5;238m▓[38;5;69;48;5;234m▒[38;5;69;48;5;236m▒[38;5;61;48;5;235m▒[38;5;104;48;5;233m▒[38;5;104;48;5;233m▒[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;62;48;5;234m▒[38;5;17;48;5;233m░[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;103;48;5;60m▓[38;5;69;48;5;103m▓[38;5;69;48;5;67m▓[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;69;48;5;67m▓[38;5;69;48;5;103m▓[38;5;69;48;5;67m▓[38;5;69;48;5;60m▒[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▓[38;5;69;48;5;146m▓[38;5;69;48;5;252m▓[38;5;69;48;5;249m▓[38;5;68;48;5;245m▓[38;5;69;48;5;145m▓[38;5;68;48;5;245m▓[38;5;68;48;5;248m▓[38;5;66;48;5;242m▓[38;5;69;48;5;145m▓[38;5;69;48;5;252m▓[38;5;27;48;5;235m▓[38;5;39;48;5;244m▓[38;5;69;48;5;240m▓[38;5;24;48;5;239m▓[38;5;25;48;5;59m▓[38;5;32;48;5;239m▓[38;5;27;48;5;102m▓[38;5;69;48;5;60m▓[38;5;69;48;5;239m▓[38;5;69;48;5;60m▓[38;5;61;48;5;238m▓[38;5;69;48;5;17m▒[38;5;69;48;5;236m▓[38;5;60;48;5;237m▓[38;5;60;48;5;240m▓[38;5;69;48;5;236m▒[38;5;45;48;5;236m▓[38;5;103;48;5;240m▓[38;5;60;48;5;60m▓[38;5;60;48;5;60m▓[38;5;69;48;5;59m▓[38;5;60;48;5;59m▓[38;5;61;48;5;236m▒[38;5;104;48;5;234m▒[38;5;17;48;5;232m [38;5;69;48;5;235m▒[38;5;61;48;5;235m▓[38;5;61;48;5;234m▒[38;5;69;48;5;233m░[38;5;62;48;5;233m░[38;5;62;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;17m░[38;5;69;48;5;67m▓[38;5;103;48;5;103m▓[38;5;69;48;5;61m▓[38;5;69;48;5;60m▒[38;5;69;48;5;146m▒[38;5;69;48;5;146m▒[38;5;103;48;5;103m▓[38;5;69;48;5;146m▒[38;5;69;48;5;61m▓[38;5;103;48;5;67m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;103;48;5;146m▓[38;5;103;48;5;103m▓[38;5;69;48;5;67m▓[38;5;103;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;250m▓[38;5;26;48;5;7m▓[38;5;66;48;5;240m▓[38;5;42;48;5;243m▓[38;5;72;48;5;238m▓[38;5;108;48;5;235m▓[38;5;35;48;5;243m▓[38;5;68;48;5;251m▓[38;5;69;48;5;250m▓[38;5;60;48;5;252m▓[38;5;69;48;5;188m▓[38;5;69;48;5;252m▓[38;5;67;48;5;145m▓[38;5;42;48;5;240m▓[38;5;84;48;5;242m▓[38;5;69;48;5;17m▒[38;5;69;48;5;237m▒[38;5;69;48;5;17m▒[38;5;69;48;5;60m▓[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;104;48;5;235m▒[38;5;24;48;5;235m▓[38;5;25;48;5;242m▓[38;5;27;48;5;240m▓[38;5;32;48;5;237m▓[38;5;68;48;5;239m▓[38;5;68;48;5;238m▓[38;5;25;48;5;234m▓[38;5;60;48;5;60m▓[38;5;69;48;5;60m▓[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;69;48;5;235m▒[38;5;62;48;5;233m░[38;5;69;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;69;48;5;233m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;69;48;5;61m▓[38;5;69;48;5;24m▒[38;5;69;48;5;60m▒[38;5;69;48;5;67m▓[38;5;69;48;5;110m▓[38;5;69;48;5;67m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▒[38;5;69;48;5;103m▓[38;5;104;48;5;17m▒[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;146;48;5;146m▒[38;5;146;48;5;252m▓[38;5;69;48;5;145m▓[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;26;48;5;248m▓[38;5;68;48;5;188m▓[38;5;68;48;5;7m▓[38;5;72;48;5;239m▓[38;5;25;48;5;253m▓[38;5;66;48;5;249m▓[38;5;42;48;5;102m▓[38;5;26;48;5;252m▓[38;5;27;48;5;253m▓[38;5;27;48;5;253m▓[38;5;24;48;5;250m▓[38;5;68;48;5;244m▓[38;5;72;48;5;241m▓[38;5;27;48;5;188m▓[38;5;71;48;5;234m▓[38;5;84;48;5;234m▓[38;5;76;48;5;234m▒[38;5;84;48;5;240m▓[38;5;65;48;5;236m▓[38;5;119;48;5;236m▓[38;5;43;48;5;242m▓[38;5;68;48;5;60m▒[38;5;26;48;5;66m▓[38;5;69;48;5;239m▓[38;5;39;48;5;59m▓[38;5;66;48;5;238m▓[38;5;66;48;5;239m▓[38;5;25;48;5;246m▓[38;5;25;48;5;239m▓[38;5;31;48;5;239m▓[38;5;17;48;5;233m [38;5;69;48;5;236m▒[38;5;111;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;69;48;5;233m░[38;5;61;48;5;236m▓[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;62;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;69;48;5;60m▒[38;5;62;48;5;24m▒[38;5;69;48;5;61m▓[38;5;69;48;5;103m▓[38;5;104;48;5;24m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;60m▓[38;5;69;48;5;24m▒[38;5;69;48;5;60m▓[38;5;69;48;5;103m▓[38;5;103;48;5;61m▓[38;5;103;48;5;248m▓[38;5;103;48;5;103m▓[38;5;104;48;5;238m▒[38;5;69;48;5;60m▓[38;5;69;48;5;237m▒[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;243m▓[38;5;26;48;5;253m▓[38;5;84;48;5;247m▓[38;5;65;48;5;244m▓[38;5;69;48;5;251m▓[38;5;69;48;5;254m▓[38;5;45;48;5;188m▓[38;5;69;48;5;254m▓[38;5;253;48;5;253m▓[38;5;190;48;5;244m▓[38;5;148;48;5;237m▓[38;5;76;48;5;234m▒[38;5;113;48;5;236m▓[38;5;65;48;5;59m▓[38;5;107;48;5;234m▒[38;5;113;48;5;233m▒[38;5;65;48;5;236m▓[38;5;65;48;5;239m▓[38;5;41;48;5;243m▓[38;5;65;48;5;236m▓[38;5;76;48;5;238m▓[38;5;65;48;5;241m▓[38;5;47;48;5;59m▓[38;5;65;48;5;240m▓[38;5;32;48;5;240m▓[38;5;78;48;5;235m▓[38;5;42;48;5;236m▓[38;5;43;48;5;235m▓[38;5;25;48;5;239m▓[38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;69;48;5;17m░[38;5;69;48;5;236m▒[38;5;61;48;5;237m▓[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;62;48;5;4m▒[38;5;69;48;5;61m▓[38;5;69;48;5;146m▒[38;5;104;48;5;60m▒[38;5;69;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;60m▓[38;5;69;48;5;4m▒[38;5;69;48;5;104m▒[38;5;61;48;5;103m▓[38;5;61;48;5;60m▒[38;5;103;48;5;146m▓[38;5;146;48;5;104m▓[38;5;69;48;5;146m▓[38;5;69;48;5;60m▓[38;5;69;48;5;110m▓[38;5;103;48;5;60m▓[38;5;69;48;5;239m▓[38;5;69;48;5;60m▓[38;5;69;48;5;253m▓[38;5;39;48;5;251m▓[38;5;72;48;5;247m▓[38;5;221;48;5;240m▓[38;5;70;48;5;102m▓[38;5;76;48;5;244m▓[38;5;101;48;5;59m▓[38;5;172;48;5;240m▓[38;5;94;48;5;241m▓[38;5;221;48;5;101m▓[38;5;148;48;5;242m▓[38;5;149;48;5;239m▓[38;5;107;48;5;237m▒[38;5;65;48;5;145m▓[38;5;76;48;5;236m▓[38;5;17;48;5;232m [38;5;66;48;5;251m▓[38;5;65;48;5;243m▓[38;5;31;48;5;237m▓[38;5;69;48;5;238m▓[38;5;32;48;5;188m▓[38;5;67;48;5;251m▓[38;5;84;48;5;245m▓[38;5;84;48;5;59m▓[38;5;119;48;5;237m▓[38;5;84;48;5;236m▓[38;5;65;48;5;236m▓[38;5;35;48;5;59m▓[38;5;78;48;5;236m▓[38;5;26;48;5;60m▓[38;5;17;48;5;233m [38;5;69;48;5;234m░[38;5;17;48;5;233m [38;5;69;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;103;48;5;238m▓[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;104;48;5;24m▒[38;5;69;48;5;4m▒[38;5;69;48;5;61m▒[38;5;104;48;5;24m▒[38;5;69;48;5;4m▒[38;5;69;48;5;60m▒[38;5;62;48;5;4m░[38;5;69;48;5;24m▒[38;5;69;48;5;61m▓[38;5;69;48;5;103m▓[38;5;103;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▒[38;5;69;48;5;103m▓[38;5;146;48;5;146m▒[38;5;69;48;5;254m▒[38;5;103;48;5;146m▓[38;5;62;48;5;189m▒[38;5;60;48;5;103m▓[38;5;146;48;5;188m▓[38;5;69;48;5;251m▓[38;5;69;48;5;255m▒[38;5;84;48;5;253m▓[38;5;99;48;5;254m▓[38;5;69;48;5;255m▓[38;5;119;48;5;251m▓[38;5;67;48;5;231m▓[38;5;101;48;5;248m▓[38;5;190;48;5;246m▓[38;5;94;48;5;59m▓[38;5;221;48;5;240m▓[38;5;178;48;5;238m▓[38;5;154;48;5;235m▒[38;5;148;48;5;237m▒[38;5;112;48;5;250m▓[38;5;118;48;5;235m▒[38;5;70;48;5;235m▒[38;5;118;48;5;234m░[38;5;84;48;5;249m▓[38;5;42;48;5;253m▓[38;5;119;48;5;145m▓[38;5;69;48;5;17m░[38;5;109;48;5;237m▓[38;5;68;48;5;240m▓[38;5;119;48;5;237m▓[38;5;107;48;5;236m▓[38;5;119;48;5;237m▓[38;5;114;48;5;233m▒[38;5;84;48;5;234m▓[38;5;17;48;5;233m [38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;17m [38;5;69;48;5;17m░[38;5;62;48;5;17m▒[38;5;69;48;5;60m▓[38;5;61;48;5;236m▒[38;5;69;48;5;238m▓[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;233m [38;5;62;48;5;24m▒[38;5;104;48;5;24m▒[38;5;62;48;5;24m▒[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;104;48;5;60m▒[38;5;69;48;5;60m▒[38;5;146;48;5;104m▒[38;5;17;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;146m▒[38;5;103;48;5;248m▓[38;5;103;48;5;146m▓[38;5;69;48;5;189m▒[38;5;103;48;5;248m▓[38;5;69;48;5;17m░[38;5;103;48;5;103m▓[38;5;69;48;5;188m▓[38;5;69;48;5;252m▓[38;5;69;48;5;255m░[38;5;69;48;5;189m▒[38;5;69;48;5;252m▓[38;5;65;48;5;247m▓[38;5;101;48;5;250m▓[38;5;136;48;5;102m▓[38;5;130;48;5;59m▓[38;5;179;48;5;239m▓[38;5;172;48;5;240m▓[38;5;143;48;5;239m▓[38;5;143;48;5;236m▒[38;5;136;48;5;144m▓[38;5;172;48;5;95m▓[38;5;178;48;5;239m▒[38;5;186;48;5;237m▒[38;5;190;48;5;236m▒[38;5;154;48;5;236m▒[38;5;149;48;5;235m▒[38;5;76;48;5;234m░[38;5;118;48;5;234m░[38;5;70;48;5;234m░[38;5;107;48;5;65m▓[38;5;70;48;5;239m▓[38;5;69;48;5;17m [38;5;107;48;5;244m▓[38;5;65;48;5;243m▓[38;5;25;48;5;23m░[38;5;74;48;5;251m▓[38;5;43;48;5;248m▓[38;5;41;48;5;244m▓[38;5;33;48;5;235m▒[38;5;69;48;5;237m▒[38;5;69;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;60;48;5;60m▓[38;5;17;48;5;233m [38;5;17;48;5;17m░[38;5;61;48;5;236m▒[38;5;60;48;5;243m▓[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;4m▒[38;5;62;48;5;24m▒[38;5;62;48;5;24m▒[38;5;104;48;5;60m▒[38;5;62;48;5;17m░[38;5;61;48;5;104m▒[38;5;62;48;5;24m▒[38;5;104;48;5;4m▒[38;5;62;48;5;17m░[38;5;61;48;5;60m▒[38;5;69;48;5;110m▓[38;5;146;48;5;252m▒[38;5;146;48;5;252m▒[38;5;103;48;5;60m▓[38;5;103;48;5;146m▓[38;5;103;48;5;103m▓[38;5;103;48;5;240m▓[38;5;103;48;5;60m▓[38;5;103;48;5;60m▓[38;5;146;48;5;254m▒[38;5;60;48;5;103m▓[38;5;103;48;5;248m▓[38;5;17;48;5;17m [38;5;214;48;5;239m▓[38;5;190;48;5;234m░[38;5;172;48;5;101m▓[38;5;179;48;5;240m▓[38;5;94;48;5;59m▓[38;5;187;48;5;187m▒[38;5;143;48;5;238m▒[38;5;178;48;5;237m▒[38;5;179;48;5;101m▓[38;5;144;48;5;239m▓[38;5;144;48;5;101m▓[38;5;143;48;5;239m▓[38;5;143;48;5;237m▒[38;5;154;48;5;234m░[38;5;112;48;5;234m░[38;5;112;48;5;234m░[38;5;118;48;5;234m░[38;5;70;48;5;237m▒[38;5;112;48;5;235m▒[38;5;118;48;5;238m▓[38;5;107;48;5;236m▒[38;5;76;48;5;240m▓[38;5;84;48;5;251m▓[38;5;43;48;5;250m▓[38;5;69;48;5;254m▓[38;5;32;48;5;252m▓[38;5;68;48;5;188m▓[38;5;69;48;5;251m▓[38;5;60;48;5;249m▓[38;5;69;48;5;247m▓[38;5;60;48;5;243m▓[38;5;60;48;5;59m▓[38;5;69;48;5;60m▓[38;5;60;48;5;103m▓[38;5;103;48;5;240m▓[38;5;62;48;5;234m▒[38;5;104;48;5;235m▒[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;104;48;5;24m▒[38;5;69;48;5;61m▒[38;5;69;48;5;4m▒[38;5;69;48;5;67m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▒[38;5;104;48;5;60m▒[38;5;69;48;5;147m▒[38;5;69;48;5;4m▒[38;5;62;48;5;17m▒[38;5;103;48;5;103m▓[38;5;146;48;5;146m▓[38;5;104;48;5;188m▒[38;5;146;48;5;252m▒[38;5;146;48;5;252m▓[38;5;103;48;5;146m▓[38;5;103;48;5;103m▓[38;5;103;48;5;60m▓[38;5;146;48;5;146m▓[38;5;60;48;5;103m▓[38;5;103;48;5;60m▓[38;5;61;48;5;238m▒[38;5;17;48;5;17m [38;5;65;48;5;102m▓[38;5;137;48;5;95m▓[38;5;172;48;5;101m▓[38;5;172;48;5;95m▓[38;5;130;48;5;101m▓[38;5;214;48;5;95m▓[38;5;130;48;5;180m▒[38;5;179;48;5;236m▒[38;5;106;48;5;233m [38;5;101;48;5;101m▓[38;5;144;48;5;240m▓[38;5;143;48;5;240m▒[38;5;190;48;5;59m▓[38;5;220;48;5;238m▒[38;5;220;48;5;238m▒[38;5;149;48;5;235m░[38;5;112;48;5;236m▒[38;5;118;48;5;233m [38;5;112;48;5;102m▓[38;5;118;48;5;102m▓[38;5;118;48;5;239m▓[38;5;118;48;5;247m▓[38;5;72;48;5;188m▓[38;5;67;48;5;254m▓[38;5;65;48;5;252m▓[38;5;74;48;5;252m▓[38;5;66;48;5;7m▓[38;5;26;48;5;109m▓[38;5;60;48;5;249m▓[38;5;60;48;5;245m▓[38;5;104;48;5;236m▒[38;5;60;48;5;60m▓[38;5;60;48;5;245m▓[38;5;61;48;5;236m▒[38;5;62;48;5;234m░[38;5;61;48;5;238m▓[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m░[38;5;62;48;5;234m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;62;48;5;233m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;69;48;5;60m▒[38;5;104;48;5;61m▒[38;5;69;48;5;4m▒[38;5;104;48;5;60m▒[38;5;62;48;5;18m▒[38;5;62;48;5;24m▒[38;5;69;48;5;60m▒[38;5;61;48;5;60m▒[38;5;61;48;5;103m▓[38;5;69;48;5;110m▒[38;5;69;48;5;60m▓[38;5;103;48;5;146m▓[38;5;146;48;5;253m▒[38;5;60;48;5;60m▓[38;5;103;48;5;60m▓[38;5;146;48;5;252m▓[38;5;103;48;5;146m▓[38;5;103;48;5;251m▓[38;5;103;48;5;146m▓[38;5;146;48;5;188m▒[38;5;103;48;5;103m▓[38;5;61;48;5;238m▓[38;5;61;48;5;60m▓[38;5;69;48;5;252m▓[38;5;190;48;5;59m▓[38;5;130;48;5;144m▒[38;5;208;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;95m▓[38;5;06;48;5;137m▓[38;5;202;48;5;137m▓[38;5;172;48;5;137m▓[38;5;178;48;5;240m▓[38;5;130;48;5;240m▓[38;5;136;48;5;95m▓[38;5;220;48;5;58m▒[38;5;220;48;5;58m▒[38;5;143;48;5;58m▒[38;5;191;48;5;65m▓[38;5;191;48;5;238m▓[38;5;154;48;5;236m▒[38;5;154;48;5;247m▓[38;5;70;48;5;101m▓[38;5;149;48;5;188m▓[38;5;113;48;5;246m▓[38;5;113;48;5;250m▓[38;5;118;48;5;240m▓[38;5;118;48;5;240m▓[38;5;107;48;5;236m▓[38;5;17;48;5;233m [38;5;62;48;5;234m░[38;5;61;48;5;238m▓[38;5;61;48;5;237m▓[38;5;60;48;5;247m▓[38;5;60;48;5;60m▓[38;5;61;48;5;235m▒[38;5;62;48;5;17m▒[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;62;48;5;17m▒[38;5;17;48;5;233m [38;5;62;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;62;48;5;233m▒[38;5;62;48;5;233m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;4m▒[38;5;104;48;5;60m▒[38;5;62;48;5;24m▒[38;5;69;48;5;18m▒[38;5;62;48;5;4m▒[38;5;69;48;5;4m▒[38;5;69;48;5;61m▒[38;5;62;48;5;110m▒[38;5;69;48;5;60m▒[38;5;61;48;5;61m▓[38;5;69;48;5;146m▓[38;5;146;48;5;104m▒[38;5;146;48;5;146m▓[38;5;103;48;5;103m▓[38;5;103;48;5;248m▓[38;5;62;48;5;189m▒[38;5;103;48;5;146m▓[38;5;103;48;5;103m▓[38;5;103;48;5;103m▓[38;5;60;48;5;247m▓[38;5;104;48;5;189m▒[38;5;103;48;5;146m▓[38;5;60;48;5;103m▓[38;5;69;48;5;248m▓[38;5;103;48;5;254m▓[38;5;146;48;5;255m▒[38;5;69;48;5;250m▓[38;5;94;48;5;230m▒[38;5;130;48;5;230m░[38;5;223;48;5;231m [38;5;231;48;5;231m▓[38;5;130;48;5;187m▒[38;5;172;48;5;144m▓[38;5;202;48;5;180m▒[38;5;130;48;5;137m▒[38;5;208;48;5;95m▓[38;5;130;48;5;101m▓[38;5;179;48;5;101m▓[38;5;144;48;5;241m▓[38;5;190;48;5;59m▓[38;5;64;48;5;237m▒[38;5;112;48;5;239m▓[38;5;112;48;5;241m▓[38;5;70;48;5;242m▓[38;5;118;48;5;247m▓[38;5;154;48;5;59m▓[38;5;149;48;5;238m▓[38;5;112;48;5;65m▓[38;5;112;48;5;237m▓[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;62;48;5;234m▒[38;5;17;48;5;233m [38;5;104;48;5;235m▒[38;5;62;48;5;17m░[38;5;104;48;5;236m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;62;48;5;234m▒[38;5;62;48;5;234m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;61m▒[38;5;69;48;5;24m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;61;48;5;61m▒[38;5;69;48;5;61m▓[38;5;69;48;5;61m▒[38;5;69;48;5;60m▒[38;5;104;48;5;238m▒[38;5;61;48;5;60m▒[38;5;61;48;5;60m▒[38;5;104;48;5;17m▒[38;5;69;48;5;255m▒[38;5;104;48;5;189m▒[38;5;69;48;5;146m▓[38;5;146;48;5;146m▒[38;5;146;48;5;146m▒[38;5;103;48;5;146m▓[38;5;103;48;5;248m▓[38;5;103;48;5;251m▓[38;5;60;48;5;60m▓[38;5;103;48;5;146m▓[38;5;103;48;5;252m▓[38;5;60;48;5;102m▓[38;5;61;48;5;236m▒[38;5;146;48;5;253m▓[38;5;231;48;5;231m▓[38;5;69;48;5;244m▓[38;5;06;48;5;187m▒[38;5;190;48;5;248m▓[38;5;190;48;5;245m▓[38;5;136;48;5;101m▓[38;5;172;48;5;101m▓[38;5;214;48;5;101m▓[38;5;179;48;5;95m▒[38;5;221;48;5;95m▒[38;5;220;48;5;239m▓[38;5;185;48;5;58m░[38;5;190;48;5;239m▓[38;5;220;48;5;144m▓[38;5;50;48;5;115m▓[38;5;29;48;5;240m▒[38;5;149;48;5;235m░[38;5;35;48;5;23m▒[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;24;48;5;23m░[38;5;149;48;5;235m▒[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;62;48;5;17m░[38;5;17;48;5;232m [38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;62;48;5;17m▒[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;62;48;5;234m░[38;5;62;48;5;234m▒[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;60m▒[38;5;69;48;5;61m▒[38;5;69;48;5;24m▒[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;69;48;5;104m▒[38;5;61;48;5;61m▓[38;5;62;48;5;4m▒[38;5;62;48;5;4m▒[38;5;104;48;5;24m▒[38;5;62;48;5;17m▒[38;5;61;48;5;60m▒[38;5;104;48;5;146m▒[38;5;62;48;5;189m▒[38;5;69;48;5;251m▓[38;5;111;48;5;231m [38;5;103;48;5;188m▓[38;5;146;48;5;251m▓[38;5;60;48;5;249m▓[38;5;69;48;5;255m▒[38;5;103;48;5;252m▓[38;5;60;48;5;244m▓[38;5;146;48;5;254m▓[38;5;99;48;5;103m▓[38;5;99;48;5;244m▓[38;5;60;48;5;251m▓[38;5;230;48;5;231m [38;5;25;48;5;243m▓[38;5;45;48;5;109m▒[38;5;70;48;5;22m░[38;5;58;48;5;234m░[38;5;221;48;5;101m▓[38;5;214;48;5;101m▓[38;5;221;48;5;223m░[38;5;221;48;5;180m▒[38;5;221;48;5;137m▓[38;5;172;48;5;101m▓[38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;81;48;5;31m░[38;5;111;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;61;48;5;237m▒[38;5;17;48;5;233m [38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;62;48;5;234m▒[38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;233m░[38;5;62;48;5;233m░[38;5;62;48;5;233m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;104;48;5;61m▒[38;5;104;48;5;61m▒[38;5;104;48;5;61m▒[38;5;69;48;5;61m▓[38;5;104;48;5;61m▒[38;5;62;48;5;4m▒[38;5;62;48;5;24m▒[38;5;61;48;5;61m▒[38;5;62;48;5;4m░[38;5;104;48;5;60m▒[38;5;62;48;5;17m░[38;5;69;48;5;60m▒[38;5;69;48;5;67m▓[38;5;69;48;5;255m [38;5;32;48;5;231m [38;5;103;48;5;146m▓[38;5;146;48;5;188m▒[38;5;60;48;5;103m▓[38;5;61;48;5;60m▓[38;5;104;48;5;237m▒[38;5;60;48;5;60m▓[38;5;60;48;5;103m▓[38;5;60;48;5;248m▓[38;5;103;48;5;254m▓[38;5;231;48;5;231m▓[38;5;99;48;5;255m▓[38;5;05;48;5;247m▓[38;5;134;48;5;102m▓[38;5;26;48;5;66m▓[38;5;68;48;5;242m▓[38;5;99;48;5;242m▓[38;5;143;48;5;239m▒[38;5;106;48;5;234m [38;5;220;48;5;95m▓[38;5;94;48;5;144m▓[38;5;179;48;5;138m▓[38;5;178;48;5;101m▓[38;5;70;48;5;235m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;233m [38;5;112;48;5;237m▒[38;5;118;48;5;237m▒[38;5;84;48;5;243m▓[38;5;69;48;5;236m▒[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;104;48;5;236m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;104;48;5;236m▒[38;5;103;48;5;146m▓[38;5;103;48;5;239m▓[38;5;61;48;5;237m▓[38;5;104;48;5;236m▒[38;5;104;48;5;235m▒[38;5;69;48;5;234m▒[38;5;62;48;5;234m░[38;5;104;48;5;234m▒[38;5;69;48;5;232m [38;5;61;48;5;235m▓[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;233m [38;5;69;48;5;60m▒[38;5;69;48;5;189m░[38;5;69;48;5;61m▒[38;5;69;48;5;61m▓[38;5;69;48;5;61m▒[38;5;69;48;5;61m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m▒[38;5;4;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;61;48;5;60m▒[38;5;146;48;5;104m▓[38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;104;48;5;17m▒[38;5;104;48;5;17m▒[38;5;104;48;5;236m▒[38;5;60;48;5;60m▓[38;5;60;48;5;60m▓[38;5;99;48;5;59m▓[38;5;60;48;5;251m▓[38;5;91;48;5;246m▓[38;5;96;48;5;102m▓[38;5;96;48;5;245m▓[38;5;56;48;5;246m▓[38;5;56;48;5;243m▓[38;5;99;48;5;243m▓[38;5;69;48;5;240m▓[38;5;149;48;5;236m▒[38;5;191;48;5;238m▒[38;5;179;48;5;101m▓[38;5;190;48;5;242m▓[38;5;190;48;5;58m▒[38;5;17;48;5;233m [38;5;61;48;5;237m▒[38;5;231;48;5;231m▓[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;107;48;5;65m▓[38;5;82;48;5;246m▓[38;5;17;48;5;233m [38;5;17;48;5;17m [38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m▒[38;5;17;48;5;17m░[38;5;69;48;5;237m▒[38;5;17;48;5;233m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;61;48;5;237m▒[38;5;60;48;5;60m▓[38;5;60;48;5;244m▓[38;5;61;48;5;237m▓[38;5;61;48;5;238m▓[38;5;62;48;5;17m▒[38;5;69;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;24m▒[38;5;69;48;5;104m▒[38;5;189;48;5;189m░[38;5;189;48;5;189m [38;5;27;48;5;255m [38;5;69;48;5;61m▒[38;5;61;48;5;61m▓[38;5;62;48;5;4m▒[38;5;62;48;5;4m▒[38;5;62;48;5;18m▒[38;5;104;48;5;24m▒[38;5;61;48;5;103m▓[38;5;104;48;5;60m▒[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;62;48;5;17m▒[38;5;17;48;5;17m [38;5;62;48;5;17m░[38;5;104;48;5;237m▒[38;5;17;48;5;17m [38;5;62;48;5;17m░[38;5;61;48;5;238m▓[38;5;103;48;5;240m▓[38;5;60;48;5;60m▓[38;5;99;48;5;103m▓[38;5;99;48;5;240m▓[38;5;99;48;5;243m▓[38;5;99;48;5;245m▓[38;5;98;48;5;244m▓[38;5;56;48;5;243m▓[38;5;99;48;5;60m▓[38;5;99;48;5;239m▓[38;5;103;48;5;238m▓[38;5;154;48;5;58m░[38;5;154;48;5;237m▒[38;5;64;48;5;236m░[38;5;191;48;5;58m░[38;5;190;48;5;241m▓[38;5;143;48;5;239m▓[38;5;61;48;5;236m▓[38;5;69;48;5;238m▓[38;5;17;48;5;17m [38;5;26;48;5;60m▓[38;5;65;48;5;248m▓[38;5;231;48;5;231m▓[38;5;111;48;5;231m [38;5;69;48;5;255m░[38;5;60;48;5;243m▓[38;5;104;48;5;236m▒[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;62;48;5;17m░[38;5;61;48;5;238m▒[38;5;61;48;5;238m▒[38;5;62;48;5;17m░[38;5;104;48;5;17m▒[38;5;61;48;5;238m▓[38;5;60;48;5;60m▓[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;235m▒[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;234m░[38;5;62;48;5;24m▒[38;5;69;48;5;61m▒[38;5;104;48;5;61m▒[38;5;69;48;5;110m▒[38;5;27;48;5;255m [38;5;69;48;5;67m▒[38;5;117;48;5;231m [38;5;69;48;5;189m [38;5;69;48;5;103m▒[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;61;48;5;61m▓[38;5;62;48;5;4m▒[38;5;17;48;5;17m░[38;5;62;48;5;17m▒[38;5;17;48;5;17m [38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;61;48;5;60m▒[38;5;103;48;5;60m▓[38;5;62;48;5;17m░[38;5;61;48;5;238m▒[38;5;104;48;5;236m▒[38;5;61;48;5;238m▓[38;5;103;48;5;240m▓[38;5;103;48;5;239m▓[38;5;103;48;5;240m▓[38;5;103;48;5;240m▓[38;5;60;48;5;246m▓[38;5;103;48;5;239m▓[38;5;60;48;5;238m▓[38;5;103;48;5;238m▓[38;5;104;48;5;17m▒[38;5;62;48;5;235m▒[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;69;48;5;237m▒[38;5;118;48;5;65m▓[38;5;76;48;5;236m▓[38;5;32;48;5;237m▒[38;5;107;48;5;239m▓[38;5;82;48;5;242m▓[38;5;65;48;5;252m▓[38;5;107;48;5;248m▓[38;5;84;48;5;247m▓[38;5;119;48;5;247m▓[38;5;99;48;5;255m▓[38;5;103;48;5;252m▓[38;5;69;48;5;247m▓[38;5;62;48;5;17m▒[38;5;17;48;5;17m░[38;5;103;48;5;60m▓[38;5;62;48;5;17m▒[38;5;17;48;5;17m [38;5;69;48;5;102m▓[38;5;45;48;5;245m▓[38;5;68;48;5;234m▒[38;5;43;48;5;244m▓[38;5;32;48;5;241m▓[38;5;25;48;5;239m▓[38;5;39;48;5;235m▓[38;5;25;48;5;237m▓[38;5;26;48;5;235m▓[38;5;26;48;5;234m▒[38;5;25;48;5;17m░[38;5;17;48;5;232m [38;5;62;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;61m▒[38;5;69;48;5;68m▒[38;5;62;48;5;24m▒[38;5;69;48;5;61m▒[38;5;69;48;5;24m▒[38;5;104;48;5;24m▒[38;5;62;48;5;4m░[38;5;62;48;5;18m▒[38;5;69;48;5;67m▒[38;5;104;48;5;60m▒[38;5;62;48;5;4m░[38;5;4;48;5;17m░[38;5;104;48;5;4m▒[38;5;61;48;5;60m▓[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;104;48;5;238m▒[38;5;62;48;5;17m▒[38;5;17;48;5;17m░[38;5;62;48;5;17m▒[38;5;17;48;5;17m░[38;5;104;48;5;252m▒[38;5;62;48;5;17m░[38;5;104;48;5;236m▒[38;5;103;48;5;252m▓[38;5;231;48;5;231m▓[38;5;61;48;5;237m▓[38;5;104;48;5;236m▒[38;5;62;48;5;17m▒[38;5;104;48;5;235m▒[38;5;61;48;5;236m▒[38;5;103;48;5;60m▓[38;5;62;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;64;48;5;243m▓[38;5;119;48;5;250m▓[38;5;62;48;5;17m▒[38;5;61;48;5;237m▒[38;5;104;48;5;17m▒[38;5;17;48;5;17m░[38;5;103;48;5;60m▓[38;5;65;48;5;241m▓[38;5;41;48;5;102m▓[38;5;42;48;5;245m▓[38;5;66;48;5;248m▓[38;5;41;48;5;237m▓[38;5;31;48;5;238m▓[38;5;67;48;5;241m▓[38;5;67;48;5;237m▓[38;5;69;48;5;237m▓[38;5;26;48;5;240m▓[38;5;26;48;5;236m▓[38;5;26;48;5;236m▒[38;5;110;48;5;233m▒[38;5;27;48;5;232m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;25m▒[38;5;69;48;5;18m░[38;5;62;48;5;24m▒[38;5;62;48;5;18m▒[38;5;69;48;5;60m▒[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;104;48;5;60m▒[38;5;69;48;5;60m▒[38;5;62;48;5;4m░[38;5;61;48;5;60m▒[38;5;153;48;5;255m [38;5;69;48;5;146m▒[38;5;111;48;5;255m [38;5;61;48;5;103m▓[38;5;69;48;5;146m▓[38;5;61;48;5;60m▓[38;5;17;48;5;17m░[38;5;104;48;5;238m▒[38;5;103;48;5;61m▓[38;5;17;48;5;17m░[38;5;68;48;5;255m▒[38;5;61;48;5;238m▓[38;5;103;48;5;60m▓[38;5;104;48;5;237m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;104;48;5;237m▒[38;5;104;48;5;17m▒[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;61;48;5;60m▓[38;5;17;48;5;233m [38;5;104;48;5;17m▒[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;62;48;5;17m▒[38;5;27;48;5;189m░[38;5;69;48;5;17m░[38;5;104;48;5;237m▒[38;5;68;48;5;255m░[38;5;69;48;5;188m▓[38;5;65;48;5;249m▓[38;5;17;48;5;17m░[38;5;69;48;5;248m▓[38;5;79;48;5;244m▓[38;5;45;48;5;244m▓[38;5;43;48;5;145m▓[38;5;66;48;5;59m▓[38;5;69;48;5;248m▓[38;5;69;48;5;244m▓[38;5;69;48;5;249m▓[38;5;26;48;5;240m▓[38;5;67;48;5;240m▓[38;5;27;48;5;239m▓[38;5;26;48;5;237m▓[38;5;110;48;5;234m▒[38;5;26;48;5;234m▒[38;5;69;48;5;233m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;60m▒[38;5;69;48;5;147m░[38;5;62;48;5;24m▒[38;5;69;48;5;24m▒[38;5;104;48;5;61m▒[38;5;69;48;5;61m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;24m▒[38;5;104;48;5;24m▒[38;5;104;48;5;24m▒[38;5;62;48;5;4m░[38;5;61;48;5;60m▒[38;5;62;48;5;17m▒[38;5;69;48;5;4m▒[38;5;104;48;5;239m▒[38;5;69;48;5;189m [38;5;189;48;5;255m [38;5;104;48;5;189m▒[38;5;62;48;5;4m▒[38;5;17;48;5;17m░[38;5;69;48;5;231m [38;5;104;48;5;146m▒[38;5;61;48;5;239m▒[38;5;61;48;5;237m▒[38;5;103;48;5;103m▓[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m▒[38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;146;48;5;188m▒[38;5;69;48;5;60m▓[38;5;103;48;5;248m▓[38;5;17;48;5;17m░[38;5;61;48;5;60m▒[38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;62;48;5;17m▒[38;5;104;48;5;237m▒[38;5;62;48;5;17m▒[38;5;69;48;5;103m▓[38;5;69;48;5;146m▓[38;5;69;48;5;103m▓[38;5;66;48;5;102m▓[38;5;66;48;5;239m▓[38;5;45;48;5;239m▓[38;5;67;48;5;242m▓[38;5;68;48;5;244m▓[38;5;32;48;5;242m▓[38;5;69;48;5;248m▓[38;5;69;48;5;60m▓[38;5;69;48;5;102m▓[38;5;69;48;5;244m▓[38;5;26;48;5;234m▒[38;5;26;48;5;234m▒[38;5;69;48;5;234m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;146m▒[38;5;69;48;5;24m▒[38;5;69;48;5;61m▒[38;5;62;48;5;24m▒[38;5;62;48;5;24m▒[38;5;62;48;5;18m░[38;5;69;48;5;60m▒[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;69;48;5;61m▒[38;5;4;48;5;17m░[38;5;104;48;5;60m▒[38;5;62;48;5;4m▒[38;5;69;48;5;67m▓[38;5;62;48;5;4m░[38;5;104;48;5;4m▒[38;5;103;48;5;103m▓[38;5;103;48;5;146m▓[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;104;48;5;237m▒[38;5;17;48;5;17m░[38;5;61;48;5;60m▒[38;5;17;48;5;17m░[38;5;62;48;5;17m▒[38;5;60;48;5;60m▓[38;5;61;48;5;238m▒[38;5;103;48;5;146m▓[38;5;146;48;5;146m▓[38;5;103;48;5;248m▓[38;5;146;48;5;146m▓[38;5;146;48;5;252m▒[38;5;69;48;5;189m▒[38;5;60;48;5;103m▓[38;5;17;48;5;17m░[38;5;103;48;5;146m▓[38;5;60;48;5;60m▓[38;5;103;48;5;248m▓[38;5;103;48;5;103m▓[38;5;103;48;5;145m▓[38;5;103;48;5;103m▓[38;5;69;48;5;240m▓[38;5;69;48;5;60m▓[38;5;146;48;5;146m▓[38;5;103;48;5;103m▓[38;5;69;48;5;103m▒[38;5;66;48;5;102m▓[38;5;69;48;5;145m▓[38;5;27;48;5;246m▓[38;5;68;48;5;248m▓[38;5;69;48;5;248m▓[38;5;69;48;5;248m▓[38;5;69;48;5;248m▓[38;5;69;48;5;247m▓[38;5;69;48;5;60m▓[38;5;26;48;5;235m▒[38;5;26;48;5;234m▒[38;5;26;48;5;234m▒[38;5;69;48;5;234m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;69;48;5;67m▒[38;5;69;48;5;61m▒[38;5;62;48;5;24m▒[38;5;104;48;5;61m▒[38;5;62;48;5;18m▒[38;5;62;48;5;24m▒[38;5;69;48;5;18m▒[38;5;62;48;5;18m▒[38;5;69;48;5;4m░[38;5;61;48;5;60m▒[38;5;61;48;5;61m▒[38;5;62;48;5;4m▒[38;5;104;48;5;110m▒[38;5;62;48;5;147m░[38;5;61;48;5;60m▒[38;5;4;48;5;17m░[38;5;62;48;5;4m░[38;5;69;48;5;60m▓[38;5;69;48;5;104m▒[38;5;61;48;5;103m▓[38;5;146;48;5;146m▒[38;5;104;48;5;188m▒[38;5;146;48;5;103m▓[38;5;62;48;5;17m░[38;5;103;48;5;103m▓[38;5;103;48;5;61m▓[38;5;17;48;5;17m░[38;5;103;48;5;103m▓[38;5;103;48;5;103m▓[38;5;17;48;5;17m [38;5;103;48;5;146m▓[38;5;69;48;5;189m▒[38;5;103;48;5;61m▓[38;5;17;48;5;17m [38;5;104;48;5;238m▒[38;5;17;48;5;17m [38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;69;48;5;67m▓[38;5;17;48;5;17m [38;5;69;48;5;238m▒[38;5;69;48;5;17m░[38;5;69;48;5;60m▓[38;5;69;48;5;4m░[38;5;69;48;5;249m▓[38;5;68;48;5;103m▓[38;5;33;48;5;247m▓[38;5;39;48;5;239m▓[38;5;27;48;5;245m▓[38;5;33;48;5;239m▓[38;5;33;48;5;60m▓[38;5;110;48;5;235m▒[38;5;33;48;5;236m▒[38;5;110;48;5;235m▒[38;5;26;48;5;235m▒[38;5;69;48;5;235m▒[38;5;69;48;5;234m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;61m▒[38;5;69;48;5;189m [38;5;69;48;5;61m▒[38;5;104;48;5;61m▒[38;5;62;48;5;24m▒[38;5;104;48;5;61m▒[38;5;69;48;5;24m▒[38;5;62;48;5;18m▒[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;104;48;5;24m▒[38;5;62;48;5;4m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;4;48;5;4m░[38;5;4;48;5;17m░[38;5;69;48;5;104m▒[38;5;69;48;5;17m▒[38;5;4;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;61;48;5;103m▒[38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;61;48;5;103m▓[38;5;146;48;5;146m▒[38;5;62;48;5;17m░[38;5;103;48;5;248m▓[38;5;61;48;5;60m▓[38;5;61;48;5;60m▓[38;5;69;48;5;110m▓[38;5;103;48;5;103m▓[38;5;104;48;5;146m▒[38;5;103;48;5;60m▓[38;5;146;48;5;110m▓[38;5;103;48;5;103m▓[38;5;17;48;5;17m [38;5;69;48;5;146m▓[38;5;69;48;5;146m▓[38;5;69;48;5;146m▓[38;5;69;48;5;250m▓[38;5;60;48;5;60m▓[38;5;27;48;5;247m▓[38;5;68;48;5;248m▓[38;5;32;48;5;236m▒[38;5;25;48;5;235m▒[38;5;25;48;5;236m▒[38;5;26;48;5;236m▒[38;5;110;48;5;235m▒[38;5;27;48;5;236m▒[38;5;69;48;5;235m▒[38;5;69;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;61;48;5;61m▒[38;5;69;48;5;104m▒[38;5;104;48;5;61m▒[38;5;62;48;5;25m▒[38;5;61;48;5;61m▒[38;5;104;48;5;60m▒[38;5;69;48;5;61m▒[38;5;69;48;5;61m▓[38;5;62;48;5;4m░[38;5;104;48;5;60m▒[38;5;62;48;5;24m▒[38;5;62;48;5;4m░[38;5;104;48;5;24m▒[38;5;4;48;5;17m░[38;5;69;48;5;67m▒[38;5;69;48;5;104m▒[38;5;4;48;5;17m░[38;5;4;48;5;17m░[38;5;61;48;5;60m▒[38;5;61;48;5;103m▓[38;5;62;48;5;4m▒[38;5;104;48;5;60m▒[38;5;103;48;5;61m▓[38;5;62;48;5;17m▒[38;5;146;48;5;104m▒[38;5;146;48;5;146m▒[38;5;61;48;5;103m▓[38;5;104;48;5;60m▒[38;5;17;48;5;17m░[38;5;103;48;5;61m▓[38;5;146;48;5;104m▒[38;5;61;48;5;60m▒[38;5;146;48;5;104m▓[38;5;103;48;5;103m▓[38;5;103;48;5;103m▓[38;5;103;48;5;103m▓[38;5;146;48;5;146m▓[38;5;103;48;5;103m▓[38;5;69;48;5;146m▓[38;5;69;48;5;103m▓[38;5;69;48;5;17m░[38;5;68;48;5;24m░[38;5;69;48;5;240m▓[38;5;69;48;5;60m▓[38;5;27;48;5;66m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▓[38;5;26;48;5;235m▒[38;5;26;48;5;235m▒[38;5;68;48;5;235m▒[38;5;68;48;5;235m▒[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;68m▒[38;5;69;48;5;189m [38;5;69;48;5;24m▒[38;5;69;48;5;61m▒[38;5;69;48;5;24m▒[38;5;104;48;5;60m▒[38;5;104;48;5;61m▒[38;5;104;48;5;61m▒[38;5;62;48;5;4m▒[38;5;104;48;5;104m▒[38;5;104;48;5;60m▒[38;5;69;48;5;110m▒[38;5;104;48;5;24m▒[38;5;62;48;5;4m▒[38;5;104;48;5;24m▒[38;5;69;48;5;24m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;4m▒[38;5;4;48;5;17m░[38;5;62;48;5;17m░[38;5;61;48;5;103m▒[38;5;69;48;5;103m▓[38;5;69;48;5;60m▓[38;5;61;48;5;60m▓[38;5;69;48;5;146m▒[38;5;69;48;5;103m▓[38;5;61;48;5;103m▓[38;5;61;48;5;60m▓[38;5;69;48;5;146m▒[38;5;69;48;5;67m▓[38;5;69;48;5;146m▓[38;5;61;48;5;60m▓[38;5;146;48;5;146m▒[38;5;146;48;5;146m▒[38;5;146;48;5;146m▒[38;5;146;48;5;146m▓[38;5;103;48;5;103m▓[38;5;146;48;5;146m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▓[38;5;69;48;5;61m▓[38;5;57;48;5;239m▓[38;5;60;48;5;60m▓[38;5;69;48;5;60m▓[38;5;69;48;5;238m▓[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;24m▒[38;5;69;48;5;146m▒[38;5;189;48;5;189m [38;5;69;48;5;104m▒[38;5;69;48;5;104m▒[38;5;69;48;5;68m▒[38;5;62;48;5;24m▒[38;5;69;48;5;111m░[38;5;69;48;5;18m░[38;5;69;48;5;60m▒[38;5;104;48;5;61m▒[38;5;62;48;5;104m▒[38;5;69;48;5;61m▓[38;5;62;48;5;4m▒[38;5;69;48;5;67m▒[38;5;69;48;5;103m▓[38;5;146;48;5;104m▒[38;5;62;48;5;153m░[38;5;146;48;5;104m▒[38;5;69;48;5;146m▒[38;5;104;48;5;146m▒[38;5;62;48;5;189m▒[38;5;62;48;5;189m░[38;5;104;48;5;146m▒[38;5;104;48;5;146m▒[38;5;69;48;5;67m▓[38;5;146;48;5;104m▓[38;5;69;48;5;103m▒[38;5;69;48;5;239m▒[38;5;69;48;5;60m▓[38;5;69;48;5;110m▓[38;5;69;48;5;146m▒[38;5;69;48;5;110m▓[38;5;146;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▓[38;5;99;48;5;59m▓[38;5;69;48;5;238m▓[38;5;69;48;5;234m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;233m░[38;5;62;48;5;24m▒[38;5;69;48;5;104m▒[38;5;69;48;5;153m░[38;5;69;48;5;110m▒[38;5;69;48;5;110m▒[38;5;69;48;5;68m▒[38;5;62;48;5;18m▒[38;5;62;48;5;24m▒[38;5;69;48;5;67m▒[38;5;69;48;5;104m▒[38;5;62;48;5;146m▒[38;5;146;48;5;104m▒[38;5;104;48;5;110m▒[38;5;69;48;5;103m▓[38;5;104;48;5;110m▒[38;5;146;48;5;104m▒[38;5;69;48;5;110m▒[38;5;61;48;5;103m▓[38;5;61;48;5;61m▓[38;5;69;48;5;104m▒[38;5;69;48;5;103m▓[38;5;146;48;5;104m▒[38;5;69;48;5;103m▒[38;5;69;48;5;104m▒[38;5;69;48;5;104m▒[38;5;69;48;5;61m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▒[38;5;69;48;5;103m▒[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;60m▓[38;5;69;48;5;60m▒[38;5;60;48;5;60m▓[38;5;69;48;5;17m░[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m▒[38;5;69;48;5;24m▒[38;5;69;48;5;67m▒[38;5;69;48;5;104m▒[38;5;69;48;5;61m▒[38;5;69;48;5;24m▒[38;5;69;48;5;24m▒[38;5;104;48;5;62m▒[38;5;69;48;5;60m▒[38;5;69;48;5;146m▒[38;5;62;48;5;110m▒[38;5;104;48;5;61m▒[38;5;61;48;5;61m▒[38;5;104;48;5;60m▒[38;5;104;48;5;60m▒[38;5;69;48;5;61m▒[38;5;62;48;5;4m▒[38;5;69;48;5;61m▒[38;5;69;48;5;60m▒[38;5;69;48;5;60m▒[38;5;69;48;5;61m▓[38;5;69;48;5;104m▒[38;5;69;48;5;61m▓[38;5;69;48;5;103m▓[38;5;69;48;5;104m▒[38;5;69;48;5;103m▓[38;5;69;48;5;103m▓[38;5;69;48;5;67m▓[38;5;69;48;5;60m▒[38;5;69;48;5;17m░[38;5;17;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;233m░[38;5;69;48;5;17m▒[38;5;69;48;5;24m▒[38;5;69;48;5;104m▒[38;5;69;48;5;104m▒[38;5;69;48;5;61m▒[38;5;69;48;5;104m▒[38;5;69;48;5;61m▒[38;5;69;48;5;61m▓[38;5;61;48;5;61m▒[38;5;69;48;5;103m▒[38;5;69;48;5;110m▒[38;5;62;48;5;24m▒[38;5;69;48;5;67m▒[38;5;62;48;5;24m▒[38;5;104;48;5;60m▒[38;5;69;48;5;67m▒[38;5;69;48;5;61m▓[38;5;69;48;5;17m▒[38;5;69;48;5;17m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
36
bundle/telescope.nvim-0.1.8/data/memes/planets/jupiter
Normal file
36
bundle/telescope.nvim-0.1.8/data/memes/planets/jupiter
Normal file
@ -0,0 +1,36 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;17;48;5;17m [38;5;69;48;5;25m░[38;5;111;48;5;26m░[38;5;111;48;5;26m░[38;5;75;48;5;75m [38;5;26;48;5;32m░[38;5;39;48;5;75m [38;5;32;48;5;75m [38;5;45;48;5;117m [38;5;45;48;5;87m [38;5;111;48;5;26m░[38;5;17;48;5;17m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;25m▒[38;5;45;48;5;81m [38;5;69;48;5;62m▒[38;5;61;48;5;239m▒[38;5;104;48;5;24m▒[38;5;61;48;5;60m▒[38;5;61;48;5;60m▒[38;5;62;48;5;62m▒[38;5;104;48;5;61m▒[38;5;69;48;5;68m░[38;5;26;48;5;75m░[38;5;33;48;5;111m [38;5;68;48;5;68m▒[38;5;81;48;5;117m [38;5;75;48;5;75m░[38;5;104;48;5;61m▒[38;5;68;48;5;68m░[38;5;195;48;5;195m [38;5;111;48;5;69m░[38;5;69;48;5;62m░[38;5;61;48;5;239m▓[38;5;103;48;5;238m▓[38;5;103;48;5;237m▓[38;5;104;48;5;17m▒[38;5;69;48;5;0m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;232m▓[38;5;107;48;5;233m▓[38;5;148;48;5;234m▓[38;5;101;48;5;235m▓[38;5;60;48;5;236m▓[38;5;61;48;5;239m▓[38;5;61;48;5;61m▒[38;5;69;48;5;62m▒[38;5;32;48;5;74m░[38;5;33;48;5;75m░[38;5;61;48;5;61m▒[38;5;103;48;5;60m▓[38;5;62;48;5;68m▒[38;5;104;48;5;62m▒[38;5;69;48;5;69m░[38;5;69;48;5;68m▒[38;5;69;48;5;68m▒[38;5;26;48;5;111m [38;5;69;48;5;68m▒[38;5;104;48;5;62m▒[38;5;69;48;5;68m▒[38;5;68;48;5;68m░[38;5;104;48;5;62m▒[38;5;69;48;5;67m▒[38;5;62;48;5;68m░[38;5;60;48;5;60m▓[38;5;99;48;5;60m▓[38;5;103;48;5;60m▓[38;5;69;48;5;239m▓[38;5;112;48;5;237m▓[38;5;191;48;5;236m▓[38;5;106;48;5;234m▓[38;5;190;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;144;48;5;233m▓[38;5;190;48;5;234m▓[38;5;190;48;5;235m▓[38;5;220;48;5;235m▓[38;5;101;48;5;236m▓[38;5;220;48;5;236m▓[38;5;136;48;5;237m▓[38;5;220;48;5;237m▓[38;5;220;48;5;239m▓[38;5;08;48;5;238m▓[38;5;204;48;5;239m▓[38;5;99;48;5;240m▓[38;5;55;48;5;239m▓[38;5;56;48;5;241m▓[38;5;99;48;5;60m▓[38;5;60;48;5;243m▓[38;5;103;48;5;97m▓[38;5;60;48;5;244m▓[38;5;103;48;5;103m▓[38;5;99;48;5;97m▓[38;5;60;48;5;103m▓[38;5;103;48;5;103m▓[38;5;103;48;5;67m▓[38;5;99;48;5;243m▓[38;5;60;48;5;60m▓[38;5;99;48;5;60m▓[38;5;99;48;5;243m▓[38;5;56;48;5;242m▓[38;5;68;48;5;60m▓[38;5;96;48;5;242m▓[38;5;190;48;5;240m▓[38;5;148;48;5;239m▓[38;5;148;48;5;238m▓[38;5;106;48;5;239m▓[38;5;191;48;5;238m▓[38;5;191;48;5;238m▓[38;5;154;48;5;237m▓[38;5;190;48;5;236m▓[38;5;148;48;5;235m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;191;48;5;232m▒[38;5;178;48;5;233m▓[38;5;94;48;5;234m▓[38;5;221;48;5;235m▓[38;5;136;48;5;236m▓[38;5;179;48;5;236m▓[38;5;179;48;5;237m▓[38;5;178;48;5;237m▓[38;5;214;48;5;237m▓[38;5;136;48;5;239m▓[38;5;178;48;5;239m▓[38;5;220;48;5;239m▓[38;5;221;48;5;240m▓[38;5;179;48;5;59m▓[38;5;172;48;5;59m▓[38;5;172;48;5;59m▓[38;5;172;48;5;95m▓[38;5;130;48;5;59m▓[38;5;172;48;5;241m▓[38;5;94;48;5;242m▓[38;5;94;48;5;241m▓[38;5;220;48;5;59m▓[38;5;136;48;5;240m▓[38;5;178;48;5;240m▓[38;5;94;48;5;59m▓[38;5;101;48;5;239m▓[38;5;190;48;5;242m▓[38;5;101;48;5;241m▓[38;5;101;48;5;242m▓[38;5;220;48;5;242m▓[38;5;190;48;5;240m▓[38;5;178;48;5;241m▓[38;5;190;48;5;241m▓[38;5;220;48;5;241m▓[38;5;148;48;5;59m▓[38;5;220;48;5;240m▓[38;5;220;48;5;59m▓[38;5;190;48;5;240m▓[38;5;190;48;5;240m▓[38;5;101;48;5;240m▓[38;5;106;48;5;238m▓[38;5;190;48;5;238m▓[38;5;190;48;5;237m▓[38;5;190;48;5;236m▓[38;5;190;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;64;48;5;233m▓[38;5;143;48;5;234m▓[38;5;94;48;5;235m▓[38;5;130;48;5;235m▓[38;5;130;48;5;236m▓[38;5;172;48;5;237m▓[38;5;172;48;5;238m▓[38;5;94;48;5;239m▓[38;5;94;48;5;239m▓[38;5;178;48;5;239m▓[38;5;172;48;5;239m▓[38;5;172;48;5;240m▓[38;5;221;48;5;240m▓[38;5;179;48;5;241m▓[38;5;179;48;5;240m▓[38;5;179;48;5;95m▓[38;5;178;48;5;242m▓[38;5;221;48;5;101m▓[38;5;178;48;5;242m▓[38;5;172;48;5;95m▓[38;5;94;48;5;95m▓[38;5;220;48;5;240m▓[38;5;94;48;5;95m▓[38;5;94;48;5;101m▓[38;5;179;48;5;101m▓[38;5;94;48;5;102m▓[38;5;94;48;5;101m▓[38;5;220;48;5;59m▓[38;5;172;48;5;101m▓[38;5;101;48;5;242m▓[38;5;179;48;5;101m▓[38;5;94;48;5;101m▓[38;5;94;48;5;242m▓[38;5;220;48;5;242m▓[38;5;101;48;5;242m▓[38;5;178;48;5;101m▓[38;5;101;48;5;101m▓[38;5;178;48;5;101m▓[38;5;101;48;5;242m▓[38;5;190;48;5;241m▓[38;5;101;48;5;243m▓[38;5;220;48;5;241m▓[38;5;190;48;5;59m▓[38;5;190;48;5;239m▓[38;5;190;48;5;239m▓[38;5;70;48;5;59m▓[38;5;190;48;5;238m▓[38;5;190;48;5;237m▓[38;5;148;48;5;236m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;64;48;5;233m▓[38;5;144;48;5;234m▓[38;5;101;48;5;236m▓[38;5;214;48;5;237m▓[38;5;178;48;5;238m▓[38;5;179;48;5;238m▓[38;5;179;48;5;239m▓[38;5;130;48;5;239m▓[38;5;172;48;5;239m▓[38;5;172;48;5;240m▓[38;5;06;48;5;240m▓[38;5;172;48;5;240m▓[38;5;130;48;5;95m▓[38;5;208;48;5;95m▓[38;5;130;48;5;95m▓[38;5;172;48;5;95m▓[38;5;179;48;5;95m▓[38;5;94;48;5;101m▓[38;5;179;48;5;101m▓[38;5;172;48;5;95m▓[38;5;172;48;5;95m▓[38;5;221;48;5;101m▓[38;5;221;48;5;101m▓[38;5;136;48;5;243m▓[38;5;220;48;5;101m▓[38;5;130;48;5;95m▓[38;5;221;48;5;101m▓[38;5;179;48;5;101m▓[38;5;94;48;5;101m▓[38;5;136;48;5;59m▓[38;5;221;48;5;101m▓[38;5;101;48;5;101m▓[38;5;179;48;5;101m▓[38;5;178;48;5;101m▓[38;5;179;48;5;101m▓[38;5;136;48;5;101m▓[38;5;220;48;5;102m▓[38;5;136;48;5;245m▓[38;5;94;48;5;101m▓[38;5;101;48;5;244m▓[38;5;220;48;5;101m▓[38;5;178;48;5;101m▓[38;5;136;48;5;101m▓[38;5;221;48;5;101m▓[38;5;221;48;5;101m▓[38;5;220;48;5;101m▓[38;5;101;48;5;242m▓[38;5;101;48;5;242m▓[38;5;101;48;5;241m▓[38;5;101;48;5;59m▓[38;5;143;48;5;239m▓[38;5;190;48;5;238m▓[38;5;148;48;5;237m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;233m▓[38;5;190;48;5;235m▓[38;5;172;48;5;236m▓[38;5;130;48;5;237m▓[38;5;136;48;5;239m▓[38;5;130;48;5;239m▓[38;5;130;48;5;240m▓[38;5;172;48;5;59m▓[38;5;172;48;5;241m▓[38;5;179;48;5;95m▓[38;5;172;48;5;95m▓[38;5;130;48;5;95m▓[38;5;208;48;5;101m▓[38;5;208;48;5;101m▓[38;5;172;48;5;101m▓[38;5;130;48;5;101m▓[38;5;130;48;5;137m▓[38;5;172;48;5;101m▓[38;5;208;48;5;101m▓[38;5;130;48;5;138m▓[38;5;130;48;5;101m▓[38;5;208;48;5;137m▓[38;5;130;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;101m▓[38;5;179;48;5;144m▓[38;5;130;48;5;138m▓[38;5;130;48;5;138m▓[38;5;130;48;5;138m▓[38;5;172;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;138m▓[38;5;172;48;5;144m▓[38;5;179;48;5;144m▓[38;5;172;48;5;138m▓[38;5;172;48;5;137m▓[38;5;130;48;5;137m▓[38;5;221;48;5;245m▓[38;5;94;48;5;245m▓[38;5;136;48;5;245m▓[38;5;94;48;5;137m▓[38;5;179;48;5;137m▓[38;5;179;48;5;101m▓[38;5;94;48;5;101m▓[38;5;172;48;5;101m▓[38;5;94;48;5;101m▓[38;5;214;48;5;101m▓[38;5;221;48;5;101m▓[38;5;178;48;5;101m▓[38;5;178;48;5;101m▓[38;5;178;48;5;101m▓[38;5;220;48;5;101m▓[38;5;136;48;5;242m▓[38;5;220;48;5;59m▓[38;5;144;48;5;239m▓[38;5;144;48;5;238m▓[38;5;190;48;5;236m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;234m▓[38;5;220;48;5;235m▓[38;5;221;48;5;237m▓[38;5;179;48;5;237m▓[38;5;136;48;5;239m▓[38;5;208;48;5;238m▓[38;5;130;48;5;59m▓[38;5;214;48;5;59m▓[38;5;130;48;5;95m▓[38;5;172;48;5;240m▓[38;5;130;48;5;240m▓[38;5;172;48;5;101m▓[38;5;172;48;5;243m▓[38;5;130;48;5;95m▓[38;5;130;48;5;95m▓[38;5;130;48;5;95m▓[38;5;172;48;5;101m▓[38;5;172;48;5;101m▓[38;5;130;48;5;101m▓[38;5;208;48;5;137m▓[38;5;172;48;5;101m▓[38;5;172;48;5;101m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;130;48;5;95m▒[38;5;130;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;138m▓[38;5;172;48;5;144m▓[38;5;172;48;5;137m▓[38;5;130;48;5;138m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;130;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;137m▓[38;5;179;48;5;95m▒[38;5;172;48;5;137m▓[38;5;130;48;5;138m▓[38;5;172;48;5;138m▓[38;5;172;48;5;137m▓[38;5;172;48;5;101m▓[38;5;94;48;5;240m▓[38;5;172;48;5;137m▓[38;5;214;48;5;101m▓[38;5;214;48;5;101m▓[38;5;179;48;5;101m▓[38;5;178;48;5;101m▓[38;5;221;48;5;101m▓[38;5;220;48;5;101m▓[38;5;101;48;5;241m▓[38;5;136;48;5;95m▓[38;5;101;48;5;59m▓[38;5;144;48;5;240m▓[38;5;190;48;5;239m▓[38;5;148;48;5;238m▓[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;232m▒[38;5;191;48;5;234m▓[38;5;190;48;5;235m▓[38;5;101;48;5;236m▓[38;5;179;48;5;237m▓[38;5;06;48;5;238m▓[38;5;06;48;5;238m▓[38;5;202;48;5;239m▓[38;5;173;48;5;240m▓[38;5;130;48;5;95m▓[38;5;172;48;5;95m▓[38;5;208;48;5;244m▓[38;5;137;48;5;101m▓[38;5;137;48;5;102m▓[38;5;137;48;5;245m▓[38;5;130;48;5;245m▓[38;5;06;48;5;101m▓[38;5;06;48;5;101m▓[38;5;202;48;5;102m▓[38;5;179;48;5;138m▓[38;5;06;48;5;138m▓[38;5;208;48;5;138m▓[38;5;137;48;5;138m▓[38;5;137;48;5;144m▓[38;5;130;48;5;138m▓[38;5;130;48;5;138m▓[38;5;130;48;5;180m▒[38;5;208;48;5;144m▓[38;5;172;48;5;138m▓[38;5;172;48;5;137m▓[38;5;172;48;5;138m▓[38;5;130;48;5;138m▓[38;5;130;48;5;144m▓[38;5;137;48;5;144m▓[38;5;137;48;5;180m▓[38;5;172;48;5;144m▓[38;5;172;48;5;137m▓[38;5;179;48;5;137m▓[38;5;179;48;5;101m▓[38;5;172;48;5;101m▓[38;5;130;48;5;137m▓[38;5;94;48;5;101m▓[38;5;94;48;5;95m▓[38;5;06;48;5;137m▓[38;5;69;48;5;247m▓[38;5;221;48;5;102m▓[38;5;130;48;5;144m▓[38;5;221;48;5;101m▓[38;5;178;48;5;246m▓[38;5;179;48;5;245m▓[38;5;94;48;5;101m▓[38;5;221;48;5;101m▓[38;5;220;48;5;101m▓[38;5;178;48;5;101m▓[38;5;101;48;5;101m▓[38;5;178;48;5;101m▓[38;5;220;48;5;101m▓[38;5;101;48;5;101m▓[38;5;101;48;5;59m▓[38;5;190;48;5;239m▓[38;5;190;48;5;238m▒[38;5;190;48;5;238m▒[38;5;94;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;233m▓[38;5;148;48;5;234m▓[38;5;101;48;5;236m▓[38;5;220;48;5;237m▓[38;5;172;48;5;239m▓[38;5;130;48;5;239m▓[38;5;208;48;5;240m▓[38;5;130;48;5;59m▓[38;5;130;48;5;95m▓[38;5;130;48;5;95m▓[38;5;06;48;5;95m▓[38;5;130;48;5;101m▓[38;5;130;48;5;101m▓[38;5;130;48;5;101m▓[38;5;208;48;5;137m▓[38;5;130;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;137m▓[38;5;130;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▒[38;5;172;48;5;137m▓[38;5;172;48;5;137m▒[38;5;172;48;5;144m▒[38;5;130;48;5;144m▓[38;5;130;48;5;144m▓[38;5;172;48;5;144m▒[38;5;06;48;5;144m▓[38;5;179;48;5;144m▒[38;5;130;48;5;144m▓[38;5;172;48;5;144m▓[38;5;172;48;5;144m▓[38;5;172;48;5;144m▓[38;5;130;48;5;144m▓[38;5;172;48;5;144m▓[38;5;172;48;5;144m▓[38;5;130;48;5;144m▓[38;5;172;48;5;144m▒[38;5;172;48;5;144m▓[38;5;130;48;5;144m▒[38;5;172;48;5;144m▓[38;5;172;48;5;144m▓[38;5;172;48;5;137m▒[38;5;179;48;5;144m▓[38;5;179;48;5;144m▓[38;5;179;48;5;144m▓[38;5;214;48;5;144m▓[38;5;94;48;5;144m▓[38;5;94;48;5;137m▓[38;5;220;48;5;137m▓[38;5;136;48;5;137m▓[38;5;136;48;5;137m▓[38;5;94;48;5;101m▓[38;5;178;48;5;101m▓[38;5;220;48;5;101m▓[38;5;220;48;5;101m▓[38;5;220;48;5;101m▓[38;5;144;48;5;240m▓[38;5;220;48;5;239m▓[38;5;222;48;5;234m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;84;48;5;232m▓[38;5;84;48;5;235m▓[38;5;86;48;5;237m▓[38;5;66;48;5;238m▓[38;5;45;48;5;240m▓[38;5;66;48;5;241m▓[38;5;101;48;5;242m▓[38;5;69;48;5;243m▓[38;5;99;48;5;243m▓[38;5;57;48;5;244m▓[38;5;57;48;5;245m▓[38;5;245;48;5;245m▓[38;5;246;48;5;246m▓[38;5;204;48;5;246m▓[38;5;247;48;5;247m▓[38;5;173;48;5;247m▓[38;5;202;48;5;247m▓[38;5;137;48;5;247m▓[38;5;173;48;5;248m▓[38;5;130;48;5;247m▓[38;5;208;48;5;248m▓[38;5;137;48;5;248m▓[38;5;202;48;5;247m▓[38;5;248;48;5;247m▓[38;5;249;48;5;249m▓[38;5;250;48;5;249m▓[38;5;209;48;5;249m▓[38;5;209;48;5;250m▓[38;5;173;48;5;249m▓[38;5;209;48;5;251m▓[38;5;95;48;5;251m▓[38;5;202;48;5;251m▓[38;5;202;48;5;251m▓[38;5;204;48;5;7m▓[38;5;209;48;5;251m▓[38;5;221;48;5;251m▓[38;5;202;48;5;252m▓[38;5;202;48;5;253m▓[38;5;137;48;5;252m▓[38;5;06;48;5;188m▓[38;5;179;48;5;188m▓[38;5;97;48;5;188m▓[38;5;132;48;5;188m▓[38;5;99;48;5;188m▓[38;5;60;48;5;251m▓[38;5;92;48;5;252m▓[38;5;69;48;5;188m▓[38;5;68;48;5;252m▓[38;5;69;48;5;253m▓[38;5;60;48;5;253m▓[38;5;69;48;5;252m▓[38;5;27;48;5;251m▓[38;5;69;48;5;146m▓[38;5;68;48;5;249m▓[38;5;67;48;5;250m▓[38;5;33;48;5;249m▓[38;5;67;48;5;145m▓[38;5;27;48;5;145m▓[38;5;27;48;5;248m▓[38;5;67;48;5;109m▓[38;5;26;48;5;103m▓[38;5;27;48;5;103m▓[38;5;26;48;5;245m▓[38;5;67;48;5;244m▓[38;5;32;48;5;242m▓[38;5;65;48;5;240m▓[38;5;216;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;65;48;5;234m▓[38;5;43;48;5;236m▓[38;5;25;48;5;238m▓[38;5;25;48;5;239m▓[38;5;68;48;5;59m▓[38;5;69;48;5;242m▓[38;5;68;48;5;243m▓[38;5;69;48;5;243m▓[38;5;60;48;5;102m▓[38;5;60;48;5;245m▓[38;5;60;48;5;246m▓[38;5;60;48;5;246m▓[38;5;99;48;5;247m▓[38;5;60;48;5;247m▓[38;5;99;48;5;248m▓[38;5;99;48;5;145m▓[38;5;56;48;5;145m▓[38;5;60;48;5;249m▓[38;5;54;48;5;145m▓[38;5;96;48;5;249m▓[38;5;01;48;5;250m▓[38;5;08;48;5;7m▓[38;5;197;48;5;249m▓[38;5;09;48;5;252m▓[38;5;60;48;5;251m▓[38;5;99;48;5;252m▓[38;5;06;48;5;253m▓[38;5;97;48;5;188m▓[38;5;99;48;5;254m▓[38;5;56;48;5;253m▓[38;5;57;48;5;255m▓[38;5;98;48;5;255m▓[38;5;97;48;5;255m▓[38;5;99;48;5;255m▓[38;5;99;48;5;254m▓[38;5;69;48;5;231m [38;5;62;48;5;255m▒[38;5;189;48;5;231m [38;5;69;48;5;231m [38;5;189;48;5;231m [38;5;231;48;5;231m▓[38;5;189;48;5;189m [38;5;69;48;5;255m░[38;5;69;48;5;231m [38;5;69;48;5;231m [38;5;189;48;5;231m [38;5;62;48;5;255m░[38;5;104;48;5;189m▒[38;5;68;48;5;253m▓[38;5;69;48;5;188m▓[38;5;27;48;5;251m▓[38;5;27;48;5;252m▓[38;5;26;48;5;251m▓[38;5;68;48;5;146m▓[38;5;33;48;5;250m▓[38;5;25;48;5;250m▓[38;5;68;48;5;146m▒[38;5;68;48;5;146m▓[38;5;26;48;5;145m▓[38;5;69;48;5;110m▓[38;5;101;48;5;246m▓[38;5;220;48;5;102m▓[38;5;149;48;5;245m▓[38;5;26;48;5;244m▓[38;5;41;48;5;243m▓[38;5;64;48;5;242m▓[38;5;25;48;5;59m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;154;48;5;232m▒[38;5;144;48;5;234m▓[38;5;214;48;5;235m▓[38;5;173;48;5;236m▓[38;5;101;48;5;238m▓[38;5;137;48;5;239m▓[38;5;209;48;5;239m▓[38;5;209;48;5;241m▓[38;5;130;48;5;59m▓[38;5;06;48;5;95m▓[38;5;221;48;5;244m▓[38;5;209;48;5;242m▓[38;5;202;48;5;244m▓[38;5;173;48;5;101m▓[38;5;202;48;5;102m▓[38;5;202;48;5;95m▓[38;5;137;48;5;138m▓[38;5;06;48;5;95m▓[38;5;130;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▒[38;5;06;48;5;95m▓[38;5;06;48;5;131m▒[38;5;209;48;5;94m▒[38;5;202;48;5;137m▓[38;5;137;48;5;137m▒[38;5;172;48;5;180m▒[38;5;06;48;5;180m▓[38;5;172;48;5;144m▓[38;5;130;48;5;180m▒[38;5;130;48;5;144m▓[38;5;06;48;5;144m▓[38;5;130;48;5;144m▓[38;5;130;48;5;180m▒[38;5;172;48;5;137m▒[38;5;214;48;5;180m▒[38;5;208;48;5;180m▒[38;5;137;48;5;138m▓[38;5;180;48;5;137m▒[38;5;06;48;5;180m▒[38;5;172;48;5;180m▒[38;5;172;48;5;187m▒[38;5;172;48;5;181m▒[38;5;130;48;5;180m▒[38;5;130;48;5;138m▓[38;5;172;48;5;181m▒[38;5;179;48;5;144m▓[38;5;130;48;5;144m▓[38;5;172;48;5;137m▒[38;5;137;48;5;137m▓[38;5;130;48;5;137m▒[38;5;06;48;5;137m▒[38;5;130;48;5;137m▒[38;5;130;48;5;131m▒[38;5;172;48;5;137m▓[38;5;172;48;5;144m▓[38;5;221;48;5;144m▓[38;5;179;48;5;137m▓[38;5;94;48;5;137m▓[38;5;172;48;5;101m▒[38;5;94;48;5;101m▓[38;5;172;48;5;101m▓[38;5;136;48;5;101m▓[38;5;130;48;5;95m▓[38;5;130;48;5;95m▓[38;5;94;48;5;240m▓[38;5;221;48;5;240m▓[38;5;172;48;5;240m▓[38;5;190;48;5;236m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;221;48;5;233m▓[38;5;136;48;5;235m▓[38;5;209;48;5;236m▓[38;5;209;48;5;235m▓[38;5;06;48;5;237m▓[38;5;06;48;5;238m▓[38;5;173;48;5;238m▓[38;5;209;48;5;238m▓[38;5;202;48;5;240m▓[38;5;209;48;5;239m▒[38;5;202;48;5;94m▒[38;5;209;48;5;95m▒[38;5;06;48;5;95m▓[38;5;173;48;5;95m▒[38;5;173;48;5;95m▒[38;5;209;48;5;94m▒[38;5;06;48;5;94m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▒[38;5;130;48;5;180m▒[38;5;208;48;5;138m▓[38;5;172;48;5;101m▓[38;5;172;48;5;101m▓[38;5;180;48;5;180m▒[38;5;180;48;5;131m▒[38;5;137;48;5;137m▒[38;5;202;48;5;137m▒[38;5;06;48;5;173m▒[38;5;137;48;5;137m▒[38;5;202;48;5;180m▒[38;5;06;48;5;173m▒[38;5;130;48;5;181m▓[38;5;06;48;5;94m░[38;5;202;48;5;94m░[38;5;173;48;5;94m░[38;5;173;48;5;95m▒[38;5;06;48;5;131m▒[38;5;202;48;5;94m▒[38;5;06;48;5;94m▒[38;5;202;48;5;94m░[38;5;209;48;5;94m░[38;5;173;48;5;130m░[38;5;202;48;5;130m░[38;5;180;48;5;130m░[38;5;180;48;5;131m▒[38;5;06;48;5;94m▒[38;5;06;48;5;94m▒[38;5;173;48;5;94m░[38;5;209;48;5;88m░[38;5;173;48;5;94m░[38;5;202;48;5;94m░[38;5;173;48;5;94m░[38;5;06;48;5;94m▒[38;5;202;48;5;94m▒[38;5;209;48;5;94m▒[38;5;06;48;5;94m░[38;5;06;48;5;130m░[38;5;130;48;5;94m░[38;5;208;48;5;94m▒[38;5;130;48;5;94m░[38;5;172;48;5;94m▒[38;5;180;48;5;94m▒[38;5;130;48;5;94m▒[38;5;180;48;5;94m▒[38;5;137;48;5;240m▒[38;5;208;48;5;95m▓[38;5;179;48;5;239m▓[38;5;221;48;5;239m▓[38;5;204;48;5;239m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;150;48;5;232m▒[38;5;119;48;5;234m▓[38;5;178;48;5;236m▓[38;5;136;48;5;237m▓[38;5;179;48;5;237m▓[38;5;178;48;5;239m▓[38;5;137;48;5;239m▓[38;5;172;48;5;241m▓[38;5;06;48;5;95m▓[38;5;202;48;5;240m▓[38;5;130;48;5;95m▓[38;5;137;48;5;95m▓[38;5;137;48;5;95m▓[38;5;172;48;5;95m▓[38;5;137;48;5;95m▓[38;5;172;48;5;240m▓[38;5;178;48;5;240m▓[38;5;172;48;5;95m▓[38;5;221;48;5;95m▓[38;5;190;48;5;65m▓[38;5;94;48;5;101m▓[38;5;94;48;5;101m▓[38;5;172;48;5;95m▒[38;5;130;48;5;95m▓[38;5;208;48;5;137m▒[38;5;208;48;5;94m▒[38;5;06;48;5;95m▓[38;5;137;48;5;95m▓[38;5;204;48;5;138m▓[38;5;209;48;5;246m▓[38;5;06;48;5;138m▓[38;5;179;48;5;144m▓[38;5;06;48;5;95m▒[38;5;172;48;5;59m▓[38;5;209;48;5;249m▓[38;5;95;48;5;251m▓[38;5;172;48;5;181m▓[38;5;172;48;5;137m▒[38;5;130;48;5;137m▒[38;5;137;48;5;95m▓[38;5;220;48;5;59m▓[38;5;94;48;5;94m▒[38;5;221;48;5;95m▒[38;5;221;48;5;94m▒[38;5;70;48;5;65m▓[38;5;101;48;5;101m▓[38;5;130;48;5;137m▒[38;5;137;48;5;95m▒[38;5;06;48;5;95m▒[38;5;130;48;5;95m▒[38;5;172;48;5;95m▓[38;5;94;48;5;101m▓[38;5;172;48;5;101m▓[38;5;172;48;5;137m▒[38;5;130;48;5;101m▓[38;5;172;48;5;137m▓[38;5;179;48;5;137m▓[38;5;179;48;5;101m▓[38;5;136;48;5;101m▓[38;5;221;48;5;95m▒[38;5;172;48;5;137m▓[38;5;172;48;5;95m▒[38;5;214;48;5;101m▓[38;5;179;48;5;101m▓[38;5;220;48;5;59m▓[38;5;148;48;5;241m▓[38;5;154;48;5;242m▓[38;5;148;48;5;241m▓[38;5;190;48;5;240m▓[38;5;220;48;5;240m▓[38;5;214;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;84;48;5;233m▓[38;5;112;48;5;235m▓[38;5;190;48;5;236m▓[38;5;190;48;5;238m▓[38;5;190;48;5;239m▓[38;5;209;48;5;242m▓[38;5;94;48;5;242m▓[38;5;130;48;5;95m▓[38;5;172;48;5;101m▓[38;5;94;48;5;242m▓[38;5;221;48;5;101m▓[38;5;220;48;5;244m▓[38;5;148;48;5;243m▓[38;5;101;48;5;245m▓[38;5;178;48;5;245m▓[38;5;136;48;5;245m▓[38;5;220;48;5;245m▓[38;5;220;48;5;246m▓[38;5;172;48;5;246m▓[38;5;94;48;5;144m▓[38;5;172;48;5;144m▓[38;5;137;48;5;247m▓[38;5;94;48;5;247m▓[38;5;06;48;5;250m▓[38;5;94;48;5;250m▓[38;5;137;48;5;7m▓[38;5;221;48;5;180m▒[38;5;221;48;5;179m▒[38;5;136;48;5;144m▒[38;5;136;48;5;180m▒[38;5;136;48;5;144m▓[38;5;172;48;5;181m▓[38;5;221;48;5;144m▓[38;5;179;48;5;180m▒[38;5;172;48;5;223m░[38;5;172;48;5;181m▒[38;5;178;48;5;137m▓[38;5;221;48;5;180m▒[38;5;94;48;5;180m▒[38;5;94;48;5;144m▓[38;5;178;48;5;144m▓[38;5;107;48;5;248m▓[38;5;179;48;5;180m▒[38;5;179;48;5;144m▓[38;5;179;48;5;251m▓[38;5;172;48;5;187m▒[38;5;137;48;5;181m▓[38;5;94;48;5;181m▓[38;5;136;48;5;181m▓[38;5;214;48;5;187m▓[38;5;130;48;5;187m▒[38;5;179;48;5;223m▒[38;5;172;48;5;249m▓[38;5;29;48;5;247m▓[38;5;101;48;5;144m▓[38;5;72;48;5;247m▓[38;5;101;48;5;145m▓[38;5;70;48;5;247m▓[38;5;119;48;5;247m▓[38;5;84;48;5;247m▓[38;5;84;48;5;247m▓[38;5;65;48;5;145m▓[38;5;107;48;5;249m▓[38;5;154;48;5;247m▓[38;5;65;48;5;245m▓[38;5;50;48;5;245m▓[38;5;81;48;5;244m▓[38;5;81;48;5;244m▓[38;5;84;48;5;242m▓[38;5;69;48;5;241m▓[38;5;190;48;5;58m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;113;48;5;233m▓[38;5;84;48;5;235m▓[38;5;84;48;5;237m▓[38;5;113;48;5;238m▓[38;5;107;48;5;240m▓[38;5;101;48;5;241m▓[38;5;72;48;5;242m▓[38;5;43;48;5;241m▓[38;5;45;48;5;243m▓[38;5;179;48;5;244m▓[38;5;190;48;5;102m▓[38;5;197;48;5;102m▓[38;5;137;48;5;245m▓[38;5;101;48;5;245m▓[38;5;148;48;5;245m▓[38;5;221;48;5;246m▓[38;5;137;48;5;144m▓[38;5;137;48;5;181m▓[38;5;172;48;5;144m▓[38;5;136;48;5;144m▓[38;5;220;48;5;144m▓[38;5;136;48;5;144m▓[38;5;172;48;5;144m▓[38;5;94;48;5;187m▒[38;5;172;48;5;187m▒[38;5;179;48;5;187m▒[38;5;130;48;5;181m▓[38;5;179;48;5;187m▓[38;5;94;48;5;181m▓[38;5;220;48;5;250m▓[38;5;94;48;5;223m▒[38;5;179;48;5;224m░[38;5;101;48;5;252m▓[38;5;190;48;5;255m▒[38;5;220;48;5;252m▓[38;5;220;48;5;253m▓[38;5;94;48;5;230m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;94;48;5;230m▒[38;5;220;48;5;230m [38;5;231;48;5;231m▓[38;5;190;48;5;255m▓[38;5;179;48;5;255m▒[38;5;231;48;5;231m▓[38;5;106;48;5;255m▒[38;5;187;48;5;255m▓[38;5;221;48;5;254m▓[38;5;70;48;5;251m▓[38;5;149;48;5;252m▓[38;5;45;48;5;109m▓[38;5;38;48;5;188m▓[38;5;113;48;5;249m▓[38;5;119;48;5;250m▓[38;5;101;48;5;7m▓[38;5;82;48;5;248m▓[38;5;154;48;5;248m▓[38;5;119;48;5;248m▓[38;5;84;48;5;248m▓[38;5;65;48;5;248m▓[38;5;113;48;5;247m▓[38;5;26;48;5;247m▓[38;5;39;48;5;248m▓[38;5;74;48;5;247m▓[38;5;33;48;5;246m▓[38;5;31;48;5;246m▓[38;5;26;48;5;102m▓[38;5;25;48;5;66m▓[38;5;31;48;5;242m▓[38;5;32;48;5;241m▓[38;5;190;48;5;238m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;70;48;5;233m▓[38;5;112;48;5;235m▓[38;5;112;48;5;237m▓[38;5;112;48;5;238m▓[38;5;190;48;5;239m▓[38;5;190;48;5;241m▓[38;5;79;48;5;242m▓[38;5;84;48;5;242m▓[38;5;149;48;5;244m▓[38;5;221;48;5;102m▓[38;5;94;48;5;102m▓[38;5;172;48;5;246m▓[38;5;179;48;5;246m▓[38;5;179;48;5;138m▓[38;5;179;48;5;138m▓[38;5;220;48;5;245m▓[38;5;179;48;5;144m▓[38;5;172;48;5;144m▓[38;5;172;48;5;180m▓[38;5;172;48;5;180m▒[38;5;172;48;5;180m▓[38;5;179;48;5;180m▓[38;5;94;48;5;181m▓[38;5;179;48;5;181m▓[38;5;94;48;5;187m▒[38;5;179;48;5;187m▒[38;5;221;48;5;224m░[38;5;179;48;5;181m▓[38;5;172;48;5;181m▓[38;5;222;48;5;224m░[38;5;222;48;5;224m░[38;5;172;48;5;224m░[38;5;230;48;5;230m [38;5;230;48;5;230m [38;5;94;48;5;230m▒[38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;94;48;5;253m▒[38;5;178;48;5;253m▒[38;5;144;48;5;187m▓[38;5;148;48;5;253m▓[38;5;119;48;5;255m▒[38;5;82;48;5;231m [38;5;230;48;5;231m [38;5;50;48;5;249m▓[38;5;76;48;5;188m▓[38;5;190;48;5;255m░[38;5;190;48;5;254m▓[38;5;136;48;5;231m░[38;5;220;48;5;255m▓[38;5;191;48;5;255m▓[38;5;190;48;5;255m▓[38;5;190;48;5;253m▓[38;5;106;48;5;252m▓[38;5;84;48;5;247m▓[38;5;190;48;5;188m▓[38;5;112;48;5;7m▓[38;5;119;48;5;249m▓[38;5;119;48;5;250m▓[38;5;119;48;5;249m▓[38;5;50;48;5;145m▓[38;5;42;48;5;248m▓[38;5;43;48;5;247m▓[38;5;38;48;5;247m▓[38;5;74;48;5;246m▓[38;5;25;48;5;245m▓[38;5;67;48;5;244m▓[38;5;38;48;5;243m▓[38;5;27;48;5;242m▓[38;5;191;48;5;237m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;70;48;5;233m▓[38;5;112;48;5;235m▓[38;5;191;48;5;237m▓[38;5;190;48;5;239m▓[38;5;101;48;5;240m▓[38;5;178;48;5;241m▓[38;5;221;48;5;242m▓[38;5;220;48;5;243m▓[38;5;136;48;5;244m▓[38;5;214;48;5;244m▓[38;5;136;48;5;102m▓[38;5;101;48;5;245m▓[38;5;221;48;5;246m▓[38;5;06;48;5;247m▓[38;5;06;48;5;145m▓[38;5;69;48;5;247m▓[38;5;26;48;5;247m▓[38;5;42;48;5;247m▓[38;5;39;48;5;248m▓[38;5;81;48;5;249m▓[38;5;84;48;5;249m▓[38;5;202;48;5;252m▓[38;5;78;48;5;250m▓[38;5;190;48;5;252m▓[38;5;179;48;5;252m▓[38;5;220;48;5;188m▓[38;5;79;48;5;250m▓[38;5;99;48;5;254m▓[38;5;231;48;5;231m▓[38;5;221;48;5;254m▓[38;5;230;48;5;231m [38;5;149;48;5;255m▓[38;5;86;48;5;254m▓[38;5;231;48;5;231m▓[38;5;69;48;5;231m▓[38;5;231;48;5;231m▓[38;5;31;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;66;48;5;254m▓[38;5;152;48;5;152m▓[38;5;116;48;5;255m▒[38;5;41;48;5;253m▓[38;5;109;48;5;255m▓[38;5;45;48;5;188m▓[38;5;32;48;5;189m▒[38;5;74;48;5;189m▒[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;32;48;5;195m░[38;5;32;48;5;189m▒[38;5;32;48;5;195m░[38;5;32;48;5;195m [38;5;74;48;5;152m▓[38;5;32;48;5;146m▓[38;5;25;48;5;152m▒[38;5;110;48;5;152m▒[38;5;26;48;5;152m▒[38;5;26;48;5;152m▒[38;5;33;48;5;152m▒[38;5;25;48;5;146m▓[38;5;33;48;5;146m▓[38;5;27;48;5;146m▓[38;5;33;48;5;145m▓[38;5;67;48;5;109m▓[38;5;26;48;5;103m▓[38;5;26;48;5;103m▓[38;5;26;48;5;66m▓[38;5;25;48;5;66m▓[38;5;68;48;5;242m▓[38;5;76;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;143;48;5;233m▒[38;5;178;48;5;235m▓[38;5;214;48;5;236m▓[38;5;172;48;5;237m▓[38;5;172;48;5;238m▓[38;5;202;48;5;239m▓[38;5;202;48;5;59m▓[38;5;06;48;5;240m▓[38;5;137;48;5;59m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;101m▓[38;5;137;48;5;101m▓[38;5;06;48;5;95m▓[38;5;137;48;5;95m▓[38;5;137;48;5;137m▓[38;5;137;48;5;101m▓[38;5;208;48;5;101m▓[38;5;137;48;5;95m▓[38;5;130;48;5;101m▓[38;5;137;48;5;101m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;101m▓[38;5;130;48;5;95m▒[38;5;130;48;5;137m▒[38;5;130;48;5;137m▒[38;5;180;48;5;173m▒[38;5;137;48;5;137m▒[38;5;208;48;5;137m▓[38;5;137;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▓[38;5;172;48;5;137m▒[38;5;214;48;5;101m▓[38;5;172;48;5;101m▒[38;5;172;48;5;101m▓[38;5;208;48;5;137m▓[38;5;137;48;5;137m▒[38;5;172;48;5;137m▒[38;5;130;48;5;95m▒[38;5;172;48;5;95m▒[38;5;172;48;5;101m▒[38;5;130;48;5;137m▒[38;5;208;48;5;137m▒[38;5;130;48;5;179m▒[38;5;180;48;5;179m▒[38;5;130;48;5;137m▒[38;5;130;48;5;137m▒[38;5;172;48;5;101m▒[38;5;130;48;5;101m▓[38;5;214;48;5;101m▓[38;5;179;48;5;95m▒[38;5;179;48;5;95m▒[38;5;179;48;5;95m▒[38;5;221;48;5;94m▒[38;5;221;48;5;101m▒[38;5;214;48;5;137m▒[38;5;214;48;5;95m▒[38;5;94;48;5;101m▓[38;5;178;48;5;101m▓[38;5;220;48;5;101m▓[38;5;136;48;5;95m▓[38;5;178;48;5;242m▓[38;5;221;48;5;241m▓[38;5;220;48;5;59m▓[38;5;101;48;5;240m▓[38;5;190;48;5;240m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;233m▒[38;5;144;48;5;234m▓[38;5;179;48;5;235m▓[38;5;130;48;5;236m▓[38;5;06;48;5;237m▓[38;5;209;48;5;238m▓[38;5;204;48;5;239m▓[38;5;204;48;5;239m▓[38;5;204;48;5;240m▓[38;5;95;48;5;240m▓[38;5;204;48;5;240m▓[38;5;95;48;5;95m▓[38;5;209;48;5;95m▓[38;5;209;48;5;240m▓[38;5;209;48;5;95m▓[38;5;209;48;5;95m▓[38;5;173;48;5;95m▓[38;5;173;48;5;95m▓[38;5;209;48;5;95m▓[38;5;173;48;5;131m▓[38;5;209;48;5;95m▓[38;5;209;48;5;95m▓[38;5;138;48;5;95m▓[38;5;209;48;5;95m▓[38;5;173;48;5;95m▒[38;5;209;48;5;95m▓[38;5;209;48;5;95m▓[38;5;209;48;5;95m▓[38;5;209;48;5;95m▓[38;5;138;48;5;95m▓[38;5;173;48;5;95m▓[38;5;130;48;5;251m▓[38;5;173;48;5;181m▓[38;5;06;48;5;137m▓[38;5;202;48;5;144m▓[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;209;48;5;95m▓[38;5;173;48;5;95m▒[38;5;173;48;5;95m▒[38;5;172;48;5;137m▓[38;5;202;48;5;244m▓[38;5;137;48;5;180m▒[38;5;209;48;5;181m▓[38;5;137;48;5;95m▓[38;5;06;48;5;138m▓[38;5;179;48;5;144m▓[38;5;214;48;5;144m▓[38;5;130;48;5;187m▒[38;5;208;48;5;180m▒[38;5;94;48;5;144m▓[38;5;179;48;5;101m▓[38;5;172;48;5;144m▒[38;5;130;48;5;179m▒[38;5;130;48;5;173m▒[38;5;130;48;5;137m▒[38;5;130;48;5;137m▒[38;5;172;48;5;137m▒[38;5;172;48;5;137m▒[38;5;172;48;5;137m▒[38;5;214;48;5;137m▒[38;5;214;48;5;101m▒[38;5;179;48;5;101m▓[38;5;94;48;5;95m▓[38;5;94;48;5;95m▓[38;5;136;48;5;95m▓[38;5;220;48;5;95m▓[38;5;101;48;5;240m▓[38;5;143;48;5;237m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;233m▓[38;5;220;48;5;235m▓[38;5;172;48;5;236m▓[38;5;130;48;5;237m▓[38;5;137;48;5;238m▓[38;5;209;48;5;239m▓[38;5;130;48;5;59m▓[38;5;137;48;5;241m▓[38;5;173;48;5;59m▓[38;5;173;48;5;95m▓[38;5;173;48;5;95m▓[38;5;173;48;5;240m▓[38;5;209;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;138m▓[38;5;06;48;5;101m▓[38;5;06;48;5;138m▓[38;5;06;48;5;138m▓[38;5;202;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;137m▓[38;5;06;48;5;101m▓[38;5;208;48;5;138m▓[38;5;130;48;5;138m▓[38;5;06;48;5;180m▒[38;5;06;48;5;137m▒[38;5;137;48;5;180m▓[38;5;01;48;5;248m▓[38;5;202;48;5;181m▓[38;5;179;48;5;223m░[38;5;06;48;5;179m░[38;5;06;48;5;144m▓[38;5;130;48;5;181m▒[38;5;180;48;5;180m▒[38;5;95;48;5;247m▓[38;5;172;48;5;180m▒[38;5;173;48;5;138m▓[38;5;230;48;5;230m [38;5;180;48;5;137m▒[38;5;179;48;5;180m▒[38;5;172;48;5;181m▓[38;5;179;48;5;181m▓[38;5;130;48;5;137m▒[38;5;66;48;5;246m▓[38;5;136;48;5;144m▓[38;5;180;48;5;180m▒[38;5;130;48;5;101m▓[38;5;179;48;5;138m▓[38;5;130;48;5;181m▒[38;5;172;48;5;181m▓[38;5;137;48;5;251m▓[38;5;221;48;5;180m▓[38;5;94;48;5;138m▓[38;5;130;48;5;95m▒[38;5;208;48;5;94m▒[38;5;130;48;5;94m▒[38;5;130;48;5;94m▒[38;5;130;48;5;95m▒[38;5;130;48;5;95m▒[38;5;130;48;5;95m▒[38;5;130;48;5;94m▒[38;5;130;48;5;95m▒[38;5;137;48;5;240m▓[38;5;172;48;5;95m▓[38;5;172;48;5;240m▓[38;5;178;48;5;239m▓[38;5;209;48;5;239m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;232m [38;5;190;48;5;234m▓[38;5;220;48;5;235m▓[38;5;101;48;5;237m▓[38;5;221;48;5;237m▓[38;5;220;48;5;239m▓[38;5;06;48;5;239m▓[38;5;209;48;5;59m▓[38;5;202;48;5;241m▓[38;5;202;48;5;59m▓[38;5;209;48;5;59m▓[38;5;202;48;5;59m▓[38;5;173;48;5;95m▓[38;5;173;48;5;95m▓[38;5;137;48;5;101m▓[38;5;202;48;5;101m▓[38;5;209;48;5;95m▓[38;5;202;48;5;101m▓[38;5;202;48;5;246m▓[38;5;173;48;5;95m▓[38;5;137;48;5;138m▓[38;5;209;48;5;95m▓[38;5;06;48;5;101m▓[38;5;06;48;5;138m▓[38;5;202;48;5;95m▓[38;5;202;48;5;137m▓[38;5;173;48;5;137m▒[38;5;06;48;5;137m▓[38;5;06;48;5;144m▓[38;5;173;48;5;137m▓[38;5;06;48;5;179m▒[38;5;202;48;5;95m▒[38;5;173;48;5;95m▒[38;5;173;48;5;180m▒[38;5;06;48;5;137m▒[38;5;130;48;5;187m▒[38;5;06;48;5;138m▓[38;5;173;48;5;95m▒[38;5;06;48;5;137m▓[38;5;137;48;5;137m▓[38;5;208;48;5;137m▓[38;5;130;48;5;179m▒[38;5;214;48;5;187m▒[38;5;137;48;5;95m▓[38;5;214;48;5;137m▓[38;5;172;48;5;181m▒[38;5;179;48;5;143m▒[38;5;222;48;5;136m [38;5;172;48;5;136m [38;5;172;48;5;172m [38;5;172;48;5;172m [38;5;172;48;5;136m░[38;5;172;48;5;136m░[38;5;178;48;5;144m▓[38;5;172;48;5;144m▓[38;5;178;48;5;101m▓[38;5;172;48;5;101m▓[38;5;94;48;5;101m▓[38;5;136;48;5;101m▓[38;5;94;48;5;101m▓[38;5;136;48;5;101m▓[38;5;179;48;5;95m▓[38;5;221;48;5;95m▓[38;5;220;48;5;242m▓[38;5;148;48;5;241m▓[38;5;101;48;5;239m▓[38;5;221;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;112;48;5;233m▓[38;5;190;48;5;235m▓[38;5;190;48;5;237m▓[38;5;190;48;5;238m▓[38;5;191;48;5;238m▓[38;5;179;48;5;240m▓[38;5;101;48;5;242m▓[38;5;190;48;5;242m▓[38;5;97;48;5;244m▓[38;5;221;48;5;102m▓[38;5;245;48;5;245m▓[38;5;246;48;5;246m▓[38;5;96;48;5;246m▓[38;5;172;48;5;246m▓[38;5;130;48;5;246m▓[38;5;130;48;5;101m▓[38;5;137;48;5;101m▓[38;5;137;48;5;246m▓[38;5;178;48;5;247m▓[38;5;137;48;5;144m▓[38;5;137;48;5;144m▓[38;5;172;48;5;249m▓[38;5;179;48;5;249m▓[38;5;172;48;5;7m▓[38;5;130;48;5;187m▓[38;5;94;48;5;145m▓[38;5;137;48;5;181m▓[38;5;172;48;5;144m▓[38;5;172;48;5;180m▒[38;5;179;48;5;144m▓[38;5;172;48;5;181m▓[38;5;179;48;5;144m▓[38;5;220;48;5;246m▓[38;5;172;48;5;144m▓[38;5;172;48;5;180m▒[38;5;214;48;5;187m▒[38;5;172;48;5;144m▓[38;5;172;48;5;144m▓[38;5;172;48;5;144m▓[38;5;208;48;5;95m▒[38;5;130;48;5;144m▓[38;5;172;48;5;101m▓[38;5;172;48;5;138m▓[38;5;208;48;5;144m▓[38;5;172;48;5;137m▒[38;5;130;48;5;130m [38;5;130;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;130m [38;5;172;48;5;130m░[38;5;172;48;5;138m▓[38;5;214;48;5;144m▓[38;5;136;48;5;137m▓[38;5;221;48;5;245m▓[38;5;172;48;5;138m▓[38;5;136;48;5;101m▓[38;5;220;48;5;245m▓[38;5;101;48;5;102m▓[38;5;148;48;5;244m▓[38;5;148;48;5;242m▓[38;5;106;48;5;241m▓[38;5;70;48;5;240m▓[38;5;143;48;5;236m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;107;48;5;233m▓[38;5;112;48;5;235m▓[38;5;119;48;5;236m▓[38;5;64;48;5;238m▓[38;5;106;48;5;240m▓[38;5;101;48;5;59m▓[38;5;101;48;5;59m▓[38;5;101;48;5;242m▓[38;5;94;48;5;243m▓[38;5;136;48;5;243m▓[38;5;94;48;5;102m▓[38;5;178;48;5;242m▓[38;5;130;48;5;247m▓[38;5;94;48;5;245m▓[38;5;204;48;5;247m▓[38;5;208;48;5;245m▓[38;5;172;48;5;247m▓[38;5;214;48;5;101m▓[38;5;172;48;5;138m▓[38;5;202;48;5;138m▓[38;5;06;48;5;145m▓[38;5;130;48;5;144m▓[38;5;208;48;5;249m▓[38;5;06;48;5;249m▓[38;5;130;48;5;181m▓[38;5;172;48;5;250m▓[38;5;172;48;5;137m▓[38;5;06;48;5;251m▓[38;5;06;48;5;252m▓[38;5;137;48;5;7m▓[38;5;94;48;5;249m▓[38;5;172;48;5;180m▓[38;5;179;48;5;181m▓[38;5;172;48;5;144m▒[38;5;130;48;5;251m▓[38;5;179;48;5;143m▒[38;5;190;48;5;249m▓[38;5;220;48;5;7m▓[38;5;172;48;5;144m▓[38;5;179;48;5;187m▒[38;5;214;48;5;187m▓[38;5;172;48;5;181m▒[38;5;130;48;5;144m▓[38;5;220;48;5;145m▓[38;5;220;48;5;7m▓[38;5;172;48;5;138m▓[38;5;179;48;5;137m▒[38;5;214;48;5;137m▓[38;5;101;48;5;145m▓[38;5;172;48;5;144m▓[38;5;221;48;5;137m▓[38;5;220;48;5;144m▓[38;5;221;48;5;101m▒[38;5;190;48;5;246m▓[38;5;101;48;5;246m▓[38;5;190;48;5;245m▓[38;5;149;48;5;245m▓[38;5;220;48;5;242m▓[38;5;119;48;5;244m▓[38;5;47;48;5;243m▓[38;5;82;48;5;241m▓[38;5;191;48;5;240m▓[38;5;190;48;5;236m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;107;48;5;232m▓[38;5;107;48;5;234m▓[38;5;119;48;5;235m▓[38;5;94;48;5;236m▒[38;5;221;48;5;237m▓[38;5;220;48;5;239m▓[38;5;101;48;5;59m▓[38;5;101;48;5;242m▓[38;5;149;48;5;243m▓[38;5;221;48;5;243m▓[38;5;172;48;5;244m▓[38;5;202;48;5;102m▓[38;5;06;48;5;244m▓[38;5;06;48;5;245m▓[38;5;94;48;5;245m▓[38;5;06;48;5;246m▓[38;5;137;48;5;246m▓[38;5;173;48;5;246m▓[38;5;173;48;5;247m▓[38;5;173;48;5;248m▓[38;5;137;48;5;247m▓[38;5;202;48;5;247m▓[38;5;06;48;5;144m▓[38;5;130;48;5;247m▓[38;5;208;48;5;247m▓[38;5;137;48;5;144m▓[38;5;06;48;5;144m▓[38;5;130;48;5;145m▓[38;5;172;48;5;145m▓[38;5;130;48;5;249m▓[38;5;221;48;5;145m▓[38;5;130;48;5;145m▓[38;5;130;48;5;249m▓[38;5;172;48;5;144m▓[38;5;221;48;5;249m▓[38;5;130;48;5;145m▓[38;5;172;48;5;145m▓[38;5;172;48;5;249m▓[38;5;221;48;5;145m▓[38;5;214;48;5;145m▓[38;5;214;48;5;144m▓[38;5;94;48;5;145m▓[38;5;172;48;5;247m▓[38;5;178;48;5;144m▓[38;5;101;48;5;249m▓[38;5;136;48;5;145m▓[38;5;101;48;5;248m▓[38;5;220;48;5;248m▓[38;5;148;48;5;247m▓[38;5;101;48;5;247m▓[38;5;101;48;5;247m▓[38;5;101;48;5;246m▓[38;5;76;48;5;245m▓[38;5;107;48;5;245m▓[38;5;119;48;5;102m▓[38;5;119;48;5;244m▓[38;5;66;48;5;243m▓[38;5;41;48;5;242m▓[38;5;65;48;5;241m▓[38;5;65;48;5;240m▓[38;5;222;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;112;48;5;234m▓[38;5;190;48;5;235m▓[38;5;101;48;5;235m▓[38;5;172;48;5;237m▓[38;5;94;48;5;238m▓[38;5;220;48;5;239m▓[38;5;172;48;5;241m▓[38;5;221;48;5;240m▓[38;5;220;48;5;59m▓[38;5;221;48;5;242m▓[38;5;179;48;5;242m▓[38;5;221;48;5;242m▓[38;5;178;48;5;242m▓[38;5;214;48;5;101m▓[38;5;94;48;5;243m▓[38;5;179;48;5;101m▓[38;5;94;48;5;245m▓[38;5;172;48;5;101m▓[38;5;172;48;5;101m▓[38;5;94;48;5;101m▓[38;5;130;48;5;101m▓[38;5;130;48;5;138m▓[38;5;94;48;5;101m▓[38;5;94;48;5;101m▓[38;5;130;48;5;101m▓[38;5;179;48;5;101m▓[38;5;179;48;5;245m▓[38;5;101;48;5;243m▓[38;5;101;48;5;101m▓[38;5;172;48;5;245m▓[38;5;101;48;5;101m▓[38;5;172;48;5;137m▓[38;5;178;48;5;101m▓[38;5;190;48;5;243m▓[38;5;101;48;5;242m▓[38;5;94;48;5;101m▓[38;5;221;48;5;245m▓[38;5;101;48;5;242m▓[38;5;221;48;5;101m▓[38;5;220;48;5;243m▓[38;5;221;48;5;244m▓[38;5;178;48;5;101m▓[38;5;101;48;5;101m▓[38;5;94;48;5;101m▓[38;5;220;48;5;243m▓[38;5;101;48;5;101m▓[38;5;101;48;5;242m▓[38;5;101;48;5;242m▓[38;5;101;48;5;243m▓[38;5;101;48;5;242m▓[38;5;101;48;5;242m▓[38;5;220;48;5;241m▓[38;5;112;48;5;242m▓[38;5;112;48;5;242m▓[38;5;154;48;5;240m▓[38;5;149;48;5;239m▓[38;5;79;48;5;239m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;107;48;5;232m▓[38;5;112;48;5;234m▓[38;5;190;48;5;235m▓[38;5;190;48;5;236m▓[38;5;178;48;5;237m▓[38;5;220;48;5;238m▓[38;5;136;48;5;240m▓[38;5;136;48;5;240m▓[38;5;137;48;5;59m▓[38;5;137;48;5;59m▓[38;5;137;48;5;242m▓[38;5;137;48;5;242m▓[38;5;137;48;5;243m▓[38;5;202;48;5;243m▓[38;5;130;48;5;101m▓[38;5;137;48;5;59m▓[38;5;173;48;5;244m▓[38;5;173;48;5;245m▓[38;5;214;48;5;243m▓[38;5;137;48;5;244m▓[38;5;137;48;5;244m▓[38;5;137;48;5;102m▓[38;5;130;48;5;245m▓[38;5;172;48;5;245m▓[38;5;179;48;5;247m▓[38;5;06;48;5;247m▓[38;5;130;48;5;246m▓[38;5;130;48;5;102m▓[38;5;137;48;5;138m▓[38;5;130;48;5;245m▓[38;5;130;48;5;246m▓[38;5;130;48;5;246m▓[38;5;137;48;5;245m▓[38;5;130;48;5;247m▓[38;5;172;48;5;247m▓[38;5;172;48;5;246m▓[38;5;214;48;5;245m▓[38;5;130;48;5;101m▓[38;5;172;48;5;101m▓[38;5;94;48;5;101m▓[38;5;32;48;5;145m▓[38;5;27;48;5;109m▓[38;5;94;48;5;101m▓[38;5;136;48;5;102m▓[38;5;172;48;5;243m▓[38;5;178;48;5;242m▓[38;5;35;48;5;246m▓[38;5;31;48;5;246m▓[38;5;65;48;5;242m▓[38;5;101;48;5;242m▓[38;5;68;48;5;242m▓[38;5;84;48;5;240m▓[38;5;76;48;5;239m▓[38;5;41;48;5;238m▓[38;5;220;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;149;48;5;232m▓[38;5;190;48;5;234m▓[38;5;190;48;5;235m▓[38;5;220;48;5;236m▓[38;5;101;48;5;237m▓[38;5;94;48;5;238m▓[38;5;172;48;5;238m▓[38;5;130;48;5;239m▓[38;5;130;48;5;240m▓[38;5;137;48;5;240m▓[38;5;130;48;5;59m▓[38;5;209;48;5;241m▓[38;5;173;48;5;242m▓[38;5;06;48;5;242m▓[38;5;125;48;5;240m▓[38;5;204;48;5;242m▓[38;5;06;48;5;241m▓[38;5;06;48;5;59m▓[38;5;130;48;5;242m▓[38;5;202;48;5;243m▓[38;5;94;48;5;241m▓[38;5;179;48;5;244m▓[38;5;202;48;5;95m▓[38;5;130;48;5;242m▓[38;5;137;48;5;241m▓[38;5;130;48;5;59m▓[38;5;214;48;5;242m▓[38;5;137;48;5;101m▓[38;5;172;48;5;243m▓[38;5;179;48;5;101m▓[38;5;220;48;5;242m▓[38;5;172;48;5;101m▓[38;5;172;48;5;243m▓[38;5;172;48;5;243m▓[38;5;172;48;5;101m▓[38;5;06;48;5;242m▓[38;5;208;48;5;95m▓[38;5;06;48;5;241m▓[38;5;202;48;5;95m▓[38;5;137;48;5;241m▓[38;5;214;48;5;241m▓[38;5;137;48;5;241m▓[38;5;172;48;5;59m▓[38;5;202;48;5;241m▓[38;5;190;48;5;241m▓[38;5;202;48;5;241m▓[38;5;101;48;5;59m▓[38;5;68;48;5;240m▓[38;5;119;48;5;239m▓[38;5;82;48;5;237m▓[38;5;220;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;119;48;5;232m▓[38;5;190;48;5;234m▓[38;5;190;48;5;235m▓[38;5;112;48;5;236m▓[38;5;107;48;5;237m▓[38;5;107;48;5;238m▓[38;5;190;48;5;239m▓[38;5;209;48;5;239m▓[38;5;101;48;5;59m▓[38;5;101;48;5;240m▓[38;5;72;48;5;242m▓[38;5;69;48;5;242m▓[38;5;60;48;5;243m▓[38;5;244;48;5;244m▓[38;5;221;48;5;243m▓[38;5;244;48;5;243m▓[38;5;179;48;5;244m▓[38;5;244;48;5;244m▓[38;5;102;48;5;102m▓[38;5;102;48;5;102m▓[38;5;65;48;5;245m▓[38;5;172;48;5;102m▓[38;5;101;48;5;244m▓[38;5;172;48;5;244m▓[38;5;137;48;5;102m▓[38;5;221;48;5;243m▓[38;5;06;48;5;243m▓[38;5;130;48;5;243m▓[38;5;06;48;5;243m▓[38;5;172;48;5;243m▓[38;5;220;48;5;244m▓[38;5;220;48;5;242m▓[38;5;190;48;5;242m▓[38;5;06;48;5;243m▓[38;5;172;48;5;242m▓[38;5;68;48;5;244m▓[38;5;45;48;5;243m▓[38;5;74;48;5;243m▓[38;5;43;48;5;242m▓[38;5;45;48;5;242m▓[38;5;27;48;5;241m▓[38;5;32;48;5;241m▓[38;5;32;48;5;241m▓[38;5;29;48;5;240m▓[38;5;113;48;5;238m▓[38;5;84;48;5;238m▓[38;5;06;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;232m [38;5;186;48;5;233m▒[38;5;144;48;5;234m▓[38;5;144;48;5;235m▓[38;5;101;48;5;236m▓[38;5;136;48;5;236m▓[38;5;101;48;5;237m▓[38;5;221;48;5;238m▓[38;5;101;48;5;238m▓[38;5;221;48;5;239m▓[38;5;101;48;5;240m▓[38;5;220;48;5;240m▓[38;5;220;48;5;59m▓[38;5;221;48;5;241m▓[38;5;101;48;5;240m▓[38;5;101;48;5;240m▓[38;5;101;48;5;59m▓[38;5;220;48;5;59m▓[38;5;101;48;5;241m▓[38;5;101;48;5;241m▓[38;5;94;48;5;241m▓[38;5;179;48;5;241m▓[38;5;101;48;5;242m▓[38;5;101;48;5;59m▓[38;5;101;48;5;242m▓[38;5;94;48;5;242m▓[38;5;220;48;5;241m▓[38;5;190;48;5;241m▓[38;5;190;48;5;241m▓[38;5;101;48;5;240m▓[38;5;148;48;5;241m▓[38;5;112;48;5;241m▓[38;5;191;48;5;240m▓[38;5;70;48;5;240m▓[38;5;70;48;5;240m▓[38;5;149;48;5;239m▓[38;5;119;48;5;239m▓[38;5;154;48;5;238m▓[38;5;191;48;5;236m▓[38;5;190;48;5;235m▓[38;5;136;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;190;48;5;233m▓[38;5;191;48;5;234m▓[38;5;190;48;5;235m▓[38;5;190;48;5;235m▓[38;5;190;48;5;236m▓[38;5;149;48;5;237m▓[38;5;84;48;5;237m▓[38;5;190;48;5;237m▓[38;5;190;48;5;238m▓[38;5;190;48;5;238m▓[38;5;190;48;5;239m▓[38;5;101;48;5;239m▓[38;5;101;48;5;239m▓[38;5;190;48;5;239m▓[38;5;190;48;5;239m▓[38;5;190;48;5;239m▓[38;5;190;48;5;239m▓[38;5;190;48;5;240m▓[38;5;190;48;5;240m▓[38;5;101;48;5;240m▓[38;5;94;48;5;240m▓[38;5;94;48;5;240m▓[38;5;112;48;5;239m▓[38;5;70;48;5;239m▓[38;5;119;48;5;239m▓[38;5;107;48;5;239m▓[38;5;119;48;5;239m▓[38;5;119;48;5;238m▓[38;5;43;48;5;238m▓[38;5;119;48;5;237m▓[38;5;76;48;5;237m▓[38;5;118;48;5;235m▓[38;5;143;48;5;234m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;25;48;5;232m▒[38;5;32;48;5;233m▓[38;5;66;48;5;234m▓[38;5;42;48;5;234m▓[38;5;79;48;5;234m▓[38;5;78;48;5;235m▓[38;5;84;48;5;235m▓[38;5;65;48;5;235m▓[38;5;65;48;5;235m▓[38;5;65;48;5;236m▓[38;5;65;48;5;236m▓[38;5;113;48;5;236m▓[38;5;65;48;5;236m▓[38;5;84;48;5;236m▓[38;5;84;48;5;237m▓[38;5;35;48;5;237m▓[38;5;86;48;5;236m▓[38;5;42;48;5;237m▓[38;5;45;48;5;236m▓[38;5;45;48;5;236m▓[38;5;32;48;5;236m▓[38;5;45;48;5;236m▓[38;5;50;48;5;235m▓[38;5;84;48;5;234m▓[38;5;107;48;5;233m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;121;48;5;0m [38;5;78;48;5;232m▒[38;5;43;48;5;232m▓[38;5;42;48;5;233m▓[38;5;42;48;5;233m▓[38;5;43;48;5;233m▓[38;5;41;48;5;233m▓[38;5;119;48;5;232m▒[38;5;22;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
27
bundle/telescope.nvim-0.1.8/data/memes/planets/mars
Normal file
27
bundle/telescope.nvim-0.1.8/data/memes/planets/mars
Normal file
@ -0,0 +1,27 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;52m [38;5;174;48;5;236m▒[38;5;209;48;5;181m▒[38;5;204;48;5;52m░[38;5;204;48;5;234m▒[38;5;220;48;5;230m [38;5;220;48;5;229m [38;5;230;48;5;231m [38;5;231;48;5;231m▓[38;5;172;48;5;223m▒[38;5;230;48;5;231m [38;5;209;48;5;94m░[38;5;204;48;5;124m░[38;5;204;48;5;52m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;204;48;5;52m░[38;5;204;48;5;88m [38;5;88;48;5;88m [38;5;204;48;5;124m░[38;5;124;48;5;124m░[38;5;216;48;5;52m░[38;5;209;48;5;130m▒[38;5;174;48;5;131m▒[38;5;06;48;5;209m [38;5;130;48;5;172m░[38;5;88;48;5;88m [38;5;204;48;5;88m▒[38;5;172;48;5;223m░[38;5;06;48;5;224m [38;5;220;48;5;230m [38;5;202;48;5;06m░[38;5;204;48;5;1m░[38;5;07;48;5;00m░[38;5;124;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;88m░[38;5;204;48;5;52m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;204;48;5;88m░[38;5;204;48;5;1m░[38;5;204;48;5;88m░[38;5;124;48;5;124m░[38;5;00;48;5;124m░[38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;196;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;196m░[38;5;209;48;5;196m [38;5;204;48;5;52m░[38;5;01;48;5;52m░[38;5;175;48;5;235m▒[38;5;204;48;5;236m▓[38;5;204;48;5;1m░[38;5;07;48;5;52m░[38;5;204;48;5;52m░[38;5;204;48;5;124m░[38;5;204;48;5;88m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m [38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;88m [38;5;204;48;5;124m░[38;5;204;48;5;00m░[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;124;48;5;124m░[38;5;124;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;1m░[38;5;204;48;5;1m [38;5;204;48;5;88m [38;5;124;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m [38;5;204;48;5;124m░[38;5;204;48;5;89m▒[38;5;204;48;5;52m░[38;5;08;48;5;52m▒[38;5;204;48;5;52m░[38;5;204;48;5;52m░[38;5;204;48;5;1m░[38;5;204;48;5;1m▒[38;5;204;48;5;1m▒[38;5;204;48;5;88m░[38;5;204;48;5;88m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;00m░[38;5;88;48;5;88m [38;5;204;48;5;124m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;124;48;5;124m░[38;5;124;48;5;124m░[38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;88m░[38;5;204;48;5;1m░[38;5;204;48;5;88m░[38;5;204;48;5;238m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▓[38;5;204;48;5;235m▒[38;5;08;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;08;48;5;236m▒[38;5;204;48;5;88m░[38;5;204;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;196;48;5;00m░[38;5;196;48;5;00m░[38;5;00;48;5;00m░[38;5;204;48;5;124m░[38;5;1;48;5;52m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;07;48;5;88m░[38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;202m░[38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;124;48;5;124m░[38;5;07;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;204;48;5;124m░[38;5;204;48;5;1m░[38;5;197;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;236m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▓[38;5;204;48;5;234m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;238m▒[38;5;204;48;5;125m░[38;5;204;48;5;238m▒[38;5;204;48;5;1m▒[38;5;204;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;07;48;5;124m▒[38;5;00;48;5;124m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;06m [38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;88;48;5;88m [38;5;00;48;5;00m [38;5;196;48;5;196m░[38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;174;48;5;236m▒[38;5;204;48;5;238m▓[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;234m▒[38;5;131;48;5;236m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;237m▓[38;5;204;48;5;237m▒[38;5;204;48;5;236m▒[38;5;204;48;5;1m░[38;5;204;48;5;88m▒[38;5;209;48;5;124m░[38;5;07;48;5;124m▒[38;5;204;48;5;89m▒[38;5;124;48;5;88m░[38;5;00;48;5;00m░[38;5;52;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;216;48;5;202m [38;5;216;48;5;202m░[38;5;216;48;5;202m░[38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;07;48;5;124m░[38;5;204;48;5;52m▒[38;5;204;48;5;237m▒[38;5;204;48;5;234m▒[38;5;204;48;5;236m▒[38;5;08;48;5;235m▒[38;5;08;48;5;237m▓[38;5;08;48;5;235m▒[38;5;204;48;5;235m▒[38;5;204;48;5;237m▓[38;5;204;48;5;237m▒[38;5;174;48;5;1m▒[38;5;196;48;5;00m░[38;5;07;48;5;06m░[38;5;88;48;5;88m [38;5;209;48;5;131m▒[38;5;204;48;5;88m▒[38;5;07;48;5;124m░[38;5;00;48;5;00m [38;5;209;48;5;06m░[38;5;52;48;5;52m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;06m░[38;5;216;48;5;202m [38;5;216;48;5;202m░[38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;130;48;5;208m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;00;48;5;00m░[38;5;88;48;5;88m░[38;5;204;48;5;88m░[38;5;204;48;5;52m▒[38;5;204;48;5;236m▒[38;5;204;48;5;235m▒[38;5;204;48;5;236m▒[38;5;204;48;5;236m▒[38;5;131;48;5;236m▒[38;5;131;48;5;236m▒[38;5;204;48;5;238m▒[38;5;174;48;5;238m▒[38;5;209;48;5;202m░[38;5;124;48;5;124m [38;5;00;48;5;124m░[38;5;209;48;5;07m░[38;5;204;48;5;88m▒[38;5;00;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;202m░[38;5;209;48;5;06m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;52m [38;5;216;48;5;202m [38;5;216;48;5;06m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;06;48;5;202m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;208;48;5;208m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;202;48;5;202m [38;5;209;48;5;196m [38;5;00;48;5;00m░[38;5;204;48;5;124m▒[38;5;196;48;5;196m░[38;5;209;48;5;00m░[38;5;204;48;5;88m▒[38;5;204;48;5;52m▒[38;5;174;48;5;238m▒[38;5;174;48;5;95m▒[38;5;07;48;5;88m▒[38;5;174;48;5;131m▒[38;5;07;48;5;88m░[38;5;07;48;5;88m░[38;5;07;48;5;124m░[38;5;07;48;5;00m░[38;5;196;48;5;00m░[38;5;07;48;5;00m░[38;5;07;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;196;48;5;00m░[38;5;209;48;5;124m░[38;5;209;48;5;202m░[38;5;216;48;5;202m░[38;5;216;48;5;202m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;216;48;5;202m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;06;48;5;208m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;06;48;5;202m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;06;48;5;202m [38;5;130;48;5;208m [38;5;208;48;5;208m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;124;48;5;88m░[38;5;209;48;5;130m░[38;5;00;48;5;00m [38;5;07;48;5;00m░[38;5;00;48;5;00m░[38;5;07;48;5;00m░[38;5;07;48;5;124m░[38;5;07;48;5;88m░[38;5;204;48;5;88m▒[38;5;174;48;5;95m▒[38;5;07;48;5;1m░[38;5;204;48;5;124m▒[38;5;204;48;5;88m░[38;5;204;48;5;88m▒[38;5;174;48;5;1m▒[38;5;07;48;5;52m▒[38;5;07;48;5;124m░[38;5;196;48;5;00m░[38;5;00;48;5;00m░[38;5;124;48;5;124m░[38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;07;48;5;130m░[38;5;209;48;5;00m [38;5;216;48;5;06m░[38;5;202;48;5;202m░[38;5;52;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;202m [38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;202m [38;5;06;48;5;208m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;06;48;5;208m [38;5;172;48;5;214m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;209;48;5;06m [38;5;06;48;5;202m [38;5;216;48;5;06m [38;5;202;48;5;06m [38;5;196;48;5;196m░[38;5;06;48;5;216m [38;5;209;48;5;1m░[38;5;204;48;5;52m▒[38;5;174;48;5;131m▒[38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;196;48;5;00m░[38;5;07;48;5;131m▒[38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;07;48;5;124m░[38;5;124;48;5;124m░[38;5;07;48;5;124m░[38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;07;48;5;124m▒[38;5;209;48;5;124m░[38;5;209;48;5;06m░[38;5;202;48;5;202m [38;5;202;48;5;06m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;233m [38;5;06;48;5;202m [38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;208;48;5;208m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;208;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;06;48;5;202m [38;5;06;48;5;208m [38;5;208;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;06;48;5;208m [38;5;216;48;5;202m [38;5;216;48;5;06m [38;5;209;48;5;06m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;00;48;5;00m [38;5;209;48;5;124m [38;5;124;48;5;88m░[38;5;209;48;5;00m░[38;5;202;48;5;202m [38;5;216;48;5;202m░[38;5;216;48;5;202m░[38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;00m░[38;5;196;48;5;06m░[38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;196;48;5;196m░[38;5;209;48;5;06m░[38;5;209;48;5;124m░[38;5;124;48;5;124m░[38;5;216;48;5;209m [38;5;209;48;5;124m [38;5;07;48;5;88m░[38;5;124;48;5;124m░[38;5;209;48;5;130m [38;5;216;48;5;06m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;52m [38;5;202;48;5;202m [38;5;208;48;5;208m [38;5;06;48;5;202m [38;5;208;48;5;208m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;202;48;5;202m [38;5;06;48;5;208m░[38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;215;48;5;208m [38;5;209;48;5;06m░[38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;00;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;209;48;5;06m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m░[38;5;202;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;06m [38;5;124;48;5;124m [38;5;209;48;5;06m [38;5;07;48;5;124m▒[38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;209;48;5;124m░[38;5;209;48;5;130m░[38;5;209;48;5;130m░[38;5;216;48;5;06m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;202m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;06;48;5;202m [38;5;06;48;5;208m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;196m░[38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;208;48;5;208m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;06m░[38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;216;48;5;202m [38;5;06;48;5;202m [38;5;209;48;5;06m [38;5;130;48;5;214m [38;5;196;48;5;06m░[38;5;209;48;5;202m░[38;5;06;48;5;208m [38;5;07;48;5;124m░[38;5;07;48;5;52m░[38;5;07;48;5;06m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;209;48;5;124m [38;5;204;48;5;238m▒[38;5;209;48;5;130m░[38;5;209;48;5;124m░[38;5;209;48;5;07m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;202m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;208;48;5;208m [38;5;216;48;5;06m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;214m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;06m [38;5;215;48;5;208m [38;5;06;48;5;202m [38;5;209;48;5;124m [38;5;209;48;5;06m [38;5;209;48;5;202m [38;5;209;48;5;06m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;209;48;5;00m [38;5;06;48;5;202m [38;5;202;48;5;202m░[38;5;209;48;5;06m [38;5;07;48;5;00m░[38;5;203;48;5;07m░[38;5;204;48;5;88m▒[38;5;209;48;5;00m░[38;5;209;48;5;124m [38;5;124;48;5;88m░[38;5;204;48;5;1m▒[38;5;174;48;5;237m▒[38;5;209;48;5;130m▒[38;5;52;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;94m [38;5;06;48;5;208m [38;5;06;48;5;202m [38;5;06;48;5;202m [38;5;06;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;214m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;208m [38;5;172;48;5;214m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;216;48;5;06m░[38;5;209;48;5;06m [38;5;209;48;5;00m [38;5;216;48;5;202m░[38;5;215;48;5;208m [38;5;216;48;5;202m [38;5;208;48;5;208m [38;5;215;48;5;208m [38;5;209;48;5;00m [38;5;216;48;5;209m [38;5;209;48;5;00m [38;5;209;48;5;124m░[38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;52;48;5;52m [38;5;209;48;5;202m [38;5;209;48;5;06m░[38;5;07;48;5;07m▒[38;5;174;48;5;237m▒[38;5;204;48;5;52m▒[38;5;204;48;5;237m▒[38;5;209;48;5;95m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;202m░[38;5;202;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;06;48;5;202m [38;5;202;48;5;06m [38;5;215;48;5;208m [38;5;06;48;5;202m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;06;48;5;202m [38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;209;48;5;88m [38;5;216;48;5;06m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;130;48;5;208m [38;5;209;48;5;06m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;06m [38;5;173;48;5;58m▒[38;5;00;48;5;00m [38;5;06;48;5;208m [38;5;202;48;5;202m [38;5;88;48;5;88m [38;5;06;48;5;208m [38;5;202;48;5;202m [38;5;209;48;5;124m [38;5;216;48;5;202m [38;5;209;48;5;124m░[38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;06m░[38;5;124;48;5;124m░[38;5;124;48;5;124m░[38;5;204;48;5;238m▒[38;5;204;48;5;1m▒[38;5;209;48;5;124m░[38;5;07;48;5;88m▒[38;5;204;48;5;238m▒[38;5;209;48;5;52m▒[38;5;173;48;5;130m░[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;00m░[38;5;06;48;5;06m [38;5;06;48;5;208m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;202;48;5;06m░[38;5;215;48;5;208m [38;5;216;48;5;06m [38;5;202;48;5;06m [38;5;208;48;5;208m [38;5;202;48;5;06m [38;5;216;48;5;202m░[38;5;124;48;5;124m [38;5;216;48;5;06m░[38;5;208;48;5;208m [38;5;130;48;5;208m [38;5;06;48;5;202m [38;5;209;48;5;00m [38;5;204;48;5;1m▒[38;5;209;48;5;124m [38;5;209;48;5;202m [38;5;209;48;5;06m░[38;5;204;48;5;52m░[38;5;07;48;5;124m░[38;5;88;48;5;88m [38;5;216;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;06m [38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;00;48;5;124m░[38;5;204;48;5;88m░[38;5;204;48;5;124m▒[38;5;07;48;5;124m░[38;5;07;48;5;124m░[38;5;204;48;5;239m▓[38;5;204;48;5;1m░[38;5;07;48;5;88m▒[38;5;209;48;5;124m░[38;5;07;48;5;124m░[38;5;209;48;5;130m░[38;5;209;48;5;130m░[38;5;209;48;5;1m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;07;48;5;52m░[38;5;209;48;5;06m░[38;5;202;48;5;202m░[38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;208m [38;5;216;48;5;202m [38;5;216;48;5;06m [38;5;209;48;5;124m [38;5;209;48;5;202m░[38;5;202;48;5;202m [38;5;130;48;5;208m [38;5;209;48;5;06m [38;5;06;48;5;208m [38;5;216;48;5;06m [38;5;209;48;5;00m [38;5;06;48;5;06m [38;5;208;48;5;208m [38;5;208;48;5;208m [38;5;06;48;5;208m [38;5;204;48;5;124m░[38;5;204;48;5;00m░[38;5;1;48;5;1m [38;5;204;48;5;125m▒[38;5;204;48;5;238m▓[38;5;204;48;5;1m▒[38;5;07;48;5;52m░[38;5;204;48;5;1m▒[38;5;204;48;5;89m▒[38;5;07;48;5;52m▒[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;00;48;5;124m░[38;5;07;48;5;00m░[38;5;00;48;5;00m░[38;5;204;48;5;124m▒[38;5;174;48;5;131m▒[38;5;1;48;5;1m░[38;5;07;48;5;1m▒[38;5;204;48;5;1m▒[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;07;48;5;1m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;204;48;5;236m▒[38;5;204;48;5;52m░[38;5;07;48;5;124m░[38;5;209;48;5;00m [38;5;209;48;5;06m░[38;5;06;48;5;202m [38;5;215;48;5;208m [38;5;06;48;5;202m [38;5;202;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;00m░[38;5;209;48;5;202m [38;5;216;48;5;06m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;203m [38;5;204;48;5;00m░[38;5;204;48;5;236m▒[38;5;52;48;5;52m [38;5;209;48;5;95m▒[38;5;204;48;5;236m▒[38;5;197;48;5;236m▒[38;5;173;48;5;237m▓[38;5;07;48;5;88m▒[38;5;209;48;5;130m▒[38;5;124;48;5;124m░[38;5;07;48;5;00m░[38;5;216;48;5;209m░[38;5;88;48;5;88m░[38;5;204;48;5;88m░[38;5;209;48;5;00m░[38;5;124;48;5;124m░[38;5;07;48;5;124m░[38;5;204;48;5;124m░[38;5;07;48;5;52m▒[38;5;204;48;5;88m░[38;5;07;48;5;06m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;08;48;5;236m▒[38;5;204;48;5;235m▒[38;5;209;48;5;52m░[38;5;209;48;5;124m░[38;5;209;48;5;06m [38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;124;48;5;88m░[38;5;204;48;5;52m░[38;5;204;48;5;88m░[38;5;204;48;5;88m░[38;5;00;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;124;48;5;124m [38;5;209;48;5;236m▓[38;5;204;48;5;235m▒[38;5;204;48;5;237m▒[38;5;204;48;5;236m▒[38;5;204;48;5;237m▒[38;5;204;48;5;237m▒[38;5;131;48;5;95m▒[38;5;174;48;5;238m▒[38;5;204;48;5;52m▒[38;5;204;48;5;238m▒[38;5;204;48;5;88m▒[38;5;204;48;5;124m░[38;5;88;48;5;88m░[38;5;07;48;5;124m░[38;5;88;48;5;88m░[38;5;204;48;5;88m░[38;5;204;48;5;88m░[38;5;204;48;5;88m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;204;48;5;235m▒[38;5;204;48;5;1m▒[38;5;124;48;5;124m░[38;5;209;48;5;06m░[38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;124m░[38;5;07;48;5;52m░[38;5;204;48;5;52m▒[38;5;204;48;5;52m▒[38;5;204;48;5;52m▒[38;5;204;48;5;235m▒[38;5;204;48;5;52m▒[38;5;204;48;5;52m░[38;5;204;48;5;52m▒[38;5;204;48;5;236m▒[38;5;204;48;5;236m▒[38;5;204;48;5;1m░[38;5;204;48;5;1m░[38;5;02;48;5;234m▒[38;5;197;48;5;235m▒[38;5;204;48;5;236m▓[38;5;204;48;5;235m▓[38;5;204;48;5;238m▓[38;5;138;48;5;238m▓[38;5;204;48;5;237m▒[38;5;204;48;5;239m▓[38;5;204;48;5;238m▒[38;5;174;48;5;237m▒[38;5;07;48;5;52m▒[38;5;204;48;5;52m▒[38;5;204;48;5;1m▒[38;5;209;48;5;52m░[38;5;204;48;5;89m▒[38;5;124;48;5;124m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;130m▒[38;5;209;48;5;124m░[38;5;209;48;5;124m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;07;48;5;124m░[38;5;204;48;5;131m▒[38;5;204;48;5;1m▒[38;5;1;48;5;1m░[38;5;07;48;5;124m░[38;5;124;48;5;124m░[38;5;204;48;5;88m░[38;5;07;48;5;52m░[38;5;174;48;5;237m▒[38;5;204;48;5;1m▒[38;5;07;48;5;124m░[38;5;124;48;5;124m░[38;5;204;48;5;88m▒[38;5;204;48;5;237m▒[38;5;204;48;5;237m▒[38;5;204;48;5;238m▓[38;5;204;48;5;238m▓[38;5;204;48;5;239m▒[38;5;204;48;5;95m▒[38;5;204;48;5;239m▒[38;5;204;48;5;237m▒[38;5;204;48;5;239m▒[38;5;174;48;5;131m▒[38;5;204;48;5;88m░[38;5;209;48;5;124m░[38;5;209;48;5;124m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;07;48;5;124m░[38;5;209;48;5;00m [38;5;196;48;5;06m░[38;5;88;48;5;88m [38;5;07;48;5;124m░[38;5;88;48;5;88m [38;5;204;48;5;124m░[38;5;204;48;5;124m░[38;5;00;48;5;124m░[38;5;00;48;5;124m░[38;5;00;48;5;124m░[38;5;204;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;204;48;5;1m░[38;5;204;48;5;125m▒[38;5;204;48;5;1m▒[38;5;07;48;5;06m░[38;5;209;48;5;06m░[38;5;209;48;5;124m░[38;5;209;48;5;124m░[38;5;209;48;5;06m░[38;5;209;48;5;00m░[38;5;209;48;5;06m░[38;5;1;48;5;1m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;233m [38;5;209;48;5;00m░[38;5;00;48;5;124m░[38;5;124;48;5;88m░[38;5;204;48;5;88m░[38;5;07;48;5;124m░[38;5;07;48;5;124m░[38;5;00;48;5;00m░[38;5;00;48;5;00m░[38;5;209;48;5;06m░[38;5;196;48;5;00m░[38;5;209;48;5;00m [38;5;209;48;5;06m░[38;5;216;48;5;06m [38;5;209;48;5;06m░[38;5;209;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
36
bundle/telescope.nvim-0.1.8/data/memes/planets/mercury
Normal file
36
bundle/telescope.nvim-0.1.8/data/memes/planets/mercury
Normal file
@ -0,0 +1,36 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;06;48;5;94m [38;5;216;48;5;1m [38;5;208;48;5;130m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;06;48;5;130m░[38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;215;48;5;130m░[38;5;208;48;5;130m [38;5;06;48;5;130m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;202;48;5;94m░[38;5;216;48;5;1m [38;5;216;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;1m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;172;48;5;172m░[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;215;48;5;130m░[38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;06;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;233m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;88m [38;5;209;48;5;1m [38;5;06;48;5;130m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;209;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;94m [38;5;216;48;5;88m [38;5;215;48;5;130m [38;5;215;48;5;130m░[38;5;209;48;5;1m [38;5;06;48;5;130m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m░[38;5;208;48;5;172m░[38;5;216;48;5;1m [38;5;180;48;5;130m░[38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;209;48;5;1m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;209;48;5;52m [38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;202;48;5;94m░[38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;216;48;5;94m [38;5;209;48;5;1m [38;5;208;48;5;172m░[38;5;06;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;232m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;216;48;5;94m [38;5;130;48;5;130m [38;5;209;48;5;52m [38;5;202;48;5;1m [38;5;208;48;5;130m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;208;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;130;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;216;48;5;1m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;94m [38;5;209;48;5;88m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;216;48;5;94m [38;5;209;48;5;1m [38;5;216;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;208;48;5;130m░[38;5;202;48;5;94m [38;5;172;48;5;172m░[38;5;216;48;5;94m [38;5;215;48;5;130m [38;5;06;48;5;130m░[38;5;208;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;172m░[38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;130;48;5;06m░[38;5;208;48;5;130m░[38;5;216;48;5;94m [38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;208;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;209;48;5;88m [38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;130;48;5;172m░[38;5;215;48;5;130m░[38;5;208;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;209;48;5;88m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;222;48;5;215m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;215;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;233m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;130;48;5;130m [38;5;216;48;5;1m [38;5;216;48;5;94m [38;5;215;48;5;130m░[38;5;215;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;172;48;5;214m░[38;5;215;48;5;130m [38;5;215;48;5;130m░[38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;06m░[38;5;172;48;5;172m░[38;5;222;48;5;178m░[38;5;172;48;5;214m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;130;48;5;06m░[38;5;130;48;5;06m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;172;48;5;178m░[38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;130;48;5;130m [38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;208;48;5;130m░[38;5;215;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;208;48;5;172m░[38;5;216;48;5;1m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;202;48;5;94m [38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;216;48;5;52m [38;5;06;48;5;94m░[38;5;209;48;5;1m [38;5;216;48;5;1m [38;5;130;48;5;130m░[38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;208;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;215;48;5;130m░[38;5;208;48;5;130m [38;5;130;48;5;06m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;216;48;5;94m [38;5;130;48;5;130m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;06m░[38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;215;48;5;130m░[38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;222;48;5;214m░[38;5;06;48;5;130m░[38;5;216;48;5;88m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;130m [38;5;202;48;5;1m [38;5;216;48;5;88m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;172;48;5;130m░[38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;216;48;5;52m [38;5;52;48;5;52m [38;5;216;48;5;52m [38;5;216;48;5;52m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;209;48;5;52m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;215;48;5;130m░[38;5;130;48;5;130m [38;5;208;48;5;130m░[38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;130;48;5;130m [38;5;215;48;5;130m░[38;5;130;48;5;130m [38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;208;48;5;130m [38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;06m░[38;5;222;48;5;178m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;179;48;5;178m░[38;5;130;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;130m [38;5;215;48;5;130m░[38;5;209;48;5;52m [38;5;202;48;5;94m░[38;5;209;48;5;1m [38;5;216;48;5;52m [38;5;208;48;5;130m░[38;5;130;48;5;130m [38;5;202;48;5;94m [38;5;172;48;5;215m░[38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;06m░[38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;222;48;5;215m░[38;5;172;48;5;172m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;94m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;52m [38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;06;48;5;130m░[38;5;215;48;5;130m░[38;5;202;48;5;94m░[38;5;216;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;216;48;5;52m [38;5;179;48;5;178m░[38;5;209;48;5;52m [38;5;216;48;5;88m [38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;172;48;5;214m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;209;48;5;1m [38;5;215;48;5;130m░[38;5;06;48;5;94m [38;5;130;48;5;130m░[38;5;202;48;5;94m [38;5;130;48;5;172m░[38;5;94;48;5;221m [38;5;222;48;5;214m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;179;48;5;178m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;216;48;5;88m [38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;06;48;5;130m░[38;5;209;48;5;52m [38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;1m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;94m░[38;5;209;48;5;232m [38;5;216;48;5;232m [38;5;214;48;5;232m [38;5;209;48;5;52m [38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;216;48;5;52m [38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;06m░[38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;130m [38;5;172;48;5;172m░[38;5;221;48;5;221m [38;5;130;48;5;130m░[38;5;214;48;5;215m░[38;5;222;48;5;214m░[38;5;222;48;5;215m░[38;5;172;48;5;178m░[38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;172;48;5;172m░[38;5;179;48;5;172m░[38;5;214;48;5;215m░[38;5;94;48;5;221m [38;5;94;48;5;221m [38;5;222;48;5;178m░[38;5;172;48;5;215m [38;5;215;48;5;130m [38;5;172;48;5;172m░[38;5;06;48;5;130m [38;5;172;48;5;136m░[38;5;222;48;5;215m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;215;48;5;130m [38;5;202;48;5;130m [38;5;209;48;5;52m [38;5;130;48;5;172m░[38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;215;48;5;130m░[38;5;06;48;5;130m░[38;5;130;48;5;172m░[38;5;202;48;5;94m [38;5;208;48;5;130m░[38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;202;48;5;52m [38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;130m [38;5;208;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;208;48;5;130m░[38;5;208;48;5;130m░[38;5;208;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m░[38;5;208;48;5;130m [38;5;202;48;5;94m [38;5;130;48;5;130m [38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;94;48;5;221m [38;5;221;48;5;221m [38;5;136;48;5;221m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;215m░[38;5;222;48;5;215m░[38;5;222;48;5;178m░[38;5;130;48;5;172m░[38;5;130;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;215m░[38;5;172;48;5;172m░[38;5;214;48;5;215m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;222;48;5;215m░[38;5;172;48;5;136m░[38;5;172;48;5;172m░[38;5;214;48;5;215m░[38;5;222;48;5;215m░[38;5;94;48;5;221m [38;5;130;48;5;172m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;208;48;5;130m░[38;5;216;48;5;88m [38;5;06;48;5;94m░[38;5;209;48;5;1m [38;5;215;48;5;130m [38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;208;48;5;130m [38;5;130;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;208;48;5;130m [38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;208;48;5;130m [38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;94;48;5;221m [38;5;172;48;5;172m░[38;5;221;48;5;221m [38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;06m░[38;5;215;48;5;130m░[38;5;130;48;5;130m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;172;48;5;215m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;214;48;5;221m [38;5;94;48;5;215m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;222;48;5;172m░[38;5;179;48;5;178m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;178m░[38;5;06;48;5;130m [38;5;202;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;208;48;5;130m░[38;5;222;48;5;178m░[38;5;215;48;5;130m░[38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;215;48;5;130m░[38;5;130;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;215;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;06m░[38;5;172;48;5;178m░[38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;208;48;5;130m░[38;5;208;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;222;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m [38;5;208;48;5;130m░[38;5;06;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;130m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;178m░[38;5;220;48;5;222m [38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;179;48;5;178m░[38;5;221;48;5;221m [38;5;222;48;5;178m░[38;5;130;48;5;130m [38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;222;48;5;214m░[38;5;222;48;5;215m [38;5;94;48;5;215m░[38;5;214;48;5;215m [38;5;221;48;5;221m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;179;48;5;178m░[38;5;222;48;5;178m░[38;5;172;48;5;172m░[38;5;222;48;5;178m░[38;5;208;48;5;130m [38;5;130;48;5;130m [38;5;202;48;5;1m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;215;48;5;130m [38;5;215;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;94m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;215m░[38;5;130;48;5;130m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;208;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;06m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;214m░[38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;172;48;5;172m░[38;5;172;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;94m [38;5;94;48;5;221m [38;5;214;48;5;215m░[38;5;94;48;5;221m [38;5;221;48;5;221m [38;5;214;48;5;221m [38;5;172;48;5;172m░[38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;202;48;5;94m [38;5;172;48;5;172m░[38;5;222;48;5;178m░[38;5;172;48;5;172m░[38;5;222;48;5;215m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;214;48;5;178m░[38;5;179;48;5;178m░[38;5;222;48;5;178m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;52;48;5;52m [38;5;202;48;5;94m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;172;48;5;178m░[38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;172;48;5;215m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;208;48;5;130m [38;5;172;48;5;178m░[38;5;222;48;5;214m░[38;5;172;48;5;172m░[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;216;48;5;88m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;130;48;5;06m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;130;48;5;130m [38;5;130;48;5;130m [38;5;06;48;5;94m [38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;202;48;5;94m [38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;202;48;5;94m [38;5;215;48;5;130m░[38;5;216;48;5;94m [38;5;172;48;5;172m░[38;5;172;48;5;136m░[38;5;130;48;5;130m [38;5;222;48;5;215m░[38;5;94;48;5;221m░[38;5;220;48;5;228m [38;5;228;48;5;228m [38;5;214;48;5;215m░[38;5;222;48;5;178m░[38;5;172;48;5;215m░[38;5;222;48;5;214m░[38;5;222;48;5;214m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;222;48;5;178m░[38;5;172;48;5;172m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;172;48;5;130m░[38;5;172;48;5;215m░[38;5;06;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;130;48;5;06m░[38;5;172;48;5;172m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;214;48;5;179m░[38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;06m░[38;5;215;48;5;130m░[38;5;130;48;5;172m░[38;5;179;48;5;178m░[38;5;222;48;5;178m░[38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;222;48;5;178m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;130m [38;5;216;48;5;94m░[38;5;216;48;5;1m [38;5;06;48;5;130m [38;5;130;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;06;48;5;130m░[38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;130;48;5;06m░[38;5;216;48;5;88m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;222;48;5;215m░[38;5;178;48;5;221m [38;5;179;48;5;178m░[38;5;94;48;5;221m░[38;5;179;48;5;178m░[38;5;221;48;5;221m [38;5;178;48;5;221m [38;5;220;48;5;228m [38;5;178;48;5;222m [38;5;94;48;5;221m [38;5;222;48;5;215m░[38;5;130;48;5;130m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;179;48;5;172m░[38;5;222;48;5;214m░[38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;172m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;06;48;5;130m░[38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;179;48;5;172m░[38;5;130;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;220;48;5;228m [38;5;222;48;5;178m░[38;5;222;48;5;215m░[38;5;220;48;5;222m [38;5;220;48;5;222m [38;5;222;48;5;214m░[38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;222;48;5;214m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;130m░[38;5;130;48;5;130m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;06m░[38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;94m [38;5;06;48;5;130m [38;5;130;48;5;06m░[38;5;214;48;5;178m░[38;5;228;48;5;228m [38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;222;48;5;215m░[38;5;179;48;5;172m░[38;5;214;48;5;214m░[38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;214;48;5;221m [38;5;172;48;5;214m░[38;5;222;48;5;215m░[38;5;214;48;5;215m░[38;5;222;48;5;214m░[38;5;172;48;5;178m░[38;5;130;48;5;172m░[38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;222;48;5;178m░[38;5;130;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;214;48;5;215m░[38;5;130;48;5;130m [38;5;222;48;5;178m░[38;5;215;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;214;48;5;221m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;178m░[38;5;221;48;5;221m [38;5;136;48;5;221m [38;5;220;48;5;228m [38;5;221;48;5;221m [38;5;178;48;5;221m [38;5;136;48;5;221m [38;5;221;48;5;221m [38;5;214;48;5;214m░[38;5;172;48;5;215m░[38;5;222;48;5;215m░[38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;215;48;5;130m░[38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;172;48;5;172m░[38;5;222;48;5;215m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;216;48;5;94m [38;5;06;48;5;130m░[38;5;215;48;5;130m░[38;5;130;48;5;130m░[38;5;216;48;5;1m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;214;48;5;221m [38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;172;48;5;214m░[38;5;172;48;5;215m░[38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;172;48;5;172m░[38;5;222;48;5;214m░[38;5;94;48;5;221m░[38;5;179;48;5;178m░[38;5;214;48;5;215m░[38;5;222;48;5;172m░[38;5;172;48;5;172m░[38;5;222;48;5;178m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;215;48;5;130m░[38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;06;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;178;48;5;221m [38;5;172;48;5;178m░[38;5;130;48;5;130m░[38;5;172;48;5;178m░[38;5;222;48;5;178m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;94;48;5;221m [38;5;172;48;5;214m░[38;5;214;48;5;221m [38;5;220;48;5;228m [38;5;214;48;5;215m░[38;5;222;48;5;178m░[38;5;222;48;5;215m░[38;5;94;48;5;221m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m [38;5;222;48;5;215m░[38;5;06;48;5;130m [38;5;172;48;5;214m░[38;5;130;48;5;172m░[38;5;172;48;5;178m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;214;48;5;178m░[38;5;222;48;5;214m░[38;5;222;48;5;214m░[38;5;222;48;5;214m░[38;5;178;48;5;221m [38;5;94;48;5;215m░[38;5;208;48;5;130m [38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;214;48;5;215m░[38;5;136;48;5;221m [38;5;94;48;5;221m [38;5;94;48;5;215m░[38;5;208;48;5;130m░[38;5;130;48;5;172m░[38;5;06;48;5;94m [38;5;172;48;5;172m░[38;5;208;48;5;130m [38;5;130;48;5;130m [38;5;222;48;5;215m░[38;5;172;48;5;214m░[38;5;130;48;5;06m░[38;5;172;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;214;48;5;215m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;216;48;5;94m [38;5;215;48;5;130m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;208;48;5;172m░[38;5;172;48;5;178m░[38;5;130;48;5;130m░[38;5;202;48;5;94m [38;5;208;48;5;130m [38;5;222;48;5;136m░[38;5;172;48;5;172m░[38;5;136;48;5;221m [38;5;179;48;5;178m░[38;5;94;48;5;179m░[38;5;214;48;5;221m [38;5;94;48;5;221m [38;5;222;48;5;214m░[38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;214;48;5;215m [38;5;222;48;5;215m░[38;5;130;48;5;172m░[38;5;179;48;5;178m░[38;5;222;48;5;214m░[38;5;172;48;5;214m░[38;5;172;48;5;215m░[38;5;179;48;5;178m░[38;5;214;48;5;214m░[38;5;222;48;5;215m░[38;5;222;48;5;178m░[38;5;130;48;5;172m░[38;5;216;48;5;88m [38;5;202;48;5;130m [38;5;216;48;5;88m [38;5;222;48;5;214m░[38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;214;48;5;178m░[38;5;172;48;5;172m░[38;5;214;48;5;215m░[38;5;94;48;5;221m [38;5;222;48;5;215m░[38;5;130;48;5;172m░[38;5;221;48;5;221m [38;5;172;48;5;172m░[38;5;214;48;5;221m [38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;215;48;5;130m░[38;5;216;48;5;52m [38;5;216;48;5;1m [38;5;06;48;5;94m [38;5;216;48;5;94m [38;5;208;48;5;130m░[38;5;222;48;5;215m [38;5;179;48;5;178m░[38;5;130;48;5;172m░[38;5;130;48;5;130m [38;5;172;48;5;178m░[38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;222;48;5;214m░[38;5;130;48;5;172m░[38;5;222;48;5;178m░[38;5;215;48;5;130m [38;5;202;48;5;130m░[38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;208;48;5;06m░[38;5;208;48;5;130m [38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;202;48;5;94m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;222;48;5;215m░[38;5;172;48;5;172m░[38;5;172;48;5;215m [38;5;221;48;5;221m [38;5;222;48;5;215m░[38;5;222;48;5;214m░[38;5;94;48;5;221m [38;5;222;48;5;215m░[38;5;136;48;5;221m [38;5;220;48;5;222m [38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;130;48;5;06m░[38;5;215;48;5;130m░[38;5;222;48;5;214m░[38;5;179;48;5;178m░[38;5;222;48;5;215m░[38;5;172;48;5;178m░[38;5;222;48;5;215m░[38;5;222;48;5;214m░[38;5;214;48;5;215m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;179;48;5;178m░[38;5;130;48;5;06m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;172;48;5;215m░[38;5;214;48;5;214m░[38;5;222;48;5;215m░[38;5;222;48;5;178m░[38;5;214;48;5;215m░[38;5;179;48;5;172m░[38;5;221;48;5;221m [38;5;172;48;5;172m░[38;5;172;48;5;215m [38;5;215;48;5;130m [38;5;130;48;5;130m░[38;5;214;48;5;215m░[38;5;222;48;5;178m░[38;5;94;48;5;221m░[38;5;130;48;5;130m [38;5;216;48;5;88m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;202;48;5;1m [38;5;209;48;5;52m [38;5;202;48;5;94m [38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m░[38;5;172;48;5;214m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;172;48;5;130m [38;5;130;48;5;130m░[38;5;179;48;5;172m░[38;5;172;48;5;172m░[38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;222;48;5;172m░[38;5;202;48;5;94m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;94;48;5;221m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;222;48;5;215m░[38;5;94;48;5;221m [38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;06;48;5;130m [38;5;179;48;5;178m░[38;5;214;48;5;215m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;222;48;5;172m░[38;5;221;48;5;221m [38;5;172;48;5;214m░[38;5;222;48;5;215m░[38;5;222;48;5;178m░[38;5;94;48;5;215m░[38;5;222;48;5;215m░[38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;06;48;5;94m [38;5;06;48;5;130m░[38;5;172;48;5;172m░[38;5;222;48;5;215m [38;5;222;48;5;178m░[38;5;222;48;5;172m░[38;5;130;48;5;172m░[38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;216;48;5;94m [38;5;130;48;5;172m░[38;5;209;48;5;1m [38;5;202;48;5;1m [38;5;06;48;5;130m░[38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;130;48;5;130m░[38;5;06;48;5;130m░[38;5;215;48;5;130m [38;5;215;48;5;130m░[38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;130;48;5;06m░[38;5;172;48;5;172m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;215;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;52m [38;5;202;48;5;94m [38;5;208;48;5;130m░[38;5;208;48;5;130m░[38;5;172;48;5;172m░[38;5;214;48;5;215m░[38;5;179;48;5;178m░[38;5;172;48;5;172m░[38;5;222;48;5;215m░[38;5;214;48;5;215m░[38;5;179;48;5;178m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;06m░[38;5;208;48;5;130m░[38;5;208;48;5;130m░[38;5;130;48;5;130m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;222;48;5;214m░[38;5;172;48;5;172m░[38;5;179;48;5;178m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;06m░[38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;215;48;5;130m [38;5;130;48;5;172m░[38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;88m [38;5;172;48;5;172m░[38;5;216;48;5;52m [38;5;209;48;5;1m [38;5;06;48;5;94m░[38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;216;48;5;94m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;222;48;5;215m░[38;5;06;48;5;130m [38;5;208;48;5;130m [38;5;172;48;5;136m░[38;5;172;48;5;130m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;06;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;94m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;215;48;5;130m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;222;48;5;215m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;222;48;5;215m░[38;5;130;48;5;130m░[38;5;222;48;5;172m░[38;5;222;48;5;178m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;209;48;5;52m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;130;48;5;172m░[38;5;202;48;5;94m [38;5;130;48;5;130m░[38;5;215;48;5;130m [38;5;06;48;5;130m░[38;5;216;48;5;88m [38;5;202;48;5;130m [38;5;216;48;5;52m [38;5;209;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;06;48;5;94m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;130;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;208;48;5;130m░[38;5;208;48;5;130m [38;5;130;48;5;130m░[38;5;202;48;5;94m [38;5;215;48;5;130m░[38;5;216;48;5;88m [38;5;180;48;5;173m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;52m [38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;172;48;5;214m░[38;5;172;48;5;172m░[38;5;172;48;5;172m░[38;5;179;48;5;172m░[38;5;172;48;5;172m░[38;5;222;48;5;214m░[38;5;172;48;5;172m░[38;5;172;48;5;215m░[38;5;172;48;5;172m░[38;5;130;48;5;130m░[38;5;06;48;5;130m░[38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;215;48;5;06m░[38;5;209;48;5;1m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;06;48;5;130m░[38;5;208;48;5;130m░[38;5;216;48;5;1m [38;5;202;48;5;130m [38;5;216;48;5;88m [38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;88m [38;5;215;48;5;130m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;209;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;1m [38;5;216;48;5;94m [38;5;06;48;5;130m░[38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;130m░[38;5;130;48;5;06m░[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;216;48;5;1m [38;5;130;48;5;130m [38;5;215;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;215;48;5;130m [38;5;130;48;5;130m [38;5;208;48;5;130m [38;5;130;48;5;172m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;130;48;5;130m░[38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;172;48;5;172m░[38;5;208;48;5;130m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;208;48;5;130m░[38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;209;48;5;1m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;216;48;5;1m [38;5;202;48;5;94m░[38;5;216;48;5;94m [38;5;209;48;5;1m [38;5;06;48;5;130m░[38;5;202;48;5;94m░[38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;209;48;5;52m [38;5;216;48;5;52m [38;5;209;48;5;1m [38;5;216;48;5;94m [38;5;209;48;5;1m [38;5;202;48;5;94m░[38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;130;48;5;130m░[38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;209;48;5;1m [38;5;208;48;5;130m░[38;5;172;48;5;172m░[38;5;130;48;5;172m░[38;5;06;48;5;130m░[38;5;215;48;5;130m░[38;5;130;48;5;172m░[38;5;130;48;5;130m░[38;5;172;48;5;172m░[38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;06;48;5;94m [38;5;216;48;5;1m [38;5;216;48;5;88m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;172;48;5;172m░[38;5;130;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;216;48;5;1m [38;5;216;48;5;52m [38;5;209;48;5;1m [38;5;209;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;88m [38;5;215;48;5;130m░[38;5;208;48;5;130m░[38;5;216;48;5;1m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;130;48;5;130m░[38;5;208;48;5;130m░[38;5;208;48;5;172m░[38;5;130;48;5;06m░[38;5;130;48;5;172m░[38;5;172;48;5;172m░[38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;202;48;5;94m░[38;5;208;48;5;130m░[38;5;130;48;5;06m░[38;5;216;48;5;1m [38;5;209;48;5;88m [38;5;209;48;5;52m [38;5;216;48;5;88m [38;5;202;48;5;94m░[38;5;215;48;5;130m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;216;48;5;52m [38;5;209;48;5;52m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;209;48;5;52m [38;5;209;48;5;1m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;94m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;209;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;216;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;209;48;5;52m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;172;48;5;172m░[38;5;215;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;216;48;5;88m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;94m░[38;5;06;48;5;130m░[38;5;06;48;5;130m░[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;216;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;209;48;5;1m [38;5;209;48;5;52m [38;5;216;48;5;1m [38;5;216;48;5;88m [38;5;216;48;5;94m [38;5;202;48;5;94m░[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m░[38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;216;48;5;94m [38;5;202;48;5;94m [38;5;209;48;5;1m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;216;48;5;1m [38;5;216;48;5;88m [38;5;202;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;216;48;5;52m [38;5;216;48;5;52m [38;5;216;48;5;1m [38;5;202;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;216;48;5;1m [38;5;202;48;5;94m [38;5;06;48;5;94m [38;5;208;48;5;06m░[38;5;06;48;5;130m [38;5;216;48;5;1m [38;5;06;48;5;130m [38;5;202;48;5;94m [38;5;216;48;5;88m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;202;48;5;94m [38;5;216;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;202;48;5;94m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;216;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;216;48;5;1m [38;5;202;48;5;94m [38;5;172;48;5;172m░[38;5;202;48;5;94m [38;5;216;48;5;1m [38;5;209;48;5;1m [38;5;209;48;5;1m [38;5;06;48;5;130m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;52m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;202;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;215;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;06;48;5;130m [38;5;215;48;5;130m [38;5;216;48;5;94m [38;5;216;48;5;88m [38;5;202;48;5;94m [38;5;06;48;5;130m [38;5;06;48;5;130m░[38;5;209;48;5;233m [38;5;209;48;5;233m [38;5;215;48;5;130m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
35
bundle/telescope.nvim-0.1.8/data/memes/planets/moon
Normal file
35
bundle/telescope.nvim-0.1.8/data/memes/planets/moon
Normal file
@ -0,0 +1,35 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;239;48;5;239m▓[38;5;247;48;5;246m▓[38;5;248;48;5;248m▓[38;5;243;48;5;243m▓[38;5;239;48;5;239m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;238;48;5;238m▓[38;5;248;48;5;248m▓[38;5;250;48;5;250m▓[38;5;251;48;5;251m▓[38;5;251;48;5;251m▓[38;5;145;48;5;145m▓[38;5;250;48;5;250m▓[38;5;248;48;5;248m▓[38;5;251;48;5;251m▓[38;5;251;48;5;251m▓[38;5;188;48;5;252m▓[38;5;252;48;5;252m▓[38;5;252;48;5;251m▓[38;5;7;48;5;250m▓[38;5;250;48;5;250m▓[38;5;247;48;5;247m▓[38;5;7;48;5;250m▓[38;5;7;48;5;7m▓[38;5;234;48;5;234m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;248;48;5;248m▓[38;5;240;48;5;240m▓[38;5;239;48;5;239m▓[38;5;243;48;5;243m▓[38;5;241;48;5;240m▓[38;5;240;48;5;240m▓[38;5;240;48;5;239m▓[38;5;240;48;5;240m▓[38;5;243;48;5;243m▓[38;5;242;48;5;241m▓[38;5;240;48;5;239m▓[38;5;240;48;5;240m▓[38;5;239;48;5;239m▓[38;5;240;48;5;240m▓[38;5;243;48;5;243m▓[38;5;248;48;5;248m▓[38;5;247;48;5;246m▓[38;5;247;48;5;247m▓[38;5;102;48;5;102m▓[38;5;249;48;5;145m▓[38;5;247;48;5;247m▓[38;5;250;48;5;250m▓[38;5;254;48;5;254m▓[38;5;252;48;5;252m▓[38;5;231;48;5;231m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;245;48;5;245m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;243;48;5;243m▓[38;5;246;48;5;246m▓[38;5;247;48;5;247m▓[38;5;247;48;5;247m▓[38;5;102;48;5;102m▓[38;5;245;48;5;245m▓[38;5;239;48;5;239m▓[38;5;237;48;5;237m▓[38;5;245;48;5;245m▓[38;5;237;48;5;237m▓[38;5;244;48;5;244m▓[38;5;247;48;5;247m▓[38;5;244;48;5;244m▓[38;5;242;48;5;241m▓[38;5;242;48;5;241m▓[38;5;241;48;5;59m▓[38;5;241;48;5;59m▓[38;5;240;48;5;240m▓[38;5;244;48;5;244m▓[38;5;250;48;5;250m▓[38;5;251;48;5;251m▓[38;5;7;48;5;7m▓[38;5;249;48;5;249m▓[38;5;250;48;5;250m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;247;48;5;247m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;237;48;5;236m▓[38;5;235;48;5;235m▓[38;5;237;48;5;237m▓[38;5;240;48;5;240m▓[38;5;241;48;5;59m▓[38;5;240;48;5;240m▓[38;5;237;48;5;237m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;238;48;5;238m▓[38;5;238;48;5;238m▓[38;5;244;48;5;244m▓[38;5;247;48;5;247m▓[38;5;244;48;5;243m▓[38;5;243;48;5;242m▓[38;5;102;48;5;102m▓[38;5;246;48;5;246m▓[38;5;244;48;5;244m▓[38;5;244;48;5;244m▓[38;5;246;48;5;246m▓[38;5;249;48;5;145m▓[38;5;7;48;5;250m▓[38;5;244;48;5;244m▓[38;5;250;48;5;249m▓[38;5;250;48;5;250m▓[38;5;254;48;5;254m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;238;48;5;238m▓[38;5;238;48;5;238m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;235;48;5;235m▓[38;5;237;48;5;237m▓[38;5;236;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;238;48;5;238m▓[38;5;238;48;5;238m▓[38;5;241;48;5;241m▓[38;5;244;48;5;243m▓[38;5;244;48;5;243m▓[38;5;249;48;5;249m▓[38;5;242;48;5;242m▓[38;5;248;48;5;248m▓[38;5;244;48;5;244m▓[38;5;242;48;5;241m▓[38;5;242;48;5;241m▓[38;5;243;48;5;243m▓[38;5;102;48;5;102m▓[38;5;247;48;5;247m▓[38;5;249;48;5;249m▓[38;5;7;48;5;7m▓[38;5;250;48;5;250m▓[38;5;249;48;5;249m▓[38;5;252;48;5;252m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;238;48;5;238m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;238;48;5;238m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;242;48;5;241m▓[38;5;241;48;5;59m▓[38;5;242;48;5;241m▓[38;5;241;48;5;59m▓[38;5;238;48;5;237m▓[38;5;237;48;5;237m▓[38;5;239;48;5;239m▓[38;5;239;48;5;239m▓[38;5;237;48;5;237m▓[38;5;240;48;5;240m▓[38;5;241;48;5;241m▓[38;5;243;48;5;242m▓[38;5;7;48;5;7m▓[38;5;247;48;5;247m▓[38;5;7;48;5;7m▓[38;5;248;48;5;248m▓[38;5;249;48;5;145m▓[38;5;252;48;5;252m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;245;48;5;245m▓[38;5;236;48;5;236m▓[38;5;234;48;5;234m▓[38;5;234;48;5;234m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;237;48;5;236m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;237;48;5;236m▓[38;5;237;48;5;237m▓[38;5;240;48;5;239m▓[38;5;240;48;5;240m▓[38;5;239;48;5;239m▓[38;5;240;48;5;240m▓[38;5;240;48;5;240m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;237;48;5;236m▓[38;5;237;48;5;236m▓[38;5;236;48;5;235m▓[38;5;241;48;5;241m▓[38;5;247;48;5;246m▓[38;5;145;48;5;145m▓[38;5;252;48;5;252m▓[38;5;252;48;5;252m▓[38;5;145;48;5;248m▓[38;5;249;48;5;249m▓[38;5;250;48;5;250m▓[38;5;250;48;5;249m▓[38;5;253;48;5;188m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;245;48;5;245m▓[38;5;245;48;5;245m▓[38;5;235;48;5;235m▓[38;5;234;48;5;234m▓[38;5;234;48;5;234m▓[38;5;235;48;5;234m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;240;48;5;239m▓[38;5;238;48;5;238m▓[38;5;238;48;5;237m▓[38;5;238;48;5;238m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;236;48;5;235m▓[38;5;236;48;5;235m▓[38;5;242;48;5;242m▓[38;5;245;48;5;245m▓[38;5;241;48;5;59m▓[38;5;237;48;5;236m▓[38;5;235;48;5;235m▓[38;5;236;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;243;48;5;242m▓[38;5;245;48;5;245m▓[38;5;247;48;5;247m▓[38;5;244;48;5;244m▓[38;5;243;48;5;243m▓[38;5;7;48;5;250m▓[38;5;238;48;5;238m▓[38;5;102;48;5;102m▓[38;5;250;48;5;249m▓[38;5;236;48;5;236m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;249;48;5;145m▓[38;5;248;48;5;248m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;234m▓[38;5;234;48;5;234m▓[38;5;238;48;5;238m▓[38;5;242;48;5;241m▓[38;5;237;48;5;237m▓[38;5;239;48;5;238m▓[38;5;242;48;5;241m▓[38;5;243;48;5;243m▓[38;5;245;48;5;245m▓[38;5;242;48;5;242m▓[38;5;240;48;5;240m▓[38;5;240;48;5;240m▓[38;5;238;48;5;238m▓[38;5;237;48;5;237m▓[38;5;238;48;5;238m▓[38;5;238;48;5;238m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;238;48;5;238m▓[38;5;239;48;5;238m▓[38;5;243;48;5;243m▓[38;5;237;48;5;236m▓[38;5;234;48;5;234m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;239;48;5;239m▓[38;5;239;48;5;239m▓[38;5;237;48;5;236m▓[38;5;252;48;5;252m▓[38;5;253;48;5;253m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;247;48;5;246m▓[38;5;246;48;5;246m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;243;48;5;243m▓[38;5;102;48;5;102m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;234;48;5;234m▓[38;5;235;48;5;234m▓[38;5;237;48;5;237m▓[38;5;239;48;5;239m▓[38;5;237;48;5;237m▓[38;5;238;48;5;237m▓[38;5;240;48;5;240m▓[38;5;238;48;5;238m▓[38;5;238;48;5;238m▓[38;5;239;48;5;239m▓[38;5;237;48;5;237m▓[38;5;238;48;5;238m▓[38;5;235;48;5;235m▓[38;5;238;48;5;237m▓[38;5;241;48;5;59m▓[38;5;242;48;5;241m▓[38;5;240;48;5;240m▓[38;5;236;48;5;235m▓[38;5;235;48;5;235m▓[38;5;238;48;5;238m▓[38;5;242;48;5;242m▓[38;5;237;48;5;237m▓[38;5;234;48;5;234m▓[38;5;234;48;5;234m▓[38;5;235;48;5;235m▓[38;5;236;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;234m▓[38;5;234;48;5;234m▓[38;5;242;48;5;241m▓[38;5;7;48;5;250m▓[38;5;244;48;5;244m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;243;48;5;243m▓[38;5;250;48;5;249m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;248;48;5;247m▓[38;5;242;48;5;241m▓[38;5;238;48;5;238m▓[38;5;234;48;5;234m▓[38;5;236;48;5;236m▓[38;5;234;48;5;234m▓[38;5;235;48;5;234m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;241;48;5;59m▓[38;5;243;48;5;243m▓[38;5;239;48;5;238m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;234m▓[38;5;239;48;5;239m▓[38;5;243;48;5;242m▓[38;5;246;48;5;246m▓[38;5;246;48;5;246m▓[38;5;145;48;5;248m▓[38;5;247;48;5;247m▓[38;5;244;48;5;244m▓[38;5;238;48;5;238m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;234m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;239;48;5;239m▓[38;5;239;48;5;239m▓[38;5;245;48;5;245m▓[38;5;247;48;5;247m▓[38;5;248;48;5;248m▓[38;5;238;48;5;238m▓[38;5;250;48;5;250m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;145;48;5;248m▓[38;5;248;48;5;248m▓[38;5;102;48;5;102m▓[38;5;235;48;5;234m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;234m▓[38;5;238;48;5;238m▓[38;5;236;48;5;235m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;240;48;5;240m▓[38;5;241;48;5;59m▓[38;5;238;48;5;238m▓[38;5;241;48;5;59m▓[38;5;242;48;5;241m▓[38;5;243;48;5;243m▓[38;5;240;48;5;240m▓[38;5;243;48;5;242m▓[38;5;249;48;5;145m▓[38;5;247;48;5;247m▓[38;5;145;48;5;248m▓[38;5;248;48;5;248m▓[38;5;247;48;5;247m▓[38;5;102;48;5;102m▓[38;5;237;48;5;237m▓[38;5;236;48;5;235m▓[38;5;236;48;5;235m▓[38;5;236;48;5;236m▓[38;5;102;48;5;102m▓[38;5;236;48;5;236m▓[38;5;239;48;5;238m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;242;48;5;241m▓[38;5;102;48;5;102m▓[38;5;243;48;5;242m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;245;48;5;245m▓[38;5;247;48;5;247m▓[38;5;245;48;5;245m▓[38;5;243;48;5;243m▓[38;5;237;48;5;237m▓[38;5;240;48;5;239m▓[38;5;241;48;5;59m▓[38;5;236;48;5;236m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;240;48;5;240m▓[38;5;235;48;5;235m▓[38;5;238;48;5;238m▓[38;5;244;48;5;243m▓[38;5;247;48;5;247m▓[38;5;246;48;5;246m▓[38;5;247;48;5;247m▓[38;5;248;48;5;248m▓[38;5;7;48;5;7m▓[38;5;7;48;5;7m▓[38;5;247;48;5;247m▓[38;5;7;48;5;250m▓[38;5;254;48;5;254m▓[38;5;145;48;5;145m▓[38;5;240;48;5;240m▓[38;5;238;48;5;238m▓[38;5;246;48;5;246m▓[38;5;248;48;5;248m▓[38;5;244;48;5;244m▓[38;5;102;48;5;102m▓[38;5;236;48;5;236m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;239;48;5;239m▓[38;5;244;48;5;244m▓[38;5;244;48;5;244m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;248;48;5;248m▓[38;5;254;48;5;254m▓[38;5;7;48;5;250m▓[38;5;245;48;5;245m▓[38;5;247;48;5;247m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;244;48;5;244m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;235;48;5;234m▓[38;5;243;48;5;243m▓[38;5;237;48;5;237m▓[38;5;244;48;5;244m▓[38;5;244;48;5;244m▓[38;5;247;48;5;247m▓[38;5;246;48;5;246m▓[38;5;246;48;5;246m▓[38;5;248;48;5;248m▓[38;5;250;48;5;250m▓[38;5;251;48;5;251m▓[38;5;188;48;5;188m▓[38;5;252;48;5;252m▓[38;5;251;48;5;251m▓[38;5;242;48;5;241m▓[38;5;243;48;5;242m▓[38;5;245;48;5;245m▓[38;5;249;48;5;249m▓[38;5;244;48;5;244m▓[38;5;237;48;5;237m▓[38;5;237;48;5;237m▓[38;5;240;48;5;240m▓[38;5;251;48;5;251m▓[38;5;247;48;5;247m▓[38;5;145;48;5;248m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;247;48;5;247m▓[38;5;250;48;5;249m▓[38;5;7;48;5;250m▓[38;5;244;48;5;244m▓[38;5;238;48;5;238m▓[38;5;235;48;5;235m▓[38;5;235;48;5;235m▓[38;5;239;48;5;239m▓[38;5;238;48;5;238m▓[38;5;239;48;5;239m▓[38;5;238;48;5;238m▓[38;5;238;48;5;237m▓[38;5;236;48;5;236m▓[38;5;237;48;5;237m▓[38;5;239;48;5;239m▓[38;5;246;48;5;246m▓[38;5;247;48;5;247m▓[38;5;245;48;5;245m▓[38;5;249;48;5;249m▓[38;5;247;48;5;247m▓[38;5;248;48;5;248m▓[38;5;248;48;5;247m▓[38;5;249;48;5;145m▓[38;5;249;48;5;249m▓[38;5;249;48;5;249m▓[38;5;251;48;5;251m▓[38;5;188;48;5;188m▓[38;5;242;48;5;242m▓[38;5;240;48;5;240m▓[38;5;241;48;5;59m▓[38;5;248;48;5;248m▓[38;5;246;48;5;246m▓[38;5;244;48;5;244m▓[38;5;239;48;5;239m▓[38;5;245;48;5;245m▓[38;5;244;48;5;244m▓[38;5;249;48;5;249m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;247;48;5;246m▓[38;5;7;48;5;250m▓[38;5;247;48;5;247m▓[38;5;249;48;5;249m▓[38;5;244;48;5;244m▓[38;5;243;48;5;243m▓[38;5;102;48;5;102m▓[38;5;238;48;5;238m▓[38;5;243;48;5;242m▓[38;5;241;48;5;59m▓[38;5;237;48;5;236m▓[38;5;237;48;5;237m▓[38;5;236;48;5;236m▓[38;5;238;48;5;238m▓[38;5;247;48;5;247m▓[38;5;102;48;5;102m▓[38;5;252;48;5;252m▓[38;5;248;48;5;248m▓[38;5;247;48;5;247m▓[38;5;7;48;5;7m▓[38;5;252;48;5;252m▓[38;5;252;48;5;252m▓[38;5;247;48;5;247m▓[38;5;248;48;5;247m▓[38;5;7;48;5;7m▓[38;5;251;48;5;251m▓[38;5;244;48;5;244m▓[38;5;145;48;5;145m▓[38;5;243;48;5;243m▓[38;5;249;48;5;249m▓[38;5;247;48;5;247m▓[38;5;245;48;5;245m▓[38;5;7;48;5;7m▓[38;5;246;48;5;246m▓[38;5;247;48;5;247m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;251;48;5;251m▓[38;5;248;48;5;248m▓[38;5;247;48;5;247m▓[38;5;248;48;5;248m▓[38;5;244;48;5;244m▓[38;5;247;48;5;246m▓[38;5;247;48;5;247m▓[38;5;248;48;5;248m▓[38;5;248;48;5;248m▓[38;5;188;48;5;188m▓[38;5;250;48;5;250m▓[38;5;251;48;5;251m▓[38;5;254;48;5;254m▓[38;5;255;48;5;255m▓[38;5;253;48;5;188m▓[38;5;251;48;5;251m▓[38;5;251;48;5;251m▓[38;5;252;48;5;252m▓[38;5;145;48;5;248m▓[38;5;248;48;5;248m▓[38;5;252;48;5;252m▓[38;5;249;48;5;249m▓[38;5;251;48;5;251m▓[38;5;252;48;5;251m▓[38;5;7;48;5;7m▓[38;5;249;48;5;249m▓[38;5;248;48;5;247m▓[38;5;249;48;5;145m▓[38;5;253;48;5;253m▓[38;5;254;48;5;254m▓[38;5;251;48;5;251m▓[38;5;252;48;5;252m▓[38;5;7;48;5;7m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;248;48;5;248m▓[38;5;247;48;5;247m▓[38;5;244;48;5;244m▓[38;5;102;48;5;102m▓[38;5;7;48;5;7m▓[38;5;249;48;5;249m▓[38;5;249;48;5;249m▓[38;5;252;48;5;251m▓[38;5;253;48;5;188m▓[38;5;253;48;5;253m▓[38;5;253;48;5;253m▓[38;5;254;48;5;254m▓[38;5;254;48;5;254m▓[38;5;254;48;5;254m▓[38;5;254;48;5;254m▓[38;5;251;48;5;251m▓[38;5;249;48;5;249m▓[38;5;7;48;5;7m▓[38;5;249;48;5;249m▓[38;5;249;48;5;145m▓[38;5;249;48;5;249m▓[38;5;145;48;5;248m▓[38;5;251;48;5;251m▓[38;5;7;48;5;250m▓[38;5;7;48;5;7m▓[38;5;253;48;5;253m▓[38;5;253;48;5;253m▓[38;5;251;48;5;251m▓[38;5;145;48;5;248m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;188;48;5;252m▓[38;5;248;48;5;248m▓[38;5;245;48;5;245m▓[38;5;247;48;5;247m▓[38;5;248;48;5;248m▓[38;5;253;48;5;253m▓[38;5;251;48;5;251m▓[38;5;254;48;5;254m▓[38;5;252;48;5;252m▓[38;5;254;48;5;254m▓[38;5;254;48;5;254m▓[38;5;253;48;5;253m▓[38;5;7;48;5;7m▓[38;5;145;48;5;145m▓[38;5;251;48;5;251m▓[38;5;249;48;5;249m▓[38;5;7;48;5;250m▓[38;5;7;48;5;250m▓[38;5;7;48;5;7m▓[38;5;251;48;5;251m▓[38;5;254;48;5;254m▓[38;5;7;48;5;7m▓[38;5;248;48;5;248m▓[38;5;248;48;5;248m▓[38;5;241;48;5;59m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;235;48;5;235m▓[38;5;250;48;5;250m▓[38;5;7;48;5;250m▓[38;5;248;48;5;248m▓[38;5;254;48;5;254m▓[38;5;253;48;5;253m▓[38;5;249;48;5;249m▓[38;5;252;48;5;252m▓[38;5;249;48;5;249m▓[38;5;250;48;5;250m▓[38;5;7;48;5;7m▓[38;5;250;48;5;250m▓[38;5;7;48;5;7m▓[38;5;250;48;5;250m▓[38;5;250;48;5;250m▓[38;5;247;48;5;247m▓[38;5;249;48;5;249m▓[38;5;249;48;5;249m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
36
bundle/telescope.nvim-0.1.8/data/memes/planets/neptune
Normal file
36
bundle/telescope.nvim-0.1.8/data/memes/planets/neptune
Normal file
@ -0,0 +1,36 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;99;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;233m░[38;5;62;48;5;4m░[38;5;62;48;5;18m▒[38;5;62;48;5;19m▒[38;5;62;48;5;25m▒[38;5;62;48;5;25m░[38;5;62;48;5;19m░[38;5;62;48;5;25m░[38;5;62;48;5;25m▒[38;5;62;48;5;25m▒[38;5;62;48;5;19m░[38;5;62;48;5;25m░[38;5;62;48;5;19m▒[38;5;62;48;5;19m░[38;5;62;48;5;25m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;18m▒[38;5;62;48;5;25m▒[38;5;62;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;21;48;5;27m░[38;5;21;48;5;63m░[38;5;21;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;21;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m▒[38;5;62;48;5;25m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;17m [38;5;62;48;5;25m▒[38;5;62;48;5;26m▒[38;5;62;48;5;26m░[38;5;62;48;5;62m░[38;5;62;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;21;48;5;27m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;69;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;62;48;5;26m▒[38;5;62;48;5;26m░[38;5;62;48;5;26m▒[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;25m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;26m░[38;5;62;48;5;25m░[38;5;62;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;25m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;62;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;25m▒[38;5;62;48;5;19m░[38;5;62;48;5;19m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;62m░[38;5;62;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;19m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;21;48;5;62m░[38;5;69;48;5;26m░[38;5;62;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;233m [38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;62;48;5;25m▒[38;5;69;48;5;25m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;62;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;27m░[38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;62m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;62;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;27m░[38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;27;48;5;69m [38;5;27;48;5;69m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;62m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;19m░[38;5;69;48;5;19m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;24m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;27;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m░[38;5;69;48;5;62m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;234m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;4m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;62m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;27;48;5;69m [38;5;25;48;5;75m [38;5;45;48;5;123m [38;5;45;48;5;123m [38;5;123;48;5;123m [38;5;39;48;5;117m [38;5;111;48;5;69m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;62m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;63;48;5;63m [38;5;69;48;5;26m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;62;48;5;25m▒[38;5;62;48;5;18m▒[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;4m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;111;48;5;63m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;111;48;5;69m [38;5;111;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;4m░[38;5;69;48;5;24m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;69m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;63m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;24m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;18m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;111;48;5;233m [38;5;69;48;5;24m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m░[38;5;69;48;5;63m░[38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;18m░[38;5;62;48;5;24m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;4m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m░[38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;24m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;62m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;27m░[38;5;69;48;5;27m [38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;27m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;62m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;4m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;62m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;63m░[38;5;69;48;5;63m░[38;5;69;48;5;63m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;18m▒[38;5;69;48;5;24m▒[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;63m [38;5;69;48;5;27m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;25m░[38;5;69;48;5;25m▒[38;5;62;48;5;19m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;25m▒[38;5;69;48;5;19m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;111;48;5;234m░[38;5;69;48;5;4m░[38;5;69;48;5;24m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;69;48;5;25m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;233m [38;5;69;48;5;18m▒[38;5;69;48;5;24m░[38;5;69;48;5;18m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;62;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;69;48;5;19m░[38;5;62;48;5;19m░[38;5;69;48;5;19m░[38;5;62;48;5;19m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;69;48;5;17m [38;5;17;48;5;233m░[38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;4m░[38;5;69;48;5;18m▒[38;5;69;48;5;4m░[38;5;69;48;5;18m░[38;5;69;48;5;24m░[38;5;69;48;5;18m░[38;5;62;48;5;18m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;19m░[38;5;62;48;5;19m░[38;5;69;48;5;25m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;69;48;5;26m░[38;5;62;48;5;4m░[38;5;62;48;5;18m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;69;48;5;25m▒[38;5;69;48;5;19m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;62;48;5;25m░[38;5;69;48;5;19m░[38;5;69;48;5;19m░[38;5;69;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;4m▒[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m [38;5;69;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;62;48;5;4m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;69;48;5;18m░[38;5;62;48;5;18m▒[38;5;69;48;5;18m░[38;5;69;48;5;18m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;26m▒[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;69;48;5;26m░[38;5;69;48;5;26m░[38;5;62;48;5;26m░[38;5;69;48;5;26m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;17m░[38;5;17;48;5;17m [38;5;17;48;5;233m [38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;69;48;5;4m░[38;5;69;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;69;48;5;18m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;62;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m░[38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m▒[38;5;69;48;5;4m░[38;5;69;48;5;4m░[38;5;62;48;5;18m░[38;5;69;48;5;18m░[38;5;69;48;5;18m░[38;5;62;48;5;18m░[38;5;69;48;5;19m░[38;5;69;48;5;18m░[38;5;69;48;5;25m░[38;5;69;48;5;25m▒[38;5;69;48;5;25m░[38;5;69;48;5;25m░[38;5;69;48;5;19m░[38;5;62;48;5;19m░[38;5;69;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;18m░[38;5;62;48;5;18m░[38;5;62;48;5;18m▒[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m▒[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;17m░[38;5;17;48;5;17m░[38;5;69;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m░[38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;17m░[38;5;69;48;5;17m [38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;69;48;5;17m░[38;5;62;48;5;4m░[38;5;62;48;5;4m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m▒[38;5;69;48;5;17m░[38;5;62;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;17;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;69;48;5;233m [38;5;69;48;5;17m [38;5;69;48;5;17m [38;5;69;48;5;17m [38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;62;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;69;48;5;17m░[38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;233m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
39
bundle/telescope.nvim-0.1.8/data/memes/planets/pluto
Normal file
39
bundle/telescope.nvim-0.1.8/data/memes/planets/pluto
Normal file
@ -0,0 +1,39 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;06;48;5;236m▒[38;5;137;48;5;138m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;137m▒[38;5;06;48;5;180m▒[38;5;137;48;5;137m▒[38;5;137;48;5;137m▒[38;5;137;48;5;137m▒[38;5;137;48;5;137m▓[38;5;208;48;5;237m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;137;48;5;138m▒[38;5;137;48;5;144m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;180;48;5;179m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;208;48;5;137m▒[38;5;208;48;5;137m▒[38;5;208;48;5;137m▒[38;5;208;48;5;137m▒[38;5;137;48;5;137m▓[38;5;137;48;5;137m▓[38;5;06;48;5;95m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;137;48;5;137m▓[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;187m▒[38;5;180;48;5;187m▒[38;5;06;48;5;181m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m░[38;5;06;48;5;180m░[38;5;06;48;5;180m░[38;5;06;48;5;216m░[38;5;06;48;5;223m [38;5;06;48;5;216m░[38;5;215;48;5;216m░[38;5;06;48;5;180m░[38;5;06;48;5;180m▒[38;5;180;48;5;180m░[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;179m▒[38;5;180;48;5;179m▒[38;5;180;48;5;179m▒[38;5;208;48;5;137m▒[38;5;137;48;5;137m▒[38;5;06;48;5;137m▓[38;5;137;48;5;95m▓[38;5;137;48;5;95m▓[38;5;137;48;5;239m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;137;48;5;137m▓[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;181m▒[38;5;06;48;5;181m▒[38;5;180;48;5;223m░[38;5;06;48;5;223m░[38;5;223;48;5;223m [38;5;208;48;5;222m░[38;5;223;48;5;223m░[38;5;215;48;5;216m░[38;5;180;48;5;180m░[38;5;06;48;5;222m░[38;5;06;48;5;222m░[38;5;06;48;5;223m [38;5;06;48;5;222m░[38;5;180;48;5;180m░[38;5;06;48;5;216m░[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m░[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;179m▒[38;5;180;48;5;179m▒[38;5;208;48;5;137m▒[38;5;06;48;5;174m▒[38;5;06;48;5;137m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;180;48;5;238m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;06;48;5;138m▒[38;5;06;48;5;144m▒[38;5;06;48;5;181m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;181m▒[38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;06;48;5;223m░[38;5;223;48;5;223m░[38;5;130;48;5;223m [38;5;223;48;5;223m [38;5;06;48;5;216m░[38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;130;48;5;223m [38;5;06;48;5;223m [38;5;208;48;5;223m [38;5;223;48;5;222m░[38;5;215;48;5;216m░[38;5;06;48;5;216m░[38;5;223;48;5;222m [38;5;06;48;5;222m░[38;5;223;48;5;223m [38;5;06;48;5;216m░[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;208;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;137m▒[38;5;137;48;5;137m▓[38;5;137;48;5;137m▓[38;5;06;48;5;95m▒[38;5;06;48;5;95m▓[38;5;06;48;5;239m▒[38;5;180;48;5;237m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;235m░[38;5;06;48;5;180m▒[38;5;06;48;5;137m▓[38;5;06;48;5;181m▒[38;5;06;48;5;180m▒[38;5;06;48;5;181m▒[38;5;223;48;5;223m░[38;5;208;48;5;223m [38;5;130;48;5;223m [38;5;208;48;5;223m [38;5;130;48;5;223m [38;5;172;48;5;223m [38;5;223;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;06;48;5;222m░[38;5;172;48;5;223m [38;5;208;48;5;223m [38;5;223;48;5;223m [38;5;172;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;180;48;5;180m░[38;5;223;48;5;222m░[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;138m▒[38;5;137;48;5;137m▒[38;5;137;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;238m▒[38;5;06;48;5;239m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;101m▓[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;181m▒[38;5;223;48;5;223m░[38;5;208;48;5;223m [38;5;223;48;5;223m [38;5;208;48;5;223m [38;5;06;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;172;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;172;48;5;223m [38;5;130;48;5;223m [38;5;172;48;5;223m [38;5;172;48;5;223m [38;5;130;48;5;223m [38;5;172;48;5;223m [38;5;208;48;5;223m [38;5;180;48;5;223m░[38;5;06;48;5;223m░[38;5;223;48;5;223m░[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;216m░[38;5;180;48;5;180m▒[38;5;180;48;5;181m▒[38;5;137;48;5;138m▒[38;5;137;48;5;138m▒[38;5;137;48;5;144m▒[38;5;137;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▒[38;5;06;48;5;95m▓[38;5;06;48;5;237m▒[38;5;06;48;5;237m▒[38;5;215;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;237m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;187m▒[38;5;06;48;5;144m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;208;48;5;223m [38;5;130;48;5;223m [38;5;172;48;5;224m [38;5;223;48;5;223m [38;5;130;48;5;223m [38;5;06;48;5;174m▒[38;5;130;48;5;223m [38;5;172;48;5;223m [38;5;130;48;5;223m [38;5;223;48;5;223m░[38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;06;48;5;223m [38;5;06;48;5;223m [38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;138m▒[38;5;06;48;5;138m▒[38;5;137;48;5;138m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▒[38;5;208;48;5;58m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;138m▓[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;180;48;5;181m▒[38;5;130;48;5;223m [38;5;06;48;5;223m░[38;5;223;48;5;223m░[38;5;180;48;5;181m▒[38;5;06;48;5;181m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;223;48;5;223m [38;5;172;48;5;223m [38;5;130;48;5;223m [38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;223;48;5;223m [38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;180;48;5;223m░[38;5;223;48;5;223m░[38;5;06;48;5;223m░[38;5;223;48;5;223m░[38;5;180;48;5;180m▒[38;5;06;48;5;181m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▒[38;5;180;48;5;239m▒[38;5;137;48;5;238m▒[38;5;06;48;5;235m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;240m▒[38;5;06;48;5;138m▓[38;5;06;48;5;137m▓[38;5;137;48;5;137m▓[38;5;06;48;5;138m▓[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;223m▒[38;5;06;48;5;180m▒[38;5;180;48;5;181m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;181m▒[38;5;06;48;5;180m▒[38;5;06;48;5;181m▒[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;223;48;5;223m░[38;5;06;48;5;223m░[38;5;223;48;5;222m░[38;5;223;48;5;222m░[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;223;48;5;223m░[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;137;48;5;137m▓[38;5;137;48;5;137m▓[38;5;180;48;5;180m▒[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;101m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▓[38;5;137;48;5;239m▒[38;5;180;48;5;237m▒[38;5;06;48;5;238m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;239m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;137;48;5;138m▓[38;5;06;48;5;138m▓[38;5;06;48;5;137m▓[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;138m▓[38;5;06;48;5;223m░[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;187m▒[38;5;137;48;5;144m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;208;48;5;180m▒[38;5;208;48;5;216m░[38;5;208;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;138m▒[38;5;06;48;5;138m▒[38;5;137;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;138m▓[38;5;06;48;5;239m▒[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;239m▒[38;5;06;48;5;238m▒[38;5;06;48;5;237m▒[38;5;216;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;237m▒[38;5;06;48;5;101m▓[38;5;06;48;5;138m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;144m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;138m▓[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;181m▒[38;5;180;48;5;180m▒[38;5;137;48;5;95m▓[38;5;137;48;5;144m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;223;48;5;222m░[38;5;06;48;5;179m▒[38;5;223;48;5;223m [38;5;06;48;5;222m░[38;5;223;48;5;216m░[38;5;208;48;5;180m▒[38;5;208;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;174m▒[38;5;06;48;5;181m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;180;48;5;180m▒[38;5;137;48;5;137m▓[38;5;06;48;5;138m▒[38;5;06;48;5;180m▒[38;5;137;48;5;180m▒[38;5;137;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;137m▒[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;239m▒[38;5;208;48;5;234m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;238m▒[38;5;06;48;5;95m▓[38;5;202;48;5;138m▓[38;5;06;48;5;138m▓[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▒[38;5;06;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;138m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▒[38;5;06;48;5;138m▓[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;137m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;130;48;5;223m [38;5;208;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;223;48;5;216m░[38;5;137;48;5;137m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;138m▒[38;5;06;48;5;137m▓[38;5;137;48;5;137m▓[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;137m▒[38;5;180;48;5;180m▒[38;5;06;48;5;138m▒[38;5;06;48;5;137m▓[38;5;180;48;5;180m▒[38;5;130;48;5;180m▒[38;5;137;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;239m▒[38;5;06;48;5;239m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;236m▒[38;5;202;48;5;235m▒[38;5;06;48;5;237m▒[38;5;130;48;5;237m▒[38;5;208;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▒[38;5;137;48;5;95m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;172;48;5;223m [38;5;06;48;5;222m░[38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;208;48;5;223m [38;5;130;48;5;223m [38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;223;48;5;223m░[38;5;180;48;5;180m▒[38;5;06;48;5;137m▓[38;5;06;48;5;137m▒[38;5;06;48;5;138m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;217m░[38;5;06;48;5;137m▒[38;5;137;48;5;137m▓[38;5;06;48;5;138m▒[38;5;137;48;5;138m▒[38;5;06;48;5;138m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▓[38;5;06;48;5;237m▒[38;5;208;48;5;238m▒[38;5;209;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;233m [38;5;06;48;5;235m▒[38;5;180;48;5;235m▒[38;5;137;48;5;239m▓[38;5;06;48;5;236m▒[38;5;202;48;5;240m▓[38;5;06;48;5;101m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▒[38;5;06;48;5;238m▒[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;180m▒[38;5;223;48;5;223m░[38;5;208;48;5;223m [38;5;06;48;5;223m [38;5;223;48;5;223m [38;5;208;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;130;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;06;48;5;223m [38;5;180;48;5;216m░[38;5;180;48;5;180m▒[38;5;223;48;5;223m░[38;5;223;48;5;223m░[38;5;223;48;5;223m░[38;5;208;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;137;48;5;137m▒[38;5;137;48;5;95m▒[38;5;137;48;5;95m▓[38;5;06;48;5;137m▓[38;5;137;48;5;137m▓[38;5;06;48;5;58m▒[38;5;180;48;5;237m▒[38;5;137;48;5;239m▒[38;5;208;48;5;234m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;180;48;5;235m▒[38;5;06;48;5;233m [38;5;06;48;5;235m▒[38;5;06;48;5;237m▓[38;5;06;48;5;239m▓[38;5;06;48;5;239m▒[38;5;06;48;5;95m▒[38;5;06;48;5;95m▓[38;5;06;48;5;101m▓[38;5;06;48;5;101m▓[38;5;137;48;5;95m▓[38;5;137;48;5;137m▓[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;208;48;5;222m░[38;5;06;48;5;223m░[38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;130;48;5;223m [38;5;208;48;5;223m [38;5;208;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;222m░[38;5;223;48;5;222m░[38;5;223;48;5;223m░[38;5;180;48;5;180m░[38;5;223;48;5;223m [38;5;208;48;5;223m░[38;5;130;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m░[38;5;137;48;5;137m▓[38;5;137;48;5;95m▒[38;5;137;48;5;144m▒[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;234m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;232m [38;5;202;48;5;233m [38;5;202;48;5;233m [38;5;06;48;5;233m [38;5;06;48;5;233m░[38;5;06;48;5;234m░[38;5;06;48;5;239m▒[38;5;06;48;5;234m [38;5;208;48;5;238m▒[38;5;137;48;5;95m▓[38;5;06;48;5;138m▓[38;5;06;48;5;180m▒[38;5;137;48;5;137m▓[38;5;137;48;5;101m▓[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;06;48;5;223m [38;5;06;48;5;223m [38;5;06;48;5;223m [38;5;06;48;5;223m [38;5;223;48;5;223m [38;5;223;48;5;223m [38;5;06;48;5;223m [38;5;06;48;5;223m░[38;5;223;48;5;223m░[38;5;223;48;5;222m░[38;5;180;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;137m▒[38;5;06;48;5;137m▒[38;5;06;48;5;95m▒[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▒[38;5;06;48;5;95m▒[38;5;216;48;5;233m [38;5;209;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;173;48;5;234m▒[38;5;216;48;5;233m [38;5;209;48;5;233m [38;5;216;48;5;233m [38;5;202;48;5;233m [38;5;216;48;5;233m [38;5;52;48;5;232m [38;5;06;48;5;236m▒[38;5;06;48;5;237m▒[38;5;06;48;5;235m▒[38;5;209;48;5;233m [38;5;208;48;5;58m▒[38;5;06;48;5;58m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;208;48;5;223m░[38;5;223;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;223m░[38;5;06;48;5;222m░[38;5;06;48;5;223m░[38;5;223;48;5;222m░[38;5;223;48;5;223m░[38;5;208;48;5;223m░[38;5;208;48;5;223m░[38;5;180;48;5;223m░[38;5;180;48;5;223m░[38;5;06;48;5;181m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;137;48;5;138m▒[38;5;06;48;5;137m▒[38;5;137;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▓[38;5;06;48;5;95m▒[38;5;137;48;5;240m▒[38;5;216;48;5;233m [38;5;209;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;173;48;5;233m▒[38;5;209;48;5;233m [38;5;209;48;5;233m [38;5;209;48;5;232m [38;5;216;48;5;233m [38;5;202;48;5;233m [38;5;209;48;5;233m [38;5;209;48;5;232m [38;5;06;48;5;233m [38;5;202;48;5;233m [38;5;216;48;5;233m [38;5;06;48;5;180m▒[38;5;06;48;5;137m▓[38;5;06;48;5;180m▒[38;5;06;48;5;95m▒[38;5;06;48;5;180m▒[38;5;180;48;5;223m░[38;5;180;48;5;223m░[38;5;180;48;5;222m░[38;5;180;48;5;222m░[38;5;208;48;5;216m░[38;5;208;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;223m░[38;5;06;48;5;181m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;180m▒[38;5;137;48;5;144m▒[38;5;137;48;5;180m▒[38;5;137;48;5;137m▓[38;5;208;48;5;137m▓[38;5;137;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▓[38;5;06;48;5;239m▒[38;5;180;48;5;58m▒[38;5;216;48;5;233m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;233m [38;5;202;48;5;233m [38;5;209;48;5;233m [38;5;216;48;5;233m [38;5;06;48;5;235m▒[38;5;202;48;5;233m [38;5;06;48;5;236m▒[38;5;209;48;5;233m [38;5;209;48;5;232m [38;5;52;48;5;232m [38;5;06;48;5;138m▓[38;5;06;48;5;180m▒[38;5;06;48;5;239m▒[38;5;06;48;5;95m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;180m▒[38;5;06;48;5;138m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;06;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;144m▒[38;5;137;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;239m▓[38;5;215;48;5;234m░[38;5;06;48;5;235m░[38;5;208;48;5;236m▒[38;5;52;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;173;48;5;234m▒[38;5;202;48;5;233m [38;5;209;48;5;232m [38;5;06;48;5;234m▒[38;5;202;48;5;233m [38;5;209;48;5;232m [38;5;209;48;5;232m [38;5;216;48;5;233m [38;5;216;48;5;233m [38;5;209;48;5;232m [38;5;216;48;5;233m [38;5;06;48;5;95m▓[38;5;06;48;5;144m▓[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;137;48;5;138m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;180;48;5;180m▒[38;5;137;48;5;180m▒[38;5;137;48;5;144m▒[38;5;06;48;5;137m▒[38;5;137;48;5;101m▓[38;5;06;48;5;137m▓[38;5;202;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;137;48;5;95m▓[38;5;215;48;5;235m░[38;5;209;48;5;232m [38;5;209;48;5;232m [38;5;209;48;5;232m [38;5;52;48;5;232m [38;5;202;48;5;233m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;06;48;5;240m▓[38;5;202;48;5;237m▓[38;5;180;48;5;235m▒[38;5;06;48;5;234m░[38;5;137;48;5;237m▓[38;5;180;48;5;236m▒[38;5;208;48;5;239m▓[38;5;137;48;5;238m▒[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;138m▓[38;5;06;48;5;137m▓[38;5;06;48;5;138m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;06;48;5;137m▓[38;5;137;48;5;239m▒[38;5;06;48;5;238m▒[38;5;06;48;5;236m▒[38;5;06;48;5;235m░[38;5;06;48;5;236m▒[38;5;215;48;5;234m░[38;5;130;48;5;233m [38;5;202;48;5;233m [38;5;216;48;5;233m [38;5;216;48;5;232m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;232m [38;5;137;48;5;240m▓[38;5;137;48;5;95m▓[38;5;06;48;5;95m▓[38;5;137;48;5;101m▓[38;5;137;48;5;101m▓[38;5;06;48;5;101m▓[38;5;06;48;5;95m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;06;48;5;237m▒[38;5;06;48;5;101m▓[38;5;06;48;5;137m▓[38;5;06;48;5;101m▓[38;5;06;48;5;101m▓[38;5;06;48;5;137m▓[38;5;06;48;5;95m▓[38;5;137;48;5;240m▒[38;5;06;48;5;238m▒[38;5;06;48;5;237m▒[38;5;06;48;5;237m▒[38;5;208;48;5;236m▒[38;5;06;48;5;233m [38;5;209;48;5;232m [38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;06;48;5;233m▒[38;5;173;48;5;237m▒[38;5;202;48;5;239m▒[38;5;137;48;5;95m▓[38;5;137;48;5;95m▓[38;5;208;48;5;95m▓[38;5;137;48;5;239m▓[38;5;06;48;5;239m▓[38;5;202;48;5;239m▓[38;5;06;48;5;237m▒[38;5;06;48;5;237m▒[38;5;06;48;5;239m▓[38;5;202;48;5;236m▒[38;5;173;48;5;233m░[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
36
bundle/telescope.nvim-0.1.8/data/memes/planets/saturn
Normal file
36
bundle/telescope.nvim-0.1.8/data/memes/planets/saturn
Normal file
@ -0,0 +1,36 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;200;48;5;234m▓[38;5;204;48;5;232m▓[38;5;197;48;5;233m▓[38;5;08;48;5;232m▓[38;5;197;48;5;232m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;209;48;5;233m▓[38;5;138;48;5;234m▓[38;5;209;48;5;235m▓[38;5;220;48;5;235m▒[38;5;130;48;5;234m▓[38;5;197;48;5;233m▓[38;5;125;48;5;233m▒[38;5;132;48;5;232m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;138;48;5;233m▓[38;5;130;48;5;235m▒[38;5;143;48;5;239m▒[38;5;52;48;5;0m [38;5;94;48;5;233m [38;5;136;48;5;235m▒[38;5;52;48;5;0m [38;5;209;48;5;233m▒[38;5;06;48;5;234m▓[38;5;08;48;5;233m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;234m▓[38;5;143;48;5;239m▓[38;5;208;48;5;232m [38;5;186;48;5;58m▒[38;5;185;48;5;58m▒[38;5;186;48;5;58m▒[38;5;220;48;5;58m▒[38;5;185;48;5;58m▒[38;5;186;48;5;58m▒[38;5;221;48;5;232m [38;5;172;48;5;234m▓[38;5;204;48;5;232m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;0m [38;5;172;48;5;236m▒[38;5;209;48;5;233m▒[38;5;186;48;5;58m▒[38;5;220;48;5;58m▒[38;5;214;48;5;235m▒[38;5;220;48;5;58m░[38;5;94;48;5;235m▒[38;5;179;48;5;237m▒[38;5;94;48;5;235m▒[38;5;185;48;5;58m▒[38;5;136;48;5;236m▒[38;5;130;48;5;236m▓[38;5;130;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;232m [38;5;185;48;5;236m▒[38;5;222;48;5;233m [38;5;178;48;5;58m▒[38;5;172;48;5;236m▒[38;5;209;48;5;236m▓[38;5;209;48;5;233m▒[38;5;209;48;5;234m▓[38;5;209;48;5;234m▓[38;5;131;48;5;234m▒[38;5;06;48;5;236m▓[38;5;136;48;5;235m░[38;5;220;48;5;240m▓[38;5;178;48;5;233m░[38;5;214;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;220;48;5;237m▒[38;5;136;48;5;236m▒[38;5;220;48;5;58m▒[38;5;179;48;5;236m▒[38;5;173;48;5;233m▒[38;5;204;48;5;0m [38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;07;48;5;232m░[38;5;202;48;5;234m▒[38;5;221;48;5;237m▒[38;5;220;48;5;58m▒[38;5;208;48;5;232m [38;5;94;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;220;48;5;237m▒[38;5;178;48;5;236m▒[38;5;220;48;5;236m░[38;5;172;48;5;235m▒[38;5;197;48;5;232m▒[38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;209;48;5;233m▒[38;5;172;48;5;236m▒[38;5;220;48;5;58m▒[38;5;208;48;5;232m [38;5;221;48;5;234m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;220;48;5;235m▒[38;5;178;48;5;235m▒[38;5;136;48;5;236m░[38;5;173;48;5;234m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;220;48;5;234m▒[38;5;107;48;5;65m▓[38;5;26;48;5;66m▓[38;5;69;48;5;61m▓[38;5;69;48;5;61m▓[38;5;69;48;5;61m▒[38;5;69;48;5;61m▒[38;5;69;48;5;61m▓[38;5;69;48;5;61m▓[38;5;69;48;5;60m▓[38;5;25;48;5;239m▓[38;5;69;48;5;238m▓[38;5;104;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;220;48;5;235m▒[38;5;180;48;5;233m▒[38;5;220;48;5;58m▒[38;5;208;48;5;234m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;103;48;5;236m▓[38;5;60;48;5;103m▓[38;5;103;48;5;103m▓[38;5;104;48;5;104m▒[38;5;105;48;5;105m [38;5;104;48;5;104m▒[38;5;99;48;5;103m▒[38;5;98;48;5;97m▓[38;5;98;48;5;97m▓[38;5;98;48;5;97m▒[38;5;56;48;5;103m▓[38;5;97;48;5;103m▓[38;5;172;48;5;247m▓[38;5;60;48;5;247m▓[38;5;103;48;5;103m▓[38;5;103;48;5;60m▓[38;5;103;48;5;60m▓[38;5;99;48;5;239m▓[38;5;99;48;5;236m▒[38;5;99;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;221;48;5;233m░[38;5;222;48;5;233m [38;5;220;48;5;58m▒[38;5;172;48;5;234m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;97;48;5;238m▓[38;5;56;48;5;60m▓[38;5;96;48;5;96m▓[38;5;132;48;5;96m▓[38;5;08;48;5;138m▓[38;5;55;48;5;97m▓[38;5;98;48;5;98m▒[38;5;99;48;5;141m [38;5;92;48;5;97m▓[38;5;05;48;5;133m▓[38;5;128;48;5;97m▓[38;5;05;48;5;96m▓[38;5;91;48;5;97m▓[38;5;05;48;5;97m▓[38;5;197;48;5;96m▓[38;5;178;48;5;180m▒[38;5;95;48;5;248m▓[38;5;56;48;5;103m▓[38;5;93;48;5;245m▓[38;5;56;48;5;60m▓[38;5;56;48;5;60m▓[38;5;57;48;5;240m▓[38;5;98;48;5;236m▓[38;5;99;48;5;234m▒[38;5;99;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;204;48;5;232m░[38;5;178;48;5;238m▓[38;5;178;48;5;58m▒[38;5;94;48;5;235m▒[38;5;204;48;5;0m [38;5;126;48;5;233m▒[38;5;204;48;5;95m▓[38;5;209;48;5;95m▓[38;5;131;48;5;131m▒[38;5;174;48;5;07m▒[38;5;204;48;5;174m▒[38;5;200;48;5;132m▓[38;5;93;48;5;97m▒[38;5;56;48;5;141m░[38;5;139;48;5;133m▓[38;5;01;48;5;132m▒[38;5;01;48;5;132m▓[38;5;197;48;5;138m▒[38;5;125;48;5;132m▓[38;5;08;48;5;175m▒[38;5;204;48;5;132m▓[38;5;179;48;5;179m░[38;5;179;48;5;180m▒[38;5;200;48;5;245m▓[38;5;200;48;5;244m▓[38;5;200;48;5;96m▓[38;5;200;48;5;241m▓[38;5;89;48;5;241m▓[38;5;96;48;5;238m▓[38;5;56;48;5;235m▓[38;5;56;48;5;233m▒[38;5;92;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;143;48;5;239m▒[38;5;190;48;5;101m▒[38;5;136;48;5;238m▒[38;5;202;48;5;232m▒[38;5;08;48;5;233m▒[38;5;209;48;5;131m▒[38;5;209;48;5;131m▒[38;5;209;48;5;07m▒[38;5;209;48;5;07m▒[38;5;209;48;5;173m░[38;5;01;48;5;132m▒[38;5;91;48;5;97m▒[38;5;93;48;5;134m▒[38;5;206;48;5;133m▒[38;5;204;48;5;08m▒[38;5;204;48;5;08m▒[38;5;204;48;5;131m▒[38;5;204;48;5;174m▒[38;5;204;48;5;174m▒[38;5;204;48;5;131m▒[38;5;180;48;5;179m▒[38;5;221;48;5;221m░[38;5;209;48;5;138m▓[38;5;198;48;5;138m▓[38;5;197;48;5;96m▓[38;5;01;48;5;95m▓[38;5;132;48;5;95m▓[38;5;95;48;5;59m▓[38;5;91;48;5;237m▓[38;5;97;48;5;235m▓[38;5;56;48;5;233m▒[38;5;99;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;84;48;5;65m▓[38;5;80;48;5;152m▒[38;5;148;48;5;237m▓[38;5;185;48;5;3m▒[38;5;220;48;5;58m▒[38;5;209;48;5;234m▒[38;5;125;48;5;232m▒[38;5;131;48;5;131m▒[38;5;209;48;5;131m▒[38;5;209;48;5;07m▒[38;5;209;48;5;07m░[38;5;209;48;5;173m░[38;5;204;48;5;07m▒[38;5;206;48;5;132m▒[38;5;55;48;5;98m▒[38;5;126;48;5;09m▒[38;5;204;48;5;08m▒[38;5;204;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;08m▒[38;5;204;48;5;08m▒[38;5;204;48;5;08m▒[38;5;209;48;5;173m▒[38;5;221;48;5;221m░[38;5;208;48;5;180m▒[38;5;132;48;5;138m▓[38;5;132;48;5;96m▓[38;5;01;48;5;95m▓[38;5;01;48;5;59m▓[38;5;01;48;5;240m▓[38;5;02;48;5;238m▓[38;5;56;48;5;236m▓[38;5;56;48;5;233m▒[38;5;91;48;5;232m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;45;48;5;152m▒[38;5;195;48;5;195m [38;5;32;48;5;195m [38;5;97;48;5;103m▓[38;5;186;48;5;3m▒[38;5;220;48;5;101m▒[38;5;172;48;5;236m▒[38;5;204;48;5;0m [38;5;209;48;5;52m▒[38;5;209;48;5;07m░[38;5;209;48;5;07m░[38;5;209;48;5;07m░[38;5;209;48;5;209m░[38;5;07;48;5;07m░[38;5;01;48;5;132m▒[38;5;91;48;5;97m▒[38;5;176;48;5;176m▒[38;5;204;48;5;08m▒[38;5;07;48;5;07m▒[38;5;07;48;5;07m▒[38;5;07;48;5;07m▒[38;5;204;48;5;08m▒[38;5;204;48;5;07m▒[38;5;204;48;5;131m▒[38;5;180;48;5;173m░[38;5;214;48;5;179m░[38;5;204;48;5;138m▓[38;5;125;48;5;138m▓[38;5;198;48;5;96m▓[38;5;02;48;5;59m▓[38;5;03;48;5;240m▓[38;5;171;48;5;238m▓[38;5;98;48;5;236m▓[38;5;61;48;5;234m▒[38;5;99;48;5;232m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;113;48;5;239m▓[38;5;159;48;5;195m░[38;5;38;48;5;195m [38;5;195;48;5;195m [38;5;27;48;5;255m▒[38;5;92;48;5;139m▓[38;5;136;48;5;240m▒[38;5;186;48;5;101m▒[38;5;221;48;5;58m▒[38;5;174;48;5;232m▒[38;5;209;48;5;233m░[38;5;209;48;5;07m▒[38;5;209;48;5;07m░[38;5;209;48;5;203m░[38;5;209;48;5;203m░[38;5;209;48;5;203m░[38;5;204;48;5;07m▒[38;5;02;48;5;132m▒[38;5;92;48;5;98m▒[38;5;01;48;5;08m▒[38;5;204;48;5;08m▒[38;5;174;48;5;07m▒[38;5;174;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;08m▒[38;5;204;48;5;131m▒[38;5;174;48;5;131m▒[38;5;130;48;5;215m░[38;5;208;48;5;179m▒[38;5;89;48;5;96m▓[38;5;96;48;5;96m▓[38;5;96;48;5;96m▓[38;5;171;48;5;239m▓[38;5;55;48;5;238m▓[38;5;98;48;5;236m▓[38;5;99;48;5;235m▒[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;107;48;5;65m▓[38;5;195;48;5;195m [38;5;195;48;5;195m [38;5;116;48;5;195m▒[38;5;156;48;5;231m [38;5;195;48;5;231m [38;5;182;48;5;182m▓[38;5;199;48;5;96m▓[38;5;186;48;5;143m▒[38;5;220;48;5;3m▒[38;5;06;48;5;235m▒[38;5;200;48;5;232m▒[38;5;209;48;5;131m▒[38;5;209;48;5;07m░[38;5;209;48;5;203m░[38;5;209;48;5;07m░[38;5;209;48;5;209m░[38;5;204;48;5;07m░[38;5;197;48;5;131m▒[38;5;176;48;5;133m▒[38;5;176;48;5;134m▒[38;5;08;48;5;08m▒[38;5;204;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;131m▒[38;5;204;48;5;131m▒[38;5;08;48;5;131m▒[38;5;131;48;5;131m▒[38;5;130;48;5;179m▒[38;5;209;48;5;138m▓[38;5;134;48;5;96m▓[38;5;93;48;5;60m▓[38;5;56;48;5;240m▓[38;5;98;48;5;237m▒[38;5;99;48;5;236m▒[38;5;104;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;64;48;5;235m▒[38;5;50;48;5;152m▒[38;5;195;48;5;195m [38;5;195;48;5;231m [38;5;195;48;5;231m [38;5;230;48;5;231m [38;5;178;48;5;231m [38;5;204;48;5;252m▓[38;5;139;48;5;96m▓[38;5;221;48;5;240m▒[38;5;220;48;5;136m▒[38;5;136;48;5;58m▒[38;5;204;48;5;232m░[38;5;52;48;5;52m░[38;5;209;48;5;07m░[38;5;209;48;5;07m░[38;5;209;48;5;07m░[38;5;209;48;5;203m░[38;5;209;48;5;203m░[38;5;204;48;5;07m▒[38;5;198;48;5;131m▒[38;5;92;48;5;97m▒[38;5;206;48;5;09m▒[38;5;204;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;131m▒[38;5;204;48;5;131m▒[38;5;197;48;5;131m▒[38;5;197;48;5;95m▒[38;5;01;48;5;95m▓[38;5;204;48;5;95m▓[38;5;130;48;5;137m▓[38;5;199;48;5;96m▓[38;5;98;48;5;60m▒[38;5;99;48;5;239m▒[38;5;99;48;5;237m▒[38;5;99;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;109;48;5;109m▓[38;5;80;48;5;195m▒[38;5;195;48;5;195m [38;5;231;48;5;231m▓[38;5;195;48;5;231m [38;5;130;48;5;230m [38;5;173;48;5;255m░[38;5;204;48;5;224m▒[38;5;03;48;5;175m▒[38;5;197;48;5;95m▓[38;5;220;48;5;143m▒[38;5;220;48;5;101m▒[38;5;94;48;5;236m▒[38;5;54;48;5;233m▓[38;5;209;48;5;131m▒[38;5;209;48;5;07m░[38;5;209;48;5;203m░[38;5;209;48;5;07m░[38;5;209;48;5;203m░[38;5;204;48;5;07m░[38;5;197;48;5;131m▒[38;5;176;48;5;96m▒[38;5;134;48;5;134m▒[38;5;206;48;5;132m▒[38;5;204;48;5;131m▒[38;5;204;48;5;131m▒[38;5;08;48;5;95m▒[38;5;198;48;5;95m▓[38;5;126;48;5;95m▒[38;5;200;48;5;59m▓[38;5;133;48;5;240m▒[38;5;200;48;5;240m▓[38;5;204;48;5;240m▓[38;5;93;48;5;240m▓[38;5;99;48;5;238m▒[38;5;99;48;5;236m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;98;48;5;235m▓[38;5;45;48;5;152m▓[38;5;45;48;5;195m░[38;5;116;48;5;255m▒[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;137;48;5;254m▒[38;5;222;48;5;230m [38;5;204;48;5;255m [38;5;02;48;5;182m▒[38;5;133;48;5;133m▓[38;5;130;48;5;239m▒[38;5;185;48;5;100m▒[38;5;136;48;5;58m▒[38;5;174;48;5;233m▒[38;5;204;48;5;234m▒[38;5;209;48;5;07m░[38;5;209;48;5;07m░[38;5;07;48;5;07m░[38;5;209;48;5;07m░[38;5;203;48;5;203m░[38;5;204;48;5;07m▒[38;5;198;48;5;131m▒[38;5;129;48;5;97m▒[38;5;92;48;5;97m▒[38;5;200;48;5;96m▒[38;5;01;48;5;95m▒[38;5;199;48;5;95m▒[38;5;03;48;5;95m▒[38;5;133;48;5;59m▒[38;5;171;48;5;60m▒[38;5;92;48;5;60m▒[38;5;56;48;5;60m▒[38;5;98;48;5;239m▒[38;5;99;48;5;237m▒[38;5;62;48;5;17m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;98;48;5;235m▓[38;5;25;48;5;145m▓[38;5;32;48;5;189m▒[38;5;109;48;5;253m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;182;48;5;231m▓[38;5;202;48;5;224m░[38;5;224;48;5;224m░[38;5;209;48;5;224m▒[38;5;133;48;5;139m▒[38;5;200;48;5;95m▓[38;5;220;48;5;137m▒[38;5;186;48;5;137m▒[38;5;179;48;5;237m▒[38;5;125;48;5;232m [38;5;07;48;5;52m░[38;5;07;48;5;07m▒[38;5;07;48;5;07m▒[38;5;07;48;5;07m▒[38;5;07;48;5;07m▒[38;5;07;48;5;07m░[38;5;204;48;5;131m▒[38;5;03;48;5;5m▒[38;5;56;48;5;61m▒[38;5;56;48;5;98m▒[38;5;91;48;5;96m▒[38;5;133;48;5;96m▓[38;5;133;48;5;240m▒[38;5;171;48;5;240m▒[38;5;56;48;5;54m▒[38;5;98;48;5;54m▒[38;5;99;48;5;238m▒[38;5;99;48;5;237m▒[38;5;98;48;5;234m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;55;48;5;234m▒[38;5;69;48;5;243m▓[38;5;25;48;5;188m▒[38;5;45;48;5;254m▒[38;5;84;48;5;255m░[38;5;195;48;5;231m [38;5;195;48;5;231m [38;5;204;48;5;188m▓[38;5;216;48;5;224m [38;5;204;48;5;224m░[38;5;206;48;5;182m▓[38;5;133;48;5;97m▓[38;5;204;48;5;238m▓[38;5;220;48;5;136m▒[38;5;94;48;5;58m▒[38;5;180;48;5;235m▒[38;5;204;48;5;233m▒[38;5;204;48;5;131m▒[38;5;174;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;07m▒[38;5;204;48;5;131m▒[38;5;01;48;5;95m▒[38;5;128;48;5;60m▒[38;5;98;48;5;61m▒[38;5;99;48;5;62m▒[38;5;56;48;5;60m▒[38;5;57;48;5;60m▒[38;5;98;48;5;60m▒[38;5;99;48;5;238m▒[38;5;104;48;5;237m▒[38;5;99;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;55;48;5;232m░[38;5;98;48;5;236m▓[38;5;69;48;5;248m▓[38;5;74;48;5;189m▒[38;5;27;48;5;7m▓[38;5;195;48;5;231m [38;5;195;48;5;231m [38;5;111;48;5;255m [38;5;02;48;5;251m▓[38;5;07;48;5;224m▒[38;5;199;48;5;253m▒[38;5;139;48;5;139m▓[38;5;171;48;5;96m▓[38;5;172;48;5;95m▓[38;5;220;48;5;100m▒[38;5;178;48;5;58m▒[38;5;202;48;5;234m▒[38;5;175;48;5;233m▒[38;5;204;48;5;95m▒[38;5;204;48;5;131m▒[38;5;204;48;5;95m▒[38;5;204;48;5;95m▒[38;5;204;48;5;95m▒[38;5;197;48;5;95m▒[38;5;200;48;5;240m▒[38;5;55;48;5;240m▒[38;5;98;48;5;60m▒[38;5;99;48;5;61m▒[38;5;104;48;5;61m▒[38;5;104;48;5;237m▒[38;5;99;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;57;48;5;234m▒[38;5;103;48;5;238m▓[38;5;68;48;5;109m▓[38;5;68;48;5;189m░[38;5;68;48;5;146m▓[38;5;31;48;5;195m░[38;5;195;48;5;195m [38;5;189;48;5;189m [38;5;134;48;5;252m▓[38;5;200;48;5;188m▓[38;5;05;48;5;182m▓[38;5;93;48;5;140m▓[38;5;54;48;5;60m▓[38;5;136;48;5;101m▒[38;5;220;48;5;143m▒[38;5;221;48;5;58m▒[38;5;215;48;5;233m░[38;5;126;48;5;233m▒[38;5;08;48;5;239m▓[38;5;01;48;5;238m▒[38;5;01;48;5;238m▒[38;5;125;48;5;238m▒[38;5;206;48;5;238m▒[38;5;133;48;5;239m▓[38;5;92;48;5;238m▒[38;5;99;48;5;238m▒[38;5;99;48;5;236m▒[38;5;99;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;98;48;5;233m▒[38;5;103;48;5;238m▓[38;5;69;48;5;103m▓[38;5;68;48;5;146m▒[38;5;69;48;5;146m▒[38;5;26;48;5;189m▒[38;5;27;48;5;189m [38;5;62;48;5;146m▒[38;5;99;48;5;146m▓[38;5;99;48;5;146m▒[38;5;99;48;5;146m▒[38;5;98;48;5;140m▒[38;5;134;48;5;239m▓[38;5;220;48;5;137m▒[38;5;220;48;5;143m▒[38;5;179;48;5;239m▒[38;5;174;48;5;233m▒[38;5;176;48;5;233m▒[38;5;200;48;5;236m▓[38;5;05;48;5;237m▒[38;5;92;48;5;236m▒[38;5;98;48;5;236m▒[38;5;99;48;5;235m▒[38;5;99;48;5;234m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;180;48;5;233m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;99;48;5;241m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;99;48;5;233m▒[38;5;61;48;5;238m▓[38;5;69;48;5;61m▓[38;5;69;48;5;67m▓[38;5;69;48;5;104m▒[38;5;69;48;5;110m▒[38;5;69;48;5;104m▒[38;5;146;48;5;104m▒[38;5;146;48;5;104m▒[38;5;69;48;5;103m▓[38;5;104;48;5;98m▒[38;5;130;48;5;238m▓[38;5;143;48;5;101m▓[38;5;220;48;5;101m▒[38;5;172;48;5;237m▒[38;5;173;48;5;232m▒[38;5;54;48;5;232m▒[38;5;56;48;5;233m░[38;5;98;48;5;232m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;211;48;5;0m [38;5;137;48;5;234m▓[38;5;209;48;5;237m▓[38;5;222;48;5;233m [38;5;94;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;99;48;5;232m░[38;5;99;48;5;235m▒[38;5;104;48;5;236m▒[38;5;104;48;5;236m▒[38;5;104;48;5;236m▒[38;5;104;48;5;236m▒[38;5;104;48;5;235m▒[38;5;99;48;5;235m▒[38;5;130;48;5;234m▓[38;5;204;48;5;234m▓[38;5;220;48;5;94m▒[38;5;130;48;5;237m▓[38;5;174;48;5;233m▒[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;204;48;5;232m [38;5;131;48;5;235m▓[38;5;214;48;5;236m▒[38;5;179;48;5;238m▓[38;5;220;48;5;237m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;202;48;5;234m▓[38;5;130;48;5;232m [38;5;220;48;5;58m▒[38;5;130;48;5;237m▒[38;5;131;48;5;234m▓[38;5;211;48;5;232m [38;5;204;48;5;0m [38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;52;48;5;0m [38;5;204;48;5;232m▒[38;5;06;48;5;235m▒[38;5;136;48;5;58m░[38;5;220;48;5;238m▒[38;5;220;48;5;239m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;179;48;5;234m▒[38;5;06;48;5;234m▒[38;5;186;48;5;3m▒[38;5;172;48;5;237m▒[38;5;208;48;5;234m▒[38;5;125;48;5;233m▒[38;5;197;48;5;232m [38;5;204;48;5;0m [38;5;52;48;5;0m [38;5;204;48;5;232m░[38;5;209;48;5;234m▒[38;5;172;48;5;236m▒[38;5;136;48;5;58m▒[38;5;220;48;5;58m▒[38;5;186;48;5;58m▒[38;5;202;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;179;48;5;233m▒[38;5;172;48;5;236m▓[38;5;220;48;5;101m▓[38;5;220;48;5;58m▒[38;5;172;48;5;237m▒[38;5;173;48;5;235m▒[38;5;204;48;5;234m▓[38;5;131;48;5;234m▓[38;5;138;48;5;235m▓[38;5;06;48;5;236m▒[38;5;94;48;5;236m▒[38;5;185;48;5;58m░[38;5;221;48;5;233m [38;5;185;48;5;58m░[38;5;05;48;5;232m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;209;48;5;233m▓[38;5;08;48;5;237m▓[38;5;94;48;5;235m▒[38;5;185;48;5;3m▒[38;5;179;48;5;239m▒[38;5;178;48;5;58m░[38;5;221;48;5;240m▒[38;5;220;48;5;94m▒[38;5;179;48;5;237m▒[38;5;220;48;5;58m▒[38;5;186;48;5;106m▒[38;5;94;48;5;233m░[38;5;136;48;5;236m▓[38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;08;48;5;232m▒[38;5;198;48;5;234m▓[38;5;180;48;5;234m▒[38;5;220;48;5;240m▒[38;5;186;48;5;3m▒[38;5;220;48;5;58m▒[38;5;185;48;5;58m░[38;5;186;48;5;3m▒[38;5;185;48;5;100m▒[38;5;222;48;5;232m [38;5;186;48;5;58m▒[38;5;138;48;5;234m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;204;48;5;233m▓[38;5;137;48;5;234m▓[38;5;95;48;5;235m▓[38;5;204;48;5;232m [38;5;211;48;5;232m░[38;5;01;48;5;232m░[38;5;204;48;5;233m▒[38;5;143;48;5;101m▒[38;5;209;48;5;235m▓[38;5;209;48;5;233m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;204;48;5;232m▓[38;5;204;48;5;233m▓[38;5;09;48;5;234m▓[38;5;209;48;5;235m▓[38;5;214;48;5;235m▓[38;5;173;48;5;235m▓[38;5;197;48;5;234m▓[38;5;197;48;5;233m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;175;48;5;0m▒[38;5;03;48;5;233m▓[38;5;02;48;5;232m▓[38;5;197;48;5;233m▓[38;5;204;48;5;234m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
39
bundle/telescope.nvim-0.1.8/data/memes/planets/uranus
Normal file
39
bundle/telescope.nvim-0.1.8/data/memes/planets/uranus
Normal file
@ -0,0 +1,39 @@
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;111;48;5;232m [38;5;26;48;5;232m [38;5;33;48;5;232m [38;5;26;48;5;232m [38;5;111;48;5;232m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;33;48;5;233m [38;5;39;48;5;235m░[38;5;81;48;5;238m▒[38;5;32;48;5;240m▓[38;5;69;48;5;243m▓[38;5;99;48;5;245m▓[38;5;96;48;5;247m▓[38;5;02;48;5;139m▓[38;5;132;48;5;248m▓[38;5;132;48;5;145m▓[38;5;197;48;5;181m▓[38;5;125;48;5;145m▓[38;5;125;48;5;248m▓[38;5;09;48;5;247m▓[38;5;171;48;5;245m▓[38;5;60;48;5;242m▓[38;5;25;48;5;239m▓[38;5;39;48;5;235m▒[38;5;75;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;32;48;5;234m░[38;5;81;48;5;237m▒[38;5;39;48;5;240m▓[38;5;32;48;5;66m▓[38;5;68;48;5;245m▓[38;5;54;48;5;247m▓[38;5;198;48;5;249m▓[38;5;204;48;5;181m▓[38;5;174;48;5;188m▒[38;5;07;48;5;224m▒[38;5;209;48;5;224m░[38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;224;48;5;224m░[38;5;07;48;5;224m░[38;5;204;48;5;224m▒[38;5;204;48;5;181m▒[38;5;204;48;5;181m▓[38;5;125;48;5;248m▓[38;5;134;48;5;245m▓[38;5;33;48;5;240m▓[38;5;74;48;5;235m░[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;26;48;5;233m [38;5;39;48;5;236m░[38;5;39;48;5;239m▒[38;5;74;48;5;60m▓[38;5;39;48;5;66m▓[38;5;81;48;5;66m▓[38;5;81;48;5;247m▓[38;5;125;48;5;250m▓[38;5;204;48;5;252m▓[38;5;174;48;5;224m▒[38;5;209;48;5;224m░[38;5;202;48;5;255m [38;5;06;48;5;255m [38;5;130;48;5;230m [38;5;172;48;5;230m [38;5;208;48;5;230m [38;5;130;48;5;230m [38;5;130;48;5;230m [38;5;06;48;5;255m [38;5;216;48;5;224m [38;5;216;48;5;224m [38;5;202;48;5;224m [38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;224;48;5;224m [38;5;204;48;5;224m▒[38;5;204;48;5;181m▒[38;5;197;48;5;249m▓[38;5;92;48;5;245m▓[38;5;25;48;5;238m▓[38;5;26;48;5;233m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;27;48;5;232m [38;5;74;48;5;236m▒[38;5;39;48;5;23m▒[38;5;32;48;5;60m▓[38;5;74;48;5;66m▓[38;5;24;48;5;66m▓[38;5;38;48;5;67m▓[38;5;81;48;5;109m▓[38;5;31;48;5;145m▓[38;5;96;48;5;251m▓[38;5;209;48;5;254m▓[38;5;216;48;5;255m░[38;5;06;48;5;255m [38;5;172;48;5;255m [38;5;214;48;5;231m [38;5;136;48;5;231m [38;5;220;48;5;231m [38;5;230;48;5;231m [38;5;136;48;5;231m [38;5;136;48;5;231m [38;5;178;48;5;231m [38;5;221;48;5;231m [38;5;172;48;5;255m [38;5;172;48;5;230m [38;5;214;48;5;230m [38;5;172;48;5;230m [38;5;06;48;5;230m [38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;224;48;5;224m░[38;5;204;48;5;252m▒[38;5;204;48;5;181m▓[38;5;200;48;5;246m▓[38;5;25;48;5;239m▓[38;5;27;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;25;48;5;234m░[38;5;74;48;5;238m▒[38;5;32;48;5;60m▓[38;5;81;48;5;66m▒[38;5;24;48;5;66m▓[38;5;74;48;5;67m▓[38;5;81;48;5;73m▓[38;5;38;48;5;73m▒[38;5;38;48;5;109m▒[38;5;81;48;5;146m▓[38;5;25;48;5;252m▓[38;5;254;48;5;254m▓[38;5;202;48;5;255m░[38;5;172;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;221;48;5;231m [38;5;136;48;5;231m [38;5;221;48;5;231m [38;5;94;48;5;230m [38;5;172;48;5;230m [38;5;130;48;5;230m [38;5;202;48;5;224m [38;5;209;48;5;224m [38;5;224;48;5;224m░[38;5;204;48;5;252m▒[38;5;01;48;5;181m▓[38;5;60;48;5;243m▓[38;5;32;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;33;48;5;235m▒[38;5;32;48;5;239m▒[38;5;32;48;5;60m▓[38;5;81;48;5;66m▒[38;5;81;48;5;67m▒[38;5;39;48;5;67m▓[38;5;81;48;5;73m▒[38;5;31;48;5;73m▒[38;5;45;48;5;74m▒[38;5;45;48;5;74m▒[38;5;31;48;5;116m▒[38;5;81;48;5;152m▒[38;5;24;48;5;254m▒[38;5;45;48;5;255m▓[38;5;223;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;178;48;5;231m [38;5;221;48;5;231m [38;5;172;48;5;230m [38;5;06;48;5;230m [38;5;209;48;5;224m [38;5;209;48;5;224m [38;5;174;48;5;224m▒[38;5;08;48;5;181m▓[38;5;91;48;5;246m▓[38;5;74;48;5;237m▒[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;33;48;5;234m░[38;5;25;48;5;239m▓[38;5;32;48;5;60m▓[38;5;39;48;5;66m▒[38;5;81;48;5;67m▒[38;5;81;48;5;67m▒[38;5;38;48;5;73m▒[38;5;31;48;5;74m▒[38;5;38;48;5;74m▒[38;5;38;48;5;74m▒[38;5;45;48;5;74m░[38;5;38;48;5;80m░[38;5;31;48;5;117m░[38;5;24;48;5;153m░[38;5;39;48;5;195m░[38;5;31;48;5;195m [38;5;195;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;220;48;5;231m [38;5;220;48;5;231m [38;5;221;48;5;230m [38;5;172;48;5;230m [38;5;06;48;5;230m [38;5;209;48;5;224m [38;5;07;48;5;224m▒[38;5;08;48;5;181m▓[38;5;56;48;5;245m▓[38;5;74;48;5;236m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;111;48;5;233m [38;5;32;48;5;238m▒[38;5;33;48;5;60m▓[38;5;25;48;5;60m▓[38;5;39;48;5;66m▒[38;5;81;48;5;67m▒[38;5;38;48;5;37m▒[38;5;45;48;5;38m░[38;5;38;48;5;74m▒[38;5;31;48;5;74m░[38;5;38;48;5;80m░[38;5;45;48;5;80m░[38;5;45;48;5;80m░[38;5;38;48;5;81m░[38;5;38;48;5;117m░[38;5;31;48;5;153m [38;5;45;48;5;195m [38;5;45;48;5;195m [38;5;195;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;220;48;5;231m [38;5;221;48;5;231m [38;5;172;48;5;255m [38;5;130;48;5;230m [38;5;216;48;5;224m [38;5;209;48;5;224m [38;5;204;48;5;252m▒[38;5;01;48;5;249m▓[38;5;69;48;5;60m▓[38;5;25;48;5;233m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;33;48;5;234m░[38;5;32;48;5;239m▒[38;5;67;48;5;60m▓[38;5;74;48;5;66m▓[38;5;74;48;5;67m▓[38;5;31;48;5;67m▒[38;5;31;48;5;73m▒[38;5;38;48;5;74m▒[38;5;38;48;5;38m░[38;5;38;48;5;74m░[38;5;31;48;5;80m░[38;5;31;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;117m [38;5;38;48;5;117m [38;5;45;48;5;159m [38;5;45;48;5;195m [38;5;195;48;5;195m [38;5;195;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;178;48;5;231m [38;5;172;48;5;255m [38;5;202;48;5;255m [38;5;209;48;5;224m [38;5;174;48;5;224m▒[38;5;08;48;5;181m▓[38;5;97;48;5;246m▓[38;5;32;48;5;237m▒[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;32;48;5;236m▒[38;5;74;48;5;239m▒[38;5;25;48;5;60m▓[38;5;25;48;5;66m▓[38;5;81;48;5;67m▒[38;5;81;48;5;73m▒[38;5;31;48;5;74m▒[38;5;38;48;5;74m▒[38;5;38;48;5;38m░[38;5;45;48;5;38m░[38;5;38;48;5;45m░[38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;45;48;5;81m░[38;5;45;48;5;81m░[38;5;45;48;5;81m [38;5;45;48;5;195m [38;5;195;48;5;231m [38;5;45;48;5;159m [38;5;45;48;5;159m [38;5;195;48;5;195m [38;5;195;48;5;195m [38;5;195;48;5;195m [38;5;195;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;230;48;5;231m [38;5;230;48;5;231m [38;5;94;48;5;231m [38;5;222;48;5;231m [38;5;06;48;5;255m [38;5;209;48;5;224m [38;5;204;48;5;224m▒[38;5;08;48;5;181m▓[38;5;129;48;5;246m▓[38;5;26;48;5;240m▓[38;5;69;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;25;48;5;236m▒[38;5;24;48;5;23m▒[38;5;74;48;5;60m▒[38;5;32;48;5;66m▓[38;5;74;48;5;67m▓[38;5;81;48;5;73m▒[38;5;31;48;5;74m▒[38;5;31;48;5;74m▒[38;5;38;48;5;38m░[38;5;45;48;5;38m░[38;5;45;48;5;45m [38;5;38;48;5;45m░[38;5;38;48;5;45m░[38;5;45;48;5;81m [38;5;45;48;5;81m [38;5;45;48;5;45m [38;5;38;48;5;81m [38;5;31;48;5;117m [38;5;38;48;5;117m [38;5;45;48;5;117m [38;5;45;48;5;123m [38;5;45;48;5;123m [38;5;159;48;5;159m [38;5;195;48;5;195m [38;5;195;48;5;195m [38;5;195;48;5;195m [38;5;195;48;5;231m [38;5;195;48;5;231m [38;5;195;48;5;231m [38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;231;48;5;231m▓[38;5;230;48;5;231m [38;5;222;48;5;231m [38;5;130;48;5;231m [38;5;202;48;5;255m [38;5;216;48;5;255m░[38;5;209;48;5;224m▒[38;5;204;48;5;251m▓[38;5;134;48;5;145m▓[38;5;69;48;5;245m▓[38;5;33;48;5;240m▓[38;5;111;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;33;48;5;235m▒[38;5;39;48;5;23m▒[38;5;31;48;5;24m▒[38;5;81;48;5;30m▒[38;5;39;48;5;67m▒[38;5;24;48;5;67m▒[38;5;31;48;5;74m▒[38;5;31;48;5;74m▒[38;5;45;48;5;38m░[38;5;38;48;5;38m░[38;5;38;48;5;39m░[38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;81m [38;5;45;48;5;81m [38;5;45;48;5;81m [38;5;45;48;5;81m [38;5;45;48;5;117m [38;5;45;48;5;123m [38;5;45;48;5;159m [38;5;45;48;5;195m [38;5;45;48;5;195m [38;5;45;48;5;195m [38;5;24;48;5;195m [38;5;117;48;5;195m░[38;5;25;48;5;255m▒[38;5;32;48;5;255m▒[38;5;27;48;5;255m▓[38;5;98;48;5;254m▓[38;5;204;48;5;254m▓[38;5;96;48;5;188m▓[38;5;96;48;5;251m▓[38;5;26;48;5;145m▓[38;5;32;48;5;246m▓[38;5;32;48;5;66m▓[38;5;33;48;5;239m▓[38;5;69;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;26;48;5;234m▒[38;5;39;48;5;23m▒[38;5;31;48;5;23m▒[38;5;38;48;5;24m░[38;5;31;48;5;31m░[38;5;24;48;5;67m▒[38;5;24;48;5;73m▒[38;5;31;48;5;74m▒[38;5;31;48;5;74m░[38;5;38;48;5;38m░[38;5;38;48;5;44m░[38;5;38;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;81m [38;5;45;48;5;81m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;81m░[38;5;45;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;117m░[38;5;31;48;5;117m░[38;5;81;48;5;117m░[38;5;81;48;5;152m▒[38;5;39;48;5;152m▒[38;5;81;48;5;152m▒[38;5;81;48;5;152m▒[38;5;39;48;5;146m▓[38;5;74;48;5;109m▓[38;5;39;48;5;109m▓[38;5;81;48;5;67m▓[38;5;32;48;5;66m▓[38;5;25;48;5;60m▓[38;5;26;48;5;237m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;25;48;5;236m▒[38;5;81;48;5;23m░[38;5;31;48;5;24m░[38;5;45;48;5;6m [38;5;38;48;5;31m [38;5;38;48;5;31m░[38;5;39;48;5;74m▒[38;5;81;48;5;74m▒[38;5;38;48;5;74m░[38;5;31;48;5;74m░[38;5;38;48;5;45m░[38;5;38;48;5;45m░[38;5;38;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;81m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;81m [38;5;45;48;5;45m░[38;5;45;48;5;81m░[38;5;45;48;5;81m░[38;5;45;48;5;44m░[38;5;45;48;5;80m░[38;5;45;48;5;80m░[38;5;45;48;5;80m░[38;5;38;48;5;74m▒[38;5;38;48;5;74m▒[38;5;31;48;5;73m▒[38;5;24;48;5;109m▓[38;5;74;48;5;67m▓[38;5;39;48;5;66m▓[38;5;25;48;5;66m▓[38;5;33;48;5;240m▓[38;5;27;48;5;233m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;69;48;5;232m░[38;5;32;48;5;237m▒[38;5;81;48;5;23m░[38;5;38;48;5;24m░[38;5;45;48;5;30m [38;5;45;48;5;31m [38;5;45;48;5;31m [38;5;38;48;5;37m░[38;5;81;48;5;74m▒[38;5;81;48;5;74m▒[38;5;31;48;5;74m░[38;5;38;48;5;44m░[38;5;38;48;5;45m░[38;5;38;48;5;45m░[38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m░[38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;45;48;5;45m [38;5;38;48;5;45m [38;5;45;48;5;45m░[38;5;45;48;5;45m [38;5;45;48;5;81m [38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;81m░[38;5;38;48;5;80m░[38;5;38;48;5;80m░[38;5;38;48;5;74m▒[38;5;31;48;5;74m▒[38;5;81;48;5;74m▒[38;5;39;48;5;73m▓[38;5;39;48;5;67m▓[38;5;39;48;5;67m▓[38;5;74;48;5;66m▓[38;5;33;48;5;240m▓[38;5;26;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;62;48;5;233m▒[38;5;32;48;5;237m▒[38;5;31;48;5;23m░[38;5;38;48;5;24m [38;5;38;48;5;30m [38;5;38;48;5;31m [38;5;45;48;5;31m [38;5;38;48;5;31m [38;5;38;48;5;38m░[38;5;31;48;5;74m▒[38;5;31;48;5;74m░[38;5;31;48;5;74m░[38;5;38;48;5;38m░[38;5;45;48;5;44m░[38;5;38;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m [38;5;38;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m░[38;5;38;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m░[38;5;45;48;5;45m░[38;5;38;48;5;45m░[38;5;38;48;5;44m░[38;5;38;48;5;74m░[38;5;38;48;5;74m░[38;5;38;48;5;74m░[38;5;38;48;5;74m▒[38;5;31;48;5;74m▒[38;5;31;48;5;73m▒[38;5;39;48;5;67m▒[38;5;39;48;5;67m▓[38;5;39;48;5;66m▓[38;5;74;48;5;60m▒[38;5;25;48;5;240m▓[38;5;68;48;5;236m▒[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;26;48;5;236m▒[38;5;81;48;5;23m▒[38;5;38;48;5;24m░[38;5;38;48;5;24m [38;5;38;48;5;30m [38;5;45;48;5;31m [38;5;45;48;5;31m [38;5;45;48;5;31m [38;5;45;48;5;37m [38;5;45;48;5;38m░[38;5;31;48;5;74m▒[38;5;31;48;5;74m░[38;5;31;48;5;74m░[38;5;38;48;5;38m░[38;5;38;48;5;44m░[38;5;38;48;5;38m░[38;5;38;48;5;38m░[38;5;45;48;5;45m░[38;5;38;48;5;38m░[38;5;38;48;5;38m░[38;5;38;48;5;38m░[38;5;45;48;5;38m░[38;5;38;48;5;38m░[38;5;45;48;5;38m░[38;5;38;48;5;38m░[38;5;45;48;5;38m░[38;5;38;48;5;38m░[38;5;31;48;5;74m▒[38;5;31;48;5;73m▒[38;5;81;48;5;67m▒[38;5;81;48;5;67m▒[38;5;39;48;5;67m▒[38;5;32;48;5;66m▓[38;5;33;48;5;60m▓[38;5;67;48;5;239m▓[38;5;69;48;5;235m▒[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;104;48;5;233m▒[38;5;25;48;5;237m▒[38;5;81;48;5;23m▒[38;5;38;48;5;24m░[38;5;38;48;5;24m [38;5;38;48;5;30m [38;5;38;48;5;31m [38;5;45;48;5;31m [38;5;38;48;5;31m [38;5;45;48;5;31m [38;5;45;48;5;37m [38;5;45;48;5;38m░[38;5;38;48;5;38m░[38;5;81;48;5;74m▒[38;5;81;48;5;74m▒[38;5;81;48;5;74m▒[38;5;31;48;5;74m▒[38;5;38;48;5;74m░[38;5;31;48;5;74m▒[38;5;31;48;5;74m░[38;5;31;48;5;74m▒[38;5;81;48;5;74m▒[38;5;31;48;5;74m▒[38;5;31;48;5;74m▒[38;5;81;48;5;73m▒[38;5;24;48;5;67m▒[38;5;39;48;5;67m▒[38;5;24;48;5;67m▒[38;5;39;48;5;66m▓[38;5;25;48;5;66m▓[38;5;33;48;5;60m▓[38;5;26;48;5;60m▓[38;5;69;48;5;237m▓[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;104;48;5;234m▒[38;5;67;48;5;237m▒[38;5;39;48;5;23m▒[38;5;31;48;5;24m░[38;5;38;48;5;24m [38;5;38;48;5;24m [38;5;38;48;5;30m [38;5;38;48;5;31m [38;5;45;48;5;31m [38;5;45;48;5;31m [38;5;38;48;5;31m [38;5;38;48;5;31m [38;5;45;48;5;31m [38;5;38;48;5;31m░[38;5;81;48;5;73m▒[38;5;24;48;5;73m▒[38;5;74;48;5;73m▒[38;5;32;48;5;73m▒[38;5;32;48;5;73m▒[38;5;32;48;5;67m▓[38;5;32;48;5;67m▓[38;5;32;48;5;67m▓[38;5;33;48;5;67m▓[38;5;33;48;5;67m▓[38;5;25;48;5;66m▓[38;5;67;48;5;66m▓[38;5;26;48;5;60m▓[38;5;27;48;5;240m▓[38;5;69;48;5;237m▓[38;5;17;48;5;232m░[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m [38;5;61;48;5;235m▒[38;5;25;48;5;237m▒[38;5;81;48;5;23m▒[38;5;81;48;5;23m░[38;5;81;48;5;24m░[38;5;38;48;5;24m [38;5;31;48;5;24m [38;5;38;48;5;6m [38;5;38;48;5;6m [38;5;45;48;5;30m [38;5;38;48;5;30m [38;5;38;48;5;30m [38;5;38;48;5;30m [38;5;45;48;5;30m [38;5;38;48;5;30m░[38;5;31;48;5;30m░[38;5;31;48;5;6m▒[38;5;39;48;5;24m▒[38;5;74;48;5;24m▒[38;5;32;48;5;60m▒[38;5;74;48;5;240m▒[38;5;25;48;5;238m▒[38;5;27;48;5;237m▒[38;5;69;48;5;234m▒[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;232m░[38;5;69;48;5;234m▒[38;5;27;48;5;236m▒[38;5;33;48;5;237m▒[38;5;32;48;5;23m▒[38;5;39;48;5;23m▒[38;5;24;48;5;23m▒[38;5;81;48;5;23m▒[38;5;81;48;5;23m░[38;5;81;48;5;23m░[38;5;24;48;5;23m▒[38;5;24;48;5;23m▒[38;5;74;48;5;23m▒[38;5;32;48;5;23m▒[38;5;26;48;5;237m▒[38;5;27;48;5;235m▒[38;5;69;48;5;233m▒[38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[0m
|
||||
[0m
|
35
bundle/telescope.nvim-0.1.8/data/memes/planets/venus
Normal file
35
bundle/telescope.nvim-0.1.8/data/memes/planets/venus
Normal file
@ -0,0 +1,35 @@
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;23;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;52;48;5;232m [38;5;209;48;5;1m░[38;5;209;48;5;88m░[38;5;209;48;5;88m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;1;48;5;1m░[38;5;1;48;5;1m░[38;5;1;48;5;52m░[38;5;07;48;5;52m░[38;5;52;48;5;232m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;22;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;27;48;5;232m [38;5;52;48;5;0m [38;5;06;48;5;52m [38;5;209;48;5;130m▒[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m░[38;5;209;48;5;124m░[38;5;209;48;5;124m░[38;5;00;48;5;00m░[38;5;124;48;5;124m░[38;5;00;48;5;124m░[38;5;88;48;5;88m [38;5;209;48;5;88m [38;5;209;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;204;48;5;52m▒[38;5;52;48;5;0m [38;5;22;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;209;48;5;130m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;209;48;5;124m░[38;5;124;48;5;124m░[38;5;07;48;5;124m░[38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;124m░[38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;209;48;5;00m░[38;5;209;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;209;48;5;88m [38;5;07;48;5;88m░[38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;88;48;5;88m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;209;48;5;235m▒[38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;75;48;5;0m [38;5;0;48;5;0m▓[38;5;22;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;204;48;5;232m [38;5;209;48;5;1m░[38;5;209;48;5;130m░[38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;00;48;5;124m░[38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;124m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;07;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;52;48;5;52m░[38;5;52;48;5;0m [38;5;69;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;52m [38;5;124;48;5;124m░[38;5;209;48;5;124m░[38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;209;48;5;124m░[38;5;1;48;5;1m [38;5;88;48;5;88m░[38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;07;48;5;1m▒[38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;124;48;5;124m░[38;5;07;48;5;124m░[38;5;52;48;5;232m [38;5;17;48;5;0m [38;5;69;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;209;48;5;88m░[38;5;209;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m░[38;5;1;48;5;1m░[38;5;209;48;5;52m [38;5;88;48;5;88m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;00m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;1;48;5;52m [38;5;1;48;5;52m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;124;48;5;88m░[38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;209;48;5;52m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;1m░[38;5;124;48;5;88m░[38;5;1;48;5;1m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;07;48;5;124m░[38;5;52;48;5;52m [38;5;204;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;52m░[38;5;88;48;5;88m░[38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;209;48;5;00m░[38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m░[38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;209;48;5;124m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;07;48;5;131m▒[38;5;117;48;5;0m [38;5;171;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;204;48;5;233m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;209;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;52m░[38;5;52;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;88m░[38;5;52;48;5;52m [38;5;204;48;5;1m░[38;5;52;48;5;52m [38;5;209;48;5;06m [38;5;209;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;124m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;88;48;5;88m [38;5;88;48;5;88m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;130m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;124m░[38;5;1;48;5;1m [38;5;1;48;5;1m░[38;5;88;48;5;88m░[38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;22;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;88;48;5;1m [38;5;124;48;5;124m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;209;48;5;124m░[38;5;209;48;5;124m░[38;5;52;48;5;52m [38;5;209;48;5;52m [38;5;209;48;5;88m░[38;5;52;48;5;52m [38;5;07;48;5;88m▒[38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;209;48;5;124m░[38;5;52;48;5;52m [38;5;204;48;5;233m░[38;5;52;48;5;52m░[38;5;209;48;5;06m░[38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;209;48;5;07m▒[38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;88;48;5;88m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;196;48;5;202m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;00;48;5;00m [38;5;52;48;5;233m [38;5;17;48;5;232m [38;5;0;48;5;0m▓[38;5;69;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;23;48;5;0m [38;5;17;48;5;0m [38;5;52;48;5;0m [38;5;88;48;5;88m░[38;5;52;48;5;52m [38;5;88;48;5;1m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;1m░[38;5;52;48;5;52m [38;5;209;48;5;130m░[38;5;209;48;5;124m░[38;5;209;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;07;48;5;124m░[38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;209;48;5;1m░[38;5;52;48;5;52m [38;5;52;48;5;233m [38;5;209;48;5;52m▒[38;5;174;48;5;232m▒[38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;209;48;5;88m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;209;48;5;52m [38;5;88;48;5;88m░[38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;209;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;174;48;5;235m▒[38;5;52;48;5;232m [38;5;209;48;5;233m░[38;5;209;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;88m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;52;48;5;52m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;88;48;5;88m░[38;5;52;48;5;52m [38;5;07;48;5;52m░[38;5;52;48;5;232m [38;5;209;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;88m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;52;48;5;52m░[38;5;204;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;233m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;204;48;5;232m░[38;5;204;48;5;234m▒[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;209;48;5;88m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;209;48;5;52m░[38;5;07;48;5;233m░[38;5;07;48;5;232m▒[38;5;204;48;5;233m▒[38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;232m [38;5;08;48;5;233m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;00;48;5;00m░[38;5;209;48;5;00m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;52;48;5;232m [38;5;69;48;5;232m▒[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;124;48;5;124m░[38;5;88;48;5;1m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;209;48;5;00m░[38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;209;48;5;233m [38;5;209;48;5;1m░[38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;52;48;5;52m░[38;5;52;48;5;233m [38;5;52;48;5;233m [38;5;07;48;5;52m░[38;5;209;48;5;88m [38;5;88;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;1m [38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;209;48;5;88m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;209;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;209;48;5;124m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;209;48;5;130m░[38;5;52;48;5;52m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;07;48;5;52m▒[38;5;204;48;5;52m [38;5;1;48;5;1m [38;5;209;48;5;202m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;75;48;5;0m [38;5;17;48;5;0m [38;5;117;48;5;0m [38;5;52;48;5;52m [38;5;209;48;5;06m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;1;48;5;1m [38;5;07;48;5;124m░[38;5;52;48;5;52m [38;5;07;48;5;124m░[38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;88;48;5;1m░[38;5;52;48;5;52m [38;5;07;48;5;88m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;07;48;5;52m░[38;5;52;48;5;232m [38;5;52;48;5;232m [38;5;216;48;5;234m [38;5;209;48;5;52m [38;5;52;48;5;52m [38;5;124;48;5;124m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;1m░[38;5;209;48;5;124m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;124m░[38;5;209;48;5;124m░[38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;88;48;5;88m [38;5;88;48;5;1m [38;5;209;48;5;130m░[38;5;88;48;5;88m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;52;48;5;52m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;52;48;5;0m [38;5;124;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;52m░[38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;209;48;5;88m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;209;48;5;124m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m░[38;5;88;48;5;1m░[38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;88;48;5;1m░[38;5;52;48;5;52m [38;5;07;48;5;234m░[38;5;204;48;5;232m░[38;5;52;48;5;52m [38;5;209;48;5;52m [38;5;52;48;5;233m [38;5;1;48;5;52m░[38;5;88;48;5;88m [38;5;202;48;5;208m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;124m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;00;48;5;124m░[38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;88;48;5;88m░[38;5;52;48;5;52m [38;5;07;48;5;88m▒[38;5;88;48;5;88m [38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;209;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;53;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;52;48;5;232m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;52m [38;5;88;48;5;88m [38;5;209;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;06m░[38;5;204;48;5;52m [38;5;200;48;5;233m▓[38;5;209;48;5;52m░[38;5;52;48;5;52m [38;5;209;48;5;124m [38;5;209;48;5;00m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;88;48;5;88m░[38;5;1;48;5;1m [38;5;204;48;5;52m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;209;48;5;06m [38;5;209;48;5;00m [38;5;06;48;5;06m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;209;48;5;06m░[38;5;52;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;52m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;88;48;5;88m░[38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;202m░[38;5;202;48;5;209m [38;5;209;48;5;00m [38;5;209;48;5;124m░[38;5;209;48;5;124m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;06m░[38;5;209;48;5;124m [38;5;222;48;5;221m [38;5;172;48;5;215m [38;5;208;48;5;208m [38;5;222;48;5;214m [38;5;172;48;5;214m [38;5;216;48;5;06m [38;5;216;48;5;202m [38;5;216;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;209;48;5;06m [38;5;209;48;5;06m [38;5;209;48;5;202m [38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;130;48;5;208m [38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;215;48;5;208m [38;5;216;48;5;202m [38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;52;48;5;52m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;69;48;5;0m [38;5;209;48;5;52m▒[38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;52;48;5;52m [38;5;209;48;5;07m░[38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;209;48;5;06m░[38;5;209;48;5;06m [38;5;209;48;5;06m░[38;5;88;48;5;88m [38;5;124;48;5;124m░[38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;202;48;5;202m [38;5;215;48;5;208m [38;5;202;48;5;06m [38;5;202;48;5;202m [38;5;00;48;5;00m [38;5;209;48;5;06m [38;5;172;48;5;214m [38;5;172;48;5;214m [38;5;172;48;5;214m [38;5;221;48;5;221m [38;5;172;48;5;172m░[38;5;221;48;5;214m [38;5;172;48;5;214m [38;5;172;48;5;214m [38;5;215;48;5;208m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;06;48;5;202m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;209;48;5;202m [38;5;06;48;5;202m [38;5;215;48;5;208m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;00;48;5;124m░[38;5;209;48;5;00m [38;5;52;48;5;52m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;75;48;5;0m [38;5;17;48;5;0m [38;5;52;48;5;52m [38;5;88;48;5;1m [38;5;52;48;5;52m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;88;48;5;1m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;209;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;202;48;5;202m░[38;5;06;48;5;208m [38;5;216;48;5;06m [38;5;215;48;5;208m░[38;5;130;48;5;208m [38;5;172;48;5;214m [38;5;222;48;5;214m [38;5;136;48;5;221m [38;5;178;48;5;221m [38;5;94;48;5;221m [38;5;94;48;5;214m [38;5;178;48;5;221m [38;5;136;48;5;221m [38;5;172;48;5;214m [38;5;208;48;5;208m [38;5;06;48;5;202m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;215;48;5;208m [38;5;172;48;5;214m [38;5;172;48;5;214m [38;5;172;48;5;208m [38;5;221;48;5;220m [38;5;227;48;5;227m [38;5;227;48;5;227m [38;5;215;48;5;208m [38;5;216;48;5;202m [38;5;209;48;5;00m [38;5;06;48;5;208m [38;5;124;48;5;124m [38;5;209;48;5;06m░[38;5;209;48;5;124m░[38;5;88;48;5;88m [38;5;209;48;5;124m [38;5;52;48;5;233m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;52;48;5;232m [38;5;1;48;5;52m░[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;196;48;5;00m░[38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;208m [38;5;06;48;5;202m [38;5;130;48;5;208m [38;5;222;48;5;214m [38;5;136;48;5;221m [38;5;227;48;5;227m [38;5;136;48;5;220m [38;5;220;48;5;221m [38;5;94;48;5;178m░[38;5;220;48;5;221m [38;5;178;48;5;221m [38;5;214;48;5;136m [38;5;220;48;5;221m [38;5;178;48;5;221m [38;5;172;48;5;208m░[38;5;220;48;5;221m [38;5;136;48;5;220m [38;5;130;48;5;208m [38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;202;48;5;202m [38;5;172;48;5;215m [38;5;130;48;5;172m [38;5;172;48;5;214m░[38;5;172;48;5;214m [38;5;172;48;5;214m [38;5;221;48;5;220m [38;5;136;48;5;220m [38;5;220;48;5;221m [38;5;214;48;5;214m [38;5;222;48;5;214m [38;5;172;48;5;214m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;06m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;52;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;111;48;5;232m [38;5;0;48;5;0m▓[38;5;52;48;5;52m [38;5;209;48;5;00m [38;5;209;48;5;06m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;1;48;5;1m░[38;5;209;48;5;124m [38;5;209;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;06m░[38;5;209;48;5;00m [38;5;216;48;5;202m [38;5;06;48;5;208m [38;5;216;48;5;202m [38;5;202;48;5;202m [38;5;215;48;5;208m [38;5;172;48;5;208m [38;5;94;48;5;214m [38;5;214;48;5;214m [38;5;208;48;5;208m [38;5;215;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m░[38;5;136;48;5;221m [38;5;136;48;5;221m [38;5;221;48;5;220m [38;5;220;48;5;221m [38;5;221;48;5;221m [38;5;202;48;5;06m [38;5;06;48;5;202m [38;5;130;48;5;214m [38;5;06;48;5;208m [38;5;06;48;5;208m [38;5;216;48;5;202m░[38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;214;48;5;215m [38;5;130;48;5;214m [38;5;209;48;5;06m [38;5;215;48;5;208m [38;5;172;48;5;214m░[38;5;136;48;5;221m [38;5;136;48;5;220m░[38;5;227;48;5;227m [38;5;94;48;5;214m [38;5;130;48;5;208m [38;5;172;48;5;214m [38;5;130;48;5;208m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;52;48;5;232m [38;5;209;48;5;124m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;209;48;5;06m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;06m░[38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;208;48;5;208m [38;5;130;48;5;208m [38;5;172;48;5;208m [38;5;222;48;5;214m [38;5;215;48;5;208m [38;5;209;48;5;06m [38;5;209;48;5;202m░[38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;216;48;5;202m [38;5;202;48;5;06m [38;5;220;48;5;221m [38;5;220;48;5;221m [38;5;172;48;5;214m [38;5;136;48;5;220m [38;5;172;48;5;214m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;172;48;5;208m [38;5;172;48;5;214m [38;5;130;48;5;208m [38;5;172;48;5;214m [38;5;06;48;5;208m [38;5;216;48;5;06m [38;5;07;48;5;88m▒[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;52m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;07;48;5;52m░[38;5;52;48;5;52m░[38;5;52;48;5;233m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;1;48;5;1m [38;5;52;48;5;52m░[38;5;209;48;5;52m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;00;48;5;124m░[38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;124m [38;5;209;48;5;06m [38;5;06;48;5;202m [38;5;209;48;5;06m [38;5;216;48;5;202m [38;5;124;48;5;124m [38;5;209;48;5;06m [38;5;209;48;5;130m░[38;5;52;48;5;52m [38;5;204;48;5;1m [38;5;52;48;5;52m [38;5;209;48;5;00m [38;5;202;48;5;06m [38;5;130;48;5;208m [38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;215;48;5;208m [38;5;222;48;5;214m [38;5;172;48;5;214m [38;5;06;48;5;202m [38;5;130;48;5;215m [38;5;209;48;5;06m [38;5;06;48;5;202m [38;5;172;48;5;214m [38;5;94;48;5;214m [38;5;172;48;5;208m [38;5;202;48;5;202m [38;5;202;48;5;202m [38;5;208;48;5;208m [38;5;06;48;5;208m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;232m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;209;48;5;124m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;88;48;5;88m░[38;5;1;48;5;1m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;52;48;5;52m [38;5;52;48;5;233m [38;5;204;48;5;52m [38;5;1;48;5;1m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;06m░[38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m░[38;5;52;48;5;52m [38;5;209;48;5;130m░[38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;06m░[38;5;209;48;5;06m░[38;5;88;48;5;88m [38;5;209;48;5;00m░[38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;216;48;5;06m [38;5;172;48;5;214m [38;5;215;48;5;208m [38;5;06;48;5;208m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;215;48;5;208m [38;5;208;48;5;208m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;06;48;5;202m [38;5;209;48;5;00m [38;5;216;48;5;202m [38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;23;48;5;0m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;00;48;5;00m░[38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;88;48;5;88m░[38;5;1;48;5;1m [38;5;52;48;5;52m [38;5;52;48;5;52m [38;5;88;48;5;1m░[38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;209;48;5;202m░[38;5;216;48;5;202m░[38;5;209;48;5;06m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;202;48;5;202m [38;5;06;48;5;208m [38;5;216;48;5;202m [38;5;209;48;5;06m [38;5;209;48;5;00m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;215;48;5;208m [38;5;06;48;5;202m [38;5;130;48;5;208m [38;5;216;48;5;202m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m░[38;5;52;48;5;232m [38;5;23;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;42;48;5;0m [38;5;52;48;5;233m [38;5;52;48;5;52m [38;5;1;48;5;52m░[38;5;52;48;5;52m [38;5;1;48;5;1m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;00;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;52m░[38;5;52;48;5;52m░[38;5;1;48;5;1m░[38;5;07;48;5;124m░[38;5;52;48;5;52m [38;5;1;48;5;1m░[38;5;209;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;06;48;5;208m [38;5;06;48;5;202m [38;5;202;48;5;202m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;216;48;5;202m [38;5;06;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;202;48;5;202m [38;5;216;48;5;202m [38;5;216;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;124m [38;5;88;48;5;88m [38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;23;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;23;48;5;0m [38;5;52;48;5;0m [38;5;07;48;5;1m░[38;5;52;48;5;52m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;06m░[38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;1;48;5;1m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;06m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;00;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;209;48;5;06m [38;5;216;48;5;202m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;204;48;5;88m░[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;99;48;5;0m [38;5;22;48;5;0m [38;5;07;48;5;1m▒[38;5;209;48;5;124m░[38;5;196;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;1;48;5;1m [38;5;209;48;5;06m░[38;5;00;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;202m [38;5;216;48;5;202m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;196;48;5;00m░[38;5;1;48;5;1m░[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;99;48;5;0m [38;5;47;48;5;0m [38;5;52;48;5;0m [38;5;209;48;5;130m░[38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;06m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;00;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;209;48;5;202m░[38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;209;48;5;202m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;124m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;1m░[38;5;204;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;24;48;5;0m [38;5;52;48;5;0m [38;5;07;48;5;124m▒[38;5;124;48;5;124m [38;5;209;48;5;202m░[38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;204;48;5;1m░[38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;69;48;5;0m [38;5;17;48;5;0m [38;5;23;48;5;0m [38;5;52;48;5;0m [38;5;209;48;5;94m▒[38;5;209;48;5;124m [38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;202m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;204;48;5;52m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;52;48;5;0m [38;5;209;48;5;1m░[38;5;00;48;5;00m░[38;5;209;48;5;196m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;202m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m░[38;5;00;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m░[38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;209;48;5;124m [38;5;00;48;5;00m [38;5;00;48;5;124m░[38;5;88;48;5;88m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m░[38;5;124;48;5;124m [38;5;88;48;5;88m [38;5;88;48;5;88m [38;5;204;48;5;233m░[38;5;52;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;232m [38;5;52;48;5;0m [38;5;52;48;5;232m [38;5;07;48;5;130m▒[38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m [38;5;209;48;5;00m░[38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m░[38;5;209;48;5;00m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;124;48;5;124m░[38;5;1;48;5;1m░[38;5;52;48;5;232m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;0;48;5;0m▓[38;5;52;48;5;0m [38;5;52;48;5;232m [38;5;52;48;5;52m░[38;5;07;48;5;124m░[38;5;00;48;5;00m░[38;5;209;48;5;00m░[38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;124;48;5;124m [38;5;00;48;5;00m [38;5;00;48;5;00m [38;5;209;48;5;00m [38;5;209;48;5;00m [38;5;124;48;5;124m░[38;5;07;48;5;124m░[38;5;52;48;5;52m [38;5;52;48;5;233m [38;5;52;48;5;0m [38;5;0;48;5;0m▓[38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [38;5;17;48;5;0m [0m
|
||||
[0m
|
||||
|
418
bundle/telescope.nvim-0.1.8/developers.md
Normal file
418
bundle/telescope.nvim-0.1.8/developers.md
Normal file
@ -0,0 +1,418 @@
|
||||
# Developers
|
||||
|
||||
- [Introduction](#introduction)
|
||||
- [Guide to your first Picker](#guide-to-your-first-picker)
|
||||
- [Requires](#requires)
|
||||
- [First Picker](#first-picker)
|
||||
- [Replacing Actions](#replacing-actions)
|
||||
- [Entry Maker](#entry-maker)
|
||||
- [Oneshot job](#oneshot-job)
|
||||
- [Previewer](#previewer)
|
||||
- [More examples](#more-examples)
|
||||
- [Bundling as Extension](#bundling-as-extension)
|
||||
- [Technical](#technical)
|
||||
- [picker](#picker)
|
||||
- [finders](#finders)
|
||||
- [actions](#actions)
|
||||
- [previewers](#previewers)
|
||||
|
||||
## Introduction
|
||||
|
||||
So you want to develop your own picker and/or extension for telescope? Then you
|
||||
are in the right place! This file will first present an introduction on how to
|
||||
do this. After that, this document will present a technical explanation of
|
||||
pickers, finders, actions and the previewer. Should you now yet have an idea of
|
||||
the general telescope architecture and its components, it is first recommend to
|
||||
familiarize yourself with the architectural flow-chart that is provided in
|
||||
vim docs (`:h telescope.nvim`). You can find more information in specific help
|
||||
pages and we will probably move some of the technical stuff to our vim help docs
|
||||
in the future.
|
||||
|
||||
This guide is mainly for telescope so it will assume that you already have some knowledge of the Lua
|
||||
programming language. If not then you can find information for Lua here:
|
||||
- [Lua 5.1 Manual](https://www.lua.org/manual/5.1/)
|
||||
- [Getting started using Lua in Neovim](https://github.com/nanotee/nvim-lua-guide)
|
||||
|
||||
## Guide to your first Picker
|
||||
|
||||
To guide you along the way to your first picker we will open an empty lua
|
||||
scratch file, in which we will develop the picker and run it each time using
|
||||
`:luafile %`. Later we will bundle this file as an extension.
|
||||
|
||||
### Requires
|
||||
|
||||
The most important includes are the following modules:
|
||||
```lua
|
||||
local pickers = require "telescope.pickers"
|
||||
local finders = require "telescope.finders"
|
||||
local conf = require("telescope.config").values
|
||||
```
|
||||
|
||||
- `pickers`: main module which is used to create a new picker.
|
||||
- `finders`: provides interfaces to fill the picker with items.
|
||||
- `config`: `values` table which holds the user's configuration.
|
||||
So to make it easier we access this table directly in `conf`.
|
||||
|
||||
### First Picker
|
||||
|
||||
We will now make the simplest color picker. (We will approach this example step by step,
|
||||
you will still need to have the previous requires section above this code.)
|
||||
|
||||
```lua
|
||||
-- our picker function: colors
|
||||
local colors = function(opts)
|
||||
opts = opts or {}
|
||||
pickers.new(opts, {
|
||||
prompt_title = "colors",
|
||||
finder = finders.new_table {
|
||||
results = { "red", "green", "blue" }
|
||||
},
|
||||
sorter = conf.generic_sorter(opts),
|
||||
}):find()
|
||||
end
|
||||
|
||||
-- to execute the function
|
||||
colors()
|
||||
```
|
||||
|
||||
Running this code with `:luafile %` should open a telescope picker with the entries `red`,
|
||||
`green`, `blue`. Selecting a color and pressing enter will open a new file. In this case
|
||||
it's not what we want, so we will address this after explaining this snippet.
|
||||
|
||||
We will define a new function `colors` which accepts a table `opts`. This is good
|
||||
practice because now the user can change how telescope behaves by passing in their
|
||||
own `opts` table when calling `colors`.
|
||||
|
||||
For example the user can pass in a configuration in `opts` which allows them to change
|
||||
the theme used for the picker. To allow this, we make sure to pass the `opts` table
|
||||
as the first argument to `pickers.new`. The second argument is a table
|
||||
which defines the default behavior of the picker.
|
||||
|
||||
We have defined a `prompt_title` but this isn't required. This will default to use
|
||||
the text `Prompt` if not set.
|
||||
|
||||
`finder` is a required field that needs to be set to the result of a `finders`
|
||||
function. In this case we take `new_table` which allows us to define a static
|
||||
set of values, `results`, which is an array of elements, in this case our colors
|
||||
as strings. It doesn't have to be an array of strings, it can also be an array of
|
||||
tables. More on this later.
|
||||
|
||||
`sorter` on the other hand is not a required field but it's good practice to
|
||||
define it, because the default value will set it to `empty()`, meaning no sorter
|
||||
is attached and you can't filter the results. Good practice is to set the sorter
|
||||
to either `conf.generic_sorter(opts)` or `conf.file_sorter(opts)`.
|
||||
|
||||
Setting it to a value from `conf` will respect the user's configuration, so if a user has set-up
|
||||
`fzf-native` as the sorter then this decision will be respected and the `fzf-native` sorter
|
||||
will be attached. It's also suggested to pass in `opts` here because the sorter
|
||||
could make use of it. As an example the fzf sorter can be configured to be case
|
||||
sensitive or insensitive. A user can set-up a default behavior and then alter
|
||||
this behavior with the `opts` table.
|
||||
|
||||
After the picker is defined you need to call `find()` to actually start the
|
||||
picker.
|
||||
|
||||
### Replacing Actions
|
||||
|
||||
Now calling `colors()` will result in the opening of telescope with the values:
|
||||
`red`, `green` and `blue`. The default theme isn't optimal for this picker so we
|
||||
want to change it and thanks to the acceptance of `opts` we can. We will replace
|
||||
the last line with the following to open the picker with the `dropdown` theme.
|
||||
|
||||
```lua
|
||||
colors(require("telescope.themes").get_dropdown{})
|
||||
```
|
||||
|
||||
Now let's address the issue that selecting a color opens a new buffer. For that
|
||||
we need to replace the default select action. The benefit of replacing rather than
|
||||
mapping a new function to `<CR>` is that it will respect the user's configuration. So
|
||||
if a user has remapped `select_default` to another key then this decision will
|
||||
be respected and it works as expected for the user.
|
||||
|
||||
To make this work we need more requires at the top of the file.
|
||||
|
||||
```lua
|
||||
local actions = require "telescope.actions"
|
||||
local action_state = require "telescope.actions.state"
|
||||
```
|
||||
|
||||
- `actions`: holds all actions that can be mapped by a user. We also need it to
|
||||
access the default action so we can replace it. Also see `:help
|
||||
telescope.actions`
|
||||
|
||||
- `action_state`: gives us a few utility functions we can use to get the
|
||||
current picker, current selection or current line. Also see `:help
|
||||
telescope.actions.state`
|
||||
|
||||
So let's replace the default action. For that we need to define a new key value
|
||||
pair in our table that we pass into `pickers.new`, for example after `sorter`.
|
||||
|
||||
```lua
|
||||
attach_mappings = function(prompt_bufnr, map)
|
||||
actions.select_default:replace(function()
|
||||
actions.close(prompt_bufnr)
|
||||
local selection = action_state.get_selected_entry()
|
||||
-- print(vim.inspect(selection))
|
||||
vim.api.nvim_put({ selection[1] }, "", false, true)
|
||||
end)
|
||||
return true
|
||||
end,
|
||||
```
|
||||
|
||||
We do this by setting the `attach_mappings` key to a function. This function
|
||||
needs to return either `true` or `false`. If it returns false it means that only
|
||||
the actions defined in the function should be attached. In this case it would
|
||||
remove the default actions to move the selected item in the picker,
|
||||
`move_selection_{next,previous}`. So in most cases you'll want to return `true`.
|
||||
If the function does not return anything then an error is thrown.
|
||||
|
||||
The `attach_mappings` function has two parameters, `prompt_bufnr` is the buffer number
|
||||
of the prompt buffer, which we can use to get the pickers object and `map` is a function
|
||||
we can use to map actions or functions to arbitrary key sequences.
|
||||
|
||||
Now we are replacing `select_default` the default action, which is mapped to `<CR>`
|
||||
by default. To do this we need to call `actions.select_default:replace` and
|
||||
pass in a new function.
|
||||
|
||||
In this new function we first close the picker with `actions.close` and then
|
||||
get the `selection` with `action_state`. It's important
|
||||
to notice that you can still get the selection and current prompt input
|
||||
(`action_state.get_current_line()`) with `action_state` even after the picker is
|
||||
closed.
|
||||
|
||||
You can look at the selection with `print(vim.inspect(selection))` and see that it differs from our input
|
||||
(string), this is because internally we pack it into a table with different
|
||||
keys. You can specify this behavior and we'll talk about that in the next
|
||||
section. Now all that is left is to do something with the selection we have. In
|
||||
this case we just put the text in the current buffer with `vim.api.nvim_put`.
|
||||
|
||||
### Entry Maker
|
||||
|
||||
Entry maker is a function used to transform an item from the finder to an
|
||||
internal entry table, which has a few required keys. It allows us to display
|
||||
one string but match something completely different. It also allows us to set
|
||||
an absolute path when working with files (so the file will always be found)
|
||||
and a relative file path for display and sorting. This means the relative file
|
||||
path doesn't even need to be valid in the context of the current working directory.
|
||||
|
||||
We will now try to define our entry maker for our example by providing an
|
||||
`entry_maker` to `finders.new_table` and changing our table to be a little bit
|
||||
more interesting. We will end up with the following new code for `finders.new_table`:
|
||||
|
||||
```lua
|
||||
finder = finders.new_table {
|
||||
results = {
|
||||
{ "red", "#ff0000" },
|
||||
{ "green", "#00ff00" },
|
||||
{ "blue", "#0000ff" },
|
||||
},
|
||||
entry_maker = function(entry)
|
||||
return {
|
||||
value = entry,
|
||||
display = entry[1],
|
||||
ordinal = entry[1],
|
||||
}
|
||||
end
|
||||
},
|
||||
```
|
||||
|
||||
With the new snippet, we no longer have an array of strings but an array of
|
||||
tables. Each table has a color, name, and the color's hex value.
|
||||
|
||||
`entry_maker` is a function that will receive each table and then we can set the
|
||||
values we need. It's best practice to have a `value` reference to the
|
||||
original entry, that way we will always have access to the complete table in our
|
||||
action.
|
||||
|
||||
The `display` key is required and is either a string or a `function(tbl)`,
|
||||
where `tbl` is the table returned by `entry_maker`. So in this example `tbl` would
|
||||
give our `display` function access to `value` and `ordinal`.
|
||||
|
||||
If our picker will have a lot of values it's suggested to use a function for `display`,
|
||||
especially if you are modifying the text to display. This way the function will only be executed
|
||||
for the entries being displayed. For an example of an entry maker take a look at
|
||||
`lua/telescope/make_entry.lua`.
|
||||
|
||||
A good way to make your `display` more like a table is to use a `displayer` which can be found in
|
||||
`lua/telescope/pickers/entry_display.lua`. A simpler example of `displayer` is the
|
||||
function `gen_from_git_commits` in `make_entry.lua`.
|
||||
|
||||
The `ordinal` is also required, which is used for sorting. As already mentioned
|
||||
this allows us to have different display and sorting values. This allows `display`
|
||||
to be more complex with icons and special indicators but `ordinal` could be a simpler
|
||||
sorting key.
|
||||
|
||||
There are other important keys which can be set, but do not make sense in the
|
||||
current context as we are not dealing with files:
|
||||
- `path`: to set the absolute path of the file to make sure it's always found
|
||||
- `lnum`: to specify a line number in the file. This will allow the
|
||||
`conf.grep_previewer` to show that line and the default action to jump to
|
||||
that line.
|
||||
|
||||
### Previewer
|
||||
|
||||
We will not write a previewer for this picker because it isn't required for
|
||||
basic colors and is a more advanced topic. It's already well documented in `:help
|
||||
telescope.previewers` so you can read this section if you want to write your
|
||||
own `previewer`. If you want a file previewer without columns you should
|
||||
default to `conf.file_previewer` or `conf.grep_previewer`.
|
||||
|
||||
### Oneshot Job
|
||||
|
||||
The `oneshot_job` finder can be used to have an asynchronous external process which will
|
||||
find results and call `entry_maker` for each entry. An example usage would be
|
||||
`find`.
|
||||
|
||||
```lua
|
||||
finder = finders.new_oneshot_job { "find", opts },
|
||||
```
|
||||
|
||||
### More examples
|
||||
|
||||
A good way to find more examples is to look into the [lua/telescope/builtin](https://github.com/nvim-telescope/telescope.nvim/tree/master/lua/telescope/builtin)
|
||||
directory which contains all of the builtin pickers. Another way to find more examples
|
||||
is to take a look at the [extension wiki page](https://github.com/nvim-telescope/telescope.nvim/wiki/Extensions)
|
||||
as this provides many extensions people have already written which use these concepts.
|
||||
|
||||
If you still have any questions after reading this guide please feel free to ask us for
|
||||
more information on [gitter](https://gitter.im/nvim-telescope/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
||||
and we will happily answer your questions and hopefully allow us to improve this guide. You can also
|
||||
help us to improve this guide by sending a PR.
|
||||
|
||||
### Bundling as extension
|
||||
|
||||
If you now want to bundle your picker as extension, so it is available as
|
||||
picker via the `:Telescope` command, the following has to be done.
|
||||
|
||||
Structure your plugin as follows, so it can be found by telescope:
|
||||
|
||||
```
|
||||
.
|
||||
└── lua
|
||||
├── plugin_name # Your actual plugin code
|
||||
│ ├── init.lua
|
||||
│ └── some_file.lua
|
||||
└── telescope
|
||||
└── _extensions # The underscore is significant
|
||||
└─ plugin_name.lua # Init and register your extension
|
||||
```
|
||||
|
||||
The `lua/telescope/_extensions/plugin_name.lua` file needs to return the
|
||||
following: (see `:help telescope.register_extension`)
|
||||
|
||||
```lua
|
||||
return require("telescope").register_extension {
|
||||
setup = function(ext_config, config)
|
||||
-- access extension config and user config
|
||||
end,
|
||||
exports = {
|
||||
stuff = require("plugin_name").stuff
|
||||
},
|
||||
}
|
||||
```
|
||||
|
||||
The setup function can be used to access the extension config and setup
|
||||
extension specific global configuration. You also have access to the user
|
||||
telescope default config, so you can override specific internal function. For
|
||||
example sorters if you have an extension that provides a replacement sorter,
|
||||
like
|
||||
[telescope-fzf-native](https://github.com/nvim-telescope/telescope-fzf-native.nvim).
|
||||
|
||||
The exports table declares the exported pickers that can then be accessed via
|
||||
`Telescope plugin_name stuff`. If you only provide one export it is suggested
|
||||
that you name the key like the plugin, so you can access it with `Telescope
|
||||
plugin_name`.
|
||||
|
||||
|
||||
## Technical
|
||||
|
||||
### Picker
|
||||
|
||||
This section is an overview of how custom pickers can be created and configured.
|
||||
|
||||
```lua
|
||||
-- lua/telescope/pickers.lua
|
||||
Picker:new{
|
||||
prompt_title = "",
|
||||
finder = FUNCTION, -- see lua/telescope/finders.lua
|
||||
sorter = FUNCTION, -- see lua/telescope/sorters.lua
|
||||
previewer = FUNCTION, -- see lua/telescope/previewers/previewer.lua
|
||||
selection_strategy = "reset", -- follow, reset, row
|
||||
border = {},
|
||||
borderchars = {"─", "│", "─", "│", "┌", "┐", "┘", "└"},
|
||||
default_selection_index = 1, -- Change the index of the initial selection row
|
||||
}
|
||||
```
|
||||
|
||||
### Finders
|
||||
<!-- TODO what are finders -->
|
||||
```lua
|
||||
-- lua/telescope/finders.lua
|
||||
Finder:new{
|
||||
entry_maker = function(line) end,
|
||||
fn_command = function() { command = "", args = { "ls-files" } } end,
|
||||
static = false,
|
||||
maximum_results = false
|
||||
}
|
||||
```
|
||||
|
||||
### Actions
|
||||
|
||||
#### Overriding actions/action_set
|
||||
|
||||
How to override what different functions / keys do.
|
||||
|
||||
TODO: Talk about what actions vs actions sets are
|
||||
|
||||
##### Relevant Files
|
||||
|
||||
- `lua/telescope/actions/init.lua`
|
||||
- The most "user-facing" of the files, which has the builtin actions that we provide
|
||||
- `lua/telescope/actions/set.lua`
|
||||
- The second most "user-facing" of the files. This provides actions that are consumed by several builtin actions, which allows for only overriding ONE item, instead of copying the same configuration / function several times.
|
||||
- `lua/telescope/actions/state.lua`
|
||||
- Provides APIs for interacting with the state of telescope from within actions.
|
||||
- These are useful for writing your own actions and interacting with telescope
|
||||
- `lua/telescope/actions/mt.lua`
|
||||
- You probably don't need to look at this, but it defines the behavior of actions.
|
||||
|
||||
##### `:replace(function)`
|
||||
|
||||
Directly override an action with a new function
|
||||
|
||||
```lua
|
||||
local actions = require('telescope.actions')
|
||||
actions.select_default:replace(git_checkout_function)
|
||||
```
|
||||
|
||||
##### `:replace_if(conditional, function)`
|
||||
|
||||
Override an action only when `conditional` returns true.
|
||||
|
||||
```lua
|
||||
local action_set = require('telescope.actions.set')
|
||||
action_set.select:replace_if(
|
||||
function()
|
||||
return action_state.get_selected_entry().path:sub(-1) == os_sep
|
||||
end, function(_, type)
|
||||
-- type is { "default", "horizontal", "vertical", "tab" }
|
||||
local path = actions.get_selected_entry().path
|
||||
action_state.get_current_picker(prompt_bufnr):refresh(gen_new_finder(new_cwd), { reset_prompt = true})
|
||||
end
|
||||
)
|
||||
```
|
||||
|
||||
##### `:replace_map(configuration)`
|
||||
|
||||
```lua
|
||||
local action_set = require('telescope.actions.set')
|
||||
-- Use functions as keys to map to which function to execute when called.
|
||||
action_set.select:replace_map {
|
||||
[function(e) return e > 0 end] = function(e) return (e / 10) end,
|
||||
[function(e) return e == 0 end] = function(e) return (e + 10) end,
|
||||
}
|
||||
```
|
||||
|
||||
### Previewers
|
||||
|
||||
See `:help telescope.previewers`
|
32
bundle/telescope.nvim-0.1.8/doc/secret.txt
Normal file
32
bundle/telescope.nvim-0.1.8/doc/secret.txt
Normal file
@ -0,0 +1,32 @@
|
||||
================================================================================
|
||||
*telescope.theprimeagen*
|
||||
|
||||
To The Viewers: ~
|
||||
|
||||
Oh why hello, I didn't see you there. So nice of you to join us. The Primeagen
|
||||
must have sent you here.
|
||||
|
||||
The places you want to look for help are: (you can do `:help <name>` below)
|
||||
- |telescope.nvim|
|
||||
- |telescope.setup|
|
||||
- |telescope.builtin|
|
||||
- |telescope.layout|
|
||||
- |telescope.actions|
|
||||
|
||||
I hope you enjoy telescope & Neovim. May your programming always be fun and
|
||||
your vimming be quick.
|
||||
|
||||
|
||||
|
||||
To The Primeagen: ~
|
||||
|
||||
Cyrnfr ernq guvf uryc znahny orsber pnyyvat zr ng 3 NZ jvgu gryrfpbcr
|
||||
rzretrapvrf. V xabj ynfg gvzr jr fnirq gur ragver fgernzvat vaqhfgel, ohg
|
||||
V unir n lbhat fba jub xrrcf zr hc ng avtug nyy ol uvzfrys. OGJ, unir lbh
|
||||
pbafvqrerq fraqvat culfvpny QIQf sbe znkvzhz dhnyvgl naq rneyl npprff gb arj
|
||||
pbagrag? Vg frrzf yvxr vg pbhyq or n cerggl pbby vqrn.
|
||||
|
||||
#FunzryrffFrysCebzbgvba: uggcf://tvguho.pbz/fcbafbef/gwqrievrf
|
||||
|
||||
|
||||
vim:tw=78:ts=8:ft=help:norl:
|
3739
bundle/telescope.nvim-0.1.8/doc/telescope.txt
Normal file
3739
bundle/telescope.nvim-0.1.8/doc/telescope.txt
Normal file
File diff suppressed because it is too large
Load Diff
258
bundle/telescope.nvim-0.1.8/doc/telescope_changelog.txt
Normal file
258
bundle/telescope.nvim-0.1.8/doc/telescope_changelog.txt
Normal file
@ -0,0 +1,258 @@
|
||||
================================================================================
|
||||
*telescope.changelog*
|
||||
|
||||
# Changelog
|
||||
|
||||
*telescope.changelog-922*
|
||||
|
||||
Date: May 17, 2021
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/922
|
||||
|
||||
This is one of our largest breaking changes thus far, so I (TJ) am adding some
|
||||
information here so that you can more easily update (without having to track
|
||||
down the commit, etc.).
|
||||
|
||||
The goal of these breaking changes is to greatly simplify the way
|
||||
configuration for layouts happen. This should make it much easier to configure
|
||||
each picker, layout_strategy, and more. Please report any bugs or behavior
|
||||
that is broken / confusing upstream and we can try and make the configuration
|
||||
better.
|
||||
|
||||
|telescope.setup()| has changed `layout_defaults` -> `layout_config`.
|
||||
This makes it so that the setup and the pickers share the same key,
|
||||
otherwise it is too confusing which key is for which.
|
||||
|
||||
|
||||
`picker:find()` now has different values available for configuring the UI.
|
||||
All configuration for the layout must be passed in the key:
|
||||
`layout_config`.
|
||||
|
||||
Previously, these keys were passed via `picker:find(opts)`, but should be
|
||||
passed via `opts.layout_config` now.
|
||||
- {height}
|
||||
- {width}
|
||||
- {prompt_position}
|
||||
- {preview_cutoff}
|
||||
|
||||
These keys are removed:
|
||||
- {results_height}: This key is no longer valid. Instead, use `height`
|
||||
and the corresponding `preview_*` options for the layout strategy to
|
||||
get the correct results height. This simplifies the configuration
|
||||
for many of the existing strategies.
|
||||
|
||||
- {results_width}: This key actually never did anything. It was
|
||||
leftover from some hacking that I had attempted before. Instead you
|
||||
should be using something like the `preview_width` configuration
|
||||
option for |layout_strategies.horizontal()|
|
||||
|
||||
You should get error messages when you try and use any of the above keys now.
|
||||
|
||||
*telescope.changelog-839*
|
||||
|
||||
Date: July 7, 2021
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/839
|
||||
|
||||
Small breaking change regarding `shorten_path` and `hide_filename`.
|
||||
This allows to configure path displays on a global level and offers a way for
|
||||
extension developers to make use of the same configuration, offering a better
|
||||
overall experience.
|
||||
|
||||
The new way to configure to configure path displays is with:
|
||||
`path_display`: It is a table and accepts multiple values:
|
||||
- "hidden" hide file names
|
||||
- "tail" only display the file name, and not the path
|
||||
- "absolute" display absolute paths
|
||||
- "shorten" only display the first character of each directory in
|
||||
the path
|
||||
see |telescope.defaults.path_display|
|
||||
|
||||
Example would be for a global configuration:
|
||||
require("telescope").setup{
|
||||
defaults = {
|
||||
path_display = {
|
||||
"shorten",
|
||||
"absolute",
|
||||
},
|
||||
}
|
||||
}
|
||||
|
||||
You can also still pass this to a single builtin call:
|
||||
require("telescope.builtin").find_files {
|
||||
path_display = { "shorten" }
|
||||
}
|
||||
|
||||
For extension developers there is a new util function that can be used to
|
||||
display a path:
|
||||
local filename = utils.transform_path(opts, entry.filename)
|
||||
|
||||
*telescope.changelog-473*
|
||||
|
||||
Date: July 14, 2021
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/473
|
||||
|
||||
Deprecation of telescope.path
|
||||
|
||||
Extension developers need to move to plenary.path, because we will remove the
|
||||
telescope.path module soon.
|
||||
|
||||
Guide to switch over to plenary.path
|
||||
- separator
|
||||
before: require("telescope.path").separator
|
||||
now: require("plenary.path").path.sep
|
||||
- home
|
||||
before: require("telescope.path").home
|
||||
now: require("plenary.path").path.home
|
||||
- make_relative
|
||||
before: require("telescope.path").make_relative(filepath, cwd)
|
||||
now: require("plenary.path"):new(filepath):make_relative(cwd)
|
||||
- shorten
|
||||
before: require("telescope.path").shorten(filepath)
|
||||
now: require("plenary.path"):new(filepath):shorten()
|
||||
with optional len, default is 1
|
||||
- normalize
|
||||
before: require("telescope.path").normalize(filepath, cwd)
|
||||
now: require("plenary.path"):new(filepath):normalize(cwd)
|
||||
- read_file
|
||||
before: require("telescope.path").read_file(filepath)
|
||||
now: require("plenary.path"):new(filepath):read()
|
||||
- read_file_async
|
||||
before: require("telescope.path").read_file_async(filepath, callback)
|
||||
now: require("plenary.path"):new(filepath):read(callback)
|
||||
|
||||
*telescope.changelog-1406*
|
||||
|
||||
Date: November 4, 2021
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/1406
|
||||
|
||||
Telescope requires Neovim release 0.5.1 or a recent nightly
|
||||
|
||||
Due to making use of newly implemented extmark features, Telescope now
|
||||
requires users to be on Neovim 0.5.1 (the most recent stable version) or on
|
||||
the LATEST version of Neovim nightly.
|
||||
|
||||
|
||||
*telescope.changelog-1549*
|
||||
|
||||
Date: December 10, 2021
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/1549
|
||||
|
||||
Telescope requires now Neovim release 0.6.0 or a more recent nightly.
|
||||
If you are running neovim nightly, you need to make sure that you are on the
|
||||
LATEST version. Every other commit is not supported. So make sure you build
|
||||
the newest nightly before reporting issues.
|
||||
|
||||
|
||||
*telescope.changelog-1553*
|
||||
|
||||
Date: December 10, 2021
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/1553
|
||||
|
||||
Move from `vim.lsp.diagnostic` to `vim.diagnostic`.
|
||||
|
||||
Because the newly added `vim.diagnostic` has no longer anything to do with lsp
|
||||
we also decided to rename our diagnostic functions:
|
||||
Telescope lsp_document_diagnostics -> Telescope diagnostics bufnr=0
|
||||
Telescope lsp_workspace_diagnostics -> Telescope diagnostics
|
||||
Because of that the `lsp_*_diagnostics` inside Telescope will be deprecated
|
||||
and removed soon. The new `diagnostics` works almost identical to the previous
|
||||
functions. Note that there is no longer a workspace diagnostics. You can only
|
||||
get all diagnostics for all open buffers.
|
||||
|
||||
|
||||
*telescope.changelog-1851*
|
||||
|
||||
Date: April 22, 2022
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/1851
|
||||
|
||||
Telescope requires now Neovim release 0.7.0 or a more recent nightly.
|
||||
If you are running Neovim nightly, you need to make sure that you are on the
|
||||
LATEST version. Every other commit is not supported. So make sure you build
|
||||
the newest nightly before reporting issues.
|
||||
In the future, we will adopt a different release strategy. This release
|
||||
strategy follows the approach that the latest telescope.nvim master will only
|
||||
work with latest Neovim nightly and we will provide tags for specific Neovim
|
||||
versions. You can read more about this strategy here:
|
||||
https://github.com/nvim-telescope/telescope.nvim/issues/1772
|
||||
|
||||
|
||||
*telescope.changelog-1866*
|
||||
|
||||
Date: April 25, 2022
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/1866
|
||||
|
||||
We decided to remove both `lsp_code_actions` and `lsp_range_code_actions`.
|
||||
Currently, both functions are highly duplicated code from neovim, with fewer
|
||||
features, because it's out of date. So rather that we copy over the required
|
||||
changes to fix some bugs or implement client side code actions, we decided to
|
||||
remove both of them and suggest you use `vim.lsp.buf.code_action` and
|
||||
`vim.lsp.buf.range_code_action`. The transition to it is easy thanks to
|
||||
`vim.ui.select` which allows you to override the select UI. We provide a small
|
||||
extension for quite some time that make it easy to use telescope for
|
||||
`vim.ui.select`. You can found the code here
|
||||
https://github.com/nvim-telescope/telescope-ui-select.nvim. It offers the same
|
||||
displaying as the current version of `lsp_code_actions`. An alternative is
|
||||
https://github.com/stevearc/dressing.nvim which has support for multiple
|
||||
different backends including telescope.
|
||||
|
||||
|
||||
*telescope.changelog-1945*
|
||||
|
||||
Date: July 01, 2022
|
||||
PR: https://github.com/nvim-telescope/telescope.nvim/pull/1945
|
||||
|
||||
This is our dev branch which contains a lot of PRs, a lot of fixes,
|
||||
refactoring and general quality of life improvements. It also contains new
|
||||
features, the most noteworthy are the following (mostly developed by the
|
||||
community):
|
||||
- feat: none strategy & control attachment (#1867)
|
||||
- feat: force buffer delete for terminal and improvements for
|
||||
Picker:delete_selection (#1943)
|
||||
- feat(tags): process tagfiles on the fly (#1989)
|
||||
- feat(builtin.lsp): implement builtin handlers for
|
||||
lsp.(incoming|outgoing)_calls (#1484)
|
||||
- feat: clear previewer if no item is selected (#2004)
|
||||
- feat: add min max boundary to width, height resolver (#2002)
|
||||
- feat: Add entry_index for entry_makers (#1850)
|
||||
- feat: refine with new_table (#1115)
|
||||
|
||||
The last one is one of the most exciting new features, because it allows you
|
||||
to go from live_grep into a fuzzy environment with the following mapping
|
||||
`<C-Space>`. It's a general interface we now implemented for `live_grep` and
|
||||
`lsp_dynamic_workspace_symbols` but it could also be easily implemented for
|
||||
other builtins, by us or the user. It's now available for extension developers.
|
||||
We will add documentation in the next couple of days and improve it by adding
|
||||
more options to configure it after the initial 0.1 release.
|
||||
|
||||
But as with all longer development phases, there are also some breaking
|
||||
changes. This is the main reason we moved development to a separate branch, for
|
||||
the past two months. We can't promise that there won't be more breaking
|
||||
changes, but it is the plan that this is the last set of breaking changes prior
|
||||
to the 0.1 release on July, 12. We are deeply sorry for the inconvenience. The
|
||||
following breaking changes are included in this PR:
|
||||
- break(git_files): change `show_untracked` default to false. Can be changed
|
||||
back with `:Telescope git_files show_untracked=true`
|
||||
- break: deprecate `utils.get_default` `utils.if_nil`, will be removed prior
|
||||
to 0.1, so if you use it in your config, please move to `vim.F.if_nil`
|
||||
- break: drops `ignore_filename` option, use `path_display= { "hidden" }`
|
||||
instead
|
||||
- break: prefix internal interfaces with __ so
|
||||
`require("telescope.builtin.files").find_files` will show a notify error but
|
||||
still works for now. The error will be removed prior to 0.1! You should use
|
||||
`require("telescope.builtin").find_files` because we wrap all the functions
|
||||
that are exposed in this module.
|
||||
- break: defaults.preview.treesitter rework that allows you to either enable a
|
||||
list of languages, or enable all and disable some. Please read
|
||||
`:help telescope.defaults.preview` for more information.
|
||||
Something like this is now possible:
|
||||
>
|
||||
treesitter = {
|
||||
enable = false,
|
||||
-- or
|
||||
enable = { "c" },
|
||||
-- disable can be set if enable isn't set
|
||||
disable = { "perl", "javascript" },
|
||||
},
|
||||
<
|
||||
|
||||
|
||||
vim:tw=78:ts=8:ft=help:norl:
|
12
bundle/telescope.nvim-0.1.8/ftplugin/TelescopePrompt.lua
Normal file
12
bundle/telescope.nvim-0.1.8/ftplugin/TelescopePrompt.lua
Normal file
@ -0,0 +1,12 @@
|
||||
-- Don't wrap textwidth things
|
||||
vim.opt_local.formatoptions:remove "t"
|
||||
vim.opt_local.formatoptions:remove "c"
|
||||
|
||||
-- Don't include `showbreak` when calculating strdisplaywidth
|
||||
vim.opt_local.wrap = false
|
||||
|
||||
-- There's also no reason to enable textwidth here anyway
|
||||
vim.opt_local.textwidth = 0
|
||||
vim.opt_local.scrollbind = false
|
||||
|
||||
vim.opt_local.signcolumn = "no"
|
@ -0,0 +1,5 @@
|
||||
-- Don't have scrolloff, it makes things weird.
|
||||
vim.opt_local.scrolloff = 0
|
||||
vim.opt_local.scrollbind = false
|
||||
|
||||
vim.opt_local.signcolumn = "no"
|
324
bundle/telescope.nvim-0.1.8/lua/telescope/_.lua
Normal file
324
bundle/telescope.nvim-0.1.8/lua/telescope/_.lua
Normal file
@ -0,0 +1,324 @@
|
||||
local uv = vim.loop
|
||||
|
||||
local Object = require "plenary.class"
|
||||
local log = require "plenary.log"
|
||||
|
||||
local async = require "plenary.async"
|
||||
local channel = require("plenary.async").control.channel
|
||||
local utils = require "telescope.utils"
|
||||
|
||||
local M = {}
|
||||
|
||||
local AsyncJob = {}
|
||||
AsyncJob.__index = AsyncJob
|
||||
|
||||
function AsyncJob.new(opts)
|
||||
local self = setmetatable({}, AsyncJob)
|
||||
|
||||
self.command, self.uv_opts = M.convert_opts(opts)
|
||||
|
||||
self.stdin = opts.stdin or M.NullPipe()
|
||||
self.stdout = opts.stdout or M.NullPipe()
|
||||
self.stderr = opts.stderr or M.NullPipe()
|
||||
|
||||
if opts.cwd and opts.cwd ~= "" then
|
||||
self.uv_opts.cwd = utils.path_expand(opts.cwd)
|
||||
-- this is a "illegal" hack for windows. E.g. If the git command returns `/` rather than `\` as delimiter,
|
||||
-- vim.fn.expand might just end up returning an empty string. Weird
|
||||
-- Because empty string is not allowed in libuv the job will not spawn. Solution is we just set it to opts.cwd
|
||||
if self.uv_opts.cwd == "" then
|
||||
self.uv_opts.cwd = opts.cwd
|
||||
end
|
||||
end
|
||||
|
||||
self.uv_opts.stdio = {
|
||||
self.stdin.handle,
|
||||
self.stdout.handle,
|
||||
self.stderr.handle,
|
||||
}
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
function AsyncJob:_for_each_pipe(f, ...)
|
||||
for _, pipe in ipairs { self.stdin, self.stdout, self.stderr } do
|
||||
f(pipe, ...)
|
||||
end
|
||||
end
|
||||
|
||||
function AsyncJob:close(force)
|
||||
if force == nil then
|
||||
force = true
|
||||
end
|
||||
|
||||
self:_for_each_pipe(function(p)
|
||||
p:close(force)
|
||||
end)
|
||||
|
||||
uv.process_kill(self.handle, "sigterm")
|
||||
|
||||
log.debug "[async_job] closed"
|
||||
end
|
||||
|
||||
M.spawn = function(opts)
|
||||
local self = AsyncJob.new(opts)
|
||||
self.handle, self.pid = uv.spawn(
|
||||
self.command,
|
||||
self.uv_opts,
|
||||
async.void(function()
|
||||
self:close(false)
|
||||
if not self.handle:is_closing() then
|
||||
self.handle:close()
|
||||
end
|
||||
end)
|
||||
)
|
||||
|
||||
if not self.handle then
|
||||
error(debug.traceback("Failed to spawn process: " .. vim.inspect(self)))
|
||||
end
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
---@class uv_pipe_t
|
||||
--- A pipe handle from libuv
|
||||
---@field read_start function: Start reading
|
||||
---@field read_stop function: Stop reading
|
||||
---@field close function: Close the handle
|
||||
---@field is_closing function: Whether handle is currently closing
|
||||
---@field is_active function: Whether the handle is currently reading
|
||||
|
||||
---@class BasePipe
|
||||
---@field super Object: Always available
|
||||
---@field handle uv_pipe_t: A pipe handle
|
||||
---@field extend function: Extend
|
||||
local BasePipe = Object:extend()
|
||||
|
||||
function BasePipe:new()
|
||||
self.eof_tx, self.eof_rx = channel.oneshot()
|
||||
end
|
||||
|
||||
function BasePipe:close(force)
|
||||
if force == nil then
|
||||
force = true
|
||||
end
|
||||
|
||||
assert(self.handle, "Must have a pipe to close. Otherwise it's weird!")
|
||||
|
||||
if self.handle:is_closing() then
|
||||
return
|
||||
end
|
||||
|
||||
-- If we're not forcing the stop, allow waiting for eof
|
||||
-- This ensures that we don't end up with weird race conditions
|
||||
if not force then
|
||||
self.eof_rx()
|
||||
end
|
||||
|
||||
self.handle:read_stop()
|
||||
if not self.handle:is_closing() then
|
||||
self.handle:close()
|
||||
end
|
||||
|
||||
self._closed = true
|
||||
end
|
||||
|
||||
---@class LinesPipe : BasePipe
|
||||
local LinesPipe = BasePipe:extend()
|
||||
|
||||
function LinesPipe:new()
|
||||
LinesPipe.super.new(self)
|
||||
self.handle = uv.new_pipe(false)
|
||||
end
|
||||
|
||||
function LinesPipe:read()
|
||||
local read_tx, read_rx = channel.oneshot()
|
||||
|
||||
self.handle:read_start(function(err, data)
|
||||
assert(not err, err)
|
||||
self.handle:read_stop()
|
||||
|
||||
read_tx(data)
|
||||
if data == nil then
|
||||
self.eof_tx()
|
||||
end
|
||||
end)
|
||||
|
||||
return read_rx()
|
||||
end
|
||||
|
||||
function LinesPipe:iter(schedule)
|
||||
if schedule == nil then
|
||||
schedule = true
|
||||
end
|
||||
|
||||
local text = nil
|
||||
local index = nil
|
||||
|
||||
local get_next_text = function(previous)
|
||||
index = nil
|
||||
|
||||
local read = self:read()
|
||||
if previous == nil and read == nil then
|
||||
return
|
||||
end
|
||||
|
||||
read = string.gsub(read or "", "\r", "")
|
||||
return (previous or "") .. read
|
||||
end
|
||||
|
||||
local next_value = nil
|
||||
next_value = function()
|
||||
if schedule then
|
||||
async.util.scheduler()
|
||||
end
|
||||
|
||||
if text == nil or (text == "" and index == nil) then
|
||||
return nil
|
||||
end
|
||||
|
||||
local start = index
|
||||
index = string.find(text, "\n", index, true)
|
||||
|
||||
if index == nil then
|
||||
text = get_next_text(string.sub(text, start or 1))
|
||||
return next_value()
|
||||
end
|
||||
|
||||
index = index + 1
|
||||
|
||||
return string.sub(text, start or 1, index - 2)
|
||||
end
|
||||
|
||||
text = get_next_text()
|
||||
|
||||
return function()
|
||||
return next_value()
|
||||
end
|
||||
end
|
||||
|
||||
---@class NullPipe : BasePipe
|
||||
local NullPipe = BasePipe:extend()
|
||||
|
||||
function NullPipe:new()
|
||||
NullPipe.super.new(self)
|
||||
self.start = function() end
|
||||
self.read_start = function() end
|
||||
self.close = function() end
|
||||
|
||||
-- This always has eof tx done, so can just call it now
|
||||
self.eof_tx()
|
||||
end
|
||||
|
||||
---@class ChunkPipe : BasePipe
|
||||
local ChunkPipe = BasePipe:extend()
|
||||
|
||||
function ChunkPipe:new()
|
||||
ChunkPipe.super.new(self)
|
||||
self.handle = uv.new_pipe(false)
|
||||
end
|
||||
|
||||
function ChunkPipe:read()
|
||||
local read_tx, read_rx = channel.oneshot()
|
||||
|
||||
self.handle:read_start(function(err, data)
|
||||
assert(not err, err)
|
||||
self.handle:read_stop()
|
||||
|
||||
read_tx(data)
|
||||
if data == nil then
|
||||
self.eof_tx()
|
||||
end
|
||||
end)
|
||||
|
||||
return read_rx()
|
||||
end
|
||||
|
||||
function ChunkPipe:iter()
|
||||
return function()
|
||||
if self._closed then
|
||||
return nil
|
||||
end
|
||||
|
||||
return self:read()
|
||||
end
|
||||
end
|
||||
|
||||
---@class ErrorPipe : BasePipe
|
||||
local ErrorPipe = BasePipe:extend()
|
||||
|
||||
function ErrorPipe:new()
|
||||
ErrorPipe.super.new(self)
|
||||
self.handle = uv.new_pipe(false)
|
||||
end
|
||||
|
||||
function ErrorPipe:start()
|
||||
self.handle:read_start(function(err, data)
|
||||
if not err and not data then
|
||||
return
|
||||
end
|
||||
|
||||
self.handle:read_stop()
|
||||
self.handle:close()
|
||||
|
||||
error(string.format("Err: %s, Data: '%s'", err, data))
|
||||
end)
|
||||
end
|
||||
|
||||
M.NullPipe = NullPipe
|
||||
M.LinesPipe = LinesPipe
|
||||
M.ChunkPipe = ChunkPipe
|
||||
M.ErrorPipe = ErrorPipe
|
||||
|
||||
M.convert_opts = function(o)
|
||||
if not o then
|
||||
error(debug.traceback "Options are required for Job:new")
|
||||
end
|
||||
|
||||
local command = o.command
|
||||
if not command then
|
||||
if o[1] then
|
||||
command = o[1]
|
||||
else
|
||||
error(debug.traceback "'command' is required for Job:new")
|
||||
end
|
||||
elseif o[1] then
|
||||
error(debug.traceback "Cannot pass both 'command' and array args")
|
||||
end
|
||||
|
||||
local args = o.args
|
||||
if not args then
|
||||
if #o > 1 then
|
||||
args = { select(2, unpack(o)) }
|
||||
end
|
||||
end
|
||||
|
||||
local ok, is_exe = pcall(vim.fn.executable, command)
|
||||
if not o.skip_validation and ok and 1 ~= is_exe then
|
||||
error(debug.traceback(command .. ": Executable not found"))
|
||||
end
|
||||
|
||||
local obj = {}
|
||||
|
||||
obj.args = args
|
||||
|
||||
if o.env then
|
||||
if type(o.env) ~= "table" then
|
||||
error(debug.traceback "'env' has to be a table")
|
||||
end
|
||||
|
||||
local transform = {}
|
||||
for k, v in pairs(o.env) do
|
||||
if type(k) == "number" then
|
||||
table.insert(transform, v)
|
||||
elseif type(k) == "string" then
|
||||
table.insert(transform, k .. "=" .. tostring(v))
|
||||
end
|
||||
end
|
||||
obj.env = transform
|
||||
end
|
||||
|
||||
return command, obj
|
||||
end
|
||||
|
||||
return M
|
@ -0,0 +1,73 @@
|
||||
local extensions = {}
|
||||
|
||||
extensions._loaded = {}
|
||||
extensions._config = {}
|
||||
extensions._health = {}
|
||||
|
||||
local load_extension = function(name)
|
||||
local ok, ext = pcall(require, "telescope._extensions." .. name)
|
||||
if not ok then
|
||||
error(string.format("'%s' extension doesn't exist or isn't installed: %s", name, ext))
|
||||
end
|
||||
return ext
|
||||
end
|
||||
|
||||
extensions.manager = setmetatable({}, {
|
||||
__index = function(t, k)
|
||||
local ext = load_extension(k)
|
||||
t[k] = ext.exports or {}
|
||||
if ext.setup then
|
||||
ext.setup(extensions._config[k] or {}, require("telescope.config").values)
|
||||
end
|
||||
extensions._health[k] = ext.health
|
||||
|
||||
return t[k]
|
||||
end,
|
||||
})
|
||||
|
||||
--- Register an extension module.
|
||||
---
|
||||
--- Extensions have several important keys.
|
||||
--- - setup:
|
||||
--- function(ext_config, config) -> nil
|
||||
---
|
||||
--- Called when first loading the extension.
|
||||
--- The first parameter is the config passed by the user
|
||||
--- in telescope setup. The second parameter is the resulting
|
||||
--- config.values after applying the users setup defaults.
|
||||
---
|
||||
--- It is acceptable for a plugin to override values in config,
|
||||
--- as some plugins will be installed simply to manage some setup,
|
||||
--- install some sorter, etc.
|
||||
---
|
||||
--- - exports:
|
||||
--- table
|
||||
---
|
||||
--- Only the items in `exports` will be exposed on the resulting
|
||||
--- module that users can access via require('telescope').extensions.foo
|
||||
--- Also, any top-level key-value pairs in exports where the value is a function and the
|
||||
--- key doesn't start with an underscore will be included when calling the `builtin` picker
|
||||
--- with the `include_extensions` option enabled.
|
||||
---
|
||||
--- Other things in the module will not be accessible. This is the public API
|
||||
--- for your extension. Consider not breaking it a lot :laugh:
|
||||
---
|
||||
--- TODO:
|
||||
--- - actions
|
||||
extensions.register = function(mod)
|
||||
return mod
|
||||
end
|
||||
|
||||
extensions.load = function(name)
|
||||
local ext = load_extension(name)
|
||||
if ext.setup then
|
||||
ext.setup(extensions._config[name] or {}, require("telescope.config").values)
|
||||
end
|
||||
return extensions.manager[name]
|
||||
end
|
||||
|
||||
extensions.set_config = function(extensions_config)
|
||||
extensions._config = extensions_config or {}
|
||||
end
|
||||
|
||||
return extensions
|
119
bundle/telescope.nvim-0.1.8/lua/telescope/actions/generate.lua
Normal file
119
bundle/telescope.nvim-0.1.8/lua/telescope/actions/generate.lua
Normal file
@ -0,0 +1,119 @@
|
||||
---@tag telescope.actions.generate
|
||||
---@config { ["module"] = "telescope.actions.generate", ["name"] = "ACTIONS_GENERATE" }
|
||||
|
||||
---@brief [[
|
||||
--- Module for convenience to override defaults of corresponding |telescope.actions| at |telescope.setup()|.
|
||||
---
|
||||
--- General usage:
|
||||
--- <code>
|
||||
--- require("telescope").setup {
|
||||
--- defaults = {
|
||||
--- mappings = {
|
||||
--- n = {
|
||||
--- ["?"] = action_generate.which_key {
|
||||
--- name_width = 20, -- typically leads to smaller floats
|
||||
--- max_height = 0.5, -- increase potential maximum height
|
||||
--- separator = " > ", -- change sep between mode, keybind, and name
|
||||
--- close_with_action = false, -- do not close float on action
|
||||
--- },
|
||||
--- },
|
||||
--- },
|
||||
--- },
|
||||
--- }
|
||||
--- </code>
|
||||
---@brief ]]
|
||||
|
||||
local actions = require "telescope.actions"
|
||||
local config = require "telescope.config"
|
||||
local action_state = require "telescope.actions.state"
|
||||
local finders = require "telescope.finders"
|
||||
|
||||
local action_generate = {}
|
||||
|
||||
--- Display the keymaps of registered actions similar to which-key.nvim.<br>
|
||||
--- - Floating window:
|
||||
--- - Appears on the opposite side of the prompt.
|
||||
--- - Resolves to minimum required number of lines to show hints with `opts` or truncates entries at `max_height`.
|
||||
--- - Closes automatically on action call and can be disabled with by setting `close_with_action` to false.
|
||||
---@param opts table: options to pass to toggling registered actions
|
||||
---@field max_height number: % of max. height or no. of rows for hints (default: 0.4), see |resolver.resolve_height()|
|
||||
---@field only_show_current_mode boolean: only show keymaps for the current mode (default: true)
|
||||
---@field mode_width number: fixed width of mode to be shown (default: 1)
|
||||
---@field keybind_width number: fixed width of keybind to be shown (default: 7)
|
||||
---@field name_width number: fixed width of action name to be shown (default: 30)
|
||||
---@field column_padding string: string to split; can be used for vertical separator (default: " ")
|
||||
---@field mode_hl string: hl group of mode (default: TelescopeResultsConstant)
|
||||
---@field keybind_hl string: hl group of keybind (default: TelescopeResultsVariable)
|
||||
---@field name_hl string: hl group of action name (default: TelescopeResultsFunction)
|
||||
---@field column_indent number: number of left-most spaces before keybinds are shown (default: 4)
|
||||
---@field line_padding number: row padding in top and bottom of float (default: 1)
|
||||
---@field separator string: separator string between mode, key bindings, and action (default: " -> ")
|
||||
---@field close_with_action boolean: registered action will close keymap float (default: true)
|
||||
---@field normal_hl string: winhl of "Normal" for keymap hints floating window (default: "TelescopePrompt")
|
||||
---@field border_hl string: winhl of "Normal" for keymap borders (default: "TelescopePromptBorder")
|
||||
---@field winblend number: pseudo-transparency of keymap hints floating window
|
||||
---@field zindex number: z-index of keymap hints floating window (default: 100)
|
||||
action_generate.which_key = function(opts)
|
||||
local which_key = function(prompt_bufnr)
|
||||
actions.which_key(prompt_bufnr, opts)
|
||||
end
|
||||
return which_key
|
||||
end
|
||||
|
||||
action_generate.refine = function(prompt_bufnr, opts)
|
||||
opts = opts or {}
|
||||
opts.prompt_to_prefix = vim.F.if_nil(opts.prompt_to_prefix, false)
|
||||
opts.prefix_hl_group = vim.F.if_nil(opts.prompt_hl_group, "TelescopePromptPrefix")
|
||||
opts.prompt_prefix = vim.F.if_nil(opts.prompt_prefix, config.values.prompt_prefix)
|
||||
opts.reset_multi_selection = vim.F.if_nil(opts.reset_multi_selection, false)
|
||||
opts.reset_prompt = vim.F.if_nil(opts.reset_prompt, true)
|
||||
opts.sorter = vim.F.if_nil(opts.sorter, config.values.generic_sorter {})
|
||||
local push_history = vim.F.if_nil(opts.push_history, true)
|
||||
|
||||
local current_picker = action_state.get_current_picker(prompt_bufnr)
|
||||
local current_line = action_state.get_current_line()
|
||||
if push_history then
|
||||
action_state.get_current_history():append(current_line, current_picker)
|
||||
end
|
||||
|
||||
-- title
|
||||
if opts.prompt_title and current_picker.prompt_border then
|
||||
current_picker.prompt_border:change_title(opts.prompt_title)
|
||||
end
|
||||
|
||||
if opts.results_title and current_picker.results_border then
|
||||
current_picker.results_border:change_title(opts.results_title)
|
||||
end
|
||||
|
||||
local results = {}
|
||||
for entry in current_picker.manager:iter() do
|
||||
table.insert(results, entry)
|
||||
end
|
||||
|
||||
-- if opts.sorter == false, keep older sorter
|
||||
if opts.sorter then
|
||||
current_picker.sorter:_destroy()
|
||||
current_picker.sorter = opts.sorter
|
||||
current_picker.sorter:_init()
|
||||
end
|
||||
|
||||
local new_finder = finders.new_table {
|
||||
results = results,
|
||||
entry_maker = function(x)
|
||||
return x
|
||||
end,
|
||||
}
|
||||
|
||||
if not opts.reset_multi_selection and current_line ~= "" then
|
||||
opts.multi = current_picker._multi
|
||||
end
|
||||
|
||||
if opts.prompt_to_prefix then
|
||||
local current_prefix = current_picker.prompt_prefix
|
||||
local suffix = current_prefix ~= opts.prompt_prefix and current_prefix or ""
|
||||
opts.new_prefix = suffix .. current_line .. " " .. opts.prompt_prefix
|
||||
end
|
||||
current_picker:refresh(new_finder, opts)
|
||||
end
|
||||
|
||||
return action_generate
|
207
bundle/telescope.nvim-0.1.8/lua/telescope/actions/history.lua
Normal file
207
bundle/telescope.nvim-0.1.8/lua/telescope/actions/history.lua
Normal file
@ -0,0 +1,207 @@
|
||||
local conf = require("telescope.config").values
|
||||
local Path = require "plenary.path"
|
||||
local utils = require "telescope.utils"
|
||||
|
||||
local uv = vim.loop
|
||||
|
||||
---@tag telescope.actions.history
|
||||
---@config { ["module"] = "telescope.actions.history" }
|
||||
|
||||
---@brief [[
|
||||
--- A base implementation of a prompt history that provides a simple history
|
||||
--- and can be replaced with a custom implementation.
|
||||
---
|
||||
--- For example: We provide an extension for a smart history that uses sql.nvim
|
||||
--- to map histories to metadata, like the calling picker or cwd.
|
||||
---
|
||||
--- So you have a history for:
|
||||
--- - find_files project_1
|
||||
--- - grep_string project_1
|
||||
--- - live_grep project_1
|
||||
--- - find_files project_2
|
||||
--- - grep_string project_2
|
||||
--- - live_grep project_2
|
||||
--- - etc
|
||||
---
|
||||
--- See https://github.com/nvim-telescope/telescope-smart-history.nvim
|
||||
---@brief ]]
|
||||
|
||||
-- TODO(conni2461): currently not present in plenary path only sync.
|
||||
-- But sync is just unnecessary here
|
||||
local write_async = function(path, txt, flag)
|
||||
uv.fs_open(path, flag, 438, function(open_err, fd)
|
||||
assert(not open_err, open_err)
|
||||
uv.fs_write(fd, txt, -1, function(write_err)
|
||||
assert(not write_err, write_err)
|
||||
uv.fs_close(fd, function(close_err)
|
||||
assert(not close_err, close_err)
|
||||
end)
|
||||
end)
|
||||
end)
|
||||
end
|
||||
|
||||
local append_async = function(path, txt)
|
||||
write_async(path, txt, "a")
|
||||
end
|
||||
|
||||
local histories = {}
|
||||
|
||||
--- Manages prompt history
|
||||
---@class History @Manages prompt history
|
||||
---@field enabled boolean: Will indicate if History is enabled or disabled
|
||||
---@field path string: Will point to the location of the history file
|
||||
---@field limit string: Will have the limit of the history. Can be nil, if limit is disabled.
|
||||
---@field content table: History table. Needs to be filled by your own History implementation
|
||||
---@field index number: Used to keep track of the next or previous index. Default is #content + 1
|
||||
histories.History = {}
|
||||
histories.History.__index = histories.History
|
||||
|
||||
--- Create a new History
|
||||
---@param opts table: Defines the behavior of History
|
||||
---@field init function: Will be called after handling configuration (required)
|
||||
---@field append function: How to append a new prompt item (required)
|
||||
---@field reset function: What happens on reset. Will be called when telescope closes (required)
|
||||
---@field pre_get function: Will be called before a next or previous item will be returned (optional)
|
||||
function histories.History:new(opts)
|
||||
local obj = {}
|
||||
if conf.history == false or type(conf.history) ~= "table" then
|
||||
obj.enabled = false
|
||||
return setmetatable(obj, self)
|
||||
end
|
||||
obj.enabled = true
|
||||
if conf.history.limit then
|
||||
obj.limit = conf.history.limit
|
||||
end
|
||||
obj.path = utils.path_expand(conf.history.path)
|
||||
obj.content = {}
|
||||
obj.index = 1
|
||||
|
||||
opts.init(obj)
|
||||
obj._reset = opts.reset
|
||||
obj._append = opts.append
|
||||
obj._pre_get = opts.pre_get
|
||||
|
||||
return setmetatable(obj, self)
|
||||
end
|
||||
|
||||
--- Shorthand to create a new history
|
||||
function histories.new(...)
|
||||
return histories.History:new(...)
|
||||
end
|
||||
|
||||
--- Will reset the history index to the default initial state. Will happen after the picker closed
|
||||
function histories.History:reset()
|
||||
if not self.enabled then
|
||||
return
|
||||
end
|
||||
self._reset(self)
|
||||
end
|
||||
|
||||
--- Append a new line to the history
|
||||
---@param line string: current line that will be appended
|
||||
---@param picker table: the current picker object
|
||||
---@param no_reset boolean: On default it will reset the state at the end. If you don't want to do this set to true
|
||||
function histories.History:append(line, picker, no_reset)
|
||||
if not self.enabled then
|
||||
return
|
||||
end
|
||||
self._append(self, line, picker, no_reset)
|
||||
end
|
||||
|
||||
--- Will return the next history item. Can be nil if there are no next items
|
||||
---@param line string: the current line
|
||||
---@param picker table: the current picker object
|
||||
---@return string: the next history item
|
||||
function histories.History:get_next(line, picker)
|
||||
if not self.enabled then
|
||||
utils.notify("History:get_next", {
|
||||
msg = "You are cycling to next the history item but history is disabled. Read ':help telescope.defaults.history'",
|
||||
level = "WARN",
|
||||
})
|
||||
return false
|
||||
end
|
||||
if self._pre_get then
|
||||
self._pre_get(self, line, picker)
|
||||
end
|
||||
|
||||
local next_idx = self.index + 1
|
||||
if next_idx <= #self.content then
|
||||
self.index = next_idx
|
||||
return self.content[next_idx]
|
||||
end
|
||||
self.index = #self.content + 1
|
||||
return nil
|
||||
end
|
||||
|
||||
--- Will return the previous history item. Can be nil if there are no previous items
|
||||
---@param line string: the current line
|
||||
---@param picker table: the current picker object
|
||||
---@return string: the previous history item
|
||||
function histories.History:get_prev(line, picker)
|
||||
if not self.enabled then
|
||||
utils.notify("History:get_prev", {
|
||||
msg = "You are cycling to next the history item but history is disabled. Read ':help telescope.defaults.history'",
|
||||
level = "WARN",
|
||||
})
|
||||
return false
|
||||
end
|
||||
if self._pre_get then
|
||||
self._pre_get(self, line, picker)
|
||||
end
|
||||
|
||||
local next_idx = self.index - 1
|
||||
if self.index == #self.content + 1 then
|
||||
if line ~= "" then
|
||||
self:append(line, picker, true)
|
||||
end
|
||||
end
|
||||
if next_idx >= 1 then
|
||||
self.index = next_idx
|
||||
return self.content[next_idx]
|
||||
end
|
||||
return nil
|
||||
end
|
||||
|
||||
--- A simple implementation of history.
|
||||
---
|
||||
--- It will keep one unified history across all pickers.
|
||||
histories.get_simple_history = function()
|
||||
return histories.new {
|
||||
init = function(obj)
|
||||
local p = Path:new(obj.path)
|
||||
if not p:exists() then
|
||||
p:touch { parents = true }
|
||||
end
|
||||
|
||||
obj.content = Path:new(obj.path):readlines()
|
||||
obj.index = #obj.content
|
||||
table.remove(obj.content, obj.index)
|
||||
end,
|
||||
reset = function(self)
|
||||
self.index = #self.content + 1
|
||||
end,
|
||||
append = function(self, line, _, no_reset)
|
||||
if line ~= "" then
|
||||
if self.content[#self.content] ~= line then
|
||||
table.insert(self.content, line)
|
||||
|
||||
local len = #self.content
|
||||
if self.limit and len > self.limit then
|
||||
local diff = len - self.limit
|
||||
for i = diff, 1, -1 do
|
||||
table.remove(self.content, i)
|
||||
end
|
||||
write_async(self.path, table.concat(self.content, "\n") .. "\n", "w")
|
||||
else
|
||||
append_async(self.path, line .. "\n")
|
||||
end
|
||||
end
|
||||
end
|
||||
if not no_reset then
|
||||
self:reset()
|
||||
end
|
||||
end,
|
||||
}
|
||||
end
|
||||
|
||||
return histories
|
1336
bundle/telescope.nvim-0.1.8/lua/telescope/actions/init.lua
Normal file
1336
bundle/telescope.nvim-0.1.8/lua/telescope/actions/init.lua
Normal file
File diff suppressed because it is too large
Load Diff
148
bundle/telescope.nvim-0.1.8/lua/telescope/actions/layout.lua
Normal file
148
bundle/telescope.nvim-0.1.8/lua/telescope/actions/layout.lua
Normal file
@ -0,0 +1,148 @@
|
||||
---@tag telescope.actions.layout
|
||||
---@config { ["module"] = "telescope.actions.layout", ["name"] = "ACTIONS_LAYOUT" }
|
||||
|
||||
---@brief [[
|
||||
--- The layout actions are actions to be used to change the layout of a picker.
|
||||
---@brief ]]
|
||||
|
||||
local action_state = require "telescope.actions.state"
|
||||
local state = require "telescope.state"
|
||||
local layout_strats = require "telescope.pickers.layout_strategies"
|
||||
|
||||
local transform_mod = require("telescope.actions.mt").transform_mod
|
||||
|
||||
local action_layout = setmetatable({}, {
|
||||
__index = function(_, k)
|
||||
error("'telescope.actions.layout' does not have a value: " .. tostring(k))
|
||||
end,
|
||||
})
|
||||
|
||||
--- Toggle preview window.
|
||||
--- - Note: preview window can be toggled even if preview is set to false.
|
||||
---
|
||||
--- This action is not mapped by default.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
action_layout.toggle_preview = function(prompt_bufnr)
|
||||
local picker = action_state.get_current_picker(prompt_bufnr)
|
||||
local status = state.get_status(picker.prompt_bufnr)
|
||||
|
||||
if picker.previewer and status.preview_win then
|
||||
picker.hidden_previewer = picker.previewer
|
||||
picker.previewer = nil
|
||||
elseif picker.hidden_previewer and not status.preview_win then
|
||||
picker.previewer = picker.hidden_previewer
|
||||
picker.hidden_previewer = nil
|
||||
else
|
||||
return
|
||||
end
|
||||
picker:full_layout_update()
|
||||
end
|
||||
|
||||
-- TODO IMPLEMENT (mentored project available, contact @l-kershaw)
|
||||
action_layout.toggle_padding = function(prompt_bufnr)
|
||||
local picker = action_state.get_current_picker(prompt_bufnr)
|
||||
-- if padding ~= 0
|
||||
-- 1. Save `height` and `width` of picker
|
||||
-- 2. Set both to `{padding = 0}`
|
||||
-- else
|
||||
-- 1. Lookup previous `height` and `width` of picker
|
||||
-- 2. Set both to previous values
|
||||
picker:full_layout_update()
|
||||
end
|
||||
|
||||
--- Toggles the `prompt_position` option between "top" and "bottom".
|
||||
--- Checks if `prompt_position` is an option for the current layout.
|
||||
---
|
||||
--- This action is not mapped by default.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
action_layout.toggle_prompt_position = function(prompt_bufnr)
|
||||
local picker = action_state.get_current_picker(prompt_bufnr)
|
||||
picker.layout_config = picker.layout_config or {}
|
||||
picker.layout_config[picker.layout_strategy] = picker.layout_config[picker.layout_strategy] or {}
|
||||
-- flex layout is weird and needs handling separately
|
||||
if picker.layout_strategy == "flex" then
|
||||
picker.layout_config.flex.horizontal = picker.layout_config.flex.horizontal or {}
|
||||
picker.layout_config.flex.vertical = picker.layout_config.flex.vertical or {}
|
||||
local old_pos = picker.layout_config.flex[picker.__flex_strategy].prompt_position
|
||||
local new_pos = old_pos == "top" and "bottom" or "top"
|
||||
picker.layout_config[picker.__flex_strategy].prompt_position = new_pos
|
||||
picker.layout_config.flex[picker.__flex_strategy].prompt_position = new_pos
|
||||
picker:full_layout_update()
|
||||
elseif layout_strats._configurations[picker.layout_strategy].prompt_position then
|
||||
if picker.layout_config.prompt_position == "top" then
|
||||
picker.layout_config.prompt_position = "bottom"
|
||||
picker.layout_config[picker.layout_strategy].prompt_position = "bottom"
|
||||
else
|
||||
picker.layout_config.prompt_position = "top"
|
||||
picker.layout_config[picker.layout_strategy].prompt_position = "top"
|
||||
end
|
||||
picker:full_layout_update()
|
||||
end
|
||||
end
|
||||
|
||||
--- Toggles the `mirror` option between `true` and `false`.
|
||||
--- Checks if `mirror` is an option for the current layout.
|
||||
---
|
||||
--- This action is not mapped by default.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
action_layout.toggle_mirror = function(prompt_bufnr)
|
||||
local picker = action_state.get_current_picker(prompt_bufnr)
|
||||
-- flex layout is weird and needs handling separately
|
||||
if picker.layout_strategy == "flex" then
|
||||
picker.layout_config.flex.horizontal = picker.layout_config.flex.horizontal or {}
|
||||
picker.layout_config.flex.vertical = picker.layout_config.flex.vertical or {}
|
||||
local new_mirror = not picker.layout_config.flex[picker.__flex_strategy].mirror
|
||||
picker.layout_config[picker.__flex_strategy].mirror = new_mirror
|
||||
picker.layout_config.flex[picker.__flex_strategy].mirror = new_mirror
|
||||
picker:full_layout_update()
|
||||
elseif layout_strats._configurations[picker.layout_strategy].mirror then
|
||||
picker.layout_config = picker.layout_config or {}
|
||||
local new_mirror = not picker.layout_config.mirror
|
||||
picker.layout_config.mirror = new_mirror
|
||||
picker.layout_config[picker.layout_strategy] = picker.layout_config[picker.layout_strategy] or {}
|
||||
picker.layout_config[picker.layout_strategy].mirror = new_mirror
|
||||
picker:full_layout_update()
|
||||
end
|
||||
end
|
||||
|
||||
-- Helper function for `cycle_layout_next` and `cycle_layout_prev`.
|
||||
local get_cycle_layout = function(dir)
|
||||
return function(prompt_bufnr)
|
||||
local picker = action_state.get_current_picker(prompt_bufnr)
|
||||
if picker.__layout_index then
|
||||
picker.__layout_index = ((picker.__layout_index + dir - 1) % #picker.__cycle_layout_list) + 1
|
||||
else
|
||||
picker.__layout_index = 1
|
||||
end
|
||||
local new_layout = picker.__cycle_layout_list[picker.__layout_index]
|
||||
if type(new_layout) == "string" then
|
||||
picker.layout_strategy = new_layout
|
||||
picker.layout_config = {}
|
||||
picker.previewer = picker.all_previewers and picker.all_previewers[1] or nil
|
||||
elseif type(new_layout) == "table" then
|
||||
picker.layout_strategy = new_layout.layout_strategy
|
||||
picker.layout_config = new_layout.layout_config or {}
|
||||
picker.previewer = (new_layout.previewer == nil and picker.all_previewers[picker.current_previewer_index])
|
||||
or new_layout.previewer
|
||||
else
|
||||
error("Not a valid layout setup: " .. vim.inspect(new_layout) .. "\nShould be a string or a table")
|
||||
end
|
||||
|
||||
picker:full_layout_update()
|
||||
end
|
||||
end
|
||||
|
||||
--- Cycles to the next layout in `cycle_layout_list`.
|
||||
---
|
||||
--- This action is not mapped by default.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
action_layout.cycle_layout_next = get_cycle_layout(1)
|
||||
|
||||
--- Cycles to the previous layout in `cycle_layout_list`.
|
||||
---
|
||||
--- This action is not mapped by default.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
action_layout.cycle_layout_prev = get_cycle_layout(-1)
|
||||
|
||||
action_layout = transform_mod(action_layout)
|
||||
return action_layout
|
210
bundle/telescope.nvim-0.1.8/lua/telescope/actions/mt.lua
Normal file
210
bundle/telescope.nvim-0.1.8/lua/telescope/actions/mt.lua
Normal file
@ -0,0 +1,210 @@
|
||||
local action_mt = {}
|
||||
|
||||
--- Checks all replacement combinations to determine which function to run.
|
||||
--- If no replacement can be found, then it will run the original function
|
||||
local run_replace_or_original = function(replacements, original_func, ...)
|
||||
for _, replacement_map in ipairs(replacements or {}) do
|
||||
for condition, replacement in pairs(replacement_map) do
|
||||
if condition == true or condition(...) then
|
||||
return replacement(...)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return original_func(...)
|
||||
end
|
||||
|
||||
local append_action_copy = function(new, v, old)
|
||||
table.insert(new, v)
|
||||
new._func[v] = old._func[v]
|
||||
new._static_pre[v] = old._static_pre[v]
|
||||
new._pre[v] = old._pre[v]
|
||||
new._replacements[v] = old._replacements[v]
|
||||
new._static_post[v] = old._static_post[v]
|
||||
new._post[v] = old._post[v]
|
||||
end
|
||||
|
||||
-- TODO(conni2461): Not a fan of this solution/hack. Needs to be addressed
|
||||
local all_mts = {}
|
||||
|
||||
--TODO(conni2461): It gets worse. This is so bad but because we have now n mts for n actions
|
||||
-- We have to check all actions for relevant mts to set replace and before, after
|
||||
-- Its not bad for performance because its being called on startup when we attach mappings.
|
||||
-- Its just a bad solution
|
||||
local find_all_relevant_mts = function(action_name, f)
|
||||
for _, mt in ipairs(all_mts) do
|
||||
for fun, _ in pairs(mt._func) do
|
||||
if fun == action_name then
|
||||
f(mt)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--- an action is metatable which allows replacement(prepend or append) of the function
|
||||
---@class Action
|
||||
---@field _func table<string, function>: the original action function
|
||||
---@field _static_pre table<string, function>: will allways run before the function even if its replaced
|
||||
---@field _pre table<string, function>: the functions that will run before the action
|
||||
---@field _replacements table<string, function>: the function that replaces this action
|
||||
---@field _static_post table<string, function>: will allways run after the function even if its replaced
|
||||
---@field _post table<string, function>: the functions that will run after the action
|
||||
action_mt.create = function()
|
||||
local mt = {
|
||||
__call = function(t, ...)
|
||||
local values = {}
|
||||
for _, action_name in ipairs(t) do
|
||||
if t._static_pre[action_name] then
|
||||
t._static_pre[action_name](...)
|
||||
end
|
||||
if vim.tbl_isempty(t._replacements) and t._pre[action_name] then
|
||||
t._pre[action_name](...)
|
||||
end
|
||||
|
||||
local result = {
|
||||
run_replace_or_original(t._replacements[action_name], t._func[action_name], ...),
|
||||
}
|
||||
for _, res in ipairs(result) do
|
||||
table.insert(values, res)
|
||||
end
|
||||
|
||||
if t._static_post[action_name] then
|
||||
t._static_post[action_name](...)
|
||||
end
|
||||
if vim.tbl_isempty(t._replacements) and t._post[action_name] then
|
||||
t._post[action_name](...)
|
||||
end
|
||||
end
|
||||
|
||||
return unpack(values)
|
||||
end,
|
||||
|
||||
__add = function(lhs, rhs)
|
||||
local new_action = setmetatable({}, action_mt.create())
|
||||
for _, v in ipairs(lhs) do
|
||||
append_action_copy(new_action, v, lhs)
|
||||
end
|
||||
|
||||
for _, v in ipairs(rhs) do
|
||||
append_action_copy(new_action, v, rhs)
|
||||
end
|
||||
new_action.clear = function()
|
||||
lhs.clear()
|
||||
rhs.clear()
|
||||
end
|
||||
|
||||
return new_action
|
||||
end,
|
||||
|
||||
_func = {},
|
||||
_static_pre = {},
|
||||
_pre = {},
|
||||
_replacements = {},
|
||||
_static_post = {},
|
||||
_post = {},
|
||||
}
|
||||
|
||||
mt.__index = mt
|
||||
|
||||
mt.clear = function()
|
||||
mt._pre = {}
|
||||
mt._replacements = {}
|
||||
mt._post = {}
|
||||
end
|
||||
|
||||
--- Replace the reference to the function with a new one temporarily
|
||||
function mt:replace(v)
|
||||
assert(#self == 1, "Cannot replace an already combined action")
|
||||
|
||||
return self:replace_map { [true] = v }
|
||||
end
|
||||
|
||||
function mt:replace_if(condition, replacement)
|
||||
assert(#self == 1, "Cannot replace an already combined action")
|
||||
|
||||
return self:replace_map { [condition] = replacement }
|
||||
end
|
||||
|
||||
--- Replace table with
|
||||
-- Example:
|
||||
--
|
||||
-- actions.select:replace_map {
|
||||
-- [function() return filetype == 'lua' end] = actions.file_split,
|
||||
-- [function() return filetype == 'other' end] = actions.file_split_edit,
|
||||
-- }
|
||||
function mt:replace_map(tbl)
|
||||
assert(#self == 1, "Cannot replace an already combined action")
|
||||
|
||||
local action_name = self[1]
|
||||
find_all_relevant_mts(action_name, function(another)
|
||||
if not another._replacements[action_name] then
|
||||
another._replacements[action_name] = {}
|
||||
end
|
||||
|
||||
table.insert(another._replacements[action_name], 1, tbl)
|
||||
end)
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
function mt:enhance(opts)
|
||||
assert(#self == 1, "Cannot enhance already combined actions")
|
||||
|
||||
local action_name = self[1]
|
||||
find_all_relevant_mts(action_name, function(another)
|
||||
if opts.pre then
|
||||
another._pre[action_name] = opts.pre
|
||||
end
|
||||
|
||||
if opts.post then
|
||||
another._post[action_name] = opts.post
|
||||
end
|
||||
end)
|
||||
|
||||
return self
|
||||
end
|
||||
|
||||
table.insert(all_mts, mt)
|
||||
return mt
|
||||
end
|
||||
|
||||
action_mt.transform = function(k, mt, _, v)
|
||||
local res = setmetatable({ k }, mt)
|
||||
if type(v) == "table" then
|
||||
res._static_pre[k] = v.pre
|
||||
res._static_post[k] = v.post
|
||||
res._func[k] = v.action
|
||||
else
|
||||
res._func[k] = v
|
||||
end
|
||||
return res
|
||||
end
|
||||
|
||||
action_mt.transform_mod = function(mod)
|
||||
-- Pass the metatable of the module if applicable.
|
||||
-- This allows for custom errors, lookups, etc.
|
||||
local redirect = setmetatable({}, getmetatable(mod) or {})
|
||||
|
||||
for k, v in pairs(mod) do
|
||||
local mt = action_mt.create()
|
||||
redirect[k] = action_mt.transform(k, mt, _, v)
|
||||
end
|
||||
|
||||
redirect._clear = function()
|
||||
for k, v in pairs(redirect) do
|
||||
if k ~= "_clear" then
|
||||
pcall(v.clear)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return redirect
|
||||
end
|
||||
|
||||
action_mt.clear_all = function()
|
||||
for _, v in ipairs(all_mts) do
|
||||
pcall(v.clear)
|
||||
end
|
||||
end
|
||||
|
||||
return action_mt
|
237
bundle/telescope.nvim-0.1.8/lua/telescope/actions/set.lua
Normal file
237
bundle/telescope.nvim-0.1.8/lua/telescope/actions/set.lua
Normal file
@ -0,0 +1,237 @@
|
||||
---@tag telescope.actions.set
|
||||
---@config { ["module"] = "telescope.actions.set", ["name"] = "ACTIONS_SET" }
|
||||
|
||||
---@brief [[
|
||||
--- Telescope action sets are used to provide an interface for managing
|
||||
--- actions that all primarily do the same thing, but with slight tweaks.
|
||||
---
|
||||
--- For example, when editing files you may want it in the current split,
|
||||
--- a vertical split, etc. Instead of making users have to overwrite EACH
|
||||
--- of those every time they want to change this behavior, they can instead
|
||||
--- replace the `set` itself and then it will work great and they're done.
|
||||
---@brief ]]
|
||||
|
||||
local a = vim.api
|
||||
|
||||
local log = require "telescope.log"
|
||||
local Path = require "plenary.path"
|
||||
local state = require "telescope.state"
|
||||
local utils = require "telescope.utils"
|
||||
|
||||
local action_state = require "telescope.actions.state"
|
||||
|
||||
local transform_mod = require("telescope.actions.mt").transform_mod
|
||||
|
||||
local action_set = setmetatable({}, {
|
||||
__index = function(_, k)
|
||||
error("'telescope.actions.set' does not have a value: " .. tostring(k))
|
||||
end,
|
||||
})
|
||||
|
||||
--- Move the current selection of a picker {change} rows.
|
||||
--- Handles not overflowing / underflowing the list.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param change number: The amount to shift the selection by
|
||||
action_set.shift_selection = function(prompt_bufnr, change)
|
||||
local count = vim.v.count
|
||||
count = count == 0 and 1 or count
|
||||
count = a.nvim_get_mode().mode == "n" and count or 1
|
||||
action_state.get_current_picker(prompt_bufnr):move_selection(change * count)
|
||||
end
|
||||
|
||||
--- Select the current entry. This is the action set to overwrite common
|
||||
--- actions by the user.
|
||||
---
|
||||
--- By default maps to editing a file.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param type string: The type of selection to make
|
||||
-- Valid types include: "default", "horizontal", "vertical", "tabedit"
|
||||
action_set.select = function(prompt_bufnr, type)
|
||||
return action_set.edit(prompt_bufnr, action_state.select_key_to_edit_key(type))
|
||||
end
|
||||
|
||||
-- goal: currently we have a workaround in actions/init.lua where we do this for all files
|
||||
-- action_set.select = {
|
||||
-- -- Will not be called if `select_default` is replaced rather than `action_set.select` because we never get here
|
||||
-- pre = function(prompt_bufnr)
|
||||
-- action_state.get_current_history():append(
|
||||
-- action_state.get_current_line(),
|
||||
-- action_state.get_current_picker(prompt_bufnr)
|
||||
-- )
|
||||
-- end,
|
||||
-- action = function(prompt_bufnr, type)
|
||||
-- return action_set.edit(prompt_bufnr, action_state.select_key_to_edit_key(type))
|
||||
-- end
|
||||
-- }
|
||||
|
||||
local edit_buffer
|
||||
do
|
||||
local map = {
|
||||
edit = "buffer",
|
||||
new = "sbuffer",
|
||||
vnew = "vert sbuffer",
|
||||
tabedit = "tab sb",
|
||||
}
|
||||
|
||||
edit_buffer = function(command, bufnr)
|
||||
command = map[command]
|
||||
if command == nil then
|
||||
error "There was no associated buffer command"
|
||||
end
|
||||
vim.cmd(string.format("%s %d", command, bufnr))
|
||||
end
|
||||
end
|
||||
|
||||
--- Edit a file based on the current selection.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param command string: The command to use to open the file.
|
||||
-- Valid commands include: "edit", "new", "vedit", "tabedit"
|
||||
action_set.edit = function(prompt_bufnr, command)
|
||||
local entry = action_state.get_selected_entry()
|
||||
|
||||
if not entry then
|
||||
utils.notify("actions.set.edit", {
|
||||
msg = "Nothing currently selected",
|
||||
level = "WARN",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
local filename, row, col
|
||||
|
||||
if entry.path or entry.filename then
|
||||
filename = entry.path or entry.filename
|
||||
|
||||
-- TODO: Check for off-by-one
|
||||
row = entry.row or entry.lnum
|
||||
col = entry.col
|
||||
elseif not entry.bufnr then
|
||||
-- TODO: Might want to remove this and force people
|
||||
-- to put stuff into `filename`
|
||||
local value = entry.value
|
||||
if not value then
|
||||
utils.notify("actions.set.edit", {
|
||||
msg = "Could not do anything with blank line...",
|
||||
level = "WARN",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
if type(value) == "table" then
|
||||
value = entry.display
|
||||
end
|
||||
|
||||
local sections = vim.split(value, ":")
|
||||
|
||||
filename = sections[1]
|
||||
row = tonumber(sections[2])
|
||||
col = tonumber(sections[3])
|
||||
end
|
||||
|
||||
local entry_bufnr = entry.bufnr
|
||||
|
||||
local picker = action_state.get_current_picker(prompt_bufnr)
|
||||
require("telescope.pickers").on_close_prompt(prompt_bufnr)
|
||||
pcall(vim.api.nvim_set_current_win, picker.original_win_id)
|
||||
local win_id = picker.get_selection_window(picker, entry)
|
||||
|
||||
if picker.push_cursor_on_edit then
|
||||
vim.cmd "normal! m'"
|
||||
end
|
||||
|
||||
if picker.push_tagstack_on_edit then
|
||||
local from = { vim.fn.bufnr "%", vim.fn.line ".", vim.fn.col ".", 0 }
|
||||
local items = { { tagname = vim.fn.expand "<cword>", from = from } }
|
||||
vim.fn.settagstack(vim.fn.win_getid(), { items = items }, "t")
|
||||
end
|
||||
|
||||
if win_id ~= 0 and a.nvim_get_current_win() ~= win_id then
|
||||
vim.api.nvim_set_current_win(win_id)
|
||||
end
|
||||
|
||||
if entry_bufnr then
|
||||
if not vim.api.nvim_buf_get_option(entry_bufnr, "buflisted") then
|
||||
vim.api.nvim_buf_set_option(entry_bufnr, "buflisted", true)
|
||||
end
|
||||
edit_buffer(command, entry_bufnr)
|
||||
else
|
||||
-- check if we didn't pick a different buffer
|
||||
-- prevents restarting lsp server
|
||||
if vim.api.nvim_buf_get_name(0) ~= filename or command ~= "edit" then
|
||||
filename = Path:new(filename):normalize(vim.loop.cwd())
|
||||
pcall(vim.cmd, string.format("%s %s", command, vim.fn.fnameescape(filename)))
|
||||
end
|
||||
end
|
||||
|
||||
-- HACK: fixes folding: https://github.com/nvim-telescope/telescope.nvim/issues/699
|
||||
if vim.wo.foldmethod == "expr" then
|
||||
vim.schedule(function()
|
||||
vim.opt.foldmethod = "expr"
|
||||
end)
|
||||
end
|
||||
|
||||
local pos = vim.api.nvim_win_get_cursor(0)
|
||||
if col == nil then
|
||||
if row == pos[1] then
|
||||
col = pos[2] + 1
|
||||
elseif row == nil then
|
||||
row, col = pos[1], pos[2] + 1
|
||||
else
|
||||
col = 1
|
||||
end
|
||||
end
|
||||
|
||||
if row and col then
|
||||
local ok, err_msg = pcall(a.nvim_win_set_cursor, 0, { row, col })
|
||||
if not ok then
|
||||
log.debug("Failed to move to cursor:", err_msg, row, col)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
--- Scrolls the previewer up or down.
|
||||
--- Defaults to a half page scroll, but can be overridden using the `scroll_speed`
|
||||
--- option in `layout_config`. See |telescope.layout| for more details.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param direction number: The direction of the scrolling
|
||||
-- Valid directions include: "1", "-1"
|
||||
action_set.scroll_previewer = function(prompt_bufnr, direction)
|
||||
local previewer = action_state.get_current_picker(prompt_bufnr).previewer
|
||||
local status = state.get_status(prompt_bufnr)
|
||||
|
||||
-- Check if we actually have a previewer and a preview window
|
||||
if type(previewer) ~= "table" or previewer.scroll_fn == nil or status.preview_win == nil then
|
||||
return
|
||||
end
|
||||
|
||||
local default_speed = vim.api.nvim_win_get_height(status.preview_win) / 2
|
||||
local speed = status.picker.layout_config.scroll_speed or default_speed
|
||||
|
||||
previewer:scroll_fn(math.floor(speed * direction))
|
||||
end
|
||||
|
||||
--- Scrolls the results up or down.
|
||||
--- Defaults to a half page scroll, but can be overridden using the `scroll_speed`
|
||||
--- option in `layout_config`. See |telescope.layout| for more details.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param direction number: The direction of the scrolling
|
||||
-- Valid directions include: "1", "-1"
|
||||
action_set.scroll_results = function(prompt_bufnr, direction)
|
||||
local status = state.get_status(prompt_bufnr)
|
||||
local default_speed = vim.api.nvim_win_get_height(status.results_win) / 2
|
||||
local speed = status.picker.layout_config.scroll_speed or default_speed
|
||||
|
||||
local input = direction > 0 and [[]] or [[]]
|
||||
|
||||
vim.api.nvim_win_call(status.results_win, function()
|
||||
vim.cmd([[normal! ]] .. math.floor(speed) .. input)
|
||||
end)
|
||||
|
||||
action_set.shift_selection(prompt_bufnr, math.floor(speed) * direction)
|
||||
end
|
||||
|
||||
-- ==================================================
|
||||
-- Transforms modules and sets the corect metatables.
|
||||
-- ==================================================
|
||||
action_set = transform_mod(action_set)
|
||||
return action_set
|
56
bundle/telescope.nvim-0.1.8/lua/telescope/actions/state.lua
Normal file
56
bundle/telescope.nvim-0.1.8/lua/telescope/actions/state.lua
Normal file
@ -0,0 +1,56 @@
|
||||
---@tag telescope.actions.state
|
||||
---@config { ["module"] = "telescope.actions.state", ["name"] = "ACTIONS_STATE" }
|
||||
|
||||
---@brief [[
|
||||
--- Functions to be used to determine the current state of telescope.
|
||||
---
|
||||
--- Generally used from within other |telescope.actions|
|
||||
---@brief ]]
|
||||
|
||||
local global_state = require "telescope.state"
|
||||
local conf = require("telescope.config").values
|
||||
|
||||
local action_state = {}
|
||||
|
||||
--- Get the current entry
|
||||
function action_state.get_selected_entry()
|
||||
return global_state.get_global_key "selected_entry"
|
||||
end
|
||||
|
||||
--- Gets the current line in the search prompt
|
||||
function action_state.get_current_line()
|
||||
return global_state.get_global_key "current_line" or ""
|
||||
end
|
||||
|
||||
--- Gets the current picker
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
function action_state.get_current_picker(prompt_bufnr)
|
||||
return global_state.get_status(prompt_bufnr).picker
|
||||
end
|
||||
|
||||
local select_to_edit_map = {
|
||||
default = "edit",
|
||||
horizontal = "new",
|
||||
vertical = "vnew",
|
||||
tab = "tabedit",
|
||||
}
|
||||
function action_state.select_key_to_edit_key(type)
|
||||
return select_to_edit_map[type]
|
||||
end
|
||||
|
||||
function action_state.get_current_history()
|
||||
local history = global_state.get_global_key "history"
|
||||
if not history then
|
||||
if conf.history == false or type(conf.history) ~= "table" then
|
||||
history = require("telescope.actions.history").get_simple_history()
|
||||
global_state.set_global_key("history", history)
|
||||
else
|
||||
history = conf.history.handler()
|
||||
global_state.set_global_key("history", history)
|
||||
end
|
||||
end
|
||||
|
||||
return history
|
||||
end
|
||||
|
||||
return action_state
|
150
bundle/telescope.nvim-0.1.8/lua/telescope/actions/utils.lua
Normal file
150
bundle/telescope.nvim-0.1.8/lua/telescope/actions/utils.lua
Normal file
@ -0,0 +1,150 @@
|
||||
---@tag telescope.actions.utils
|
||||
---@config { ["module"] = "telescope.actions.utils", ["name"] = "ACTIONS_UTILS" }
|
||||
|
||||
---@brief [[
|
||||
--- Utilities to wrap functions around picker selections and entries.
|
||||
---
|
||||
--- Generally used from within other |telescope.actions|
|
||||
---@brief ]]
|
||||
|
||||
local action_state = require "telescope.actions.state"
|
||||
|
||||
local utils = {}
|
||||
|
||||
--- Apply `f` to the entries of the current picker.
|
||||
--- - Notes:
|
||||
--- - Mapped entries include all currently filtered results, not just the visible ones.
|
||||
--- - Indices are 1-indexed, whereas rows are 0-indexed.
|
||||
--- - Warning: `map_entries` has no return value.
|
||||
--- - The below example showcases how to collect results
|
||||
---
|
||||
--- Usage:
|
||||
--- <code>
|
||||
--- local action_state = require "telescope.actions.state"
|
||||
--- local action_utils = require "telescope.actions.utils"
|
||||
--- function entry_value_by_row()
|
||||
--- local prompt_bufnr = vim.api.nvim_get_current_buf()
|
||||
--- local current_picker = action_state.get_current_picker(prompt_bufnr)
|
||||
--- local results = {}
|
||||
--- action_utils.map_entries(prompt_bufnr, function(entry, index, row)
|
||||
--- results[row] = entry.value
|
||||
--- end)
|
||||
--- return results
|
||||
--- end
|
||||
--- </code>
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param f function: Function to map onto entries of picker that takes (entry, index, row) as viable arguments
|
||||
function utils.map_entries(prompt_bufnr, f)
|
||||
vim.validate {
|
||||
f = { f, "function" },
|
||||
}
|
||||
local current_picker = action_state.get_current_picker(prompt_bufnr)
|
||||
local index = 1
|
||||
-- indices are 1-indexed, rows are 0-indexed
|
||||
for entry in current_picker.manager:iter() do
|
||||
local row = current_picker:get_row(index)
|
||||
f(entry, index, row)
|
||||
index = index + 1
|
||||
end
|
||||
end
|
||||
|
||||
--- Apply `f` to the multi selections of the current picker and return a table of mapped selections.
|
||||
--- - Notes:
|
||||
--- - Mapped selections may include results not visible in the results pop up.
|
||||
--- - Selected entries are returned in order of their selection.
|
||||
--- - Warning: `map_selections` has no return value.
|
||||
--- - The below example showcases how to collect results
|
||||
---
|
||||
--- Usage:
|
||||
--- <code>
|
||||
--- local action_state = require "telescope.actions.state"
|
||||
--- local action_utils = require "telescope.actions.utils"
|
||||
--- function selection_by_index()
|
||||
--- local prompt_bufnr = vim.api.nvim_get_current_buf()
|
||||
--- local current_picker = action_state.get_current_picker(prompt_bufnr)
|
||||
--- local results = {}
|
||||
--- action_utils.map_selections(prompt_bufnr, function(entry, index)
|
||||
--- results[index] = entry.value
|
||||
--- end)
|
||||
--- return results
|
||||
--- end
|
||||
--- </code>
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
---@param f function: Function to map onto selection of picker that takes (selection) as a viable argument
|
||||
function utils.map_selections(prompt_bufnr, f)
|
||||
vim.validate {
|
||||
f = { f, "function" },
|
||||
}
|
||||
local current_picker = action_state.get_current_picker(prompt_bufnr)
|
||||
for _, selection in ipairs(current_picker:get_multi_selection()) do
|
||||
f(selection)
|
||||
end
|
||||
end
|
||||
|
||||
--- Utility to collect mappings of prompt buffer in array of `{mode, keybind, name}`.
|
||||
---@param prompt_bufnr number: The prompt bufnr
|
||||
function utils.get_registered_mappings(prompt_bufnr)
|
||||
local ret = {}
|
||||
for _, mode in ipairs { "n", "i" } do
|
||||
for _, mapping in ipairs(vim.api.nvim_buf_get_keymap(prompt_bufnr, mode)) do
|
||||
-- ensure only telescope mappings
|
||||
if mapping.desc then
|
||||
if mapping.desc:sub(1, 10) == "telescope|" then
|
||||
table.insert(ret, { mode = mode, keybind = mapping.lhs, desc = mapping.desc:sub(11) })
|
||||
elseif mapping.desc:sub(1, 11) == "telescopej|" then
|
||||
local fname = utils._get_anon_function_name(vim.json.decode(mapping.desc:sub(12)))
|
||||
fname = fname:lower() == mapping.lhs:lower() and "<anonymous>" or fname
|
||||
table.insert(ret, {
|
||||
mode = mode,
|
||||
keybind = mapping.lhs,
|
||||
desc = fname,
|
||||
})
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
return ret
|
||||
end
|
||||
|
||||
-- Best effort to infer function names for actions.which_key
|
||||
function utils._get_anon_function_name(info)
|
||||
local Path = require "plenary.path"
|
||||
local fname
|
||||
-- if fn defined in string (ie loadstring) source is string
|
||||
-- if fn defined in file, source is file name prefixed with a `@´
|
||||
local path = Path:new((info.source:gsub("@", "")))
|
||||
if not path:exists() then
|
||||
return "<anonymous>"
|
||||
end
|
||||
for i, line in ipairs(path:readlines()) do
|
||||
if i == info.linedefined then
|
||||
fname = line
|
||||
break
|
||||
end
|
||||
end
|
||||
|
||||
-- test if assignment or named function, otherwise anon
|
||||
if (fname:match "=" == nil) and (fname:match "function %S+%(" == nil) then
|
||||
return "<anonymous>"
|
||||
else
|
||||
local patterns = {
|
||||
{ "function", "" }, -- remove function
|
||||
{ "local", "" }, -- remove local
|
||||
{ "[%s=]", "" }, -- remove whitespace and =
|
||||
{ [=[%[["']]=], "" }, -- remove left-hand bracket of table assignment
|
||||
{ [=[["']%]]=], "" }, -- remove right-ahnd bracket of table assignment
|
||||
{ "%((.+)%)", "" }, -- remove function arguments
|
||||
{ "(.+)%.", "" }, -- remove TABLE. prefix if available
|
||||
}
|
||||
for _, tbl in ipairs(patterns) do
|
||||
fname = (fname:gsub(tbl[1], tbl[2])) -- make sure only string is returned
|
||||
end
|
||||
-- not sure if this can happen, catch all just in case
|
||||
if fname == nil or fname == "" then
|
||||
return "<anonymous>"
|
||||
end
|
||||
return fname
|
||||
end
|
||||
end
|
||||
|
||||
return utils
|
197
bundle/telescope.nvim-0.1.8/lua/telescope/algos/fzy.lua
Normal file
197
bundle/telescope.nvim-0.1.8/lua/telescope/algos/fzy.lua
Normal file
@ -0,0 +1,197 @@
|
||||
-- The fzy matching algorithm
|
||||
--
|
||||
-- by Seth Warn <https://github.com/swarn>
|
||||
-- a lua port of John Hawthorn's fzy <https://github.com/jhawthorn/fzy>
|
||||
--
|
||||
-- > fzy tries to find the result the user intended. It does this by favouring
|
||||
-- > matches on consecutive letters and starts of words. This allows matching
|
||||
-- > using acronyms or different parts of the path." - J Hawthorn
|
||||
|
||||
local has_path, Path = pcall(require, "plenary.path")
|
||||
if not has_path then
|
||||
Path = {
|
||||
path = {
|
||||
separator = "/",
|
||||
},
|
||||
}
|
||||
end
|
||||
|
||||
local SCORE_GAP_LEADING = -0.005
|
||||
local SCORE_GAP_TRAILING = -0.005
|
||||
local SCORE_GAP_INNER = -0.01
|
||||
local SCORE_MATCH_CONSECUTIVE = 1.0
|
||||
local SCORE_MATCH_SLASH = 0.9
|
||||
local SCORE_MATCH_WORD = 0.8
|
||||
local SCORE_MATCH_CAPITAL = 0.7
|
||||
local SCORE_MATCH_DOT = 0.6
|
||||
local SCORE_MAX = math.huge
|
||||
local SCORE_MIN = -math.huge
|
||||
local MATCH_MAX_LENGTH = 1024
|
||||
|
||||
local fzy = {}
|
||||
|
||||
function fzy.has_match(needle, haystack)
|
||||
needle = string.lower(needle)
|
||||
haystack = string.lower(haystack)
|
||||
|
||||
local j = 1
|
||||
for i = 1, string.len(needle) do
|
||||
j = string.find(haystack, needle:sub(i, i), j, true)
|
||||
if not j then
|
||||
return false
|
||||
else
|
||||
j = j + 1
|
||||
end
|
||||
end
|
||||
|
||||
return true
|
||||
end
|
||||
|
||||
local function is_lower(c)
|
||||
return c:match "%l"
|
||||
end
|
||||
|
||||
local function is_upper(c)
|
||||
return c:match "%u"
|
||||
end
|
||||
|
||||
local function precompute_bonus(haystack)
|
||||
local match_bonus = {}
|
||||
|
||||
local last_char = Path.path.sep
|
||||
for i = 1, string.len(haystack) do
|
||||
local this_char = haystack:sub(i, i)
|
||||
if last_char == Path.path.sep then
|
||||
match_bonus[i] = SCORE_MATCH_SLASH
|
||||
elseif last_char == "-" or last_char == "_" or last_char == " " then
|
||||
match_bonus[i] = SCORE_MATCH_WORD
|
||||
elseif last_char == "." then
|
||||
match_bonus[i] = SCORE_MATCH_DOT
|
||||
elseif is_lower(last_char) and is_upper(this_char) then
|
||||
match_bonus[i] = SCORE_MATCH_CAPITAL
|
||||
else
|
||||
match_bonus[i] = 0
|
||||
end
|
||||
|
||||
last_char = this_char
|
||||
end
|
||||
|
||||
return match_bonus
|
||||
end
|
||||
|
||||
local function compute(needle, haystack, D, M)
|
||||
local match_bonus = precompute_bonus(haystack)
|
||||
local n = string.len(needle)
|
||||
local m = string.len(haystack)
|
||||
local lower_needle = string.lower(needle)
|
||||
local lower_haystack = string.lower(haystack)
|
||||
|
||||
-- Because lua only grants access to chars through substring extraction,
|
||||
-- get all the characters from the haystack once now, to reuse below.
|
||||
local haystack_chars = {}
|
||||
for i = 1, m do
|
||||
haystack_chars[i] = lower_haystack:sub(i, i)
|
||||
end
|
||||
|
||||
for i = 1, n do
|
||||
D[i] = {}
|
||||
M[i] = {}
|
||||
|
||||
local prev_score = SCORE_MIN
|
||||
local gap_score = i == n and SCORE_GAP_TRAILING or SCORE_GAP_INNER
|
||||
local needle_char = lower_needle:sub(i, i)
|
||||
|
||||
for j = 1, m do
|
||||
if needle_char == haystack_chars[j] then
|
||||
local score = SCORE_MIN
|
||||
if i == 1 then
|
||||
score = ((j - 1) * SCORE_GAP_LEADING) + match_bonus[j]
|
||||
elseif j > 1 then
|
||||
local a = M[i - 1][j - 1] + match_bonus[j]
|
||||
local b = D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE
|
||||
score = math.max(a, b)
|
||||
end
|
||||
D[i][j] = score
|
||||
prev_score = math.max(score, prev_score + gap_score)
|
||||
M[i][j] = prev_score
|
||||
else
|
||||
D[i][j] = SCORE_MIN
|
||||
prev_score = prev_score + gap_score
|
||||
M[i][j] = prev_score
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function fzy.score(needle, haystack)
|
||||
local n = string.len(needle)
|
||||
local m = string.len(haystack)
|
||||
|
||||
if n == 0 or m == 0 or m > MATCH_MAX_LENGTH or n > MATCH_MAX_LENGTH then
|
||||
return SCORE_MIN
|
||||
elseif n == m then
|
||||
return SCORE_MAX
|
||||
else
|
||||
local D = {}
|
||||
local M = {}
|
||||
compute(needle, haystack, D, M)
|
||||
return M[n][m]
|
||||
end
|
||||
end
|
||||
|
||||
function fzy.positions(needle, haystack)
|
||||
local n = string.len(needle)
|
||||
local m = string.len(haystack)
|
||||
|
||||
if n == 0 or m == 0 or m > MATCH_MAX_LENGTH or n > MATCH_MAX_LENGTH then
|
||||
return {}
|
||||
elseif n == m then
|
||||
local consecutive = {}
|
||||
for i = 1, n do
|
||||
consecutive[i] = i
|
||||
end
|
||||
return consecutive
|
||||
end
|
||||
|
||||
local D = {}
|
||||
local M = {}
|
||||
compute(needle, haystack, D, M)
|
||||
|
||||
local positions = {}
|
||||
local match_required = false
|
||||
local j = m
|
||||
for i = n, 1, -1 do
|
||||
while j >= 1 do
|
||||
if D[i][j] ~= SCORE_MIN and (match_required or D[i][j] == M[i][j]) then
|
||||
match_required = (i ~= 1) and (j ~= 1) and (M[i][j] == D[i - 1][j - 1] + SCORE_MATCH_CONSECUTIVE)
|
||||
positions[i] = j
|
||||
j = j - 1
|
||||
break
|
||||
else
|
||||
j = j - 1
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return positions
|
||||
end
|
||||
|
||||
-- If strings a or b are empty or too long, `fzy.score(a, b) == fzy.get_score_min()`.
|
||||
function fzy.get_score_min()
|
||||
return SCORE_MIN
|
||||
end
|
||||
|
||||
-- For exact matches, `fzy.score(s, s) == fzy.get_score_max()`.
|
||||
function fzy.get_score_max()
|
||||
return SCORE_MAX
|
||||
end
|
||||
|
||||
-- For all strings a and b that
|
||||
-- - are not covered by either `fzy.get_score_min()` or fzy.get_score_max()`, and
|
||||
-- - are matched, such that `fzy.has_match(a, b) == true`,
|
||||
-- then `fzy.score(a, b) > fzy.get_score_floor()` will be true.
|
||||
function fzy.get_score_floor()
|
||||
return (MATCH_MAX_LENGTH + 1) * SCORE_GAP_INNER
|
||||
end
|
||||
|
||||
return fzy
|
255
bundle/telescope.nvim-0.1.8/lua/telescope/algos/linked_list.lua
Normal file
255
bundle/telescope.nvim-0.1.8/lua/telescope/algos/linked_list.lua
Normal file
@ -0,0 +1,255 @@
|
||||
local LinkedList = {}
|
||||
LinkedList.__index = LinkedList
|
||||
|
||||
function LinkedList:new(opts)
|
||||
opts = opts or {}
|
||||
local track_at = opts.track_at
|
||||
|
||||
return setmetatable({
|
||||
size = 0,
|
||||
head = false,
|
||||
tail = false,
|
||||
|
||||
-- track_at: Track at can track a particular node
|
||||
-- Use to keep a node tracked at a particular index
|
||||
-- This greatly decreases looping for checking values at this location.
|
||||
track_at = track_at,
|
||||
_tracked_node = nil,
|
||||
tracked = nil,
|
||||
}, self)
|
||||
end
|
||||
|
||||
function LinkedList:_increment()
|
||||
self.size = self.size + 1
|
||||
return self.size
|
||||
end
|
||||
|
||||
local create_node = function(item)
|
||||
return {
|
||||
item = item,
|
||||
}
|
||||
end
|
||||
|
||||
function LinkedList:append(item)
|
||||
local final_size = self:_increment()
|
||||
|
||||
local node = create_node(item)
|
||||
|
||||
if not self.head then
|
||||
self.head = node
|
||||
end
|
||||
|
||||
if self.tail then
|
||||
self.tail.next = node
|
||||
node.prev = self.tail
|
||||
end
|
||||
|
||||
self.tail = node
|
||||
|
||||
if self.track_at then
|
||||
if final_size == self.track_at then
|
||||
self.tracked = item
|
||||
self._tracked_node = node
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
function LinkedList:prepend(item)
|
||||
local final_size = self:_increment()
|
||||
local node = create_node(item)
|
||||
|
||||
if not self.tail then
|
||||
self.tail = node
|
||||
end
|
||||
|
||||
if self.head then
|
||||
self.head.prev = node
|
||||
node.next = self.head
|
||||
end
|
||||
|
||||
self.head = node
|
||||
|
||||
if self.track_at then
|
||||
if final_size == self.track_at then
|
||||
self._tracked_node = self.tail
|
||||
elseif final_size > self.track_at then
|
||||
self._tracked_node = self._tracked_node.prev
|
||||
else
|
||||
return
|
||||
end
|
||||
|
||||
self.tracked = self._tracked_node.item
|
||||
end
|
||||
end
|
||||
|
||||
-- [a, b, c]
|
||||
-- b.prev = a
|
||||
-- b.next = c
|
||||
--
|
||||
-- a.next = b
|
||||
-- c.prev = c
|
||||
--
|
||||
-- insert d after b
|
||||
-- [a, b, d, c]
|
||||
--
|
||||
-- b.next = d
|
||||
-- b.prev = a
|
||||
--
|
||||
-- Place "item" after "node" (which is at index `index`)
|
||||
function LinkedList:place_after(index, node, item)
|
||||
local new_node = create_node(item)
|
||||
|
||||
assert(node.prev ~= node)
|
||||
assert(node.next ~= node)
|
||||
local final_size = self:_increment()
|
||||
|
||||
-- Update tail to be the next node.
|
||||
if self.tail == node then
|
||||
self.tail = new_node
|
||||
end
|
||||
|
||||
new_node.prev = node
|
||||
new_node.next = node.next
|
||||
|
||||
node.next = new_node
|
||||
|
||||
if new_node.prev then
|
||||
new_node.prev.next = new_node
|
||||
end
|
||||
|
||||
if new_node.next then
|
||||
new_node.next.prev = new_node
|
||||
end
|
||||
|
||||
if self.track_at then
|
||||
if index == self.track_at then
|
||||
self._tracked_node = new_node
|
||||
elseif index < self.track_at then
|
||||
if final_size == self.track_at then
|
||||
self._tracked_node = self.tail
|
||||
elseif final_size > self.track_at then
|
||||
self._tracked_node = self._tracked_node.prev
|
||||
else
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
self.tracked = self._tracked_node.item
|
||||
end
|
||||
end
|
||||
|
||||
function LinkedList:place_before(index, node, item)
|
||||
local new_node = create_node(item)
|
||||
|
||||
assert(node.prev ~= node)
|
||||
assert(node.next ~= node)
|
||||
local final_size = self:_increment()
|
||||
|
||||
-- Update head to be the node we are inserting.
|
||||
if self.head == node then
|
||||
self.head = new_node
|
||||
end
|
||||
|
||||
new_node.prev = node.prev
|
||||
new_node.next = node
|
||||
|
||||
node.prev = new_node
|
||||
-- node.next = node.next
|
||||
|
||||
if new_node.prev then
|
||||
new_node.prev.next = new_node
|
||||
end
|
||||
|
||||
if new_node.next then
|
||||
new_node.next.prev = new_node
|
||||
end
|
||||
|
||||
if self.track_at then
|
||||
if index == self.track_at - 1 then
|
||||
self._tracked_node = node
|
||||
elseif index < self.track_at then
|
||||
if final_size == self.track_at then
|
||||
self._tracked_node = self.tail
|
||||
elseif final_size > self.track_at then
|
||||
self._tracked_node = self._tracked_node.prev
|
||||
else
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
self.tracked = self._tracked_node.item
|
||||
end
|
||||
end
|
||||
|
||||
-- Do you even do this in linked lists...?
|
||||
-- function LinkedList:remove(item)
|
||||
-- end
|
||||
|
||||
function LinkedList:iter()
|
||||
local current_node = self.head
|
||||
|
||||
return function()
|
||||
local node = current_node
|
||||
if not node then
|
||||
return nil
|
||||
end
|
||||
|
||||
current_node = current_node.next
|
||||
return node.item
|
||||
end
|
||||
end
|
||||
|
||||
function LinkedList:ipairs()
|
||||
local index = 0
|
||||
local current_node = self.head
|
||||
|
||||
return function()
|
||||
local node = current_node
|
||||
if not node then
|
||||
return nil
|
||||
end
|
||||
|
||||
current_node = current_node.next
|
||||
index = index + 1
|
||||
return index, node.item, node
|
||||
end
|
||||
end
|
||||
|
||||
function LinkedList:truncate(max_results)
|
||||
if max_results >= self.size then
|
||||
return
|
||||
end
|
||||
|
||||
local current_node
|
||||
if max_results < self.size - max_results then
|
||||
local index = 1
|
||||
current_node = self.head
|
||||
while index < max_results do
|
||||
local node = current_node
|
||||
if not node.next then
|
||||
break
|
||||
end
|
||||
current_node = current_node.next
|
||||
index = index + 1
|
||||
end
|
||||
self.size = max_results
|
||||
else
|
||||
current_node = self.tail
|
||||
while self.size > max_results do
|
||||
if current_node.prev == nil then
|
||||
break
|
||||
end
|
||||
current_node = current_node.prev
|
||||
self.size = self.size - 1
|
||||
end
|
||||
end
|
||||
self.tail = current_node
|
||||
self.tail.next = nil
|
||||
if max_results < self.track_at then
|
||||
self.track_at = max_results
|
||||
self.tracked = current_node.item
|
||||
self._tracked_node = current_node
|
||||
end
|
||||
end
|
||||
|
||||
return LinkedList
|
@ -0,0 +1,52 @@
|
||||
local function min(a, b, c)
|
||||
local min_val = a
|
||||
|
||||
if b < min_val then
|
||||
min_val = b
|
||||
end
|
||||
if c < min_val then
|
||||
min_val = c
|
||||
end
|
||||
|
||||
return min_val
|
||||
end
|
||||
|
||||
----------------------------------
|
||||
--- Levenshtein distance function.
|
||||
-- @tparam string s1
|
||||
-- @tparam string s2
|
||||
-- @treturn number the levenshtein distance
|
||||
-- @within Metrics
|
||||
return function(s1, s2)
|
||||
if s1 == s2 then
|
||||
return 0
|
||||
end
|
||||
if s1:len() == 0 then
|
||||
return s2:len()
|
||||
end
|
||||
if s2:len() == 0 then
|
||||
return s1:len()
|
||||
end
|
||||
if s1:len() < s2:len() then
|
||||
s1, s2 = s2, s1
|
||||
end
|
||||
|
||||
local t = {}
|
||||
for i = 1, #s1 + 1 do
|
||||
t[i] = { i - 1 }
|
||||
end
|
||||
|
||||
for i = 1, #s2 + 1 do
|
||||
t[1][i] = i - 1
|
||||
end
|
||||
|
||||
local cost
|
||||
for i = 2, #s1 + 1 do
|
||||
for j = 2, #s2 + 1 do
|
||||
cost = (s1:sub(i - 1, i - 1) == s2:sub(j - 1, j - 1) and 0) or 1
|
||||
t[i][j] = min(t[i - 1][j] + 1, t[i][j - 1] + 1, t[i - 1][j - 1] + cost)
|
||||
end
|
||||
end
|
||||
|
||||
return t[#s1 + 1][#s2 + 1]
|
||||
end
|
@ -0,0 +1,155 @@
|
||||
local conf = require("telescope.config").values
|
||||
local finders = require "telescope.finders"
|
||||
local make_entry = require "telescope.make_entry"
|
||||
local pickers = require "telescope.pickers"
|
||||
local utils = require "telescope.utils"
|
||||
|
||||
local diagnostics = {}
|
||||
|
||||
local convert_diagnostic_type = function(severities, severity)
|
||||
-- convert from string to int
|
||||
if type(severity) == "string" then
|
||||
-- make sure that e.g. error is uppercased to ERROR
|
||||
return severities[severity:upper()]
|
||||
end
|
||||
-- otherwise keep original value, incl. nil
|
||||
return severity
|
||||
end
|
||||
|
||||
local diagnostics_to_tbl = function(opts)
|
||||
opts = vim.F.if_nil(opts, {})
|
||||
local items = {}
|
||||
local severities = vim.diagnostic.severity
|
||||
local current_buf = vim.api.nvim_get_current_buf()
|
||||
|
||||
opts.severity = convert_diagnostic_type(severities, opts.severity)
|
||||
opts.severity_limit = convert_diagnostic_type(severities, opts.severity_limit)
|
||||
opts.severity_bound = convert_diagnostic_type(severities, opts.severity_bound)
|
||||
|
||||
local diagnosis_opts = { severity = {}, namespace = opts.namespace }
|
||||
if opts.severity ~= nil then
|
||||
if opts.severity_limit ~= nil or opts.severity_bound ~= nil then
|
||||
utils.notify("builtin.diagnostics", {
|
||||
msg = "Invalid severity parameters. Both a specific severity and a limit/bound is not allowed",
|
||||
level = "ERROR",
|
||||
})
|
||||
return {}
|
||||
end
|
||||
diagnosis_opts.severity = opts.severity
|
||||
else
|
||||
if opts.severity_limit ~= nil then
|
||||
diagnosis_opts.severity["min"] = opts.severity_limit
|
||||
end
|
||||
if opts.severity_bound ~= nil then
|
||||
diagnosis_opts.severity["max"] = opts.severity_bound
|
||||
end
|
||||
if vim.version().minor > 9 and vim.tbl_isempty(diagnosis_opts.severity) then
|
||||
diagnosis_opts.severity = nil
|
||||
end
|
||||
end
|
||||
|
||||
opts.root_dir = opts.root_dir == true and vim.loop.cwd() or opts.root_dir
|
||||
|
||||
local bufnr_name_map = {}
|
||||
local filter_diag = function(diagnostic)
|
||||
if bufnr_name_map[diagnostic.bufnr] == nil then
|
||||
bufnr_name_map[diagnostic.bufnr] = vim.api.nvim_buf_get_name(diagnostic.bufnr)
|
||||
end
|
||||
|
||||
local root_dir_test = not opts.root_dir
|
||||
or string.sub(bufnr_name_map[diagnostic.bufnr], 1, #opts.root_dir) == opts.root_dir
|
||||
local listed_test = not opts.no_unlisted or vim.api.nvim_buf_get_option(diagnostic.bufnr, "buflisted")
|
||||
|
||||
return root_dir_test and listed_test
|
||||
end
|
||||
|
||||
local preprocess_diag = function(diagnostic)
|
||||
return {
|
||||
bufnr = diagnostic.bufnr,
|
||||
filename = bufnr_name_map[diagnostic.bufnr],
|
||||
lnum = diagnostic.lnum + 1,
|
||||
col = diagnostic.col + 1,
|
||||
text = vim.trim(diagnostic.message:gsub("[\n]", "")),
|
||||
type = severities[diagnostic.severity] or severities[1],
|
||||
}
|
||||
end
|
||||
|
||||
for _, d in ipairs(vim.diagnostic.get(opts.bufnr, diagnosis_opts)) do
|
||||
if filter_diag(d) then
|
||||
table.insert(items, preprocess_diag(d))
|
||||
end
|
||||
end
|
||||
|
||||
-- sort results by bufnr (prioritize cur buf), severity, lnum
|
||||
table.sort(items, function(a, b)
|
||||
if a.bufnr == b.bufnr then
|
||||
if a.type == b.type then
|
||||
return a.lnum < b.lnum
|
||||
else
|
||||
return a.type < b.type
|
||||
end
|
||||
else
|
||||
-- prioritize for current bufnr
|
||||
if a.bufnr == current_buf then
|
||||
return true
|
||||
end
|
||||
if b.bufnr == current_buf then
|
||||
return false
|
||||
end
|
||||
return a.bufnr < b.bufnr
|
||||
end
|
||||
end)
|
||||
|
||||
return items
|
||||
end
|
||||
|
||||
diagnostics.get = function(opts)
|
||||
if opts.bufnr ~= 0 then
|
||||
opts.bufnr = nil
|
||||
end
|
||||
if opts.bufnr == nil then
|
||||
opts.path_display = vim.F.if_nil(opts.path_display, {})
|
||||
end
|
||||
if type(opts.bufnr) == "string" then
|
||||
opts.bufnr = tonumber(opts.bufnr)
|
||||
end
|
||||
|
||||
local locations = diagnostics_to_tbl(opts)
|
||||
|
||||
if vim.tbl_isempty(locations) then
|
||||
utils.notify("builtin.diagnostics", {
|
||||
msg = "No diagnostics found",
|
||||
level = "INFO",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
opts.path_display = vim.F.if_nil(opts.path_display, "hidden")
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = opts.bufnr == nil and "Workspace Diagnostics" or "Document Diagnostics",
|
||||
finder = finders.new_table {
|
||||
results = locations,
|
||||
entry_maker = opts.entry_maker or make_entry.gen_from_diagnostics(opts),
|
||||
},
|
||||
previewer = conf.qflist_previewer(opts),
|
||||
sorter = conf.prefilter_sorter {
|
||||
tag = "type",
|
||||
sorter = conf.generic_sorter(opts),
|
||||
},
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
local function apply_checks(mod)
|
||||
for k, v in pairs(mod) do
|
||||
mod[k] = function(opts)
|
||||
opts = opts or {}
|
||||
v(opts)
|
||||
end
|
||||
end
|
||||
|
||||
return mod
|
||||
end
|
||||
|
||||
return apply_checks(diagnostics)
|
602
bundle/telescope.nvim-0.1.8/lua/telescope/builtin/__files.lua
Normal file
602
bundle/telescope.nvim-0.1.8/lua/telescope/builtin/__files.lua
Normal file
@ -0,0 +1,602 @@
|
||||
local action_state = require "telescope.actions.state"
|
||||
local action_set = require "telescope.actions.set"
|
||||
local actions = require "telescope.actions"
|
||||
local finders = require "telescope.finders"
|
||||
local make_entry = require "telescope.make_entry"
|
||||
local pickers = require "telescope.pickers"
|
||||
local previewers = require "telescope.previewers"
|
||||
local sorters = require "telescope.sorters"
|
||||
local utils = require "telescope.utils"
|
||||
local conf = require("telescope.config").values
|
||||
local log = require "telescope.log"
|
||||
|
||||
local Path = require "plenary.path"
|
||||
|
||||
local flatten = utils.flatten
|
||||
local filter = vim.tbl_filter
|
||||
|
||||
local files = {}
|
||||
|
||||
local escape_chars = function(string)
|
||||
return string.gsub(string, "[%(|%)|\\|%[|%]|%-|%{%}|%?|%+|%*|%^|%$|%.]", {
|
||||
["\\"] = "\\\\",
|
||||
["-"] = "\\-",
|
||||
["("] = "\\(",
|
||||
[")"] = "\\)",
|
||||
["["] = "\\[",
|
||||
["]"] = "\\]",
|
||||
["{"] = "\\{",
|
||||
["}"] = "\\}",
|
||||
["?"] = "\\?",
|
||||
["+"] = "\\+",
|
||||
["*"] = "\\*",
|
||||
["^"] = "\\^",
|
||||
["$"] = "\\$",
|
||||
["."] = "\\.",
|
||||
})
|
||||
end
|
||||
|
||||
local get_open_filelist = function(grep_open_files, cwd)
|
||||
if not grep_open_files then
|
||||
return nil
|
||||
end
|
||||
|
||||
local bufnrs = filter(function(b)
|
||||
if 1 ~= vim.fn.buflisted(b) then
|
||||
return false
|
||||
end
|
||||
return true
|
||||
end, vim.api.nvim_list_bufs())
|
||||
if not next(bufnrs) then
|
||||
return
|
||||
end
|
||||
|
||||
local filelist = {}
|
||||
for _, bufnr in ipairs(bufnrs) do
|
||||
local file = vim.api.nvim_buf_get_name(bufnr)
|
||||
table.insert(filelist, Path:new(file):make_relative(cwd))
|
||||
end
|
||||
return filelist
|
||||
end
|
||||
|
||||
local opts_contain_invert = function(args)
|
||||
local invert = false
|
||||
local files_with_matches = false
|
||||
|
||||
for _, v in ipairs(args) do
|
||||
if v == "--invert-match" then
|
||||
invert = true
|
||||
elseif v == "--files-with-matches" or v == "--files-without-match" then
|
||||
files_with_matches = true
|
||||
end
|
||||
|
||||
if #v >= 2 and v:sub(1, 1) == "-" and v:sub(2, 2) ~= "-" then
|
||||
local non_option = false
|
||||
for i = 2, #v do
|
||||
local vi = v:sub(i, i)
|
||||
if vi == "=" then -- ignore option -g=xxx
|
||||
break
|
||||
elseif vi == "g" or vi == "f" or vi == "m" or vi == "e" or vi == "r" or vi == "t" or vi == "T" then
|
||||
non_option = true
|
||||
elseif non_option == false and vi == "v" then
|
||||
invert = true
|
||||
elseif non_option == false and vi == "l" then
|
||||
files_with_matches = true
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
return invert, files_with_matches
|
||||
end
|
||||
|
||||
-- Special keys:
|
||||
-- opts.search_dirs -- list of directory to search in
|
||||
-- opts.grep_open_files -- boolean to restrict search to open files
|
||||
files.live_grep = function(opts)
|
||||
local vimgrep_arguments = opts.vimgrep_arguments or conf.vimgrep_arguments
|
||||
local search_dirs = opts.search_dirs
|
||||
local grep_open_files = opts.grep_open_files
|
||||
opts.cwd = opts.cwd and utils.path_expand(opts.cwd) or vim.loop.cwd()
|
||||
|
||||
local filelist = get_open_filelist(grep_open_files, opts.cwd)
|
||||
if search_dirs then
|
||||
for i, path in ipairs(search_dirs) do
|
||||
search_dirs[i] = utils.path_expand(path)
|
||||
end
|
||||
end
|
||||
|
||||
local additional_args = {}
|
||||
if opts.additional_args ~= nil then
|
||||
if type(opts.additional_args) == "function" then
|
||||
additional_args = opts.additional_args(opts)
|
||||
elseif type(opts.additional_args) == "table" then
|
||||
additional_args = opts.additional_args
|
||||
end
|
||||
end
|
||||
|
||||
if opts.type_filter then
|
||||
additional_args[#additional_args + 1] = "--type=" .. opts.type_filter
|
||||
end
|
||||
|
||||
if type(opts.glob_pattern) == "string" then
|
||||
additional_args[#additional_args + 1] = "--glob=" .. opts.glob_pattern
|
||||
elseif type(opts.glob_pattern) == "table" then
|
||||
for i = 1, #opts.glob_pattern do
|
||||
additional_args[#additional_args + 1] = "--glob=" .. opts.glob_pattern[i]
|
||||
end
|
||||
end
|
||||
|
||||
if opts.file_encoding then
|
||||
additional_args[#additional_args + 1] = "--encoding=" .. opts.file_encoding
|
||||
end
|
||||
|
||||
local args = flatten { vimgrep_arguments, additional_args }
|
||||
opts.__inverted, opts.__matches = opts_contain_invert(args)
|
||||
|
||||
local live_grepper = finders.new_job(function(prompt)
|
||||
if not prompt or prompt == "" then
|
||||
return nil
|
||||
end
|
||||
|
||||
local search_list = {}
|
||||
|
||||
if grep_open_files then
|
||||
search_list = filelist
|
||||
elseif search_dirs then
|
||||
search_list = search_dirs
|
||||
end
|
||||
|
||||
return flatten { args, "--", prompt, search_list }
|
||||
end, opts.entry_maker or make_entry.gen_from_vimgrep(opts), opts.max_results, opts.cwd)
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Live Grep",
|
||||
finder = live_grepper,
|
||||
previewer = conf.grep_previewer(opts),
|
||||
-- TODO: It would be cool to use `--json` output for this
|
||||
-- and then we could get the highlight positions directly.
|
||||
sorter = sorters.highlighter_only(opts),
|
||||
attach_mappings = function(_, map)
|
||||
map("i", "<c-space>", actions.to_fuzzy_refine)
|
||||
return true
|
||||
end,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
files.grep_string = function(opts)
|
||||
-- TODO: This should probably check your visual selection as well, if you've got one
|
||||
opts.cwd = opts.cwd and utils.path_expand(opts.cwd) or vim.loop.cwd()
|
||||
local vimgrep_arguments = vim.F.if_nil(opts.vimgrep_arguments, conf.vimgrep_arguments)
|
||||
local word = vim.F.if_nil(opts.search, vim.fn.expand "<cword>")
|
||||
local search = opts.use_regex and word or escape_chars(word)
|
||||
|
||||
local additional_args = {}
|
||||
if opts.additional_args ~= nil then
|
||||
if type(opts.additional_args) == "function" then
|
||||
additional_args = opts.additional_args(opts)
|
||||
elseif type(opts.additional_args) == "table" then
|
||||
additional_args = opts.additional_args
|
||||
end
|
||||
end
|
||||
|
||||
if opts.file_encoding then
|
||||
additional_args[#additional_args + 1] = "--encoding=" .. opts.file_encoding
|
||||
end
|
||||
|
||||
if search == "" then
|
||||
search = { "-v", "--", "^[[:space:]]*$" }
|
||||
else
|
||||
search = { "--", search }
|
||||
end
|
||||
|
||||
local args = flatten {
|
||||
vimgrep_arguments,
|
||||
additional_args,
|
||||
opts.word_match,
|
||||
search,
|
||||
}
|
||||
opts.__inverted, opts.__matches = opts_contain_invert(args)
|
||||
|
||||
if opts.grep_open_files then
|
||||
for _, file in ipairs(get_open_filelist(opts.grep_open_files, opts.cwd)) do
|
||||
table.insert(args, file)
|
||||
end
|
||||
elseif opts.search_dirs then
|
||||
for _, path in ipairs(opts.search_dirs) do
|
||||
table.insert(args, utils.path_expand(path))
|
||||
end
|
||||
end
|
||||
|
||||
opts.entry_maker = opts.entry_maker or make_entry.gen_from_vimgrep(opts)
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Find Word (" .. word:gsub("\n", "\\n") .. ")",
|
||||
finder = finders.new_oneshot_job(args, opts),
|
||||
previewer = conf.grep_previewer(opts),
|
||||
sorter = conf.generic_sorter(opts),
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
files.find_files = function(opts)
|
||||
local find_command = (function()
|
||||
if opts.find_command then
|
||||
if type(opts.find_command) == "function" then
|
||||
return opts.find_command(opts)
|
||||
end
|
||||
return opts.find_command
|
||||
elseif 1 == vim.fn.executable "rg" then
|
||||
return { "rg", "--files", "--color", "never" }
|
||||
elseif 1 == vim.fn.executable "fd" then
|
||||
return { "fd", "--type", "f", "--color", "never" }
|
||||
elseif 1 == vim.fn.executable "fdfind" then
|
||||
return { "fdfind", "--type", "f", "--color", "never" }
|
||||
elseif 1 == vim.fn.executable "find" and vim.fn.has "win32" == 0 then
|
||||
return { "find", ".", "-type", "f" }
|
||||
elseif 1 == vim.fn.executable "where" then
|
||||
return { "where", "/r", ".", "*" }
|
||||
end
|
||||
end)()
|
||||
|
||||
if not find_command then
|
||||
utils.notify("builtin.find_files", {
|
||||
msg = "You need to install either find, fd, or rg",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
local command = find_command[1]
|
||||
local hidden = opts.hidden
|
||||
local no_ignore = opts.no_ignore
|
||||
local no_ignore_parent = opts.no_ignore_parent
|
||||
local follow = opts.follow
|
||||
local search_dirs = opts.search_dirs
|
||||
local search_file = opts.search_file
|
||||
|
||||
if search_dirs then
|
||||
for k, v in pairs(search_dirs) do
|
||||
search_dirs[k] = utils.path_expand(v)
|
||||
end
|
||||
end
|
||||
|
||||
if command == "fd" or command == "fdfind" or command == "rg" then
|
||||
if hidden then
|
||||
find_command[#find_command + 1] = "--hidden"
|
||||
end
|
||||
if no_ignore then
|
||||
find_command[#find_command + 1] = "--no-ignore"
|
||||
end
|
||||
if no_ignore_parent then
|
||||
find_command[#find_command + 1] = "--no-ignore-parent"
|
||||
end
|
||||
if follow then
|
||||
find_command[#find_command + 1] = "-L"
|
||||
end
|
||||
if search_file then
|
||||
if command == "rg" then
|
||||
find_command[#find_command + 1] = "-g"
|
||||
find_command[#find_command + 1] = "*" .. search_file .. "*"
|
||||
else
|
||||
find_command[#find_command + 1] = search_file
|
||||
end
|
||||
end
|
||||
if search_dirs then
|
||||
if command ~= "rg" and not search_file then
|
||||
find_command[#find_command + 1] = "."
|
||||
end
|
||||
vim.list_extend(find_command, search_dirs)
|
||||
end
|
||||
elseif command == "find" then
|
||||
if not hidden then
|
||||
table.insert(find_command, { "-not", "-path", "*/.*" })
|
||||
find_command = flatten(find_command)
|
||||
end
|
||||
if no_ignore ~= nil then
|
||||
log.warn "The `no_ignore` key is not available for the `find` command in `find_files`."
|
||||
end
|
||||
if no_ignore_parent ~= nil then
|
||||
log.warn "The `no_ignore_parent` key is not available for the `find` command in `find_files`."
|
||||
end
|
||||
if follow then
|
||||
table.insert(find_command, 2, "-L")
|
||||
end
|
||||
if search_file then
|
||||
table.insert(find_command, "-name")
|
||||
table.insert(find_command, "*" .. search_file .. "*")
|
||||
end
|
||||
if search_dirs then
|
||||
table.remove(find_command, 2)
|
||||
for _, v in pairs(search_dirs) do
|
||||
table.insert(find_command, 2, v)
|
||||
end
|
||||
end
|
||||
elseif command == "where" then
|
||||
if hidden ~= nil then
|
||||
log.warn "The `hidden` key is not available for the Windows `where` command in `find_files`."
|
||||
end
|
||||
if no_ignore ~= nil then
|
||||
log.warn "The `no_ignore` key is not available for the Windows `where` command in `find_files`."
|
||||
end
|
||||
if no_ignore_parent ~= nil then
|
||||
log.warn "The `no_ignore_parent` key is not available for the Windows `where` command in `find_files`."
|
||||
end
|
||||
if follow ~= nil then
|
||||
log.warn "The `follow` key is not available for the Windows `where` command in `find_files`."
|
||||
end
|
||||
if search_dirs ~= nil then
|
||||
log.warn "The `search_dirs` key is not available for the Windows `where` command in `find_files`."
|
||||
end
|
||||
if search_file ~= nil then
|
||||
log.warn "The `search_file` key is not available for the Windows `where` command in `find_files`."
|
||||
end
|
||||
end
|
||||
|
||||
if opts.cwd then
|
||||
opts.cwd = utils.path_expand(opts.cwd)
|
||||
end
|
||||
|
||||
opts.entry_maker = opts.entry_maker or make_entry.gen_from_file(opts)
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Find Files",
|
||||
finder = finders.new_oneshot_job(find_command, opts),
|
||||
previewer = conf.file_previewer(opts),
|
||||
sorter = conf.file_sorter(opts),
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
local function prepare_match(entry, kind)
|
||||
local entries = {}
|
||||
|
||||
if entry.node then
|
||||
table.insert(entries, entry)
|
||||
else
|
||||
for name, item in pairs(entry) do
|
||||
vim.list_extend(entries, prepare_match(item, name))
|
||||
end
|
||||
end
|
||||
|
||||
return entries
|
||||
end
|
||||
|
||||
-- TODO: finish docs for opts.show_line
|
||||
files.treesitter = function(opts)
|
||||
opts.show_line = vim.F.if_nil(opts.show_line, true)
|
||||
|
||||
local has_nvim_treesitter, _ = pcall(require, "nvim-treesitter")
|
||||
if not has_nvim_treesitter then
|
||||
utils.notify("builtin.treesitter", {
|
||||
msg = "User need to install nvim-treesitter needs to be installed",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
local parsers = require "nvim-treesitter.parsers"
|
||||
if not parsers.has_parser(parsers.get_buf_lang(opts.bufnr)) then
|
||||
utils.notify("builtin.treesitter", {
|
||||
msg = "No parser for the current buffer",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
local ts_locals = require "nvim-treesitter.locals"
|
||||
local results = {}
|
||||
for _, definition in ipairs(ts_locals.get_definitions(opts.bufnr)) do
|
||||
local entries = prepare_match(ts_locals.get_local_nodes(definition))
|
||||
for _, entry in ipairs(entries) do
|
||||
entry.kind = vim.F.if_nil(entry.kind, "")
|
||||
table.insert(results, entry)
|
||||
end
|
||||
end
|
||||
|
||||
if vim.tbl_isempty(results) then
|
||||
return
|
||||
end
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Treesitter Symbols",
|
||||
finder = finders.new_table {
|
||||
results = results,
|
||||
entry_maker = opts.entry_maker or make_entry.gen_from_treesitter(opts),
|
||||
},
|
||||
previewer = conf.grep_previewer(opts),
|
||||
sorter = conf.prefilter_sorter {
|
||||
tag = "kind",
|
||||
sorter = conf.generic_sorter(opts),
|
||||
},
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
files.current_buffer_fuzzy_find = function(opts)
|
||||
-- All actions are on the current buffer
|
||||
local filename = vim.api.nvim_buf_get_name(opts.bufnr)
|
||||
local filetype = vim.api.nvim_buf_get_option(opts.bufnr, "filetype")
|
||||
|
||||
local lines = vim.api.nvim_buf_get_lines(opts.bufnr, 0, -1, false)
|
||||
local lines_with_numbers = {}
|
||||
|
||||
for lnum, line in ipairs(lines) do
|
||||
table.insert(lines_with_numbers, {
|
||||
lnum = lnum,
|
||||
bufnr = opts.bufnr,
|
||||
filename = filename,
|
||||
text = line,
|
||||
})
|
||||
end
|
||||
|
||||
local ts_ok, ts_parsers = pcall(require, "nvim-treesitter.parsers")
|
||||
if ts_ok then
|
||||
filetype = ts_parsers.ft_to_lang(filetype)
|
||||
end
|
||||
local _, ts_configs = pcall(require, "nvim-treesitter.configs")
|
||||
|
||||
local parser_ok, parser = pcall(vim.treesitter.get_parser, opts.bufnr, filetype)
|
||||
local get_query = vim.treesitter.query.get or vim.treesitter.get_query
|
||||
local query_ok, query = pcall(get_query, filetype, "highlights")
|
||||
if parser_ok and query_ok and ts_ok and ts_configs.is_enabled("highlight", filetype, opts.bufnr) then
|
||||
local root = parser:parse()[1]:root()
|
||||
|
||||
local line_highlights = setmetatable({}, {
|
||||
__index = function(t, k)
|
||||
local obj = {}
|
||||
rawset(t, k, obj)
|
||||
return obj
|
||||
end,
|
||||
})
|
||||
|
||||
-- update to changes on Neovim master, see https://github.com/neovim/neovim/pull/19931
|
||||
-- TODO(clason): remove when dropping support for Neovim 0.7
|
||||
local get_hl_from_capture = (function()
|
||||
if vim.fn.has "nvim-0.8" == 1 then
|
||||
return function(q, id)
|
||||
return "@" .. q.captures[id]
|
||||
end
|
||||
else
|
||||
local highlighter = vim.treesitter.highlighter.new(parser)
|
||||
local highlighter_query = highlighter:get_query(filetype)
|
||||
|
||||
return function(_, id)
|
||||
return highlighter_query:_get_hl_from_capture(id)
|
||||
end
|
||||
end
|
||||
end)()
|
||||
|
||||
for id, node in query:iter_captures(root, opts.bufnr, 0, -1) do
|
||||
local hl = get_hl_from_capture(query, id)
|
||||
if hl and type(hl) ~= "number" then
|
||||
local row1, col1, row2, col2 = node:range()
|
||||
|
||||
if row1 == row2 then
|
||||
local row = row1 + 1
|
||||
|
||||
for index = col1, col2 do
|
||||
line_highlights[row][index] = hl
|
||||
end
|
||||
else
|
||||
local row = row1 + 1
|
||||
for index = col1, #lines[row] do
|
||||
line_highlights[row][index] = hl
|
||||
end
|
||||
|
||||
while row < row2 + 1 do
|
||||
row = row + 1
|
||||
|
||||
for index = 0, #(lines[row] or {}) do
|
||||
line_highlights[row][index] = hl
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
opts.line_highlights = line_highlights
|
||||
end
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Current Buffer Fuzzy",
|
||||
finder = finders.new_table {
|
||||
results = lines_with_numbers,
|
||||
entry_maker = opts.entry_maker or make_entry.gen_from_buffer_lines(opts),
|
||||
},
|
||||
sorter = conf.generic_sorter(opts),
|
||||
previewer = conf.grep_previewer(opts),
|
||||
attach_mappings = function()
|
||||
action_set.select:enhance {
|
||||
post = function()
|
||||
local selection = action_state.get_selected_entry()
|
||||
if not selection then
|
||||
return
|
||||
end
|
||||
|
||||
vim.api.nvim_win_set_cursor(0, { selection.lnum, 0 })
|
||||
end,
|
||||
}
|
||||
|
||||
return true
|
||||
end,
|
||||
push_cursor_on_edit = true,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
files.tags = function(opts)
|
||||
local tagfiles = opts.ctags_file and { opts.ctags_file } or vim.fn.tagfiles()
|
||||
for i, ctags_file in ipairs(tagfiles) do
|
||||
tagfiles[i] = vim.fn.expand(ctags_file, true)
|
||||
end
|
||||
if vim.tbl_isempty(tagfiles) then
|
||||
utils.notify("builtin.tags", {
|
||||
msg = "No tags file found. Create one with ctags -R",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_ctags(opts))
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Tags",
|
||||
finder = finders.new_oneshot_job(flatten { "cat", tagfiles }, opts),
|
||||
previewer = previewers.ctags.new(opts),
|
||||
sorter = conf.generic_sorter(opts),
|
||||
attach_mappings = function()
|
||||
action_set.select:enhance {
|
||||
post = function()
|
||||
local selection = action_state.get_selected_entry()
|
||||
if not selection then
|
||||
return
|
||||
end
|
||||
|
||||
if selection.scode then
|
||||
-- un-escape / then escape required
|
||||
-- special chars for vim.fn.search()
|
||||
-- ] ~ *
|
||||
local scode = selection.scode:gsub([[\/]], "/"):gsub("[%]~*]", function(x)
|
||||
return "\\" .. x
|
||||
end)
|
||||
|
||||
vim.cmd "keepjumps norm! gg"
|
||||
vim.fn.search(scode)
|
||||
vim.cmd "norm! zz"
|
||||
else
|
||||
vim.api.nvim_win_set_cursor(0, { selection.lnum, 0 })
|
||||
end
|
||||
end,
|
||||
}
|
||||
return true
|
||||
end,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
files.current_buffer_tags = function(opts)
|
||||
return files.tags(vim.tbl_extend("force", {
|
||||
prompt_title = "Current Buffer Tags",
|
||||
only_current_file = true,
|
||||
path_display = "hidden",
|
||||
}, opts))
|
||||
end
|
||||
|
||||
local function apply_checks(mod)
|
||||
for k, v in pairs(mod) do
|
||||
mod[k] = function(opts)
|
||||
opts = opts or {}
|
||||
|
||||
v(opts)
|
||||
end
|
||||
end
|
||||
|
||||
return mod
|
||||
end
|
||||
|
||||
return apply_checks(files)
|
407
bundle/telescope.nvim-0.1.8/lua/telescope/builtin/__git.lua
Normal file
407
bundle/telescope.nvim-0.1.8/lua/telescope/builtin/__git.lua
Normal file
@ -0,0 +1,407 @@
|
||||
local actions = require "telescope.actions"
|
||||
local action_state = require "telescope.actions.state"
|
||||
local finders = require "telescope.finders"
|
||||
local make_entry = require "telescope.make_entry"
|
||||
local pickers = require "telescope.pickers"
|
||||
local previewers = require "telescope.previewers"
|
||||
local utils = require "telescope.utils"
|
||||
local entry_display = require "telescope.pickers.entry_display"
|
||||
local strings = require "plenary.strings"
|
||||
local Path = require "plenary.path"
|
||||
|
||||
local conf = require("telescope.config").values
|
||||
|
||||
local git = {}
|
||||
|
||||
git.files = function(opts)
|
||||
if opts.is_bare then
|
||||
utils.notify("builtin.git_files", {
|
||||
msg = "This operation must be run in a work tree",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
local show_untracked = vim.F.if_nil(opts.show_untracked, false)
|
||||
local recurse_submodules = vim.F.if_nil(opts.recurse_submodules, false)
|
||||
if show_untracked and recurse_submodules then
|
||||
utils.notify("builtin.git_files", {
|
||||
msg = "Git does not support both --others and --recurse-submodules",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
-- By creating the entry maker after the cwd options,
|
||||
-- we ensure the maker uses the cwd options when being created.
|
||||
opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_file(opts))
|
||||
local git_command = vim.F.if_nil(
|
||||
opts.git_command,
|
||||
{ "git", "-c", "core.quotepath=false", "ls-files", "--exclude-standard", "--cached" }
|
||||
)
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Git Files",
|
||||
finder = finders.new_oneshot_job(
|
||||
utils.flatten {
|
||||
git_command,
|
||||
show_untracked and "--others" or nil,
|
||||
recurse_submodules and "--recurse-submodules" or nil,
|
||||
},
|
||||
opts
|
||||
),
|
||||
previewer = conf.file_previewer(opts),
|
||||
sorter = conf.file_sorter(opts),
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
git.commits = function(opts)
|
||||
opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts))
|
||||
local git_command = vim.F.if_nil(opts.git_command, { "git", "log", "--pretty=oneline", "--abbrev-commit", "--", "." })
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Git Commits",
|
||||
finder = finders.new_oneshot_job(git_command, opts),
|
||||
previewer = {
|
||||
previewers.git_commit_diff_to_parent.new(opts),
|
||||
previewers.git_commit_diff_to_head.new(opts),
|
||||
previewers.git_commit_diff_as_was.new(opts),
|
||||
previewers.git_commit_message.new(opts),
|
||||
},
|
||||
sorter = conf.file_sorter(opts),
|
||||
attach_mappings = function(_, map)
|
||||
actions.select_default:replace(actions.git_checkout)
|
||||
map({ "i", "n" }, "<c-r>m", actions.git_reset_mixed)
|
||||
map({ "i", "n" }, "<c-r>s", actions.git_reset_soft)
|
||||
map({ "i", "n" }, "<c-r>h", actions.git_reset_hard)
|
||||
return true
|
||||
end,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
git.stash = function(opts)
|
||||
opts.show_branch = vim.F.if_nil(opts.show_branch, true)
|
||||
opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_stash(opts))
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Git Stash",
|
||||
finder = finders.new_oneshot_job(
|
||||
utils.flatten {
|
||||
"git",
|
||||
"--no-pager",
|
||||
"stash",
|
||||
"list",
|
||||
},
|
||||
opts
|
||||
),
|
||||
previewer = previewers.git_stash_diff.new(opts),
|
||||
sorter = conf.file_sorter(opts),
|
||||
attach_mappings = function()
|
||||
actions.select_default:replace(actions.git_apply_stash)
|
||||
return true
|
||||
end,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
local get_current_buf_line = function(winnr)
|
||||
local lnum = vim.api.nvim_win_get_cursor(winnr)[1]
|
||||
return vim.trim(vim.api.nvim_buf_get_lines(vim.api.nvim_win_get_buf(winnr), lnum - 1, lnum, false)[1])
|
||||
end
|
||||
|
||||
git.bcommits = function(opts)
|
||||
opts.current_line = (opts.current_file == nil) and get_current_buf_line(opts.winnr) or nil
|
||||
opts.current_file = vim.F.if_nil(opts.current_file, vim.api.nvim_buf_get_name(opts.bufnr))
|
||||
opts.entry_maker = vim.F.if_nil(opts.entry_maker, make_entry.gen_from_git_commits(opts))
|
||||
local git_command =
|
||||
vim.F.if_nil(opts.git_command, { "git", "log", "--pretty=oneline", "--abbrev-commit", "--follow" })
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Git BCommits",
|
||||
finder = finders.new_oneshot_job(
|
||||
utils.flatten {
|
||||
git_command,
|
||||
opts.current_file,
|
||||
},
|
||||
opts
|
||||
),
|
||||
previewer = {
|
||||
previewers.git_commit_diff_to_parent.new(opts),
|
||||
previewers.git_commit_diff_to_head.new(opts),
|
||||
previewers.git_commit_diff_as_was.new(opts),
|
||||
previewers.git_commit_message.new(opts),
|
||||
},
|
||||
sorter = conf.file_sorter(opts),
|
||||
attach_mappings = function()
|
||||
actions.select_default:replace(actions.git_checkout_current_buffer)
|
||||
local transfrom_file = function()
|
||||
return opts.current_file and Path:new(opts.current_file):make_relative(opts.cwd) or ""
|
||||
end
|
||||
|
||||
local get_buffer_of_orig = function(selection)
|
||||
local value = selection.value .. ":" .. transfrom_file()
|
||||
local content = utils.get_os_command_output({ "git", "--no-pager", "show", value }, opts.cwd)
|
||||
|
||||
local bufnr = vim.api.nvim_create_buf(false, true)
|
||||
vim.api.nvim_buf_set_lines(bufnr, 0, -1, false, content)
|
||||
vim.api.nvim_buf_set_name(bufnr, "Original")
|
||||
return bufnr
|
||||
end
|
||||
|
||||
local vimdiff = function(selection, command)
|
||||
local ft = vim.bo.filetype
|
||||
vim.cmd "diffthis"
|
||||
|
||||
local bufnr = get_buffer_of_orig(selection)
|
||||
vim.cmd(string.format("%s %s", command, bufnr))
|
||||
vim.bo.filetype = ft
|
||||
vim.cmd "diffthis"
|
||||
|
||||
vim.api.nvim_create_autocmd("WinClosed", {
|
||||
buffer = bufnr,
|
||||
nested = true,
|
||||
once = true,
|
||||
callback = function()
|
||||
vim.api.nvim_buf_delete(bufnr, { force = true })
|
||||
end,
|
||||
})
|
||||
end
|
||||
|
||||
actions.select_vertical:replace(function(prompt_bufnr)
|
||||
actions.close(prompt_bufnr)
|
||||
local selection = action_state.get_selected_entry()
|
||||
vimdiff(selection, "leftabove vert sbuffer")
|
||||
end)
|
||||
|
||||
actions.select_horizontal:replace(function(prompt_bufnr)
|
||||
actions.close(prompt_bufnr)
|
||||
local selection = action_state.get_selected_entry()
|
||||
vimdiff(selection, "belowright sbuffer")
|
||||
end)
|
||||
|
||||
actions.select_tab:replace(function(prompt_bufnr)
|
||||
actions.close(prompt_bufnr)
|
||||
local selection = action_state.get_selected_entry()
|
||||
vim.cmd("tabedit " .. transfrom_file())
|
||||
vimdiff(selection, "leftabove vert sbuffer")
|
||||
end)
|
||||
return true
|
||||
end,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
git.branches = function(opts)
|
||||
local format = "%(HEAD)"
|
||||
.. "%(refname)"
|
||||
.. "%(authorname)"
|
||||
.. "%(upstream:lstrip=2)"
|
||||
.. "%(committerdate:format-local:%Y/%m/%d %H:%M:%S)"
|
||||
local output =
|
||||
utils.get_os_command_output({ "git", "for-each-ref", "--perl", "--format", format, opts.pattern }, opts.cwd)
|
||||
|
||||
local results = {}
|
||||
local widths = {
|
||||
name = 0,
|
||||
authorname = 0,
|
||||
upstream = 0,
|
||||
committerdate = 0,
|
||||
}
|
||||
local unescape_single_quote = function(v)
|
||||
return string.gsub(v, "\\([\\'])", "%1")
|
||||
end
|
||||
local parse_line = function(line)
|
||||
local fields = vim.split(string.sub(line, 2, -2), "''", true)
|
||||
local entry = {
|
||||
head = fields[1],
|
||||
refname = unescape_single_quote(fields[2]),
|
||||
authorname = unescape_single_quote(fields[3]),
|
||||
upstream = unescape_single_quote(fields[4]),
|
||||
committerdate = fields[5],
|
||||
}
|
||||
local prefix
|
||||
if vim.startswith(entry.refname, "refs/remotes/") then
|
||||
prefix = "refs/remotes/"
|
||||
elseif vim.startswith(entry.refname, "refs/heads/") then
|
||||
prefix = "refs/heads/"
|
||||
else
|
||||
return
|
||||
end
|
||||
local index = 1
|
||||
if entry.head ~= "*" then
|
||||
index = #results + 1
|
||||
end
|
||||
|
||||
entry.name = string.sub(entry.refname, string.len(prefix) + 1)
|
||||
for key, value in pairs(widths) do
|
||||
widths[key] = math.max(value, strings.strdisplaywidth(entry[key] or ""))
|
||||
end
|
||||
if string.len(entry.upstream) > 0 then
|
||||
widths.upstream_indicator = 2
|
||||
end
|
||||
table.insert(results, index, entry)
|
||||
end
|
||||
for _, line in ipairs(output) do
|
||||
parse_line(line)
|
||||
end
|
||||
if #results == 0 then
|
||||
return
|
||||
end
|
||||
|
||||
local displayer = entry_display.create {
|
||||
separator = " ",
|
||||
items = {
|
||||
{ width = 1 },
|
||||
{ width = widths.name },
|
||||
{ width = widths.authorname },
|
||||
{ width = widths.upstream_indicator },
|
||||
{ width = widths.upstream },
|
||||
{ width = widths.committerdate },
|
||||
},
|
||||
}
|
||||
|
||||
local make_display = function(entry)
|
||||
return displayer {
|
||||
{ entry.head },
|
||||
{ entry.name, "TelescopeResultsIdentifier" },
|
||||
{ entry.authorname },
|
||||
{ string.len(entry.upstream) > 0 and "=>" or "" },
|
||||
{ entry.upstream, "TelescopeResultsIdentifier" },
|
||||
{ entry.committerdate },
|
||||
}
|
||||
end
|
||||
|
||||
pickers
|
||||
.new(opts, {
|
||||
prompt_title = "Git Branches",
|
||||
finder = finders.new_table {
|
||||
results = results,
|
||||
entry_maker = function(entry)
|
||||
entry.value = entry.name
|
||||
entry.ordinal = entry.name
|
||||
entry.display = make_display
|
||||
return make_entry.set_default_entry_mt(entry, opts)
|
||||
end,
|
||||
},
|
||||
previewer = previewers.git_branch_log.new(opts),
|
||||
sorter = conf.file_sorter(opts),
|
||||
attach_mappings = function(_, map)
|
||||
actions.select_default:replace(actions.git_checkout)
|
||||
map({ "i", "n" }, "<c-t>", actions.git_track_branch)
|
||||
map({ "i", "n" }, "<c-r>", actions.git_rebase_branch)
|
||||
map({ "i", "n" }, "<c-a>", actions.git_create_branch)
|
||||
map({ "i", "n" }, "<c-s>", actions.git_switch_branch)
|
||||
map({ "i", "n" }, "<c-d>", actions.git_delete_branch)
|
||||
map({ "i", "n" }, "<c-y>", actions.git_merge_branch)
|
||||
return true
|
||||
end,
|
||||
})
|
||||
:find()
|
||||
end
|
||||
|
||||
git.status = function(opts)
|
||||
if opts.is_bare then
|
||||
utils.notify("builtin.git_status", {
|
||||
msg = "This operation must be run in a work tree",
|
||||
level = "ERROR",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
local gen_new_finder = function()
|
||||
local expand_dir = vim.F.if_nil(opts.expand_dir, true)
|
||||
local git_cmd = { "git", "status", "-z", "--", "." }
|
||||
|
||||
if expand_dir then
|
||||
table.insert(git_cmd, #git_cmd - 1, "-u")
|
||||
end
|
||||
|
||||
local output = utils.get_os_command_output(git_cmd, opts.cwd)
|
||||
|
||||
if #output == 0 then
|
||||
print "No changes found"
|
||||
utils.notify("builtin.git_status", {
|
||||
msg = "No changes found",
|
||||
level = "WARN",
|
||||
})
|
||||
return
|
||||
end
|
||||
|
||||
return finders.new_table {
|
||||
results = vim.split(output[1], " |